summaryrefslogtreecommitdiffhomepage
path: root/js/src/bus
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-05-20 11:11:06 -0400
committerDax Raad <[email protected]>2025-05-26 12:40:17 -0400
commit9b564f0b73d099d40c79517213211ba81b3312c6 (patch)
tree39ef5c2528b7e7167aeba059ce13bcbc903f2397 /js/src/bus
parent2437ce3f8b79a7f9d987862b633f3340bfa2c1c4 (diff)
downloadopencode-9b564f0b73d099d40c79517213211ba81b3312c6.tar.gz
opencode-9b564f0b73d099d40c79517213211ba81b3312c6.zip
tool meta
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;