summaryrefslogtreecommitdiffhomepage
path: root/js/src/bus
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/bus')
-rw-r--r--js/src/bus/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/bus/index.ts b/js/src/bus/index.ts
index f320aeef3..0064c0a7e 100644
--- a/js/src/bus/index.ts
+++ b/js/src/bus/index.ts
@@ -33,7 +33,7 @@ export namespace Bus {
export function specs() {
const children = {} as any;
for (const [type, def] of registry.entries()) {
- children[def.type] = def.properties;
+ children["event." + def.type] = def.properties;
}
const result = z.toJSONSchema(z.object(children)) as any;
result.definitions = result.properties;