diff options
| author | Dax Raad <[email protected]> | 2025-05-20 11:11:06 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | 9b564f0b73d099d40c79517213211ba81b3312c6 (patch) | |
| tree | 39ef5c2528b7e7167aeba059ce13bcbc903f2397 /js/src/bus | |
| parent | 2437ce3f8b79a7f9d987862b633f3340bfa2c1c4 (diff) | |
| download | opencode-9b564f0b73d099d40c79517213211ba81b3312c6.tar.gz opencode-9b564f0b73d099d40c79517213211ba81b3312c6.zip | |
tool meta
Diffstat (limited to 'js/src/bus')
| -rw-r--r-- | js/src/bus/index.ts | 2 |
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; |
