@auto-engineer/message-bus 0.5.4 → 0.6.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/message-bus@0.5.3 build /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
2
+ > @auto-engineer/message-bus@0.6.0 build /home/runner/work/auto-engineer/auto-engineer/packages/message-bus
3
3
  > tsc && tsx ../../scripts/fix-esm-imports.ts
4
4
 
5
5
  Fixed ESM imports in dist/
@@ -1,12 +1,12 @@
1
1
 
2
- > @auto-engineer/message-bus@0.5.2 test /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
2
+ > @auto-engineer/message-bus@0.6.0 test /home/runner/work/auto-engineer/auto-engineer/packages/message-bus
3
3
  > vitest run
4
4
 
5
5
 
6
- RUN v1.6.1 /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
6
+  RUN  v1.6.1 /home/runner/work/auto-engineer/auto-engineer/packages/message-bus
7
7
 
8
- include: **/*.specs.{js,ts}
9
- exclude: **/.tmp/**, **/node_modules/**, **/dist/**
10
- watch exclude: **/node_modules/**, **/dist/**
8
+ include: **/*.specs.{js,ts}
9
+ exclude: **/.tmp/**, **/node_modules/**, **/dist/**
10
+ watch exclude: **/node_modules/**, **/dist/**
11
11
  No test files found, exiting with code 0
12
12
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/message-bus@0.5.2 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
2
+ > @auto-engineer/message-bus@0.6.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/message-bus
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @auto-engineer/message-bus
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - add command details in dashboard
8
+
9
+ ## 0.5.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Bump versions
14
+
3
15
  ## 0.5.4
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,43 @@
1
+ import type { Command, Event, CommandHandler } from './types';
2
+ type CommandData<C> = C extends Command<string, infer D> ? D : never;
3
+ type CommandType<C> = C extends Command<infer T, Record<string, unknown>> ? T : never;
4
+ export interface FieldDefinition<T> {
5
+ description: string;
6
+ required?: T extends undefined ? false : true;
7
+ flag?: boolean;
8
+ }
9
+ export interface PackageMetadata {
10
+ name: string;
11
+ version?: string;
12
+ description?: string;
13
+ }
14
+ export interface UnifiedCommandHandler<C extends Command<string, Record<string, unknown>>> extends CommandHandler {
15
+ alias: string;
16
+ description: string;
17
+ category?: string;
18
+ package?: PackageMetadata;
19
+ fields: {
20
+ [K in keyof CommandData<C>]: FieldDefinition<CommandData<C>[K]>;
21
+ };
22
+ examples: string[];
23
+ handle: (command: Command) => Promise<Event | Event[] | void>;
24
+ }
25
+ /**
26
+ * Define a command handler with full type safety and metadata
27
+ * @param config The command handler configuration
28
+ * @returns A command handler with manifest metadata
29
+ */
30
+ export declare function defineCommandHandler<C extends Command<string, Record<string, unknown>>>(config: {
31
+ name: CommandType<C>;
32
+ alias: string;
33
+ description: string;
34
+ category?: string;
35
+ package?: PackageMetadata;
36
+ fields: {
37
+ [K in keyof CommandData<C>]: FieldDefinition<CommandData<C>[K]>;
38
+ };
39
+ examples: string[];
40
+ handle: (command: C) => Promise<Event | Event[] | void>;
41
+ }): UnifiedCommandHandler<C>;
42
+ export {};
43
+ //# sourceMappingURL=define-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"define-command.d.ts","sourceRoot":"","sources":["../src/define-command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAG9D,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;AACrE,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;AAGtF,MAAM,WAAW,eAAe,CAAC,CAAC;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,IAAI,CAAC;IAC9C,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAGD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAGD,MAAM,WAAW,qBAAqB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAE,SAAQ,cAAc;IAC/G,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,MAAM,EAAE;SACL,CAAC,IAAI,MAAM,WAAW,CAAC,CAAC,CAAC,GAAG,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;KAChE,CAAC;IACF,QAAQ,EAAE,MAAM,EAAE,CAAC;IAEnB,MAAM,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,OAAO,CAAC,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,CAAC,CAAC;CAC/D;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,MAAM,EAAE;IAC/F,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,MAAM,EAAE;SACL,CAAC,IAAI,MAAM,WAAW,CAAC,CAAC,CAAC,GAAG,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;KAChE,CAAC;IACF,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,OAAO,CAAC,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,CAAC,CAAC;CACzD,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAM3B"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Define a command handler with full type safety and metadata
3
+ * @param config The command handler configuration
4
+ * @returns A command handler with manifest metadata
5
+ */
6
+ export function defineCommandHandler(config) {
7
+ // Cast the handle function to the base Command type for interface compatibility
8
+ return {
9
+ ...config,
10
+ handle: config.handle,
11
+ };
12
+ }
13
+ //# sourceMappingURL=define-command.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"define-command.js","sourceRoot":"","sources":["../src/define-command.ts"],"names":[],"mappings":"AAkCA;;;;GAIG;AACH,MAAM,UAAU,oBAAoB,CAAqD,MAWxF;IACC,gFAAgF;IAChF,OAAO;QACL,GAAG,MAAM;QACT,MAAM,EAAE,MAAM,CAAC,MAA+D;KACnD,CAAC;AAChC,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './types';
2
2
  export * from './message-bus';
3
+ export * from './define-command';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC"}
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './types.js';
2
2
  export * from './message-bus.js';
3
+ export * from './define-command.js';
3
4
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC"}
@@ -1,12 +1,4 @@
1
1
  import { Command, Event, CommandHandler, EventHandler, EventSubscription } from './types';
2
- export declare function on<T>(_handler: (event: T) => void): void;
3
- export declare function dispatch<T>(_command: T): void;
4
- export declare namespace dispatch {
5
- var parallel: <T>(_commands: T[]) => void;
6
- var sequence: <T>(_commands: T[]) => void;
7
- var custom: <T>(_commandFactory: () => T) => void;
8
- }
9
- export declare function fold<T>(_reducer: (event: T) => string): void;
10
2
  export declare function createMessageBus(): {
11
3
  registerCommandHandler: <TCommand extends Command>(commandHandler: CommandHandler<TCommand>) => void;
12
4
  registerEventHandler: <TEvent extends Event>(eventHandler: EventHandler<TEvent>) => EventSubscription;
@@ -22,6 +14,7 @@ export declare function createMessageBus(): {
22
14
  requestId?: string;
23
15
  correlationId?: string;
24
16
  }>>(handler: EventHandler<TEvent>) => EventSubscription;
17
+ getCommandHandlers: () => Record<string, CommandHandler>;
25
18
  };
26
19
  export type MessageBus = ReturnType<typeof createMessageBus>;
27
20
  //# 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;AAsB1F,wBAAgB,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,QAAI;AACtD,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;;AAC9C,wBAAgB,IAAI,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,MAAM,QAAI;AAE1D,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"}
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;AAuB1F,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;8BA8BtE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC;EAa9D;AAED,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -9,13 +9,7 @@ debug.color = '6'; // cyan
9
9
  debugCommand.color = '4'; // blue
10
10
  debugEvent.color = '2'; // green
11
11
  debugHandler.color = '6'; // cyan
12
- // Utility functions
13
- export function on(_handler) { }
14
- export function dispatch(_command) { }
15
- dispatch.parallel = (_commands) => { };
16
- dispatch.sequence = (_commands) => { };
17
- dispatch.custom = (_commandFactory) => { };
18
- export function fold(_reducer) { }
12
+ // DSL functions moved to CLI package
19
13
  export function createMessageBus() {
20
14
  debug('Creating new message bus instance');
21
15
  const state = {
@@ -153,6 +147,9 @@ export function createMessageBus() {
153
147
  }
154
148
  debug('Message bus creation complete');
155
149
  debug(' Available methods: registerCommandHandler, sendCommand, publishEvent, subscribeToEvent, subscribeAll, registerEventHandler');
150
+ function getCommandHandlers() {
151
+ return { ...state.commandHandlers };
152
+ }
156
153
  return {
157
154
  registerCommandHandler,
158
155
  registerEventHandler,
@@ -160,6 +157,285 @@ export function createMessageBus() {
160
157
  publishEvent,
161
158
  subscribeToEvent,
162
159
  subscribeAll,
160
+ getCommandHandlers,
163
161
  };
164
162
  }
163
+ /*
164
+ Architecture Overview
165
+
166
+ packages/cli/
167
+ ├── src/
168
+ │ ├── server/
169
+ │ │ ├── message-bus-server.ts # Express + Socket.io server
170
+ │ │ ├── config-loader.ts # Load and execute DSL from config
171
+ │ │ ├── state-manager.ts # Functional state management with fold
172
+ │ │ └── dsl-executor.ts # Execute on() and dispatch() functions
173
+ │ ├── dsl/
174
+ │ │ ├── index.ts # Executable DSL functions
175
+ │ │ └── types.ts # DSL type definitions
176
+ │ ├── commands/
177
+ │ │ └── serve.ts # Server command (default when no args)
178
+ │ └── index.ts # Modified to start server by default
179
+
180
+ packages/message-bus/
181
+ └── src/
182
+ └── message-bus.ts # Remove DSL stubs, keep core bus
183
+
184
+ Key Design Decisions
185
+
186
+ 1. Executable DSL Functions
187
+ - on() will register event handlers that execute dispatch calls
188
+ - dispatch() will send commands to the message bus
189
+ - fold() will be a pure function: (state, event) => newState
190
+ 2. Functional State Management
191
+ type FoldFunction<S, E> = (state: S, event: E) => S;
192
+
193
+ class StateManager {
194
+ private state: any = {};
195
+ private folds: Map<string, FoldFunction<any, any>>;
196
+
197
+ applyEvent(event: Event) {
198
+ const fold = this.folds.get(event.type);
199
+ if (fold) {
200
+ this.state = fold(this.state, event);
201
+ }
202
+ }
203
+ }
204
+ 3. Direct Message Bus Integration
205
+ - HTTP POST /command → Message Bus → Events → Handlers
206
+ - No CLI command execution, direct bus communication
207
+ - Add TODO comments for future type validation
208
+ 4. Event Flow
209
+ - Events only trigger message bus handlers
210
+ - Comment placeholder for future event store
211
+ - WebSocket broadcasts handled separately if needed
212
+ 5. CLI Default Behavior
213
+ - auto with no args → starts server
214
+ - auto <command> → executes command via message bus if server running
215
+ - auto --local <command> → force local execution
216
+
217
+ Implementation Steps
218
+
219
+ Step 1: Move and Implement DSL Functions
220
+
221
+ // packages/cli/src/dsl/index.ts
222
+ export function on<T extends Event>(
223
+ eventType: string,
224
+ handler: (event: T) => Command | Command[] | void
225
+ ): EventRegistration {
226
+ return { type: 'on', eventType, handler };
227
+ }
228
+
229
+ export function dispatch<T extends Command>(command: T): DispatchAction {
230
+ return { type: 'dispatch', command };
231
+ }
232
+
233
+ dispatch.parallel = <T extends Command>(commands: T[]): DispatchAction => ({
234
+ type: 'dispatch-parallel',
235
+ commands
236
+ });
237
+
238
+ dispatch.sequence = <T extends Command>(commands: T[]): DispatchAction => ({
239
+ type: 'dispatch-sequence',
240
+ commands
241
+ });
242
+
243
+ export function fold<S, E extends Event>(
244
+ eventType: string,
245
+ reducer: (state: S, event: E) => S
246
+ ): FoldRegistration {
247
+ return { type: 'fold', eventType, reducer };
248
+ }
249
+
250
+ Step 2: Config Loader with DSL Execution
251
+
252
+ // packages/cli/src/server/config-loader.ts
253
+ export async function loadMessageBusConfig(configPath: string) {
254
+ const jiti = createJiti(import.meta.url, { interopDefault: true });
255
+
256
+ // Import config with executable DSL functions
257
+ const configModule = await jiti.import(configPath);
258
+ const config = configModule.default || configModule;
259
+
260
+ // Extract registrations from executed DSL
261
+ const registrations = {
262
+ eventHandlers: [],
263
+ foldFunctions: [],
264
+ state: config.state || {}
265
+ };
266
+
267
+ // Parse messageBus.handlers if it exists
268
+ if (config.messageBus?.handlers) {
269
+ // Execute handlers to get registrations
270
+ const handlers = config.messageBus.handlers;
271
+ if (typeof handlers === 'function') {
272
+ handlers({ on, dispatch, fold });
273
+ }
274
+ }
275
+
276
+ return registrations;
277
+ }
278
+
279
+ Step 3: Message Bus Server
280
+
281
+ // packages/cli/src/server/message-bus-server.ts
282
+ import express from 'express';
283
+ import { Server as SocketIOServer } from 'socket.io';
284
+ import { createMessageBus } from '@auto-engineer/message-bus';
285
+
286
+ export class MessageBusServer {
287
+ private app: express.Application;
288
+ private io: SocketIOServer;
289
+ private messageBus: MessageBus;
290
+ private stateManager: StateManager;
291
+
292
+ async start(port = 5555, wsPort = 5556) {
293
+ this.app = express();
294
+ this.app.use(express.json());
295
+
296
+ // HTTP endpoint for commands
297
+ this.app.post('/command', async (req, res) => {
298
+ try {
299
+ const command = req.body;
300
+
301
+ // TODO: Add type validation based on command types
302
+ // validateCommand(command);
303
+
304
+ // Send to message bus (non-blocking)
305
+ this.messageBus.sendCommand(command)
306
+ .catch(err => console.error('Command failed:', err));
307
+
308
+ res.json({ status: 'ack', commandId: command.requestId });
309
+ } catch (error) {
310
+ res.status(400).json({ status: 'nack', error: error.message });
311
+ }
312
+ });
313
+
314
+ // WebSocket server
315
+ this.io = new SocketIOServer(wsPort, {
316
+ cors: { origin: '*' }
317
+ });
318
+
319
+ this.io.on('connection', (socket) => {
320
+ console.log('WebSocket client connected');
321
+ // WebSocket handling for future use
322
+ });
323
+
324
+ // TODO: Add event store integration here
325
+ // this.eventStore = new EventStore();
326
+ // this.messageBus.subscribeAll(event => this.eventStore.append(event));
327
+
328
+ await this.app.listen(port);
329
+ console.log(`Message bus server running on port ${port}`);
330
+ console.log(`WebSocket server running on port ${wsPort}`);
331
+ }
332
+ }
333
+
334
+ Step 4: Update CLI Default Behavior
335
+
336
+ // packages/cli/src/index.ts
337
+ if (process.argv.length === 2) {
338
+ // No arguments provided, start server
339
+ const server = new MessageBusServer();
340
+ await server.start();
341
+ } else {
342
+ // Parse and execute commands
343
+ program.parse(process.argv);
344
+ }
345
+
346
+ Step 5: Integration Test
347
+
348
+ // packages/cli/src/server/server.test.ts
349
+ describe('Message Bus Server Integration', () => {
350
+ it('should load config and handle commands', async () => {
351
+ // Create test config with DSL
352
+ const testConfig = `
353
+ export default {
354
+ messageBus: {
355
+ handlers: ({ on, dispatch }) => {
356
+ on('OrderCreated', (event) =>
357
+ dispatch({
358
+ type: 'SendEmail',
359
+ data: { orderId: event.data.orderId }
360
+ })
361
+ );
362
+ },
363
+ state: {
364
+ orders: []
365
+ },
366
+ folds: ({ fold }) => {
367
+ fold('OrderCreated', (state, event) => ({
368
+ ...state,
369
+ orders: [...state.orders, event.data]
370
+ }));
371
+ }
372
+ }
373
+ };
374
+ `;
375
+
376
+ // Start server with config
377
+ const server = new MessageBusServer();
378
+ await server.loadConfig(testConfig);
379
+ await server.start();
380
+
381
+ // Send command via HTTP
382
+ const response = await fetch('http://localhost:5555/command', {
383
+ method: 'POST',
384
+ headers: { 'Content-Type': 'application/json' },
385
+ body: JSON.stringify({
386
+ type: 'CreateOrder',
387
+ data: { customerId: '123', items: [] }
388
+ })
389
+ });
390
+
391
+ expect(response.status).toBe(200);
392
+ expect(await response.json()).toEqual({
393
+ status: 'ack',
394
+ commandId: expect.any(String)
395
+ });
396
+ });
397
+ });
398
+
399
+ File Structure Summary
400
+
401
+ New Files:
402
+ 1. packages/cli/src/dsl/index.ts - Executable DSL functions
403
+ 2. packages/cli/src/dsl/types.ts - DSL type definitions
404
+ 3. packages/cli/src/server/message-bus-server.ts - Express/Socket.io server
405
+ 4. packages/cli/src/server/config-loader.ts - Config parser with DSL execution
406
+ 5. packages/cli/src/server/state-manager.ts - Functional state management
407
+ 6. packages/cli/src/server/dsl-executor.ts - Execute on/dispatch registrations
408
+ 7. packages/cli/src/server/server.test.ts - Integration tests
409
+
410
+ Modified Files:
411
+ 1. packages/cli/src/index.ts - Default to server mode
412
+ 2. packages/message-bus/src/message-bus.ts - Remove DSL stubs
413
+ 3. packages/cli/package.json - Add express, socket.io dependencies
414
+
415
+ Dependencies to Add
416
+
417
+ {
418
+ "dependencies": {
419
+ "express": "^4.18.0",
420
+ "socket.io": "^4.7.5",
421
+ "cors": "^2.8.5"
422
+ },
423
+ "devDependencies": {
424
+ "@types/express": "^4.17.0",
425
+ "@types/cors": "^2.8.0"
426
+ }
427
+ }
428
+
429
+ Does this plan align with your vision? Should I proceed with the implementation?
430
+
431
+ ╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
432
+ │ > │
433
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
434
+ ⏵⏵ bypass permissions on (shift+tab to cycle) ⧉ In message-bus.ts
435
+
436
+
437
+
438
+
439
+
440
+ */
165
441
  //# sourceMappingURL=message-bus.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"message-bus.js","sourceRoot":"","sources":["../src/message-bus.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"message-bus.js","sourceRoot":"","sources":["../src/message-bus.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-engineer/message-bus",
3
- "version": "0.5.4",
3
+ "version": "0.6.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -21,6 +21,7 @@
21
21
  },
22
22
  "scripts": {
23
23
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
24
+ "dev": "tsc --watch",
24
25
  "clean": "rm -rf dist",
25
26
  "test": "vitest run",
26
27
  "test:watch": "vitest",
@@ -0,0 +1,57 @@
1
+ import type { Command, Event, CommandHandler } from './types';
2
+
3
+ // Helper types to extract command details
4
+ type CommandData<C> = C extends Command<string, infer D> ? D : never;
5
+ type CommandType<C> = C extends Command<infer T, Record<string, unknown>> ? T : never;
6
+
7
+ // Field definition for command parameters
8
+ export interface FieldDefinition<T> {
9
+ description: string;
10
+ required?: T extends undefined ? false : true;
11
+ flag?: boolean;
12
+ }
13
+
14
+ // Package metadata interface
15
+ export interface PackageMetadata {
16
+ name: string;
17
+ version?: string;
18
+ description?: string;
19
+ }
20
+
21
+ // The unified command handler definition
22
+ export interface UnifiedCommandHandler<C extends Command<string, Record<string, unknown>>> extends CommandHandler {
23
+ alias: string;
24
+ description: string;
25
+ category?: string;
26
+ package?: PackageMetadata; // Made optional since plugin loader will extract from package.json
27
+ fields: {
28
+ [K in keyof CommandData<C>]: FieldDefinition<CommandData<C>[K]>;
29
+ };
30
+ examples: string[];
31
+ // Override the handle type to match CommandHandler but with the specific command type
32
+ handle: (command: Command) => Promise<Event | Event[] | void>;
33
+ }
34
+
35
+ /**
36
+ * Define a command handler with full type safety and metadata
37
+ * @param config The command handler configuration
38
+ * @returns A command handler with manifest metadata
39
+ */
40
+ export function defineCommandHandler<C extends Command<string, Record<string, unknown>>>(config: {
41
+ name: CommandType<C>;
42
+ alias: string;
43
+ description: string;
44
+ category?: string;
45
+ package?: PackageMetadata; // Made optional since plugin loader will extract from package.json
46
+ fields: {
47
+ [K in keyof CommandData<C>]: FieldDefinition<CommandData<C>[K]>;
48
+ };
49
+ examples: string[];
50
+ handle: (command: C) => Promise<Event | Event[] | void>;
51
+ }): UnifiedCommandHandler<C> {
52
+ // Cast the handle function to the base Command type for interface compatibility
53
+ return {
54
+ ...config,
55
+ handle: config.handle as (command: Command) => Promise<Event | Event[] | void>,
56
+ } as UnifiedCommandHandler<C>;
57
+ }
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './types';
2
2
  export * from './message-bus';
3
+ export * from './define-command';
@@ -19,13 +19,7 @@ type MessageBusState = {
19
19
  allEventHandlers: EventHandler[]; // Handlers that receive ALL events
20
20
  };
21
21
 
22
- // Utility functions
23
- export function on<T>(_handler: (event: T) => void) {}
24
- export function dispatch<T>(_command: T) {}
25
- dispatch.parallel = <T>(_commands: T[]) => {};
26
- dispatch.sequence = <T>(_commands: T[]) => {};
27
- dispatch.custom = <T>(_commandFactory: () => T) => {};
28
- export function fold<T>(_reducer: (event: T) => string) {}
22
+ // DSL functions moved to CLI package
29
23
 
30
24
  export function createMessageBus() {
31
25
  debug('Creating new message bus instance');
@@ -196,6 +190,10 @@ export function createMessageBus() {
196
190
  ' Available methods: registerCommandHandler, sendCommand, publishEvent, subscribeToEvent, subscribeAll, registerEventHandler',
197
191
  );
198
192
 
193
+ function getCommandHandlers(): Record<string, CommandHandler> {
194
+ return { ...state.commandHandlers };
195
+ }
196
+
199
197
  return {
200
198
  registerCommandHandler,
201
199
  registerEventHandler,
@@ -203,7 +201,287 @@ export function createMessageBus() {
203
201
  publishEvent,
204
202
  subscribeToEvent,
205
203
  subscribeAll,
204
+ getCommandHandlers,
206
205
  };
207
206
  }
208
207
 
209
208
  export type MessageBus = ReturnType<typeof createMessageBus>;
209
+
210
+ /*
211
+ Architecture Overview
212
+
213
+ packages/cli/
214
+ ├── src/
215
+ │ ├── server/
216
+ │ │ ├── message-bus-server.ts # Express + Socket.io server
217
+ │ │ ├── config-loader.ts # Load and execute DSL from config
218
+ │ │ ├── state-manager.ts # Functional state management with fold
219
+ │ │ └── dsl-executor.ts # Execute on() and dispatch() functions
220
+ │ ├── dsl/
221
+ │ │ ├── index.ts # Executable DSL functions
222
+ │ │ └── types.ts # DSL type definitions
223
+ │ ├── commands/
224
+ │ │ └── serve.ts # Server command (default when no args)
225
+ │ └── index.ts # Modified to start server by default
226
+
227
+ packages/message-bus/
228
+ └── src/
229
+ └── message-bus.ts # Remove DSL stubs, keep core bus
230
+
231
+ Key Design Decisions
232
+
233
+ 1. Executable DSL Functions
234
+ - on() will register event handlers that execute dispatch calls
235
+ - dispatch() will send commands to the message bus
236
+ - fold() will be a pure function: (state, event) => newState
237
+ 2. Functional State Management
238
+ type FoldFunction<S, E> = (state: S, event: E) => S;
239
+
240
+ class StateManager {
241
+ private state: any = {};
242
+ private folds: Map<string, FoldFunction<any, any>>;
243
+
244
+ applyEvent(event: Event) {
245
+ const fold = this.folds.get(event.type);
246
+ if (fold) {
247
+ this.state = fold(this.state, event);
248
+ }
249
+ }
250
+ }
251
+ 3. Direct Message Bus Integration
252
+ - HTTP POST /command → Message Bus → Events → Handlers
253
+ - No CLI command execution, direct bus communication
254
+ - Add TODO comments for future type validation
255
+ 4. Event Flow
256
+ - Events only trigger message bus handlers
257
+ - Comment placeholder for future event store
258
+ - WebSocket broadcasts handled separately if needed
259
+ 5. CLI Default Behavior
260
+ - auto with no args → starts server
261
+ - auto <command> → executes command via message bus if server running
262
+ - auto --local <command> → force local execution
263
+
264
+ Implementation Steps
265
+
266
+ Step 1: Move and Implement DSL Functions
267
+
268
+ // packages/cli/src/dsl/index.ts
269
+ export function on<T extends Event>(
270
+ eventType: string,
271
+ handler: (event: T) => Command | Command[] | void
272
+ ): EventRegistration {
273
+ return { type: 'on', eventType, handler };
274
+ }
275
+
276
+ export function dispatch<T extends Command>(command: T): DispatchAction {
277
+ return { type: 'dispatch', command };
278
+ }
279
+
280
+ dispatch.parallel = <T extends Command>(commands: T[]): DispatchAction => ({
281
+ type: 'dispatch-parallel',
282
+ commands
283
+ });
284
+
285
+ dispatch.sequence = <T extends Command>(commands: T[]): DispatchAction => ({
286
+ type: 'dispatch-sequence',
287
+ commands
288
+ });
289
+
290
+ export function fold<S, E extends Event>(
291
+ eventType: string,
292
+ reducer: (state: S, event: E) => S
293
+ ): FoldRegistration {
294
+ return { type: 'fold', eventType, reducer };
295
+ }
296
+
297
+ Step 2: Config Loader with DSL Execution
298
+
299
+ // packages/cli/src/server/config-loader.ts
300
+ export async function loadMessageBusConfig(configPath: string) {
301
+ const jiti = createJiti(import.meta.url, { interopDefault: true });
302
+
303
+ // Import config with executable DSL functions
304
+ const configModule = await jiti.import(configPath);
305
+ const config = configModule.default || configModule;
306
+
307
+ // Extract registrations from executed DSL
308
+ const registrations = {
309
+ eventHandlers: [],
310
+ foldFunctions: [],
311
+ state: config.state || {}
312
+ };
313
+
314
+ // Parse messageBus.handlers if it exists
315
+ if (config.messageBus?.handlers) {
316
+ // Execute handlers to get registrations
317
+ const handlers = config.messageBus.handlers;
318
+ if (typeof handlers === 'function') {
319
+ handlers({ on, dispatch, fold });
320
+ }
321
+ }
322
+
323
+ return registrations;
324
+ }
325
+
326
+ Step 3: Message Bus Server
327
+
328
+ // packages/cli/src/server/message-bus-server.ts
329
+ import express from 'express';
330
+ import { Server as SocketIOServer } from 'socket.io';
331
+ import { createMessageBus } from '@auto-engineer/message-bus';
332
+
333
+ export class MessageBusServer {
334
+ private app: express.Application;
335
+ private io: SocketIOServer;
336
+ private messageBus: MessageBus;
337
+ private stateManager: StateManager;
338
+
339
+ async start(port = 5555, wsPort = 5556) {
340
+ this.app = express();
341
+ this.app.use(express.json());
342
+
343
+ // HTTP endpoint for commands
344
+ this.app.post('/command', async (req, res) => {
345
+ try {
346
+ const command = req.body;
347
+
348
+ // TODO: Add type validation based on command types
349
+ // validateCommand(command);
350
+
351
+ // Send to message bus (non-blocking)
352
+ this.messageBus.sendCommand(command)
353
+ .catch(err => console.error('Command failed:', err));
354
+
355
+ res.json({ status: 'ack', commandId: command.requestId });
356
+ } catch (error) {
357
+ res.status(400).json({ status: 'nack', error: error.message });
358
+ }
359
+ });
360
+
361
+ // WebSocket server
362
+ this.io = new SocketIOServer(wsPort, {
363
+ cors: { origin: '*' }
364
+ });
365
+
366
+ this.io.on('connection', (socket) => {
367
+ console.log('WebSocket client connected');
368
+ // WebSocket handling for future use
369
+ });
370
+
371
+ // TODO: Add event store integration here
372
+ // this.eventStore = new EventStore();
373
+ // this.messageBus.subscribeAll(event => this.eventStore.append(event));
374
+
375
+ await this.app.listen(port);
376
+ console.log(`Message bus server running on port ${port}`);
377
+ console.log(`WebSocket server running on port ${wsPort}`);
378
+ }
379
+ }
380
+
381
+ Step 4: Update CLI Default Behavior
382
+
383
+ // packages/cli/src/index.ts
384
+ if (process.argv.length === 2) {
385
+ // No arguments provided, start server
386
+ const server = new MessageBusServer();
387
+ await server.start();
388
+ } else {
389
+ // Parse and execute commands
390
+ program.parse(process.argv);
391
+ }
392
+
393
+ Step 5: Integration Test
394
+
395
+ // packages/cli/src/server/server.test.ts
396
+ describe('Message Bus Server Integration', () => {
397
+ it('should load config and handle commands', async () => {
398
+ // Create test config with DSL
399
+ const testConfig = `
400
+ export default {
401
+ messageBus: {
402
+ handlers: ({ on, dispatch }) => {
403
+ on('OrderCreated', (event) =>
404
+ dispatch({
405
+ type: 'SendEmail',
406
+ data: { orderId: event.data.orderId }
407
+ })
408
+ );
409
+ },
410
+ state: {
411
+ orders: []
412
+ },
413
+ folds: ({ fold }) => {
414
+ fold('OrderCreated', (state, event) => ({
415
+ ...state,
416
+ orders: [...state.orders, event.data]
417
+ }));
418
+ }
419
+ }
420
+ };
421
+ `;
422
+
423
+ // Start server with config
424
+ const server = new MessageBusServer();
425
+ await server.loadConfig(testConfig);
426
+ await server.start();
427
+
428
+ // Send command via HTTP
429
+ const response = await fetch('http://localhost:5555/command', {
430
+ method: 'POST',
431
+ headers: { 'Content-Type': 'application/json' },
432
+ body: JSON.stringify({
433
+ type: 'CreateOrder',
434
+ data: { customerId: '123', items: [] }
435
+ })
436
+ });
437
+
438
+ expect(response.status).toBe(200);
439
+ expect(await response.json()).toEqual({
440
+ status: 'ack',
441
+ commandId: expect.any(String)
442
+ });
443
+ });
444
+ });
445
+
446
+ File Structure Summary
447
+
448
+ New Files:
449
+ 1. packages/cli/src/dsl/index.ts - Executable DSL functions
450
+ 2. packages/cli/src/dsl/types.ts - DSL type definitions
451
+ 3. packages/cli/src/server/message-bus-server.ts - Express/Socket.io server
452
+ 4. packages/cli/src/server/config-loader.ts - Config parser with DSL execution
453
+ 5. packages/cli/src/server/state-manager.ts - Functional state management
454
+ 6. packages/cli/src/server/dsl-executor.ts - Execute on/dispatch registrations
455
+ 7. packages/cli/src/server/server.test.ts - Integration tests
456
+
457
+ Modified Files:
458
+ 1. packages/cli/src/index.ts - Default to server mode
459
+ 2. packages/message-bus/src/message-bus.ts - Remove DSL stubs
460
+ 3. packages/cli/package.json - Add express, socket.io dependencies
461
+
462
+ Dependencies to Add
463
+
464
+ {
465
+ "dependencies": {
466
+ "express": "^4.18.0",
467
+ "socket.io": "^4.7.5",
468
+ "cors": "^2.8.5"
469
+ },
470
+ "devDependencies": {
471
+ "@types/express": "^4.17.0",
472
+ "@types/cors": "^2.8.0"
473
+ }
474
+ }
475
+
476
+ Does this plan align with your vision? Should I proceed with the implementation?
477
+
478
+ ╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
479
+ │ > │
480
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
481
+ ⏵⏵ bypass permissions on (shift+tab to cycle) ⧉ In message-bus.ts
482
+
483
+
484
+
485
+
486
+
487
+ */
@@ -1 +1 @@
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":"18b08d9fe86026308b1bab91d2dff2c5be8d2bc5d83d541e0d991e8a6fb5cba2","signature":"991eba3cfd4b4e2d0950b1c4ab20539bcf50fa7bd12bbb2e071593cb13351fcd"},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"08ce28f8d5a290e11bb557a3331546745308a63aacbcd00afbba8b1d8b959342","signature":"f5ac12fa9bdc2bcfa131374edd30205904c65b350f0f59c9c6b6746d6572bb93"},"aab3bea1d88df1d041d5bd46d8ce21ff00b514b7b991f4dc658e7a3a2369b319",{"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"}
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","./src/define-command.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.12/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/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.12/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.12/node_modules/@types/node/index.d.ts"],"fileIdsList":[[48,57,100],[57,100],[57,97,100],[57,99,100],[100],[57,100,105,134],[57,100,101,106,112,120,131,142],[57,100,101,102,112,120],[52,53,54,57,100],[57,100,103,143],[57,100,104,105,113,121],[57,100,105,131,139],[57,100,106,108,112,120],[57,99,100,107],[57,100,108,109],[57,100,110,112],[57,99,100,112],[57,100,112,113,114,131,142],[57,100,112,113,114,127,131,134],[57,95,100],[57,100,108,112,115,120,131,142],[57,100,112,113,115,116,120,131,139,142],[57,100,115,117,131,139,142],[55,56,57,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,148],[57,100,112,118],[57,100,119,142,147],[57,100,108,112,120,131],[57,100,121],[57,100,122],[57,99,100,123],[57,97,98,99,100,101,102,103,104,105,106,107,108,109,110,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,148],[57,100,125],[57,100,126],[57,100,112,127,128],[57,100,127,129,143,145],[57,100,112,131,132,134],[57,100,133,134],[57,100,131,132],[57,100,134],[57,100,135],[57,97,100,131,136],[57,100,112,137,138],[57,100,137,138],[57,100,105,120,131,139],[57,100,140],[57,100,120,141],[57,100,115,126,142],[57,100,105,143],[57,100,131,144],[57,100,119,145],[57,100,146],[57,100,112,114,123,131,134,142,145,147],[57,100,131,148],[57,67,71,100,142],[57,67,100,131,142],[57,62,100],[57,64,67,100,139,142],[57,100,120,139],[57,100,149],[57,62,100,149],[57,64,67,100,120,142],[57,59,60,63,66,100,112,131,142],[57,67,74,100],[57,59,65,100],[57,67,88,89,100],[57,63,67,100,134,142,149],[57,88,100,149],[57,61,62,100,149],[57,67,100],[57,61,62,63,64,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,89,90,91,92,93,94,100],[57,67,82,100],[57,67,74,75,100],[57,65,67,75,76,100],[57,66,100],[57,59,62,67,100],[57,67,71,75,76,100],[57,71,100],[57,65,67,70,100,142],[57,59,64,67,74,100],[57,100,131],[57,62,67,88,100,147,149],[46,57,100],[46,47,50,57,100],[46,49,57,100]],"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":"18b08d9fe86026308b1bab91d2dff2c5be8d2bc5d83d541e0d991e8a6fb5cba2","signature":"991eba3cfd4b4e2d0950b1c4ab20539bcf50fa7bd12bbb2e071593cb13351fcd"},{"version":"fc7041c71d2ca12c01299211d342cb7a79a08cbd798924648fbc10ef7f94d491","signature":"f258e577f973ee8bef8de6bc0ba8407190fcb26d7c044d05e82e294726a88acf"},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"36127444fad7d024999e4b4367e8453f5c56ec38e5603532fb218035f1fb2750","signature":"50a88e95dfb065d604b54791570f0e3291c2483e4b2dc7b4a2b615d3ab261eca"},"93decfe202017530ca6a289f1582931aa797b721bed1d533e4961d97ec766d52",{"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":"685657a3ec619ef12aa7f754eee3b28598d3bf9749da89839a72a343fffef5ff","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,47,50,51],"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":[[49,1],[48,2],[97,3],[98,3],[99,4],[57,5],[100,6],[101,7],[102,8],[52,2],[55,9],[53,2],[54,2],[103,10],[104,11],[105,12],[106,13],[107,14],[108,15],[109,15],[111,2],[110,16],[112,17],[113,18],[114,19],[96,20],[56,2],[115,21],[116,22],[117,23],[149,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,30],[124,31],[125,32],[126,33],[127,34],[128,34],[129,35],[130,2],[131,36],[133,37],[132,38],[134,39],[135,40],[136,41],[137,42],[138,43],[139,44],[140,45],[141,46],[142,47],[143,48],[144,49],[145,50],[146,51],[147,52],[148,53],[58,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],[74,54],[84,55],[73,54],[94,56],[65,57],[64,58],[93,59],[87,60],[92,61],[67,62],[81,63],[66,64],[90,65],[62,66],[61,59],[91,67],[63,68],[68,69],[69,2],[72,69],[59,2],[95,70],[85,71],[76,72],[77,73],[79,74],[75,75],[78,76],[88,59],[70,77],[71,78],[80,79],[60,80],[83,71],[82,69],[86,2],[89,81],[47,82],[51,83],[50,84],[46,2]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.2"}
@@ -1,12 +0,0 @@
1
-
2
- 
3
- > @auto-engineer/message-bus@0.5.1 format /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
4
- > prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
5
-
6
- CHANGELOG.mdCHANGELOG.md 29ms (unchanged)
7
- DEBUG.mdDEBUG.md 3ms (unchanged)
8
- package.jsonpackage.json 19ms (unchanged)
9
- src/index.tssrc/index.ts 20ms (unchanged)
10
- src/message-bus.tssrc/message-bus.ts 34ms (unchanged)
11
- src/types.tssrc/types.ts 5ms (unchanged)
12
- tsconfig.jsontsconfig.json 1ms (unchanged)
@@ -1,5 +0,0 @@
1
-
2
- 
3
- > @auto-engineer/message-bus@0.5.1 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/message-bus
4
- > eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
5
-