ai-agent-context 0.1.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.
- package/LICENSE +21 -0
- package/README.md +279 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/bin.d.ts +3 -0
- package/dist/bin.d.ts.map +1 -0
- package/dist/bin.js +11 -0
- package/dist/bin.js.map +1 -0
- package/dist/cli.d.ts +50 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +263 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/clean.d.ts +3 -0
- package/dist/commands/clean.d.ts.map +1 -0
- package/dist/commands/clean.js +53 -0
- package/dist/commands/clean.js.map +1 -0
- package/dist/commands/context.d.ts +4 -0
- package/dist/commands/context.d.ts.map +1 -0
- package/dist/commands/context.js +15 -0
- package/dist/commands/context.js.map +1 -0
- package/dist/commands/diff.d.ts +4 -0
- package/dist/commands/diff.d.ts.map +1 -0
- package/dist/commands/diff.js +24 -0
- package/dist/commands/diff.js.map +1 -0
- package/dist/commands/explain.d.ts +4 -0
- package/dist/commands/explain.d.ts.map +1 -0
- package/dist/commands/explain.js +43 -0
- package/dist/commands/explain.js.map +1 -0
- package/dist/commands/init.d.ts +4 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +28 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/scan.d.ts +4 -0
- package/dist/commands/scan.d.ts.map +1 -0
- package/dist/commands/scan.js +35 -0
- package/dist/commands/scan.js.map +1 -0
- package/dist/commands/search.d.ts +9 -0
- package/dist/commands/search.d.ts.map +1 -0
- package/dist/commands/search.js +34 -0
- package/dist/commands/search.js.map +1 -0
- package/dist/commands/status.d.ts +4 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +15 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/ui/console.d.ts +52 -0
- package/dist/ui/console.d.ts.map +1 -0
- package/dist/ui/console.js +114 -0
- package/dist/ui/console.js.map +1 -0
- package/dist/ui/format.d.ts +16 -0
- package/dist/ui/format.d.ts.map +1 -0
- package/dist/ui/format.js +290 -0
- package/dist/ui/format.js.map +1 -0
- package/package.json +57 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ai-agent-context contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
# ai-agent-context CLI
|
|
2
|
+
|
|
3
|
+
Command-line interface for `ai-agent-context`.
|
|
4
|
+
|
|
5
|
+
This package provides the user-facing CLI commands for scanning repositories and querying context.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g ai-agent-context
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or use without installation:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx agent-context <command>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
### `init`
|
|
22
|
+
|
|
23
|
+
Initialize context for a repository.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
agent-context init
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Creates:
|
|
30
|
+
- `.agent/` directory
|
|
31
|
+
- `.agent/config.json` - Configuration file
|
|
32
|
+
- `.agent/.gitignore` - Git ignore for local cache
|
|
33
|
+
|
|
34
|
+
Options:
|
|
35
|
+
- `--force` - Overwrite existing configuration
|
|
36
|
+
|
|
37
|
+
### `scan`
|
|
38
|
+
|
|
39
|
+
Scan the repository and generate context.
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
agent-context scan
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Options:
|
|
46
|
+
- `--force` - Ignore cache and re-scan all files
|
|
47
|
+
- `--dry-run` - Scan without writing to disk
|
|
48
|
+
- `--quiet` - Minimal output
|
|
49
|
+
- `--json` - JSON output format
|
|
50
|
+
|
|
51
|
+
### `explain`
|
|
52
|
+
|
|
53
|
+
Explain a module or file.
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
agent-context explain <path>
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Options:
|
|
60
|
+
- `--json` - JSON output format
|
|
61
|
+
|
|
62
|
+
Example:
|
|
63
|
+
```bash
|
|
64
|
+
agent-context explain src/payments
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### `diff`
|
|
68
|
+
|
|
69
|
+
Show context changes since last scan.
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
agent-context diff
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Options:
|
|
76
|
+
- `--json` - JSON output format
|
|
77
|
+
|
|
78
|
+
### `status`
|
|
79
|
+
|
|
80
|
+
Show repository context status.
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
agent-context status
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### `clean`
|
|
87
|
+
|
|
88
|
+
Remove generated context.
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
agent-context clean
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Options:
|
|
95
|
+
- `--force` - Skip confirmation
|
|
96
|
+
|
|
97
|
+
### `search`
|
|
98
|
+
|
|
99
|
+
Search repository context.
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
agent-context search <query>
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Options:
|
|
106
|
+
- `--json` - JSON output format
|
|
107
|
+
- `--limit <n>` - Limit results
|
|
108
|
+
|
|
109
|
+
## Examples
|
|
110
|
+
|
|
111
|
+
### Initial Setup
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
# Initialize context
|
|
115
|
+
agent-context init
|
|
116
|
+
|
|
117
|
+
# Scan repository
|
|
118
|
+
agent-context scan
|
|
119
|
+
|
|
120
|
+
# Check status
|
|
121
|
+
agent-context status
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### Explaining Modules
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
# Explain a module
|
|
128
|
+
agent-context explain src/payments
|
|
129
|
+
|
|
130
|
+
# Explain a specific file
|
|
131
|
+
agent-context explain src/payments/payment-service.ts
|
|
132
|
+
|
|
133
|
+
# Get JSON output
|
|
134
|
+
agent-context explain src/payments --json
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Checking Changes
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Scan after making changes
|
|
141
|
+
agent-context scan
|
|
142
|
+
|
|
143
|
+
# Review changes
|
|
144
|
+
agent-context diff
|
|
145
|
+
|
|
146
|
+
# See what changed in architecture
|
|
147
|
+
agent-context diff --json | jq '.architecture'
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### CI/CD Integration
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
# Quiet mode for CI
|
|
154
|
+
agent-context scan --quiet
|
|
155
|
+
|
|
156
|
+
# JSON output for automation
|
|
157
|
+
agent-context scan --json > context-scan.json
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
## Output Formats
|
|
161
|
+
|
|
162
|
+
### Human-Readable
|
|
163
|
+
|
|
164
|
+
The default output is human-readable with colored sections:
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
Payments
|
|
168
|
+
|
|
169
|
+
Path:
|
|
170
|
+
src/payments
|
|
171
|
+
|
|
172
|
+
Entry points:
|
|
173
|
+
src/payments/index.ts
|
|
174
|
+
|
|
175
|
+
Responsibilities:
|
|
176
|
+
payment processing
|
|
177
|
+
refunds
|
|
178
|
+
Stripe integration
|
|
179
|
+
|
|
180
|
+
Depends on:
|
|
181
|
+
UserRepository
|
|
182
|
+
EventBus
|
|
183
|
+
StripeAdapter
|
|
184
|
+
|
|
185
|
+
Used by:
|
|
186
|
+
CheckoutService
|
|
187
|
+
SubscriptionService
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
### JSON
|
|
191
|
+
|
|
192
|
+
Use `--json` for machine-readable output:
|
|
193
|
+
|
|
194
|
+
```bash
|
|
195
|
+
agent-context explain src/payments --json
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
Returns structured JSON suitable for parsing by tools and AI agents.
|
|
199
|
+
|
|
200
|
+
## Configuration
|
|
201
|
+
|
|
202
|
+
The CLI reads configuration from `.agent/config.json`:
|
|
203
|
+
|
|
204
|
+
```json
|
|
205
|
+
{
|
|
206
|
+
"version": 1,
|
|
207
|
+
"root": ".",
|
|
208
|
+
"include": ["src/**", "packages/**"],
|
|
209
|
+
"exclude": ["node_modules/**", "dist/**", "build/**", ".git/**"],
|
|
210
|
+
"languages": ["typescript", "javascript"],
|
|
211
|
+
"features": {
|
|
212
|
+
"architecture": true,
|
|
213
|
+
"dependencies": true,
|
|
214
|
+
"conventions": true,
|
|
215
|
+
"decisions": true,
|
|
216
|
+
"git": true
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
CLI flags override configuration:
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
agent-context scan --include "custom/**" --exclude "test/**"
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
## Exit Codes
|
|
228
|
+
|
|
229
|
+
- `0` - Success
|
|
230
|
+
- `1` - Error
|
|
231
|
+
- `2` - Configuration error
|
|
232
|
+
|
|
233
|
+
## Tips
|
|
234
|
+
|
|
235
|
+
### Incremental Scanning
|
|
236
|
+
|
|
237
|
+
The CLI uses incremental scanning by default. Only changed files are re-analyzed.
|
|
238
|
+
|
|
239
|
+
```bash
|
|
240
|
+
# First scan (full)
|
|
241
|
+
agent-context scan
|
|
242
|
+
|
|
243
|
+
# Subsequent scans (incremental)
|
|
244
|
+
agent-context scan
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
### CI/CD
|
|
248
|
+
|
|
249
|
+
For CI/CD, use quiet mode:
|
|
250
|
+
|
|
251
|
+
```bash
|
|
252
|
+
agent-context scan --quiet
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
### Large Repositories
|
|
256
|
+
|
|
257
|
+
For large repositories, consider:
|
|
258
|
+
|
|
259
|
+
1. Excluding unnecessary directories
|
|
260
|
+
2. Limiting the languages analyzed
|
|
261
|
+
3. Using `--force` only when needed
|
|
262
|
+
|
|
263
|
+
## Troubleshooting
|
|
264
|
+
|
|
265
|
+
### "No usable .agent/ context found"
|
|
266
|
+
|
|
267
|
+
Run `agent-context init` followed by `agent-context scan`.
|
|
268
|
+
|
|
269
|
+
### "Git signals: unavailable"
|
|
270
|
+
|
|
271
|
+
Ensure the repository is a Git repository.
|
|
272
|
+
|
|
273
|
+
### "Failed to parse file"
|
|
274
|
+
|
|
275
|
+
The scanner continues even if some files fail to parse. Use `--verbose` for details.
|
|
276
|
+
|
|
277
|
+
## License
|
|
278
|
+
|
|
279
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../core/dist/model/types.d.ts","../../core/dist/adapters/language/types.d.ts","../../core/dist/adapters/language/registry.d.ts","../../core/dist/config/types.d.ts","../../core/dist/logging/diagnostics.d.ts","../../core/dist/adapters/git/git-adapter.d.ts","../../core/dist/core/serialization/types.d.ts","../../core/dist/core/serialization/reader.d.ts","../../core/dist/core/scanner/types.d.ts","../../core/dist/core/scanner/cache.d.ts","../../core/dist/core/context/types.d.ts","../../core/dist/core/search/types.d.ts","../../core/dist/core/graph/resolver.d.ts","../../core/dist/util/glob.d.ts","../../core/dist/adapters/filesystem/fs-adapter.d.ts","../../core/dist/core/scanner/scanner.d.ts","../../core/dist/core/graph/knowledge-graph.d.ts","../../core/dist/core/search/documents.d.ts","../../core/dist/core/search/service.d.ts","../../core/dist/agent-context.d.ts","../../core/dist/core/serialization/writer.d.ts","../../core/dist/pipeline/scan-pipeline.d.ts","../../core/dist/model/schema.d.ts","../../core/dist/model/canonical.d.ts","../../core/dist/errors.d.ts","../../core/dist/config/defaults.d.ts","../../core/dist/config/load.d.ts","../../core/dist/config/validate.d.ts","../../core/dist/adapters/filesystem/sensitive.d.ts","../../core/dist/adapters/language/ts-js/adapter.d.ts","../../core/dist/adapters/language/ts-js/lexer.d.ts","../../core/dist/adapters/language/ts-js/extractor.d.ts","../../core/dist/adapters/language/json/adapter.d.ts","../../core/dist/adapters/language/markdown/adapter.d.ts","../../core/dist/adapters/language/package-json/adapter.d.ts","../../core/dist/adapters/language/tsconfig/adapter.d.ts","../../core/dist/core/graph/modules.d.ts","../../core/dist/core/graph/aliases.d.ts","../../core/dist/core/workspace/workspace.d.ts","../../core/dist/core/workspace/package-facts.d.ts","../../core/dist/core/architecture/detector.d.ts","../../core/dist/core/architecture/entry-points.d.ts","../../core/dist/core/architecture/role-detector.d.ts","../../core/dist/core/conventions/detector.d.ts","../../core/dist/core/conventions/renderer.d.ts","../../core/dist/core/decisions/detector.d.ts","../../core/dist/core/git-analysis/activity.d.ts","../../core/dist/core/diff/differ.d.ts","../../core/dist/core/context/explain.d.ts","../../core/dist/core/context/repository-context.d.ts","../../core/dist/core/search/bm25.d.ts","../../core/dist/core/search/analyzer.d.ts","../../core/dist/core/serialization/documents.d.ts","../../core/dist/util/paths.d.ts","../../core/dist/util/concurrency.d.ts","../../core/dist/util/text.d.ts","../../core/dist/index.d.ts","../src/ui/console.ts","../src/commands/init.ts","../src/ui/format.ts","../src/commands/scan.ts","../src/commands/diff.ts","../src/commands/status.ts","../src/commands/explain.ts","../src/commands/clean.ts","../src/commands/search.ts","../src/commands/context.ts","../src/cli.ts","../src/bin.ts","../src/index.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[136,188,189,191,208,209],[136,190,191,208,209],[191,208,209],[136,191,196,208,209,226],[136,191,192,197,202,208,209,211,223,234],[136,191,192,193,202,208,209,211],[136,191,208,209],[136,191,194,208,209,235],[136,191,195,196,203,208,209,212],[136,191,196,208,209,223,231],[136,191,197,199,202,208,209,211],[136,190,191,198,208,209],[136,191,199,200,208,209],[136,191,201,202,208,209],[136,190,191,202,208,209],[136,191,202,203,204,208,209,223,234],[136,191,202,203,204,208,209,218,223,226],[136,183,191,199,202,205,208,209,211,223,234],[136,191,202,203,205,206,208,209,211,223,231,234],[136,191,205,207,208,209,223,231,234],[134,135,136,137,138,139,140,141,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240],[136,191,202,208,209],[136,191,208,209,210,234],[136,191,199,202,208,209,211,223],[136,191,208,209,212],[136,191,208,209,213],[136,190,191,208,209,214],[136,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240],[136,191,208,209,216],[136,191,208,209,217],[136,191,202,208,209,218,219],[136,191,208,209,218,220,235,237],[136,191,203,208,209],[136,191,202,208,209,223,224,226],[136,191,208,209,225,226],[136,191,208,209,223,224],[136,191,208,209,226],[136,191,208,209,227],[136,188,191,208,209,223,228,234],[136,191,202,208,209,229,230],[136,191,208,209,229,230],[136,191,196,208,209,211,223,231],[136,191,208,209,232],[136,191,208,209,211,233],[136,191,205,208,209,217,234],[136,191,196,208,209,235],[136,191,208,209,223,236],[136,191,208,209,210,237],[136,191,208,209,238],[136,191,196,208,209],[136,183,191,208,209],[136,191,208,209,239],[136,183,191,202,204,208,209,214,223,226,234,236,237,239],[136,191,208,209,223,240],[136,148,151,154,155,191,208,209,234],[136,151,191,208,209,223,234],[136,151,155,191,208,209,234],[136,191,208,209,223],[136,145,191,208,209],[136,149,191,208,209],[136,147,148,151,191,208,209,234],[136,191,208,209,211,231],[136,191,208,209,241],[136,145,191,208,209,241],[136,147,151,191,208,209,211,234],[136,142,143,144,146,150,191,202,208,209,223,234],[136,151,160,168,191,208,209],[136,143,149,191,208,209],[136,151,177,178,191,208,209],[136,143,146,151,191,208,209,226,234,241],[136,151,191,208,209],[136,147,151,191,208,209,234],[136,142,191,208,209],[136,145,146,147,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,191,208,209],[136,151,170,173,191,199,208,209],[136,151,160,161,162,191,208,209],[136,149,151,161,163,191,208,209],[136,150,191,208,209],[136,143,145,151,191,208,209],[136,151,155,161,163,191,208,209],[136,155,191,208,209],[136,149,151,154,191,208,209,234],[136,143,147,151,160,191,208,209],[136,151,170,191,208,209],[136,163,191,208,209],[136,145,151,177,191,208,209,226,239,241],[131,136,191,208,209],[120,121,122,124,125,126,127,128,129,130,136,191,208,209],[120,131,136,191,203,208,209,213],[123,131,136,191,208,209],[120,123,131,136,191,208,209],[120,121,122,123,124,125,126,127,128,129,130,131,136,191,208,209],[120,121,136,191,208,209],[77,136,191,208,209],[65,136,191,208,209],[64,65,136,191,208,209],[64,136,191,208,209],[64,66,67,68,69,70,71,73,74,82,136,191,208,209],[67,136,191,208,209],[65,80,136,191,208,209],[64,65,80,136,191,208,209],[65,74,80,136,191,208,209],[64,65,76,136,191,208,209],[64,65,69,136,191,208,209],[64,70,71,136,191,208,209],[64,69,136,191,208,209],[65,76,136,191,208,209],[64,65,76,79,136,191,208,209],[72,136,191,208,209],[64,65,66,67,68,73,78,136,191,208,209],[75,136,191,208,209],[65,75,80,136,191,208,209],[64,75,81,136,191,208,209],[65,67,70,80,136,191,208,209],[70,136,191,208,209],[67,70,136,191,208,209],[65,98,136,191,208,209],[64,98,136,191,208,209],[64,65,66,67,68,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,136,191,208,209],[64,65,66,67,68,69,70,71,73,79,80,84,136,191,208,209]],"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":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","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":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b5b4cd327fd85e27306a1dd7c1bcf005f2a354e34cdf94edf3e74c24429ae16","impliedFormat":99},{"version":"c388756b415bac221f5a967b9a877c5d6fc0d3d39052bb13e13ef2725216decd","impliedFormat":99},{"version":"3b1d1a4aff2a80cb5131801cd0ea2589e8a3f56ec891c85b6d30a1ff31363856","impliedFormat":99},{"version":"9d2cc72223f10b0997f850a72b93ca2b55e8f56c8c14dd79232f05efd676b185","impliedFormat":99},{"version":"5b34e3e3c9a65851acc34292702483838c0aff3575c30a8af66947967fa7c35b","impliedFormat":99},{"version":"06b2fdd3d9e1bc18f2b8c391b65dec41bea809e6c74de27cc2f57c9ddcbfc29e","impliedFormat":99},{"version":"19f14d8577fcfac949e825ddc25a71ae41f5e05d68b6d8a53f4a7800ababcdcc","impliedFormat":99},{"version":"777a96ba446363293cf2fc0878527f708a5c68b1e2c6be841e1e8f248fce8b31","impliedFormat":99},{"version":"dee1e120a51ce6a6a1c7229014b4eacc895c9791614a1e19d4968b52dc6a0711","impliedFormat":99},{"version":"a90f126ff6bb4137ea9e95e8e8c330c8609e884795a5a904248902418406fe40","impliedFormat":99},{"version":"7e232a62b394d8e97c493f2e9cbe4dee3fdacf37417c0434712ec2f685cc08c2","impliedFormat":99},{"version":"9416b195e668d4069a1f2b748ac8b3a94627e2ea680f23fd623b356df4de655d","impliedFormat":99},{"version":"ec9b5a55eb4b93bf76e23fe7f1588142bb491ff3979c67180d7cc562fcdf4885","impliedFormat":99},{"version":"f315025e38d44c8a15354babc19aafec9d0bf7a921f915381bf1775c21693bbf","impliedFormat":99},{"version":"6035c10abaa1d7ff150aef732e643763f57af485ae8430cf1bedb233ed2c8aa0","impliedFormat":99},{"version":"cb6866e0c3f54f2d9757d44e8140da3a09dcfa07255026cd203ad609f8fc00a3","impliedFormat":99},{"version":"0b17157271d9740ffc2c839dd1179158714061815755387324c873a9fb3b4216","impliedFormat":99},{"version":"127dde38a923da8111b4f44996d8b52d87f7cc6c406e73b3d338eca5e868db6c","impliedFormat":99},{"version":"ee264fafe0b53abb2ee1d18064f2a5cf0ca4a1288bff1afc27a0f9e5fc7894ba","impliedFormat":99},{"version":"06488463ad90c216c13a5de2ff54b6d07c8cd29f6ce29ab854bd27b5d8ba6608","impliedFormat":99},{"version":"eba40a9a894de0c8c09ee41d027e8d1386c131bb86841085befd719ea0513c3a","impliedFormat":99},{"version":"0d0ece05c4b9fa21b0aa9188a193ca9e1602f86a62a999910093a7fe76045478","impliedFormat":99},{"version":"63e5f13014c467b31e021f048e3ac86544cc03788f9d7c8452d815da9ca5b876","impliedFormat":99},{"version":"a6003278bd7f6def745b964d5e61df8e2ec918bfa89b4ec68d08ede71846986d","impliedFormat":99},{"version":"5f87e0dc895dd345001dc76ad2347ea4a574dbb3230670109e80846889c9a28c","impliedFormat":99},{"version":"8f5f31b20401430c08840f31cfec7f9284fda910def21ac4186a914c40a26ed0","impliedFormat":99},{"version":"6d1c031701ee553964ba09ce5e33e98e9dfed5112db7128878881f2e21ad8ae5","impliedFormat":99},{"version":"3b699eb5907ea9ee40a3734b306f180a3ed6bb675ec3abe31b2a908c818c923e","impliedFormat":99},{"version":"ce38498f279002fb138538cee113e78659366d81e100a2ac44e0b3c07274c9ee","impliedFormat":99},{"version":"31b2b43fc853f90ed62892c4a85ea5d3601666f5d97502ad5c9492488be19d3e","impliedFormat":99},{"version":"8002905569a9e3634139d22193cf425a9f9b82edeb5bd51d2dd2e4e1c7e6c90e","impliedFormat":99},{"version":"fb70026a5a07de2a8ca7f8c15f2b7b0628befc078771d902f66a4498115d7e9d","impliedFormat":99},{"version":"d936db46099e9ccd77586716b082ffa3a28e09a166a59115cebf8b6f814e64d9","impliedFormat":99},{"version":"76570510044cc23b81947332feb067042a8709ec2b97384e24e8a09af079d7d9","impliedFormat":99},{"version":"9ec2f0d1459a1b86a42dcaedcaf51423bb4184a6ef2c366060a046088e3dfdbe","impliedFormat":99},{"version":"c988642547a95f4d27f3f5b0bae91e8c12ec4d1ba219a9083466e0cb111ea272","impliedFormat":99},{"version":"b76afbead89c79e4a3d76a0f0a9b4171f80263dcf99a5c83607c8f8f65c1bf4d","impliedFormat":99},{"version":"3a129acecf6125b394c187872d4b09147ce863ce316b95a6a31bbe1b4236917b","impliedFormat":99},{"version":"319d12d76c84f75e79d36d77f7e98b2fca6658f4b5a30c7202583aacd7b50016","impliedFormat":99},{"version":"b77987b5060594b14e364569c8eecf171bd3ced01cf1685607eb66745e1fedbb","impliedFormat":99},{"version":"2e2fbfdb30e9ca976a119de49c9938902f4bc5907ababd302e99ca0713479813","impliedFormat":99},{"version":"43208cd0eb7d78ae94d5d0f41dd583096be38f5b6af924ee3dbec0103b864586","impliedFormat":99},{"version":"3091dd4f2e9c9602dd13ba6bfbbd47e205bd1f2445ae8df6f97b8aee429e108f","impliedFormat":99},{"version":"928eacfcb8587ab1070df40a049a48d4bd2438fa291e46bad768d1d99a9e3fd5","impliedFormat":99},{"version":"4b5c8ba3364c3d19d83ef59469fbbdfc093abd2ac581f0068dc40a0c80d0cbd8","impliedFormat":99},{"version":"59b608635471453a79e7dc593412c92ebc466d2187b05e84e9cecb7e56a359c2","impliedFormat":99},{"version":"8b157d6e1995bb47fb1f415267cbe5c56c60bfb62bacc67e5db789a76c26f290","impliedFormat":99},{"version":"ff81da660e1cb48afebb76f629d41adabc64e034bdafcd9311457d7990318763","impliedFormat":99},{"version":"4672826f6f34e1b05be700dca57ce53fe798dfc13ee7c137d923797a92cc4ae3","impliedFormat":99},{"version":"0c5e3984f45c2d569db3780fe7809d31504d7cda535f38c5b24b5b35b21eb90f","impliedFormat":99},{"version":"88640039368e4aaef6130829e7d39dfec2aeb4df62b0939323851373fa7a12bf","impliedFormat":99},{"version":"07f14c272a9ae1ab90b995af417ea3dedbe9524076bc27c0d7ef5f6ebdac4a88","impliedFormat":99},{"version":"dfaae0b33cbdaaca070f2007d057f239e0b2d06712644ea7b5a1b7d59a7422f2","impliedFormat":99},{"version":"f81f9a17d830f7bbcc75208ad0c176b5e4030be708e5faa0402be6fcf4cb1c17","impliedFormat":99},{"version":"950ede28a65df183ff64b4a1e49f56cb8ded04bb9dd10f417d480e098d7bd739","impliedFormat":99},{"version":"64228333a0f4027f63fba32e183b94be8854411f3604f21af2fee412cd1fe8f0","impliedFormat":99},{"version":"775d28a5171d0dae225d92cc8e55c8e2808027d8287d8a47358ca5a8bcfd895a","impliedFormat":99},{"version":"1e3bd9773ea31c5bda2783c466c469d050c07af75fdb4ac32ac1b97ef2273820","signature":"f5b155a68c7067ae011d8316285af5600339667b763adc8455a2e0708efd42ac","impliedFormat":99},{"version":"7bfe683f61a20c8622499bc014bdfeb29165399ff35d463a5f14124339b1c03c","signature":"bad6315947f94972e2c6bd350f89efcb33a1c6f1d4b74aae846130dbb4175b47","impliedFormat":99},{"version":"6435509752cb5882dff101ad6b0b08bd62d27bb627444f5dfeeeaa10772c5340","signature":"17c86377ee045969f4325cbaed285bf3b92d4d35130a5b16b9f1f8ce9bae4a5c","impliedFormat":99},{"version":"f4b89b9898d24b745168e70a9da83662a6dc070d5012f516a88980b231d94e08","signature":"c935d38b5617abc38cca49896172d5036d3521f537d037be6e04d663336eaa61","impliedFormat":99},{"version":"cd4ec6d87cf675d8ece1ac3218a82c37b0be467294614ff98a83c6f621e6e6d7","signature":"591e91a7746faa5ac8cced56b4f576b5766af436022aa0dca2a9cb49098d122b","impliedFormat":99},{"version":"742d143f9e6d3cc7df6bab75c4c779e89de2b0f5812c49190262387026717d2f","signature":"d18ae05b3d8897379b00f2b3ccef3ff81449304514f9923ae045e3ed147c7779","impliedFormat":99},{"version":"83382b4ae244b087d3d5ee0b300e524e7667cc69cc0e19bb5f6738d2be980b04","signature":"4442d19691df504f863e90d60bf6514fb8afc00b33c1d430025498ac5dc07034","impliedFormat":99},{"version":"b0349bd88a114fbbf922349abc742ec2a14ade78f7b2d116976f6435587e14a3","signature":"c80165535d9b647c3e66aff5ea0045d53a409f3afe449dcf39360371c1a6294e","impliedFormat":99},{"version":"d2b8e6d9671aac869cc00e956bd60c248148d354f554dd86022749559ae18dcd","signature":"7613294daa38e3aaa4a131f3c299785fa4cd0bef49e2249946647462333d1575","impliedFormat":99},{"version":"55516ffd44d0cde0650097129d5e5971ff207b95ac4c473acec5d729d6b9b35e","signature":"85aca8962e3470a1b95ac1527da338740d9d10d8b87b907274989c87dcc0070d","impliedFormat":99},{"version":"c05fcc0284e1803ec8a119ac90beca890a09d6a93f6b8eadac4b0b20f1d01212","signature":"d4ca7739f53e45ca0b85049889542c2e229c3aa393ec3de3e8037d26ab0d1207","impliedFormat":99},{"version":"3d3656eab319b096b8650702a482e4c4f6403f6ac70924c54cd0a71a28adabfa","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"f55684697dd3801a1fc07f2e7b9a6471350eba9818aa5f3a9e9ad4f1a3453ebf","signature":"4075e6b316e2bfe16bd8795f6b4ac726903ba3c189ad058da9ca0cd168e192da","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8fd27f1c91ee0f957826b3de0b3aad4fc5fdf419c8db47b0bc48f28849861c7","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"1cbdcdef62bf42688e5d825898c3a59458466c48ad8a4ef3f88d8a1cd04310d6","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"67e435fa530778903f5525904e6645b7368eb5ac622055febd19bb399e328ccd","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"5b22bf96be06fca1e134e3a85351ffe7aa2edf0c9a5bd175b7239ee48186dbf5","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"5b48cc670da1dfe926036deaf349085caf822def460a6d50de23f1cc12a5f8cd","impliedFormat":1},{"version":"418f34087d52d001e2688a6282a5de9bf583ff771ed5546af0ae36e4f60a458b","affectsGlobalScope":true,"impliedFormat":1},{"version":"036c9a03b01281f99f8251fdc7088e894566be44b3f139a9d48501a978b611df","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1569ad5969ae0de6ad0bdfaaab0dabcd8878bc3147ab096206eed2019bb84e7f","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"42a350ce4f6f291198dc89833afcc4fd078248b4e1fdc9d05c846c66a670f710","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"b03754211d839cdc48979996525a32eb62130682c2f9801dfc2f25533ce7238d","impliedFormat":1},{"version":"3910dab597c40e173bf0e0d419d3ce9682c54ebf6ae84849f9b829b1451a17ec","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"4e5d5874ff5bf94b02e856cffbcc2b3ddea5d52f463ef55cc0206f1afaa2ab28","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"f4d99ac08c4097a3cc202bec2c7198c19dcdd80d4ec6c62d1356b10d03b119d5","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ca77e83162eccec633513723d178d4203bdd5465297267696be08013bab0aa1d","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"f61c153d5abbe4381a1fba0d41be0babdd5de51c626ee7ff14cede14dedc33f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7803171d745ab18e77f16bf82e742268ff72b7f7382ab191e4277527580c2d89","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e9ba65cd3d6d194bdda7343f9f2917f7144ead96a924ca58d1a14919992dc20","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"0b0dfb2d3e8420ead06f6a11acfb02ddcec42257e6ce391993e895ba0af86de4","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[121,133]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"erasableSyntaxOnly":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[188,1],[189,1],[190,2],[136,3],[191,4],[192,5],[193,6],[134,7],[194,8],[195,9],[196,10],[197,11],[198,12],[199,13],[200,13],[201,14],[202,15],[203,16],[204,17],[137,7],[135,7],[205,18],[206,19],[207,20],[241,21],[208,22],[209,7],[210,23],[211,24],[212,25],[213,26],[214,27],[215,28],[216,29],[217,30],[218,31],[219,31],[220,32],[221,7],[222,33],[223,34],[225,35],[224,36],[226,37],[227,38],[228,39],[229,40],[230,41],[231,42],[232,43],[233,44],[234,45],[235,46],[236,47],[237,48],[238,49],[138,7],[139,50],[140,7],[141,7],[184,51],[185,52],[186,7],[187,37],[239,53],[240,54],[62,7],[63,7],[12,7],[11,7],[2,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[3,7],[21,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[56,7],[55,7],[57,7],[58,7],[10,7],[59,7],[1,7],[60,7],[61,7],[160,55],[172,56],[157,57],[173,58],[182,59],[148,60],[149,61],[147,62],[181,63],[176,64],[180,65],[151,66],[169,67],[150,68],[179,69],[145,70],[146,64],[152,71],[153,7],[159,72],[156,71],[143,73],[183,74],[174,75],[163,76],[162,71],[164,77],[167,78],[161,79],[165,80],[177,63],[154,81],[155,82],[168,83],[144,58],[171,84],[170,71],[158,82],[166,85],[175,7],[142,7],[178,86],[132,87],[131,88],[128,89],[130,90],[125,90],[127,90],[122,87],[124,91],[129,91],[126,90],[133,92],[121,7],[123,93],[78,94],[92,7],[69,7],[96,95],[97,95],[98,95],[66,95],[93,95],[95,96],[94,7],[99,95],[65,97],[83,98],[89,99],[90,99],[67,7],[91,99],[104,100],[105,96],[106,96],[112,101],[113,102],[74,97],[107,103],[108,97],[109,104],[111,105],[110,106],[101,107],[80,108],[100,96],[76,97],[73,109],[79,110],[72,96],[115,7],[114,111],[81,112],[82,113],[75,97],[116,114],[71,115],[70,97],[84,116],[103,117],[102,118],[88,97],[120,119],[68,97],[87,7],[86,7],[64,7],[85,120],[118,7],[77,7],[117,7],[119,7]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/dist/bin.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bin.d.ts","sourceRoot":"","sources":["../src/bin.ts"],"names":[],"mappings":""}
|
package/dist/bin.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Executable entry point of the CLI (`agent-context`).
|
|
4
|
+
*
|
|
5
|
+
* The shebang keeps `npx agent-context <command>` working, and the process exit
|
|
6
|
+
* code mirrors the analysis result so CI can gate on `scan`/`status`.
|
|
7
|
+
*/
|
|
8
|
+
import { runCli } from "./cli.js";
|
|
9
|
+
const exitCode = await runCli(process.argv.slice(2));
|
|
10
|
+
process.exitCode = exitCode;
|
|
11
|
+
//# sourceMappingURL=bin.js.map
|
package/dist/bin.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bin.js","sourceRoot":"","sources":["../src/bin.ts"],"names":[],"mappings":";AACA;;;;;GAKG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;AACrD,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAC"}
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `agent-context` CLI — argument parsing and dispatch.
|
|
3
|
+
*
|
|
4
|
+
* The CLI contains no analysis logic: every command builds an AgentContext and
|
|
5
|
+
* prints a projection of the result. It is fully testable without spawning a
|
|
6
|
+
* process because {@link runCli} receives its I/O as parameters.
|
|
7
|
+
*/
|
|
8
|
+
import { AgentContext, type AgentContextOptions } from '@ai-agent-context/core';
|
|
9
|
+
import { ConsoleOutput } from './ui/console.ts';
|
|
10
|
+
export declare const CLI_NAME = "agent-context";
|
|
11
|
+
export declare const CLI_VERSION = "0.1.0";
|
|
12
|
+
export interface CliIo {
|
|
13
|
+
stdout: (line: string) => void;
|
|
14
|
+
stderr: (line: string) => void;
|
|
15
|
+
cwd: string;
|
|
16
|
+
env: Record<string, string | undefined>;
|
|
17
|
+
/** Force colours on/off; `undefined` means auto-detect. */
|
|
18
|
+
color?: boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface ParsedArguments {
|
|
21
|
+
command: string | null;
|
|
22
|
+
positional: string[];
|
|
23
|
+
flags: Map<string, string | boolean>;
|
|
24
|
+
unknownFlags: string[];
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Parses CLI arguments.
|
|
28
|
+
*
|
|
29
|
+
* Supported forms: `--flag`, `--no-flag`, `--key=value`, `--key value`, `-h`.
|
|
30
|
+
* Repeated value flags are joined with commas, so
|
|
31
|
+
* `--include a --include b` behaves like `--include a,b`.
|
|
32
|
+
*/
|
|
33
|
+
export declare function parseArguments(argv: readonly string[]): ParsedArguments;
|
|
34
|
+
export declare function flagString(parsed: ParsedArguments, name: string): string | undefined;
|
|
35
|
+
export declare function flagList(parsed: ParsedArguments, name: string): string[] | undefined;
|
|
36
|
+
export declare function flagBoolean(parsed: ParsedArguments, name: string): boolean;
|
|
37
|
+
/** Builds the {@link AgentContextOptions} implied by global CLI flags. */
|
|
38
|
+
export declare function contextOptions(parsed: ParsedArguments, io: CliIo): AgentContextOptions;
|
|
39
|
+
export interface CliCommandContext {
|
|
40
|
+
parsed: ParsedArguments;
|
|
41
|
+
output: ConsoleOutput;
|
|
42
|
+
io: CliIo;
|
|
43
|
+
json: boolean;
|
|
44
|
+
}
|
|
45
|
+
export interface CliDependencies {
|
|
46
|
+
createContext: (options: AgentContextOptions) => Promise<AgentContext>;
|
|
47
|
+
}
|
|
48
|
+
/** Runs the CLI and returns the process exit code. */
|
|
49
|
+
export declare function runCli(argv: readonly string[], ioOverrides?: Partial<CliIo>): Promise<number>;
|
|
50
|
+
//# sourceMappingURL=cli.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,EAAE,YAAY,EAA4C,KAAK,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC1H,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAUhD,eAAO,MAAM,QAAQ,kBAAkB,CAAC;AACxC,eAAO,MAAM,WAAW,UAAU,CAAC;AAEnC,MAAM,WAAW,KAAK;IACpB,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC,2DAA2D;IAC3D,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC;IACrC,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB;AA6CD;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,GAAG,eAAe,CA0CvE;AAED,wBAAgB,UAAU,CAAC,MAAM,EAAE,eAAe,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAGpF;AAED,wBAAgB,QAAQ,CAAC,MAAM,EAAE,eAAe,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAQpF;AAED,wBAAgB,WAAW,CAAC,MAAM,EAAE,eAAe,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAE1E;AAED,0EAA0E;AAC1E,wBAAgB,cAAc,CAAC,MAAM,EAAE,eAAe,EAAE,EAAE,EAAE,KAAK,GAAG,mBAAmB,CAkBtF;AAED,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,eAAe,CAAC;IACxB,MAAM,EAAE,aAAa,CAAC;IACtB,EAAE,EAAE,KAAK,CAAC;IACV,IAAI,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,eAAe;IAC9B,aAAa,EAAE,CAAC,OAAO,EAAE,mBAAmB,KAAK,OAAO,CAAC,YAAY,CAAC,CAAC;CACxE;AAoCD,sDAAsD;AACtD,wBAAsB,MAAM,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,EAAE,WAAW,GAAE,OAAO,CAAC,KAAK,CAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CA0EvG"}
|