@auto-engineer/message-bus 0.4.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-format.log +11 -12
- package/.turbo/turbo-lint.log +4 -5
- package/.turbo/turbo-test.log +12 -13
- package/.turbo/turbo-type-check.log +4 -5
- package/CHANGELOG.md +12 -0
- package/dist/message-bus.d.ts +9 -0
- package/dist/message-bus.d.ts.map +1 -1
- package/dist/message-bus.js +35 -5
- package/dist/message-bus.js.map +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -3
- package/src/message-bus.ts +46 -5
- package/src/types.ts +2 -5
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/message-bus@0.
|
|
2
|
+
> @auto-engineer/message-bus@0.5.1 build /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
|
|
3
3
|
> tsc && tsx ../../scripts/fix-esm-imports.ts
|
|
4
4
|
|
|
5
5
|
Fixed ESM imports in dist/
|
package/.turbo/turbo-format.log
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
src/
|
|
10
|
-
src/
|
|
11
|
-
|
|
12
|
-
tsconfig.json[2K[1G[90mtsconfig.json[39m 1ms (unchanged)
|
|
1
|
+
|
|
2
|
+
> @auto-engineer/message-bus@0.4.0 format /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
|
|
3
|
+
> prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
|
|
4
|
+
|
|
5
|
+
CHANGELOG.md 19ms (unchanged)
|
|
6
|
+
DEBUG.md 3ms (unchanged)
|
|
7
|
+
package.json 14ms (unchanged)
|
|
8
|
+
src/index.ts 18ms (unchanged)
|
|
9
|
+
src/message-bus.ts 37ms (unchanged)
|
|
10
|
+
src/types.ts 6ms (unchanged)
|
|
11
|
+
tsconfig.json 1ms (unchanged)
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
|
|
2
|
+
> @auto-engineer/message-bus@0.4.0 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
|
|
3
|
+
> eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
|
|
4
|
+
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
|
|
2
|
+
> @auto-engineer/message-bus@0.5.1 test /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
|
|
3
|
+
> vitest run
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
RUN v1.6.1 /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
|
|
7
|
+
|
|
8
|
+
include: **/*.specs.{js,ts}
|
|
9
|
+
exclude: **/.tmp/**, **/node_modules/**, **/dist/**
|
|
10
|
+
watch exclude: **/node_modules/**, **/dist/**
|
|
11
|
+
No test files found, exiting with code 0
|
|
12
|
+
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
|
|
2
|
+
> @auto-engineer/message-bus@0.5.1 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
|
|
3
|
+
> tsc --noEmit
|
|
4
|
+
|
package/CHANGELOG.md
CHANGED
package/dist/message-bus.d.ts
CHANGED
|
@@ -5,6 +5,15 @@ export declare function createMessageBus(): {
|
|
|
5
5
|
sendCommand: <TCommand extends Command>(command: TCommand) => Promise<void>;
|
|
6
6
|
publishEvent: <TEvent extends Event>(event: TEvent) => Promise<void>;
|
|
7
7
|
subscribeToEvent: <TEvent extends Event>(eventType: string, handler: EventHandler<TEvent>) => EventSubscription;
|
|
8
|
+
subscribeAll: <TEvent extends Event = Readonly<{
|
|
9
|
+
type: string;
|
|
10
|
+
data: {
|
|
11
|
+
[x: string]: any;
|
|
12
|
+
};
|
|
13
|
+
timestamp?: Date;
|
|
14
|
+
requestId?: string;
|
|
15
|
+
correlationId?: string;
|
|
16
|
+
}>>(handler: EventHandler<TEvent>) => EventSubscription;
|
|
8
17
|
};
|
|
9
18
|
export type MessageBus = ReturnType<typeof createMessageBus>;
|
|
10
19
|
//# sourceMappingURL=message-bus.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-bus.d.ts","sourceRoot":"","sources":["../src/message-bus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"message-bus.d.ts","sourceRoot":"","sources":["../src/message-bus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAqB1F,wBAAgB,gBAAgB;6BASE,QAAQ,SAAS,OAAO,kBAAkB,cAAc,CAAC,QAAQ,CAAC,KAAG,IAAI;2BAoJ3E,MAAM,SAAS,KAAK,gBAAgB,YAAY,CAAC,MAAM,CAAC,KAAG,iBAAiB;kBAvI/E,QAAQ,SAAS,OAAO,WAAW,QAAQ,KAAG,OAAO,CAAC,IAAI,CAAC;mBAoE1D,MAAM,SAAS,KAAK,SAAS,MAAM,KAAG,OAAO,CAAC,IAAI,CAAC;uBA9BrD,MAAM,SAAS,KAAK,aAAa,MAAM,WAAW,YAAY,CAAC,MAAM,CAAC,KAAG,iBAAiB;mBA+E9F,MAAM,SAAS,KAAK;;;;;;;;iBAAmB,YAAY,CAAC,MAAM,CAAC,KAAG,iBAAiB;EAsCtG;AAED,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
package/dist/message-bus.js
CHANGED
|
@@ -14,12 +14,15 @@ export function createMessageBus() {
|
|
|
14
14
|
const state = {
|
|
15
15
|
commandHandlers: {},
|
|
16
16
|
eventHandlers: {},
|
|
17
|
+
allEventHandlers: [],
|
|
17
18
|
};
|
|
18
19
|
debug('Message bus state initialized');
|
|
19
20
|
function registerCommandHandler(commandHandler) {
|
|
20
21
|
debugHandler('Registering command handler: %s', commandHandler.name);
|
|
21
22
|
if (state.commandHandlers[commandHandler.name] !== undefined) {
|
|
22
|
-
|
|
23
|
+
const error = `Command handler already registered for command: ${commandHandler.name}`;
|
|
24
|
+
debugHandler('ERROR: %s', error);
|
|
25
|
+
throw new Error(error);
|
|
23
26
|
}
|
|
24
27
|
state.commandHandlers[commandHandler.name] = commandHandler;
|
|
25
28
|
debugHandler('Handler registered successfully, total handlers: %d', Object.keys(state.commandHandlers).length);
|
|
@@ -39,9 +42,17 @@ export function createMessageBus() {
|
|
|
39
42
|
try {
|
|
40
43
|
debugCommand('Executing handler for: %s', command.type);
|
|
41
44
|
const startTime = Date.now();
|
|
42
|
-
await commandHandler.handle(command);
|
|
45
|
+
const result = await commandHandler.handle(command);
|
|
43
46
|
const duration = Date.now() - startTime;
|
|
44
47
|
debugCommand('Handler executed successfully in %dms', duration);
|
|
48
|
+
// If handler returned events, publish them
|
|
49
|
+
if (result) {
|
|
50
|
+
const events = Array.isArray(result) ? result : [result];
|
|
51
|
+
for (const event of events) {
|
|
52
|
+
debugCommand('Publishing event from command handler: %s', event.type);
|
|
53
|
+
await publishEvent(event);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
45
56
|
}
|
|
46
57
|
catch (error) {
|
|
47
58
|
debugCommand('ERROR: Handler failed for command %s: %O', command.type, error);
|
|
@@ -80,8 +91,11 @@ export function createMessageBus() {
|
|
|
80
91
|
debugEvent(' Correlation ID: %s', event.correlationId ?? 'none');
|
|
81
92
|
debugEvent(' Timestamp: %s', event.timestamp || 'none');
|
|
82
93
|
debugEvent(' Data keys: %o', Object.keys(event.data));
|
|
83
|
-
|
|
84
|
-
|
|
94
|
+
// Get both specific handlers and all-event handlers
|
|
95
|
+
const specificHandlers = state.eventHandlers[event.type] ?? [];
|
|
96
|
+
const allHandlers = state.allEventHandlers;
|
|
97
|
+
const handlers = [...specificHandlers, ...allHandlers];
|
|
98
|
+
debugEvent('Found %d specific + %d all-event handlers for event %s', specificHandlers.length, allHandlers.length, event.type);
|
|
85
99
|
if (handlers.length === 0) {
|
|
86
100
|
debugEvent('No handlers registered for event: %s', event.type);
|
|
87
101
|
return;
|
|
@@ -109,6 +123,21 @@ export function createMessageBus() {
|
|
|
109
123
|
debugEvent('All handlers executed successfully for event %s', event.type);
|
|
110
124
|
}
|
|
111
125
|
}
|
|
126
|
+
function subscribeAll(handler) {
|
|
127
|
+
debugEvent('Subscribing to ALL events with handler: %s', handler.name);
|
|
128
|
+
state.allEventHandlers.push(handler);
|
|
129
|
+
debugEvent('All-event handler added, total all-event handlers: %d', state.allEventHandlers.length);
|
|
130
|
+
return {
|
|
131
|
+
unsubscribe: () => {
|
|
132
|
+
debugEvent('Unsubscribing all-event handler: %s', handler.name);
|
|
133
|
+
const index = state.allEventHandlers.indexOf(handler);
|
|
134
|
+
if (index > -1) {
|
|
135
|
+
state.allEventHandlers.splice(index, 1);
|
|
136
|
+
debugEvent('All-event handler removed, remaining: %d', state.allEventHandlers.length);
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
};
|
|
140
|
+
}
|
|
112
141
|
function registerEventHandler(eventHandler) {
|
|
113
142
|
debugHandler('Registering event handler: %s', eventHandler.name);
|
|
114
143
|
// For backward compatibility, infer event type from handler name
|
|
@@ -116,13 +145,14 @@ export function createMessageBus() {
|
|
|
116
145
|
return subscribeToEvent(eventType, eventHandler);
|
|
117
146
|
}
|
|
118
147
|
debug('Message bus creation complete');
|
|
119
|
-
debug(' Available methods: registerCommandHandler, sendCommand, publishEvent, subscribeToEvent, registerEventHandler');
|
|
148
|
+
debug(' Available methods: registerCommandHandler, sendCommand, publishEvent, subscribeToEvent, subscribeAll, registerEventHandler');
|
|
120
149
|
return {
|
|
121
150
|
registerCommandHandler,
|
|
122
151
|
registerEventHandler,
|
|
123
152
|
sendCommand,
|
|
124
153
|
publishEvent,
|
|
125
154
|
subscribeToEvent,
|
|
155
|
+
subscribeAll,
|
|
126
156
|
};
|
|
127
157
|
}
|
|
128
158
|
//# sourceMappingURL=message-bus.js.map
|
package/dist/message-bus.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-bus.js","sourceRoot":"","sources":["../src/message-bus.ts"],"names":[],"mappings":"AACA,OAAO,WAAW,MAAM,OAAO,CAAC;AAEhC,MAAM,KAAK,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC;AACzC,MAAM,YAAY,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;AACxD,MAAM,UAAU,GAAG,WAAW,CAAC,mBAAmB,CAAC,CAAC;AACpD,MAAM,YAAY,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;AAExD,iDAAiD;AACjD,sEAAsE;AACtE,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,OAAO;AAC1B,YAAY,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,OAAO;AACjC,UAAU,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,QAAQ;AAChC,YAAY,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,OAAO;
|
|
1
|
+
{"version":3,"file":"message-bus.js","sourceRoot":"","sources":["../src/message-bus.ts"],"names":[],"mappings":"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"}
|
package/dist/types.d.ts
CHANGED
|
@@ -21,9 +21,9 @@ export declare namespace dispatch {
|
|
|
21
21
|
var custom: <T>(_commandFactory: () => T) => void;
|
|
22
22
|
}
|
|
23
23
|
export declare function fold<T>(_reducer: (event: T) => string): void;
|
|
24
|
-
export type CommandHandler<TCommand extends Command = Command> = {
|
|
24
|
+
export type CommandHandler<TCommand extends Command = Command, TEvent extends Event = Event> = {
|
|
25
25
|
name: string;
|
|
26
|
-
handle: (command: TCommand) => Promise<void>;
|
|
26
|
+
handle: (command: TCommand) => Promise<TEvent | TEvent[] | void>;
|
|
27
27
|
};
|
|
28
28
|
export type EventHandler<TEvent extends Event = Event> = {
|
|
29
29
|
name: string;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAEA,KAAK,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEzC,MAAM,MAAM,OAAO,CAAC,WAAW,SAAS,MAAM,GAAG,MAAM,EAAE,WAAW,SAAS,aAAa,GAAG,aAAa,IAAI,QAAQ,CAAC;IACrH,IAAI,EAAE,WAAW,CAAC;IAClB,IAAI,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;IAC5B,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC,CAAC;AAEH,MAAM,MAAM,KAAK,CAAC,SAAS,SAAS,MAAM,GAAG,MAAM,EAAE,SAAS,SAAS,aAAa,GAAG,aAAa,IAAI,QAAQ,CAAC;IAC/G,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,SAAS,CAAC;IAChB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC,CAAC;AAGH,wBAAgB,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,QAAI;AAEtD,wBAAgB,QAAQ,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,QAAI;yBAA3B,QAAQ;mBACH,CAAC,aAAa,CAAC,EAAE;mBACjB,CAAC,aAAa,CAAC,EAAE;iBACnB,CAAC,mBAAmB,MAAM,CAAC;;AAE9C,wBAAgB,IAAI,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,MAAM,QAAI;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAEA,KAAK,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEzC,MAAM,MAAM,OAAO,CAAC,WAAW,SAAS,MAAM,GAAG,MAAM,EAAE,WAAW,SAAS,aAAa,GAAG,aAAa,IAAI,QAAQ,CAAC;IACrH,IAAI,EAAE,WAAW,CAAC;IAClB,IAAI,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;IAC5B,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC,CAAC;AAEH,MAAM,MAAM,KAAK,CAAC,SAAS,SAAS,MAAM,GAAG,MAAM,EAAE,SAAS,SAAS,aAAa,GAAG,aAAa,IAAI,QAAQ,CAAC;IAC/G,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,SAAS,CAAC;IAChB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC,CAAC;AAGH,wBAAgB,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,QAAI;AAEtD,wBAAgB,QAAQ,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,QAAI;yBAA3B,QAAQ;mBACH,CAAC,aAAa,CAAC,EAAE;mBACjB,CAAC,aAAa,CAAC,EAAE;iBACnB,CAAC,mBAAmB,MAAM,CAAC;;AAE9C,wBAAgB,IAAI,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,MAAM,QAAI;AAE1D,MAAM,MAAM,cAAc,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO,EAAE,MAAM,SAAS,KAAK,GAAG,KAAK,IAAI;IAC7F,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,OAAO,CAAC,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC;CAClE,CAAC;AAEF,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,KAAK,GAAG,KAAK,IAAI;IACvD,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;CACjD,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,WAAW,EAAE,MAAM,IAAI,CAAC;CACzB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auto-engineer/message-bus",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
"event-driven",
|
|
14
14
|
"cqrs"
|
|
15
15
|
],
|
|
16
|
-
"author": "",
|
|
17
|
-
"license": "MIT",
|
|
18
16
|
"devDependencies": {
|
|
19
17
|
"@types/node": "^20.0.0",
|
|
20
18
|
"tsx": "^4.20.3",
|
package/src/message-bus.ts
CHANGED
|
@@ -16,6 +16,7 @@ debugHandler.color = '6'; // cyan
|
|
|
16
16
|
type MessageBusState = {
|
|
17
17
|
commandHandlers: Record<string, CommandHandler>;
|
|
18
18
|
eventHandlers: Record<string, EventHandler[]>;
|
|
19
|
+
allEventHandlers: EventHandler[]; // Handlers that receive ALL events
|
|
19
20
|
};
|
|
20
21
|
|
|
21
22
|
export function createMessageBus() {
|
|
@@ -23,6 +24,7 @@ export function createMessageBus() {
|
|
|
23
24
|
const state: MessageBusState = {
|
|
24
25
|
commandHandlers: {},
|
|
25
26
|
eventHandlers: {},
|
|
27
|
+
allEventHandlers: [],
|
|
26
28
|
};
|
|
27
29
|
debug('Message bus state initialized');
|
|
28
30
|
|
|
@@ -30,7 +32,9 @@ export function createMessageBus() {
|
|
|
30
32
|
debugHandler('Registering command handler: %s', commandHandler.name);
|
|
31
33
|
|
|
32
34
|
if (state.commandHandlers[commandHandler.name] !== undefined) {
|
|
33
|
-
|
|
35
|
+
const error = `Command handler already registered for command: ${commandHandler.name}`;
|
|
36
|
+
debugHandler('ERROR: %s', error);
|
|
37
|
+
throw new Error(error);
|
|
34
38
|
}
|
|
35
39
|
|
|
36
40
|
state.commandHandlers[commandHandler.name] = commandHandler as CommandHandler;
|
|
@@ -56,10 +60,19 @@ export function createMessageBus() {
|
|
|
56
60
|
debugCommand('Executing handler for: %s', command.type);
|
|
57
61
|
const startTime = Date.now();
|
|
58
62
|
|
|
59
|
-
await commandHandler.handle(command);
|
|
63
|
+
const result = await commandHandler.handle(command);
|
|
60
64
|
|
|
61
65
|
const duration = Date.now() - startTime;
|
|
62
66
|
debugCommand('Handler executed successfully in %dms', duration);
|
|
67
|
+
|
|
68
|
+
// If handler returned events, publish them
|
|
69
|
+
if (result) {
|
|
70
|
+
const events = Array.isArray(result) ? result : [result];
|
|
71
|
+
for (const event of events) {
|
|
72
|
+
debugCommand('Publishing event from command handler: %s', event.type);
|
|
73
|
+
await publishEvent(event);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
63
76
|
} catch (error) {
|
|
64
77
|
debugCommand('ERROR: Handler failed for command %s: %O', command.type, error);
|
|
65
78
|
throw new Error(`Command handling failed: ${error instanceof Error ? error.message : 'Unknown error occurred'}`);
|
|
@@ -103,8 +116,17 @@ export function createMessageBus() {
|
|
|
103
116
|
debugEvent(' Timestamp: %s', event.timestamp || 'none');
|
|
104
117
|
debugEvent(' Data keys: %o', Object.keys(event.data));
|
|
105
118
|
|
|
106
|
-
|
|
107
|
-
|
|
119
|
+
// Get both specific handlers and all-event handlers
|
|
120
|
+
const specificHandlers = state.eventHandlers[event.type] ?? [];
|
|
121
|
+
const allHandlers = state.allEventHandlers;
|
|
122
|
+
const handlers = [...specificHandlers, ...allHandlers];
|
|
123
|
+
|
|
124
|
+
debugEvent(
|
|
125
|
+
'Found %d specific + %d all-event handlers for event %s',
|
|
126
|
+
specificHandlers.length,
|
|
127
|
+
allHandlers.length,
|
|
128
|
+
event.type,
|
|
129
|
+
);
|
|
108
130
|
|
|
109
131
|
if (handlers.length === 0) {
|
|
110
132
|
debugEvent('No handlers registered for event: %s', event.type);
|
|
@@ -136,6 +158,24 @@ export function createMessageBus() {
|
|
|
136
158
|
}
|
|
137
159
|
}
|
|
138
160
|
|
|
161
|
+
function subscribeAll<TEvent extends Event = Event>(handler: EventHandler<TEvent>): EventSubscription {
|
|
162
|
+
debugEvent('Subscribing to ALL events with handler: %s', handler.name);
|
|
163
|
+
|
|
164
|
+
state.allEventHandlers.push(handler as EventHandler);
|
|
165
|
+
debugEvent('All-event handler added, total all-event handlers: %d', state.allEventHandlers.length);
|
|
166
|
+
|
|
167
|
+
return {
|
|
168
|
+
unsubscribe: () => {
|
|
169
|
+
debugEvent('Unsubscribing all-event handler: %s', handler.name);
|
|
170
|
+
const index = state.allEventHandlers.indexOf(handler as EventHandler);
|
|
171
|
+
if (index > -1) {
|
|
172
|
+
state.allEventHandlers.splice(index, 1);
|
|
173
|
+
debugEvent('All-event handler removed, remaining: %d', state.allEventHandlers.length);
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
};
|
|
177
|
+
}
|
|
178
|
+
|
|
139
179
|
function registerEventHandler<TEvent extends Event>(eventHandler: EventHandler<TEvent>): EventSubscription {
|
|
140
180
|
debugHandler('Registering event handler: %s', eventHandler.name);
|
|
141
181
|
// For backward compatibility, infer event type from handler name
|
|
@@ -145,7 +185,7 @@ export function createMessageBus() {
|
|
|
145
185
|
|
|
146
186
|
debug('Message bus creation complete');
|
|
147
187
|
debug(
|
|
148
|
-
' Available methods: registerCommandHandler, sendCommand, publishEvent, subscribeToEvent, registerEventHandler',
|
|
188
|
+
' Available methods: registerCommandHandler, sendCommand, publishEvent, subscribeToEvent, subscribeAll, registerEventHandler',
|
|
149
189
|
);
|
|
150
190
|
|
|
151
191
|
return {
|
|
@@ -154,6 +194,7 @@ export function createMessageBus() {
|
|
|
154
194
|
sendCommand,
|
|
155
195
|
publishEvent,
|
|
156
196
|
subscribeToEvent,
|
|
197
|
+
subscribeAll,
|
|
157
198
|
};
|
|
158
199
|
}
|
|
159
200
|
|
package/src/types.ts
CHANGED
|
@@ -28,19 +28,16 @@ dispatch.custom = <T>(_commandFactory: () => T) => {};
|
|
|
28
28
|
|
|
29
29
|
export function fold<T>(_reducer: (event: T) => string) {}
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
export type CommandHandler<TCommand extends Command = Command> = {
|
|
31
|
+
export type CommandHandler<TCommand extends Command = Command, TEvent extends Event = Event> = {
|
|
33
32
|
name: string;
|
|
34
|
-
handle: (command: TCommand) => Promise<void>;
|
|
33
|
+
handle: (command: TCommand) => Promise<TEvent | TEvent[] | void>;
|
|
35
34
|
};
|
|
36
35
|
|
|
37
|
-
// Event handler for subscriptions
|
|
38
36
|
export type EventHandler<TEvent extends Event = Event> = {
|
|
39
37
|
name: string;
|
|
40
38
|
handle: (event: TEvent) => Promise<void> | void;
|
|
41
39
|
};
|
|
42
40
|
|
|
43
|
-
// Event subscription
|
|
44
41
|
export type EventSubscription = {
|
|
45
42
|
unsubscribe: () => void;
|
|
46
43
|
};
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/types.ts","../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","./src/message-bus.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.8/node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"8e245ba802fe5aad0f05e3dcb73403689296f0fc7f51557771ccdb906d3dc8f5","signature":"2a3b577bf392d59dfe9d26f74aed2f1de11f0235a3ce3b72fefbddcc70a45371"},"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"version":"c4491ccf13c894b790e0c2b2d860abc05c07498e35145619f372d1bb05d5409c","signature":"58f2c8e3cda0f715fba111ed4554e7fbd607b9e7b807be229007570ae3d70a04"},"0049beb632aa48dd202a8fbedbd05ccef5c8eb51614ee73d7bb9bdcecb5076d7",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true},"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true},"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","4ec3c48b7d89091aafb4e0452e4c971f34cf1615b490b5201044f31ac07f4b16","de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b"],"root":[45,48,49],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"inlineSources":false,"module":99,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":7},"fileIdsList":[[46,55,98],[55,98],[55,95,98],[55,97,98],[55,98,103,132],[55,98,99,104,110,111,118,129,140],[55,98,99,100,110,118],[50,51,52,55,98],[55,98,101,141],[55,98,102,103,111,119],[55,98,103,129,137],[55,98,104,106,110,118],[55,97,98,105],[55,98,106,107],[55,98,108,110],[55,97,98,110],[55,98,110,111,112,129,140],[55,98,110,111,112,125,129,132],[55,93,98],[55,98,106,110,113,118,129,140],[55,98,110,111,113,114,118,129,137,140],[55,98,113,115,129,137,140],[55,98,110,116],[55,98,117,140,145],[55,98,106,110,118,129],[55,98,119],[55,98,120],[55,97,98,121],[55,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146],[55,98,123],[55,98,124],[55,98,110,125,126],[55,98,125,127,141,143],[55,98,110,129,130,132],[55,98,131,132],[55,98,129,130],[55,98,132],[55,98,133],[55,95,98,129,134],[55,98,110,135,136],[55,98,135,136],[55,98,103,118,129,137],[55,98,138],[98],[53,54,55,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146],[55,98,118,139],[55,98,113,124,140],[55,98,103,141],[55,98,129,142],[55,98,117,143],[55,98,144],[55,98,110,112,121,129,132,140,143,145],[55,98,129,146],[55,65,69,98,140],[55,65,98,129,140],[55,60,98],[55,62,65,98,137,140],[55,98,118,137],[55,98,147],[55,60,98,147],[55,62,65,98,118,140],[55,57,58,61,64,98,110,129,140],[55,65,72,98],[55,57,63,98],[55,65,86,87,98],[55,61,65,98,132,140,147],[55,86,98,147],[55,59,60,98,147],[55,65,98],[55,59,60,61,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,87,88,89,90,91,92,98],[55,65,80,98],[55,65,72,73,98],[55,63,65,73,74,98],[55,64,98],[55,57,60,65,98],[55,65,69,73,74,98],[55,69,98],[55,63,65,68,98,140],[55,57,62,65,72,98],[55,98,129],[55,60,65,86,98,145,147],[45,48,55,98],[45,47,55,98]],"referencedMap":[[47,1],[46,2],[95,3],[96,3],[97,4],[98,5],[99,6],[100,7],[50,2],[53,8],[51,2],[52,2],[101,9],[102,10],[103,11],[104,12],[105,13],[106,14],[107,14],[109,2],[108,15],[110,16],[111,17],[112,18],[94,19],[113,20],[114,21],[115,22],[116,23],[117,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,30],[124,31],[125,32],[126,32],[127,33],[128,2],[129,34],[131,35],[130,36],[132,37],[133,38],[134,39],[135,40],[136,41],[137,42],[138,43],[55,44],[54,2],[147,45],[139,46],[140,47],[141,48],[142,49],[143,50],[144,51],[145,52],[146,53],[56,2],[43,2],[44,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[18,2],[4,2],[19,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[34,2],[31,2],[32,2],[33,2],[35,2],[7,2],[36,2],[41,2],[42,2],[37,2],[38,2],[39,2],[40,2],[1,2],[72,54],[82,55],[71,54],[92,56],[63,57],[62,58],[91,59],[85,60],[90,61],[65,62],[79,63],[64,64],[88,65],[60,66],[59,59],[89,67],[61,68],[66,69],[67,2],[70,69],[57,2],[93,70],[83,71],[74,72],[75,73],[77,74],[73,75],[76,76],[86,59],[68,77],[69,78],[78,79],[58,80],[81,71],[80,69],[84,2],[87,81],[49,82],[48,83],[45,2]],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.5.4"}
|
|
1
|
+
{"fileNames":["../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/types.ts","../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","./src/message-bus.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/index.d.ts"],"fileIdsList":[[47,56,99],[56,99],[56,96,99],[56,98,99],[99],[56,99,104,133],[56,99,100,105,111,119,130,141],[56,99,100,101,111,119],[51,52,53,56,99],[56,99,102,142],[56,99,103,104,112,120],[56,99,104,130,138],[56,99,105,107,111,119],[56,98,99,106],[56,99,107,108],[56,99,109,111],[56,98,99,111],[56,99,111,112,113,130,141],[56,99,111,112,113,126,130,133],[56,94,99],[56,99,107,111,114,119,130,141],[56,99,111,112,114,115,119,130,138,141],[56,99,114,116,130,138,141],[54,55,56,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[56,99,111,117],[56,99,118,141,146],[56,99,107,111,119,130],[56,99,120],[56,99,121],[56,98,99,122],[56,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[56,99,124],[56,99,125],[56,99,111,126,127],[56,99,126,128,142,144],[56,99,111,130,131,133],[56,99,132,133],[56,99,130,131],[56,99,133],[56,99,134],[56,96,99,130,135],[56,99,111,136,137],[56,99,136,137],[56,99,104,119,130,138],[56,99,139],[56,99,119,140],[56,99,114,125,141],[56,99,104,142],[56,99,130,143],[56,99,118,144],[56,99,145],[56,99,111,113,122,130,133,141,144,146],[56,99,130,147],[56,66,70,99,141],[56,66,99,130,141],[56,61,99],[56,63,66,99,138,141],[56,99,119,138],[56,99,148],[56,61,99,148],[56,63,66,99,119,141],[56,58,59,62,65,99,111,130,141],[56,66,73,99],[56,58,64,99],[56,66,87,88,99],[56,62,66,99,133,141,148],[56,87,99,148],[56,60,61,99,148],[56,66,99],[56,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,99],[56,66,81,99],[56,66,73,74,99],[56,64,66,74,75,99],[56,65,99],[56,58,61,66,99],[56,66,70,74,75,99],[56,70,99],[56,64,66,69,99,141],[56,58,63,66,73,99],[56,99,130],[56,61,66,87,99,146,148],[46,49,56,99],[46,48,56,99]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6fc4a3f65eaee91d0206e579df9751b89115eaf0641157da24c25a5e050b79d","signature":"2c33a32456ce212d0722f8a015b5cdea69bf2abc6e1045c1cf83bb75eace84a0"},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"6b4f561cad1556b89a6999fc9d757cce12b06fd7131735e7c488488739d3b8d3","signature":"db4af24504d864a260494193a86b98ff4d140179a41fac11f9fc8a8dd06f141b"},"0049beb632aa48dd202a8fbedbd05ccef5c8eb51614ee73d7bb9bdcecb5076d7",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[46,49,50],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"inlineSources":false,"module":99,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":7},"referencedMap":[[48,1],[47,2],[96,3],[97,3],[98,4],[56,5],[99,6],[100,7],[101,8],[51,2],[54,9],[52,2],[53,2],[102,10],[103,11],[104,12],[105,13],[106,14],[107,15],[108,15],[110,2],[109,16],[111,17],[112,18],[113,19],[95,20],[55,2],[114,21],[115,22],[116,23],[148,24],[117,25],[118,26],[119,27],[120,28],[121,29],[122,30],[123,31],[124,32],[125,33],[126,34],[127,34],[128,35],[129,2],[130,36],[132,37],[131,38],[133,39],[134,40],[135,41],[136,42],[137,43],[138,44],[139,45],[140,46],[141,47],[142,48],[143,49],[144,50],[145,51],[146,52],[147,53],[57,2],[44,2],[45,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[18,2],[19,2],[4,2],[20,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[35,2],[32,2],[33,2],[34,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[73,54],[83,55],[72,54],[93,56],[64,57],[63,58],[92,59],[86,60],[91,61],[66,62],[80,63],[65,64],[89,65],[61,66],[60,59],[90,67],[62,68],[67,69],[68,2],[71,69],[58,2],[94,70],[84,71],[75,72],[76,73],[78,74],[74,75],[77,76],[87,59],[69,77],[70,78],[79,79],[59,80],[82,71],[81,69],[85,2],[88,81],[50,82],[49,83],[46,2]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.2"}
|