@auto-engineer/message-bus 0.6.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +4 -4
- package/.turbo/turbo-type-check.log +1 -1
- package/README.md +244 -0
- package/dist/message-bus.d.ts.map +1 -1
- package/dist/message-bus.js +5 -0
- package/dist/message-bus.js.map +1 -1
- package/package.json +4 -4
- package/src/message-bus.ts +6 -0
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/message-bus@0.
|
|
2
|
+
> @auto-engineer/message-bus@0.8.1 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/
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/message-bus@0.
|
|
3
|
-
> vitest run
|
|
2
|
+
> @auto-engineer/message-bus@0.8.1 test /home/runner/work/auto-engineer/auto-engineer/packages/message-bus
|
|
3
|
+
> vitest run --reporter=dot
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
[7m[1m[36m RUN [39m[22m[27m [36mv1.6.1[39m [90m/home/runner/work/auto-engineer/auto-engineer/packages/message-bus[39m
|
|
7
7
|
|
|
8
|
+
No test files found, exiting with code 0
|
|
9
|
+
|
|
8
10
|
[2minclude: [22m[33m**/*.specs.{js,ts}[39m
|
|
9
11
|
[2mexclude: [22m[33m**/.tmp/**[2m, [22m**/node_modules/**[2m, [22m**/dist/**[39m
|
|
10
12
|
[2mwatch exclude: [22m[33m**/node_modules/**[2m, [22m**/dist/**[39m
|
|
11
|
-
No test files found, exiting with code 0
|
|
12
|
-
|
package/README.md
ADDED
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
# @auto-engineer/message-bus
|
|
2
|
+
|
|
3
|
+
A message bus plugin for the Auto Engineer CLI that implements a Command Query Responsibility Segregation (CQRS) pattern for handling commands and events in an event-driven architecture. It supports command handling, event publishing, and subscription with robust debugging capabilities.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install the package as a dependency in your Auto Engineer project:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @auto-engineer/message-bus
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Configuration
|
|
14
|
+
|
|
15
|
+
Add the plugin to your `auto.config.ts`:
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
export default {
|
|
19
|
+
plugins: [
|
|
20
|
+
'@auto-engineer/message-bus',
|
|
21
|
+
// ... other plugins
|
|
22
|
+
],
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## What does this package do?
|
|
27
|
+
|
|
28
|
+
The `@auto-engineer/message-bus` plugin provides a lightweight, type-safe message bus for managing commands and events in the Auto Engineer ecosystem. It enables plugins to communicate through a CQRS pattern, where commands trigger actions and events notify subscribers of changes. It includes detailed debugging support and integrates seamlessly with other Auto Engineer plugins.
|
|
29
|
+
|
|
30
|
+
## Key Features
|
|
31
|
+
|
|
32
|
+
### CQRS Pattern
|
|
33
|
+
|
|
34
|
+
- **Commands**: Trigger actions with type-safe data payloads
|
|
35
|
+
- **Events**: Notify subscribers of state changes or actions
|
|
36
|
+
- **Handlers**: Define command and event handlers with type safety
|
|
37
|
+
- **Subscriptions**: Subscribe to specific events or all events
|
|
38
|
+
|
|
39
|
+
### Command Handling
|
|
40
|
+
|
|
41
|
+
- Register command handlers with `registerCommandHandler`
|
|
42
|
+
- Execute commands with `sendCommand`
|
|
43
|
+
- Supports async command handling with optional event emission
|
|
44
|
+
- Ensures one handler per command type
|
|
45
|
+
|
|
46
|
+
### Event Publishing and Subscription
|
|
47
|
+
|
|
48
|
+
- Publish events with `publishEvent`
|
|
49
|
+
- Subscribe to specific events with `subscribeToEvent`
|
|
50
|
+
- Subscribe to all events with `subscribeAll`
|
|
51
|
+
- Unsubscribe from events using subscription objects
|
|
52
|
+
|
|
53
|
+
### Debugging Support
|
|
54
|
+
|
|
55
|
+
- Uses the `debug` library for detailed logging
|
|
56
|
+
- Namespaces: `message-bus`, `message-bus:command`, `message-bus:event`, `message-bus:handler`
|
|
57
|
+
- Logs command execution, event publishing, and handler registration
|
|
58
|
+
- Configurable via `DEBUG` environment variable
|
|
59
|
+
|
|
60
|
+
## Usage
|
|
61
|
+
|
|
62
|
+
### Creating a Message Bus
|
|
63
|
+
|
|
64
|
+
```typescript
|
|
65
|
+
import { createMessageBus } from '@auto-engineer/message-bus';
|
|
66
|
+
|
|
67
|
+
const bus = createMessageBus();
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Registering a Command Handler
|
|
71
|
+
|
|
72
|
+
```typescript
|
|
73
|
+
import { defineCommandHandler } from '@auto-engineer/message-bus';
|
|
74
|
+
|
|
75
|
+
const createUserHandler = defineCommandHandler({
|
|
76
|
+
name: 'CreateUser',
|
|
77
|
+
alias: 'create-user',
|
|
78
|
+
description: 'Creates a new user',
|
|
79
|
+
category: 'User Management',
|
|
80
|
+
fields: {
|
|
81
|
+
name: { description: 'User name', required: true },
|
|
82
|
+
email: { description: 'User email', required: true },
|
|
83
|
+
},
|
|
84
|
+
examples: ['create-user --name John --email john@example.com'],
|
|
85
|
+
handle: async (command) => {
|
|
86
|
+
console.log(`Creating user: ${command.data.name}`);
|
|
87
|
+
return {
|
|
88
|
+
type: 'UserCreated',
|
|
89
|
+
data: { userId: '123', name: command.data.name, email: command.data.email },
|
|
90
|
+
timestamp: new Date(),
|
|
91
|
+
requestId: command.requestId,
|
|
92
|
+
correlationId: command.correlationId,
|
|
93
|
+
};
|
|
94
|
+
},
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
bus.registerCommandHandler(createUserHandler);
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Sending a Command
|
|
101
|
+
|
|
102
|
+
```typescript
|
|
103
|
+
await bus.sendCommand({
|
|
104
|
+
type: 'CreateUser',
|
|
105
|
+
data: { name: 'John', email: 'john@example.com' },
|
|
106
|
+
requestId: 'req-123',
|
|
107
|
+
correlationId: 'corr-456',
|
|
108
|
+
});
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### Subscribing to Events
|
|
112
|
+
|
|
113
|
+
```typescript
|
|
114
|
+
const subscription = bus.subscribeToEvent('UserCreated', {
|
|
115
|
+
name: 'UserCreatedHandler',
|
|
116
|
+
handle: async (event) => {
|
|
117
|
+
console.log(`User created: ${event.data.userId}`);
|
|
118
|
+
},
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
// Unsubscribe when needed
|
|
122
|
+
subscription.unsubscribe();
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Subscribing to All Events
|
|
126
|
+
|
|
127
|
+
```typescript
|
|
128
|
+
const subscription = bus.subscribeAll({
|
|
129
|
+
name: 'AllEventsHandler',
|
|
130
|
+
handle: async (event) => {
|
|
131
|
+
console.log(`Event received: ${event.type}`);
|
|
132
|
+
},
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
// Unsubscribe when needed
|
|
136
|
+
subscription.unsubscribe();
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Debugging
|
|
140
|
+
|
|
141
|
+
Enable debug logging with the `DEBUG` environment variable:
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
DEBUG=message-bus:* npm run dev
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Example output:
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
message-bus Creating new message bus instance
|
|
151
|
+
message-bus Message bus state initialized
|
|
152
|
+
message-bus:handler Registering command handler: CreateUser
|
|
153
|
+
message-bus:handler Handler registered successfully, total handlers: 1
|
|
154
|
+
message-bus:command Sending command: CreateUser
|
|
155
|
+
message-bus:command Request ID: req-123
|
|
156
|
+
message-bus:command Correlation ID: corr-456
|
|
157
|
+
message-bus:command Data keys: [ 'name', 'email' ]
|
|
158
|
+
message-bus:command Handler found for command: CreateUser
|
|
159
|
+
message-bus:command Executing handler for: CreateUser
|
|
160
|
+
message-bus:event Publishing event: UserCreated
|
|
161
|
+
message-bus:event Request ID: req-123
|
|
162
|
+
message-bus:event Correlation ID: corr-456
|
|
163
|
+
message-bus:event Timestamp: 2025-09-04T14:19:00.000Z
|
|
164
|
+
message-bus:event Data keys: [ 'userId', 'name', 'email' ]
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
See [DEBUG.md](./DEBUG.md) for detailed debugging instructions.
|
|
168
|
+
|
|
169
|
+
## Project Structure
|
|
170
|
+
|
|
171
|
+
```
|
|
172
|
+
message-bus/
|
|
173
|
+
├── src/
|
|
174
|
+
│ ├── index.ts # Exports and main entry point
|
|
175
|
+
│ ├── message-bus.ts # Core message bus implementation
|
|
176
|
+
│ ├── define-command.ts # Command handler definition utility
|
|
177
|
+
│ ├── types.ts # Type definitions for CQRS
|
|
178
|
+
├── DEBUG.md # Debugging instructions
|
|
179
|
+
├── CHANGELOG.md # Version history
|
|
180
|
+
├── package.json
|
|
181
|
+
├── tsconfig.json
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
## Quality Assurance
|
|
185
|
+
|
|
186
|
+
- **Type Safety**: Full TypeScript support with strict type checking
|
|
187
|
+
- **Testing**: Unit tests using Vitest
|
|
188
|
+
- **Linting**: ESLint and Prettier for code quality
|
|
189
|
+
- **Error Handling**: Robust error handling for command and event processing
|
|
190
|
+
- **Debugging**: Detailed logging with `debug` library
|
|
191
|
+
|
|
192
|
+
## Integration with Auto Engineer Ecosystem
|
|
193
|
+
|
|
194
|
+
Works with other Auto Engineer plugins:
|
|
195
|
+
|
|
196
|
+
- **@auto-engineer/file-syncer**: Emits file change events
|
|
197
|
+
- **@auto-engineer/flow**: Publishes flow-related events
|
|
198
|
+
- **@auto-engineer/server-generator-apollo-emmett**: Triggers commands for server generation
|
|
199
|
+
- **@auto-engineer/frontend-generator-react-graphql**: Triggers commands for frontend generation
|
|
200
|
+
- **@auto-engineer/server-implementer**: Handles server implementation commands
|
|
201
|
+
- **@auto-engineer/frontend-implementer**: Handles frontend implementation commands
|
|
202
|
+
|
|
203
|
+
## Commands
|
|
204
|
+
|
|
205
|
+
This plugin integrates with the Auto Engineer CLI but does not expose direct CLI commands. It is used internally by other plugins for event-driven communication.
|
|
206
|
+
|
|
207
|
+
## Getting Started
|
|
208
|
+
|
|
209
|
+
1. Install the plugin (see Installation above)
|
|
210
|
+
2. Add it to your `auto.config.ts`
|
|
211
|
+
3. Use the message bus in your application or other plugins
|
|
212
|
+
|
|
213
|
+
Example:
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
# Install the plugin
|
|
217
|
+
npm install @auto-engineer/message-bus
|
|
218
|
+
|
|
219
|
+
# Run your Auto Engineer project
|
|
220
|
+
npm run start
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
## Advanced Features
|
|
224
|
+
|
|
225
|
+
### Type-Safe Command Handlers
|
|
226
|
+
|
|
227
|
+
- Use `defineCommandHandler` to create handlers with metadata (alias, description, fields)
|
|
228
|
+
- Supports command validation through field definitions
|
|
229
|
+
- Generates events or void responses
|
|
230
|
+
|
|
231
|
+
### Event-Driven Architecture
|
|
232
|
+
|
|
233
|
+
- Asynchronous event handling with `Promise.allSettled` for robust execution
|
|
234
|
+
- Supports multiple handlers per event type
|
|
235
|
+
- All-event subscription for global event monitoring
|
|
236
|
+
|
|
237
|
+
### Correlation and Request IDs
|
|
238
|
+
|
|
239
|
+
- Tracks `requestId` and `correlationId` for command/event traceability
|
|
240
|
+
- Useful for debugging and logging workflows
|
|
241
|
+
|
|
242
|
+
## Changelog
|
|
243
|
+
|
|
244
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and updates.
|
|
@@ -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;AAuB1F,wBAAgB,gBAAgB;6BASE,QAAQ,SAAS,OAAO,kBAAkB,cAAc,CAAC,QAAQ,CAAC,KAAG,IAAI;
|
|
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;2BA0J3E,MAAM,SAAS,KAAK,gBAAgB,YAAY,CAAC,MAAM,CAAC,KAAG,iBAAiB;kBA7I/E,QAAQ,SAAS,OAAO,WAAW,QAAQ,KAAG,OAAO,CAAC,IAAI,CAAC;mBAqE1D,MAAM,SAAS,KAAK,SAAS,MAAM,KAAG,OAAO,CAAC,IAAI,CAAC;uBA9BrD,MAAM,SAAS,KAAK,aAAa,MAAM,WAAW,YAAY,CAAC,MAAM,CAAC,KAAG,iBAAiB;mBAoF9F,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"}
|
package/dist/message-bus.js
CHANGED
|
@@ -57,6 +57,7 @@ export function createMessageBus() {
|
|
|
57
57
|
}
|
|
58
58
|
catch (error) {
|
|
59
59
|
debugCommand('ERROR: Handler failed for command %s: %O', command.type, error);
|
|
60
|
+
debugCommand('ERROR: Failed command data: %O', command.data);
|
|
60
61
|
throw new Error(`Command handling failed: ${error instanceof Error ? error.message : 'Unknown error occurred'}`);
|
|
61
62
|
}
|
|
62
63
|
}
|
|
@@ -92,6 +93,10 @@ export function createMessageBus() {
|
|
|
92
93
|
debugEvent(' Correlation ID: %s', event.correlationId ?? 'none');
|
|
93
94
|
debugEvent(' Timestamp: %s', event.timestamp || 'none');
|
|
94
95
|
debugEvent(' Data keys: %o', Object.keys(event.data));
|
|
96
|
+
// Log full event data for error events or when debugging is enabled
|
|
97
|
+
if (event.type.includes('Failed') || event.type.includes('Error')) {
|
|
98
|
+
debugEvent(' Event data (error event): %O', event.data);
|
|
99
|
+
}
|
|
95
100
|
// Get both specific handlers and all-event handlers
|
|
96
101
|
const specificHandlers = state.eventHandlers[event.type] ?? [];
|
|
97
102
|
const allHandlers = state.allEventHandlers;
|
package/dist/message-bus.js.map
CHANGED
|
@@ -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,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auto-engineer/message-bus",
|
|
3
|
-
"version": "0.6.0",
|
|
4
3
|
"publishConfig": {
|
|
5
4
|
"access": "public"
|
|
6
5
|
},
|
|
@@ -19,17 +18,18 @@
|
|
|
19
18
|
"typescript": "^5.0.0",
|
|
20
19
|
"vitest": "^1.0.0"
|
|
21
20
|
},
|
|
21
|
+
"version": "0.8.1",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
|
|
24
24
|
"dev": "tsc --watch",
|
|
25
25
|
"clean": "rm -rf dist",
|
|
26
|
-
"test": "vitest run",
|
|
26
|
+
"test": "vitest run --reporter=dot",
|
|
27
27
|
"test:watch": "vitest",
|
|
28
28
|
"lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts",
|
|
29
29
|
"lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.ts",
|
|
30
30
|
"type-check": "tsc --noEmit",
|
|
31
|
-
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
|
|
32
|
-
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
|
|
31
|
+
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
|
|
32
|
+
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
|
|
33
33
|
"link:dev": "pnpm build && pnpm link --global",
|
|
34
34
|
"unlink:dev": "pnpm unlink --global"
|
|
35
35
|
}
|
package/src/message-bus.ts
CHANGED
|
@@ -77,6 +77,7 @@ export function createMessageBus() {
|
|
|
77
77
|
}
|
|
78
78
|
} catch (error) {
|
|
79
79
|
debugCommand('ERROR: Handler failed for command %s: %O', command.type, error);
|
|
80
|
+
debugCommand('ERROR: Failed command data: %O', command.data);
|
|
80
81
|
throw new Error(`Command handling failed: ${error instanceof Error ? error.message : 'Unknown error occurred'}`);
|
|
81
82
|
}
|
|
82
83
|
}
|
|
@@ -118,6 +119,11 @@ export function createMessageBus() {
|
|
|
118
119
|
debugEvent(' Timestamp: %s', event.timestamp || 'none');
|
|
119
120
|
debugEvent(' Data keys: %o', Object.keys(event.data));
|
|
120
121
|
|
|
122
|
+
// Log full event data for error events or when debugging is enabled
|
|
123
|
+
if (event.type.includes('Failed') || event.type.includes('Error')) {
|
|
124
|
+
debugEvent(' Event data (error event): %O', event.data);
|
|
125
|
+
}
|
|
126
|
+
|
|
121
127
|
// Get both specific handlers and all-event handlers
|
|
122
128
|
const specificHandlers = state.eventHandlers[event.type] ?? [];
|
|
123
129
|
const allHandlers = state.allEventHandlers;
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -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","./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
|
+
{"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.13/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/web-globals/events.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.13/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.13/node_modules/@types/node/index.d.ts"],"fileIdsList":[[48,57,104],[57,104],[57,101,104],[57,103,104],[104],[57,104,109,137],[57,104,105,110,115,123,134,145],[57,104,105,106,115,123],[52,53,54,57,104],[57,104,107,146],[57,104,108,109,116,124],[57,104,109,134,142],[57,104,110,112,115,123],[57,103,104,111],[57,104,112,113],[57,104,114,115],[57,103,104,115],[57,104,115,116,117,134,145],[57,104,115,116,117,130,134,137],[57,104,112,115,118,123,134,145],[57,104,115,116,118,119,123,134,142,145],[57,104,118,120,134,142,145],[55,56,57,58,59,60,61,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,149,150,151],[57,104,115,121],[57,104,122,145,150],[57,104,112,115,123,134],[57,104,124],[57,104,125],[57,103,104,126],[57,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,149,150,151],[57,104,128],[57,104,129],[57,104,115,130,131],[57,104,130,132,146,148],[57,104,115,134,135,137],[57,104,136,137],[57,104,134,135],[57,104,137],[57,104,138],[57,101,104,134,139],[57,104,115,140,141],[57,104,140,141],[57,104,109,123,134,142],[57,104,143],[57,104,123,144],[57,104,118,129,145],[57,104,109,146],[57,104,134,147],[57,104,122,148],[57,104,149],[57,99,104],[57,104,115,117,126,134,137,145,148,150],[57,104,134,151],[57,71,75,104,145],[57,71,104,134,145],[57,66,104],[57,68,71,104,142,145],[57,104,123,142],[57,104,152],[57,66,104,152],[57,68,71,104,123,145],[57,63,64,67,70,104,115,134,145],[57,71,78,104],[57,63,69,104],[57,71,92,93,104],[57,67,71,104,137,145,152],[57,92,104,152],[57,65,66,104,152],[57,71,104],[57,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,96,97,98,104],[57,71,86,104],[57,71,78,79,104],[57,69,71,79,80,104],[57,70,104],[57,63,66,71,104],[57,71,75,79,80,104],[57,75,104],[57,69,71,74,104,145],[57,63,68,71,78,104],[57,104,134],[57,66,71,92,104,150,152],[46,57,104],[46,47,50,57,104],[46,49,57,104]],"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":"f85ecdba140f6a9db49fd91a601263adf6a71be58100c3a146fd87ddc211d3a8","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":"2e2e0a2dfc6bfabffacba3cc3395aa8197f30893942a2625bd9923ea34a27a3c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"456fa0c0ab68731564917642b977c71c3b7682240685b118652fb9253c9a6429","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":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","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":"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":"15f884b850ca9b6e07697a0e6b686927b8025edd472b76f2a3149216b18a24b5","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],[101,3],[102,3],[103,4],[57,5],[104,6],[105,7],[106,8],[52,2],[55,9],[53,2],[54,2],[107,10],[108,11],[109,12],[110,13],[111,14],[112,15],[113,15],[114,16],[115,17],[116,18],[117,19],[58,2],[56,2],[118,20],[119,21],[120,22],[152,23],[121,24],[122,25],[123,26],[124,27],[125,28],[126,29],[127,30],[128,31],[129,32],[130,33],[131,33],[132,34],[133,2],[134,35],[136,36],[135,37],[137,38],[138,39],[139,40],[140,41],[141,42],[142,43],[143,44],[144,45],[145,46],[146,47],[147,48],[148,49],[149,50],[59,2],[60,2],[61,2],[100,51],[150,52],[151,53],[62,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],[78,54],[88,55],[77,54],[98,56],[69,57],[68,58],[97,59],[91,60],[96,61],[71,62],[85,63],[70,64],[94,65],[66,66],[65,59],[95,67],[67,68],[72,69],[73,2],[76,69],[63,2],[99,70],[89,71],[80,72],[81,73],[83,74],[79,75],[82,76],[92,59],[74,77],[75,78],[84,79],[64,80],[87,71],[86,69],[90,2],[93,81],[47,82],[51,83],[50,84],[46,2]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.2"}
|