@dot-ai/adapter-claude 0.9.0 → 0.11.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/.orphaned_at +1 -0
- package/dist/__tests__/hook.test.d.ts +2 -8
- package/dist/__tests__/hook.test.js +42 -106
- package/dist/hook.js +6 -16
- package/hooks/hooks.json +25 -1
- package/package.json +2 -2
- package/plugin.json +2 -5
- package/src/__tests__/hook.test.ts +45 -132
- package/src/hook.ts +6 -19
- package/tsconfig.tsbuildinfo +1 -1
package/.orphaned_at
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1772862581707
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
* Tests for hook.ts logic patterns.
|
|
3
3
|
*
|
|
4
4
|
* hook.ts is a CLI entry point (self-executing, reads from stdin) so we cannot
|
|
5
|
-
* import its handlers directly. Instead we
|
|
6
|
-
*
|
|
7
|
-
* 2. Test the handler behaviours by calling the equivalent logic through
|
|
8
|
-
* a thin reimplementation that accepts the same mocked DotAiRuntime.
|
|
9
|
-
*
|
|
10
|
-
* The regexes under test are the canonical ones from hook.ts:
|
|
11
|
-
* - Memory-file detection: /memory\/[^\s]*\.md$/i
|
|
12
|
-
* - Bash memory-write: /memory\/[^\s]*\.md/i + /(?:>|tee|cp|mv|cat\s*<<|echo\s.*>)/i
|
|
5
|
+
* import its handlers directly. Instead we re-implement the key regex logic
|
|
6
|
+
* and test handler behaviors through thin reimplementations.
|
|
13
7
|
*/
|
|
14
8
|
export {};
|
|
@@ -2,17 +2,11 @@
|
|
|
2
2
|
* Tests for hook.ts logic patterns.
|
|
3
3
|
*
|
|
4
4
|
* hook.ts is a CLI entry point (self-executing, reads from stdin) so we cannot
|
|
5
|
-
* import its handlers directly. Instead we
|
|
6
|
-
*
|
|
7
|
-
* 2. Test the handler behaviours by calling the equivalent logic through
|
|
8
|
-
* a thin reimplementation that accepts the same mocked DotAiRuntime.
|
|
9
|
-
*
|
|
10
|
-
* The regexes under test are the canonical ones from hook.ts:
|
|
11
|
-
* - Memory-file detection: /memory\/[^\s]*\.md$/i
|
|
12
|
-
* - Bash memory-write: /memory\/[^\s]*\.md/i + /(?:>|tee|cp|mv|cat\s*<<|echo\s.*>)/i
|
|
5
|
+
* import its handlers directly. Instead we re-implement the key regex logic
|
|
6
|
+
* and test handler behaviors through thin reimplementations.
|
|
13
7
|
*/
|
|
14
8
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
15
|
-
import {
|
|
9
|
+
import { formatSections } from '@dot-ai/core';
|
|
16
10
|
// ── Regex constants (copied verbatim from hook.ts) ──────────────────────────
|
|
17
11
|
const MEMORY_FILE_RE = /memory\/[^\s]*\.md$/i;
|
|
18
12
|
const BASH_MEMORY_PATH_RE = /memory\/[^\s]*\.md/i;
|
|
@@ -20,14 +14,12 @@ const BASH_WRITE_OP_RE = /(?:>|tee|cp|mv|cat\s*<<|echo\s.*>)/i;
|
|
|
20
14
|
async function handlePreToolUse(event, runtime, out = []) {
|
|
21
15
|
const toolName = (event.tool_name ?? '');
|
|
22
16
|
const input = (event.tool_input ?? {});
|
|
23
|
-
// Extension check first
|
|
24
17
|
const extensionResult = await runtime.fireToolCall({ tool: toolName, input });
|
|
25
18
|
if (extensionResult?.decision === 'block') {
|
|
26
19
|
const payload = { decision: 'block', reason: extensionResult.reason ?? 'Blocked by extension' };
|
|
27
20
|
out.push(JSON.stringify(payload));
|
|
28
21
|
return payload;
|
|
29
22
|
}
|
|
30
|
-
// Hardcoded memory-file blocking
|
|
31
23
|
if (toolName === 'Write' || toolName === 'Edit') {
|
|
32
24
|
const filePath = (input.file_path ?? input.path ?? '');
|
|
33
25
|
if (filePath && MEMORY_FILE_RE.test(filePath)) {
|
|
@@ -56,7 +48,8 @@ async function handlePromptSubmit(event, runtime, out = []) {
|
|
|
56
48
|
const prompt = (event.prompt ?? event.content ?? '');
|
|
57
49
|
if (!prompt)
|
|
58
50
|
return;
|
|
59
|
-
const {
|
|
51
|
+
const { sections } = await runtime.processPrompt(prompt);
|
|
52
|
+
const formatted = formatSections(sections);
|
|
60
53
|
if (formatted) {
|
|
61
54
|
out.push(JSON.stringify({ result: formatted }));
|
|
62
55
|
}
|
|
@@ -64,15 +57,15 @@ async function handlePromptSubmit(event, runtime, out = []) {
|
|
|
64
57
|
async function handlePreCompact(event, runtime) {
|
|
65
58
|
const summary = (event.summary ?? event.content ?? '');
|
|
66
59
|
if (summary) {
|
|
67
|
-
await runtime.fire('
|
|
68
|
-
|
|
60
|
+
await runtime.fire('session_compact', {
|
|
61
|
+
summary: summary.slice(0, 1000),
|
|
69
62
|
});
|
|
70
63
|
}
|
|
71
64
|
}
|
|
72
65
|
async function handleStop(event, runtime) {
|
|
73
66
|
const response = (event.response ?? event.content ?? '');
|
|
74
67
|
if (response) {
|
|
75
|
-
await runtime.
|
|
68
|
+
await runtime.fire('agent_end', { response });
|
|
76
69
|
}
|
|
77
70
|
}
|
|
78
71
|
function handleSessionStart(_event, runtime, errOut = []) {
|
|
@@ -80,23 +73,23 @@ function handleSessionStart(_event, runtime, errOut = []) {
|
|
|
80
73
|
errOut.push(`[dot-ai] Booted\n`);
|
|
81
74
|
if (diag.extensions.length > 0) {
|
|
82
75
|
errOut.push(`[dot-ai] ${diag.extensions.length} extension(s), ${diag.capabilityCount} tool(s)\n`);
|
|
83
|
-
for (const ext of diag.extensions) {
|
|
84
|
-
for (const eventName of Object.keys(ext.handlerCounts)) {
|
|
85
|
-
if (!ADAPTER_CAPABILITIES['claude-code'].has(eventName)) {
|
|
86
|
-
errOut.push(`[dot-ai] Warning: Extension ${ext.path} uses '${eventName}' (not supported by Claude Code adapter)\n`);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
76
|
}
|
|
91
77
|
}
|
|
92
78
|
// ── Mock factory ─────────────────────────────────────────────────────────────
|
|
93
79
|
function makeRuntime() {
|
|
80
|
+
const systemSection = {
|
|
81
|
+
id: 'dot-ai:system',
|
|
82
|
+
title: 'dot-ai',
|
|
83
|
+
content: 'dot-ai workspace active.',
|
|
84
|
+
priority: 95,
|
|
85
|
+
source: 'core',
|
|
86
|
+
trimStrategy: 'never',
|
|
87
|
+
};
|
|
94
88
|
return {
|
|
95
89
|
fireToolCall: vi.fn().mockResolvedValue(null),
|
|
96
|
-
processPrompt: vi.fn().mockResolvedValue({
|
|
97
|
-
learn: vi.fn().mockResolvedValue(undefined),
|
|
90
|
+
processPrompt: vi.fn().mockResolvedValue({ sections: [systemSection], labels: [], routing: null }),
|
|
98
91
|
fire: vi.fn().mockResolvedValue([]),
|
|
99
|
-
diagnostics: { extensions: [],
|
|
92
|
+
diagnostics: { extensions: [], capabilityCount: 0, vocabularySize: 0, skillCount: 0, identityCount: 0 },
|
|
100
93
|
flush: vi.fn().mockResolvedValue(undefined),
|
|
101
94
|
boot: vi.fn().mockResolvedValue(undefined),
|
|
102
95
|
shutdown: vi.fn().mockResolvedValue(undefined),
|
|
@@ -274,34 +267,23 @@ describe('handlePromptSubmit', () => {
|
|
|
274
267
|
runtime = makeRuntime();
|
|
275
268
|
out = [];
|
|
276
269
|
});
|
|
277
|
-
it('calls processPrompt and writes JSON result to stdout', async () => {
|
|
270
|
+
it('calls processPrompt and writes formatted JSON result to stdout', async () => {
|
|
271
|
+
const testSection = { id: 'test', title: 'Test', content: 'enriched context', priority: 50, source: 'test' };
|
|
278
272
|
vi.mocked(runtime.processPrompt).mockResolvedValue({
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
273
|
+
sections: [testSection],
|
|
274
|
+
labels: [],
|
|
275
|
+
routing: null,
|
|
282
276
|
});
|
|
283
277
|
await handlePromptSubmit({ prompt: 'how do I do X?' }, runtime, out);
|
|
284
278
|
expect(runtime.processPrompt).toHaveBeenCalledWith('how do I do X?');
|
|
285
|
-
expect(
|
|
279
|
+
expect(out).toHaveLength(1);
|
|
280
|
+
const parsed = JSON.parse(out[0]);
|
|
281
|
+
expect(parsed.result).toContain('enriched context');
|
|
286
282
|
});
|
|
287
283
|
it('reads prompt from content field if prompt is missing', async () => {
|
|
288
|
-
vi.mocked(runtime.processPrompt).mockResolvedValue({
|
|
289
|
-
formatted: 'ctx',
|
|
290
|
-
enriched: {},
|
|
291
|
-
capabilities: [],
|
|
292
|
-
});
|
|
293
284
|
await handlePromptSubmit({ content: 'alt prompt' }, runtime, out);
|
|
294
285
|
expect(runtime.processPrompt).toHaveBeenCalledWith('alt prompt');
|
|
295
286
|
});
|
|
296
|
-
it('does not write to stdout when formatted is empty', async () => {
|
|
297
|
-
vi.mocked(runtime.processPrompt).mockResolvedValue({
|
|
298
|
-
formatted: '',
|
|
299
|
-
enriched: {},
|
|
300
|
-
capabilities: [],
|
|
301
|
-
});
|
|
302
|
-
await handlePromptSubmit({ prompt: 'hello' }, runtime, out);
|
|
303
|
-
expect(out).toHaveLength(0);
|
|
304
|
-
});
|
|
305
287
|
it('returns early without calling processPrompt when prompt is empty', async () => {
|
|
306
288
|
await handlePromptSubmit({ prompt: '' }, runtime, out);
|
|
307
289
|
expect(runtime.processPrompt).not.toHaveBeenCalled();
|
|
@@ -313,12 +295,12 @@ describe('handlePromptSubmit', () => {
|
|
|
313
295
|
});
|
|
314
296
|
});
|
|
315
297
|
describe('handlePreCompact', () => {
|
|
316
|
-
it('fires
|
|
298
|
+
it('fires session_compact with summary', async () => {
|
|
317
299
|
const fire = vi.fn().mockResolvedValue([]);
|
|
318
300
|
const runtime = { fire };
|
|
319
301
|
await handlePreCompact({ summary: 'session wrapped up nicely' }, runtime);
|
|
320
|
-
expect(fire).toHaveBeenCalledWith('
|
|
321
|
-
|
|
302
|
+
expect(fire).toHaveBeenCalledWith('session_compact', {
|
|
303
|
+
summary: 'session wrapped up nicely',
|
|
322
304
|
});
|
|
323
305
|
});
|
|
324
306
|
it('truncates summary to 1000 characters', async () => {
|
|
@@ -327,14 +309,14 @@ describe('handlePreCompact', () => {
|
|
|
327
309
|
const longSummary = 'x'.repeat(2000);
|
|
328
310
|
await handlePreCompact({ summary: longSummary }, runtime);
|
|
329
311
|
const call = fire.mock.calls[0][1];
|
|
330
|
-
expect(call.
|
|
312
|
+
expect(call.summary.length).toBe(1000);
|
|
331
313
|
});
|
|
332
314
|
it('reads from content field when summary is absent', async () => {
|
|
333
315
|
const fire = vi.fn().mockResolvedValue([]);
|
|
334
316
|
const runtime = { fire };
|
|
335
317
|
await handlePreCompact({ content: 'fallback summary' }, runtime);
|
|
336
|
-
expect(fire).toHaveBeenCalledWith('
|
|
337
|
-
|
|
318
|
+
expect(fire).toHaveBeenCalledWith('session_compact', {
|
|
319
|
+
summary: 'fallback summary',
|
|
338
320
|
});
|
|
339
321
|
});
|
|
340
322
|
it('does nothing when summary is empty', async () => {
|
|
@@ -349,21 +331,21 @@ describe('handleStop', () => {
|
|
|
349
331
|
beforeEach(() => {
|
|
350
332
|
runtime = makeRuntime();
|
|
351
333
|
});
|
|
352
|
-
it('
|
|
334
|
+
it('fires agent_end with the response', async () => {
|
|
353
335
|
await handleStop({ response: 'I completed the task.' }, runtime);
|
|
354
|
-
expect(runtime.
|
|
336
|
+
expect(runtime.fire).toHaveBeenCalledWith('agent_end', { response: 'I completed the task.' });
|
|
355
337
|
});
|
|
356
338
|
it('reads from content field when response is absent', async () => {
|
|
357
339
|
await handleStop({ content: 'alt response' }, runtime);
|
|
358
|
-
expect(runtime.
|
|
340
|
+
expect(runtime.fire).toHaveBeenCalledWith('agent_end', { response: 'alt response' });
|
|
359
341
|
});
|
|
360
|
-
it('does not
|
|
342
|
+
it('does not fire when response is empty', async () => {
|
|
361
343
|
await handleStop({ response: '' }, runtime);
|
|
362
|
-
expect(runtime.
|
|
344
|
+
expect(runtime.fire).not.toHaveBeenCalled();
|
|
363
345
|
});
|
|
364
|
-
it('does not
|
|
346
|
+
it('does not fire when neither response nor content present', async () => {
|
|
365
347
|
await handleStop({}, runtime);
|
|
366
|
-
expect(runtime.
|
|
348
|
+
expect(runtime.fire).not.toHaveBeenCalled();
|
|
367
349
|
});
|
|
368
350
|
});
|
|
369
351
|
describe('handleSessionStart', () => {
|
|
@@ -373,54 +355,17 @@ describe('handleSessionStart', () => {
|
|
|
373
355
|
...makeRuntime(),
|
|
374
356
|
diagnostics: {
|
|
375
357
|
extensions: [
|
|
376
|
-
{ path: '/ext/my-ext.js', handlerCounts: {
|
|
358
|
+
{ path: '/ext/my-ext.js', handlerCounts: { context_enrich: 1 }, toolNames: [], commandNames: [], skillNames: [], identityNames: [] },
|
|
377
359
|
],
|
|
378
|
-
usedTiers: [],
|
|
379
360
|
capabilityCount: 0,
|
|
380
361
|
vocabularySize: 0,
|
|
362
|
+
skillCount: 0,
|
|
363
|
+
identityCount: 0,
|
|
381
364
|
},
|
|
382
365
|
};
|
|
383
366
|
handleSessionStart({}, runtime, errOut);
|
|
384
367
|
expect(errOut.some(l => l.includes('1 extension(s)'))).toBe(true);
|
|
385
368
|
});
|
|
386
|
-
it('warns about events not supported by Claude Code adapter', () => {
|
|
387
|
-
const errOut = [];
|
|
388
|
-
const unsupportedEvent = '__definitely_not_supported__';
|
|
389
|
-
const runtime = {
|
|
390
|
-
...makeRuntime(),
|
|
391
|
-
diagnostics: {
|
|
392
|
-
extensions: [
|
|
393
|
-
{ path: '/ext/my-ext.js', handlerCounts: { [unsupportedEvent]: 1 }, toolNames: [], commandNames: [], tiers: [] },
|
|
394
|
-
],
|
|
395
|
-
usedTiers: [],
|
|
396
|
-
capabilityCount: 0,
|
|
397
|
-
vocabularySize: 0,
|
|
398
|
-
},
|
|
399
|
-
};
|
|
400
|
-
handleSessionStart({}, runtime, errOut);
|
|
401
|
-
const warnings = errOut.filter(l => l.includes('Warning'));
|
|
402
|
-
expect(warnings.length).toBeGreaterThan(0);
|
|
403
|
-
expect(warnings[0]).toContain(unsupportedEvent);
|
|
404
|
-
expect(warnings[0]).toContain('/ext/my-ext.js');
|
|
405
|
-
});
|
|
406
|
-
it('does not warn for events that ARE supported', () => {
|
|
407
|
-
const errOut = [];
|
|
408
|
-
const supportedEvent = [...ADAPTER_CAPABILITIES['claude-code']][0];
|
|
409
|
-
const runtime = {
|
|
410
|
-
...makeRuntime(),
|
|
411
|
-
diagnostics: {
|
|
412
|
-
extensions: [
|
|
413
|
-
{ path: '/ext/my-ext.js', handlerCounts: { [supportedEvent]: 1 }, toolNames: [], commandNames: [], tiers: [] },
|
|
414
|
-
],
|
|
415
|
-
usedTiers: [],
|
|
416
|
-
capabilityCount: 0,
|
|
417
|
-
vocabularySize: 0,
|
|
418
|
-
},
|
|
419
|
-
};
|
|
420
|
-
handleSessionStart({}, runtime, errOut);
|
|
421
|
-
const warnings = errOut.filter(l => l.includes('Warning'));
|
|
422
|
-
expect(warnings).toHaveLength(0);
|
|
423
|
-
});
|
|
424
369
|
it('logs boot message when no extensions are loaded', () => {
|
|
425
370
|
const errOut = [];
|
|
426
371
|
handleSessionStart({}, makeRuntime(), errOut);
|
|
@@ -428,12 +373,3 @@ describe('handleSessionStart', () => {
|
|
|
428
373
|
expect(errOut.filter(l => l.includes('extension')).length).toBe(0);
|
|
429
374
|
});
|
|
430
375
|
});
|
|
431
|
-
describe('ADAPTER_CAPABILITIES claude-code set', () => {
|
|
432
|
-
it('is a Set', () => {
|
|
433
|
-
expect(ADAPTER_CAPABILITIES['claude-code']).toBeInstanceOf(Set);
|
|
434
|
-
});
|
|
435
|
-
it('contains expected event names', () => {
|
|
436
|
-
const set = ADAPTER_CAPABILITIES['claude-code'];
|
|
437
|
-
expect(set.size).toBeGreaterThan(0);
|
|
438
|
-
});
|
|
439
|
-
});
|
package/dist/hook.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* "Stop": [{ "type": "command", "command": "node hook.js stop" }]
|
|
11
11
|
* "PreToolUse": [{ "type": "command", "command": "node hook.js pre-tool-use" }]
|
|
12
12
|
*/
|
|
13
|
-
import { DotAiRuntime, NoopLogger, JsonFileLogger, loadConfig,
|
|
13
|
+
import { DotAiRuntime, NoopLogger, JsonFileLogger, loadConfig, formatSections, } from '@dot-ai/core';
|
|
14
14
|
// ── Shared ──
|
|
15
15
|
async function readStdin() {
|
|
16
16
|
const chunks = [];
|
|
@@ -26,15 +26,11 @@ async function createRuntime(workspaceRoot) {
|
|
|
26
26
|
const runtime = new DotAiRuntime({
|
|
27
27
|
workspaceRoot,
|
|
28
28
|
logger,
|
|
29
|
-
skipIdentities: true,
|
|
30
|
-
maxSkillLength: 3000,
|
|
31
|
-
maxSkills: 5,
|
|
32
29
|
});
|
|
33
30
|
await runtime.boot();
|
|
34
31
|
return runtime;
|
|
35
32
|
}
|
|
36
33
|
// ── Event handlers ──
|
|
37
|
-
const CLAUDE_SUPPORTED = ADAPTER_CAPABILITIES['claude-code'];
|
|
38
34
|
async function handleSessionStart(event) {
|
|
39
35
|
const workspaceRoot = event.cwd ?? process.cwd();
|
|
40
36
|
const runtime = await createRuntime(workspaceRoot);
|
|
@@ -43,13 +39,6 @@ async function handleSessionStart(event) {
|
|
|
43
39
|
process.stderr.write(`[dot-ai] Booted\n`);
|
|
44
40
|
if (diag.extensions.length > 0) {
|
|
45
41
|
process.stderr.write(`[dot-ai] ${diag.extensions.length} extension(s), ${diag.capabilityCount} tool(s)\n`);
|
|
46
|
-
for (const ext of diag.extensions) {
|
|
47
|
-
for (const eventName of Object.keys(ext.handlerCounts)) {
|
|
48
|
-
if (!CLAUDE_SUPPORTED.has(eventName)) {
|
|
49
|
-
process.stderr.write(`[dot-ai] Warning: Extension ${ext.path} uses '${eventName}' (not supported by Claude Code adapter)\n`);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
42
|
}
|
|
54
43
|
return runtime;
|
|
55
44
|
}
|
|
@@ -59,7 +48,8 @@ async function handlePromptSubmit(event) {
|
|
|
59
48
|
const prompt = (event.prompt ?? event.content ?? '');
|
|
60
49
|
if (!prompt)
|
|
61
50
|
return runtime;
|
|
62
|
-
const {
|
|
51
|
+
const { sections } = await runtime.processPrompt(prompt);
|
|
52
|
+
const formatted = formatSections(sections);
|
|
63
53
|
if (formatted) {
|
|
64
54
|
process.stdout.write(JSON.stringify({ result: formatted }));
|
|
65
55
|
}
|
|
@@ -71,8 +61,8 @@ async function handlePreCompact(event) {
|
|
|
71
61
|
try {
|
|
72
62
|
const summary = (event.summary ?? event.content ?? '');
|
|
73
63
|
if (summary) {
|
|
74
|
-
await runtime.fire('
|
|
75
|
-
|
|
64
|
+
await runtime.fire('session_compact', {
|
|
65
|
+
summary: summary.slice(0, 1000),
|
|
76
66
|
});
|
|
77
67
|
}
|
|
78
68
|
}
|
|
@@ -87,7 +77,7 @@ async function handleStop(event) {
|
|
|
87
77
|
try {
|
|
88
78
|
const response = (event.response ?? event.content ?? '');
|
|
89
79
|
if (response) {
|
|
90
|
-
await runtime.
|
|
80
|
+
await runtime.fire('agent_end', { response });
|
|
91
81
|
}
|
|
92
82
|
}
|
|
93
83
|
catch (err) {
|
package/hooks/hooks.json
CHANGED
|
@@ -7,7 +7,31 @@
|
|
|
7
7
|
"hooks": [
|
|
8
8
|
{
|
|
9
9
|
"type": "command",
|
|
10
|
-
"command": "node ${CLAUDE_PLUGIN_ROOT}/
|
|
10
|
+
"command": "node ${CLAUDE_PLUGIN_ROOT}/dist/hook.js prompt-submit",
|
|
11
|
+
"timeout": 5000
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"PreCompact": [
|
|
17
|
+
{
|
|
18
|
+
"matcher": "",
|
|
19
|
+
"hooks": [
|
|
20
|
+
{
|
|
21
|
+
"type": "command",
|
|
22
|
+
"command": "node ${CLAUDE_PLUGIN_ROOT}/dist/hook.js pre-compact",
|
|
23
|
+
"timeout": 5000
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"Stop": [
|
|
29
|
+
{
|
|
30
|
+
"matcher": "",
|
|
31
|
+
"hooks": [
|
|
32
|
+
{
|
|
33
|
+
"type": "command",
|
|
34
|
+
"command": "node ${CLAUDE_PLUGIN_ROOT}/dist/hook.js stop",
|
|
11
35
|
"timeout": 5000
|
|
12
36
|
}
|
|
13
37
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dot-ai/adapter-claude",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/jogelin/dot-ai",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"dot-ai-mcp": "dist/mcp-server.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@dot-ai/core": "0.
|
|
17
|
+
"@dot-ai/core": "0.11.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/node": "^22.0.0",
|
package/plugin.json
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dot-ai",
|
|
3
3
|
"description": "dot-ai — deterministic context enrichment for Claude Code",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jonathan Gelin",
|
|
7
7
|
"url": "https://smartsdlc.dev"
|
|
8
8
|
},
|
|
9
9
|
"homepage": "https://github.com/jogelin/dot-ai",
|
|
10
|
-
"repository":
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "https://github.com/jogelin/dot-ai"
|
|
13
|
-
},
|
|
10
|
+
"repository": "https://github.com/jogelin/dot-ai",
|
|
14
11
|
"license": "MIT",
|
|
15
12
|
"hooks": "hooks/hooks.json"
|
|
16
13
|
}
|
|
@@ -2,19 +2,13 @@
|
|
|
2
2
|
* Tests for hook.ts logic patterns.
|
|
3
3
|
*
|
|
4
4
|
* hook.ts is a CLI entry point (self-executing, reads from stdin) so we cannot
|
|
5
|
-
* import its handlers directly. Instead we
|
|
6
|
-
*
|
|
7
|
-
* 2. Test the handler behaviours by calling the equivalent logic through
|
|
8
|
-
* a thin reimplementation that accepts the same mocked DotAiRuntime.
|
|
9
|
-
*
|
|
10
|
-
* The regexes under test are the canonical ones from hook.ts:
|
|
11
|
-
* - Memory-file detection: /memory\/[^\s]*\.md$/i
|
|
12
|
-
* - Bash memory-write: /memory\/[^\s]*\.md/i + /(?:>|tee|cp|mv|cat\s*<<|echo\s.*>)/i
|
|
5
|
+
* import its handlers directly. Instead we re-implement the key regex logic
|
|
6
|
+
* and test handler behaviors through thin reimplementations.
|
|
13
7
|
*/
|
|
14
8
|
|
|
15
9
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
16
|
-
import {
|
|
17
|
-
import type { DotAiRuntime } from '@dot-ai/core';
|
|
10
|
+
import { formatSections } from '@dot-ai/core';
|
|
11
|
+
import type { DotAiRuntime, Section } from '@dot-ai/core';
|
|
18
12
|
|
|
19
13
|
// ── Regex constants (copied verbatim from hook.ts) ──────────────────────────
|
|
20
14
|
|
|
@@ -23,8 +17,6 @@ const BASH_MEMORY_PATH_RE = /memory\/[^\s]*\.md/i;
|
|
|
23
17
|
const BASH_WRITE_OP_RE = /(?:>|tee|cp|mv|cat\s*<<|echo\s.*>)/i;
|
|
24
18
|
|
|
25
19
|
// ── Minimal event-handler reimplementations ──────────────────────────────────
|
|
26
|
-
// These mirror hook.ts handler logic but accept an already-constructed runtime
|
|
27
|
-
// instead of calling createRuntime(), letting us inject mocks cleanly.
|
|
28
20
|
|
|
29
21
|
interface BlockResult { decision: 'block'; reason: string }
|
|
30
22
|
interface AllowResult { decision?: never }
|
|
@@ -33,12 +25,11 @@ type PreToolResult = BlockResult | AllowResult | null;
|
|
|
33
25
|
async function handlePreToolUse(
|
|
34
26
|
event: Record<string, unknown>,
|
|
35
27
|
runtime: Pick<DotAiRuntime, 'fireToolCall'>,
|
|
36
|
-
out: string[] = [],
|
|
28
|
+
out: string[] = [],
|
|
37
29
|
): Promise<PreToolResult> {
|
|
38
30
|
const toolName = (event.tool_name ?? '') as string;
|
|
39
31
|
const input = (event.tool_input ?? {}) as Record<string, unknown>;
|
|
40
32
|
|
|
41
|
-
// Extension check first
|
|
42
33
|
const extensionResult = await runtime.fireToolCall({ tool: toolName, input });
|
|
43
34
|
if (extensionResult?.decision === 'block') {
|
|
44
35
|
const payload: BlockResult = { decision: 'block', reason: extensionResult.reason ?? 'Blocked by extension' };
|
|
@@ -46,7 +37,6 @@ async function handlePreToolUse(
|
|
|
46
37
|
return payload;
|
|
47
38
|
}
|
|
48
39
|
|
|
49
|
-
// Hardcoded memory-file blocking
|
|
50
40
|
if (toolName === 'Write' || toolName === 'Edit') {
|
|
51
41
|
const filePath = (input.file_path ?? input.path ?? '') as string;
|
|
52
42
|
if (filePath && MEMORY_FILE_RE.test(filePath)) {
|
|
@@ -82,7 +72,8 @@ async function handlePromptSubmit(
|
|
|
82
72
|
const prompt = (event.prompt ?? event.content ?? '') as string;
|
|
83
73
|
if (!prompt) return;
|
|
84
74
|
|
|
85
|
-
const {
|
|
75
|
+
const { sections } = await runtime.processPrompt(prompt);
|
|
76
|
+
const formatted = formatSections(sections);
|
|
86
77
|
if (formatted) {
|
|
87
78
|
out.push(JSON.stringify({ result: formatted }));
|
|
88
79
|
}
|
|
@@ -94,19 +85,19 @@ async function handlePreCompact(
|
|
|
94
85
|
): Promise<void> {
|
|
95
86
|
const summary = (event.summary ?? event.content ?? '') as string;
|
|
96
87
|
if (summary) {
|
|
97
|
-
await runtime.fire('
|
|
98
|
-
|
|
88
|
+
await runtime.fire('session_compact', {
|
|
89
|
+
summary: summary.slice(0, 1000),
|
|
99
90
|
});
|
|
100
91
|
}
|
|
101
92
|
}
|
|
102
93
|
|
|
103
94
|
async function handleStop(
|
|
104
95
|
event: Record<string, unknown>,
|
|
105
|
-
runtime: Pick<DotAiRuntime, '
|
|
96
|
+
runtime: Pick<DotAiRuntime, 'fire'>,
|
|
106
97
|
): Promise<void> {
|
|
107
98
|
const response = (event.response ?? event.content ?? '') as string;
|
|
108
99
|
if (response) {
|
|
109
|
-
await runtime.
|
|
100
|
+
await runtime.fire('agent_end', { response });
|
|
110
101
|
}
|
|
111
102
|
}
|
|
112
103
|
|
|
@@ -119,27 +110,25 @@ function handleSessionStart(
|
|
|
119
110
|
errOut.push(`[dot-ai] Booted\n`);
|
|
120
111
|
if (diag.extensions.length > 0) {
|
|
121
112
|
errOut.push(`[dot-ai] ${diag.extensions.length} extension(s), ${diag.capabilityCount} tool(s)\n`);
|
|
122
|
-
for (const ext of diag.extensions) {
|
|
123
|
-
for (const eventName of Object.keys(ext.handlerCounts)) {
|
|
124
|
-
if (!ADAPTER_CAPABILITIES['claude-code'].has(eventName)) {
|
|
125
|
-
errOut.push(
|
|
126
|
-
`[dot-ai] Warning: Extension ${ext.path} uses '${eventName}' (not supported by Claude Code adapter)\n`,
|
|
127
|
-
);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
113
|
}
|
|
132
114
|
}
|
|
133
115
|
|
|
134
116
|
// ── Mock factory ─────────────────────────────────────────────────────────────
|
|
135
117
|
|
|
136
118
|
function makeRuntime(): DotAiRuntime {
|
|
119
|
+
const systemSection: Section = {
|
|
120
|
+
id: 'dot-ai:system',
|
|
121
|
+
title: 'dot-ai',
|
|
122
|
+
content: 'dot-ai workspace active.',
|
|
123
|
+
priority: 95,
|
|
124
|
+
source: 'core',
|
|
125
|
+
trimStrategy: 'never',
|
|
126
|
+
};
|
|
137
127
|
return {
|
|
138
128
|
fireToolCall: vi.fn().mockResolvedValue(null),
|
|
139
|
-
processPrompt: vi.fn().mockResolvedValue({
|
|
140
|
-
learn: vi.fn().mockResolvedValue(undefined),
|
|
129
|
+
processPrompt: vi.fn().mockResolvedValue({ sections: [systemSection], labels: [], routing: null }),
|
|
141
130
|
fire: vi.fn().mockResolvedValue([]),
|
|
142
|
-
diagnostics: { extensions: [],
|
|
131
|
+
diagnostics: { extensions: [], capabilityCount: 0, vocabularySize: 0, skillCount: 0, identityCount: 0 },
|
|
143
132
|
flush: vi.fn().mockResolvedValue(undefined),
|
|
144
133
|
boot: vi.fn().mockResolvedValue(undefined),
|
|
145
134
|
shutdown: vi.fn().mockResolvedValue(undefined),
|
|
@@ -464,66 +453,48 @@ describe('handlePromptSubmit', () => {
|
|
|
464
453
|
out = [];
|
|
465
454
|
});
|
|
466
455
|
|
|
467
|
-
it('calls processPrompt and writes JSON result to stdout', async () => {
|
|
456
|
+
it('calls processPrompt and writes formatted JSON result to stdout', async () => {
|
|
457
|
+
const testSection: Section = { id: 'test', title: 'Test', content: 'enriched context', priority: 50, source: 'test' };
|
|
468
458
|
vi.mocked(runtime.processPrompt).mockResolvedValue({
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
459
|
+
sections: [testSection],
|
|
460
|
+
labels: [],
|
|
461
|
+
routing: null,
|
|
472
462
|
});
|
|
473
463
|
|
|
474
464
|
await handlePromptSubmit({ prompt: 'how do I do X?' }, runtime, out);
|
|
475
465
|
|
|
476
466
|
expect(runtime.processPrompt).toHaveBeenCalledWith('how do I do X?');
|
|
477
|
-
expect(
|
|
467
|
+
expect(out).toHaveLength(1);
|
|
468
|
+
const parsed = JSON.parse(out[0]);
|
|
469
|
+
expect(parsed.result).toContain('enriched context');
|
|
478
470
|
});
|
|
479
471
|
|
|
480
472
|
it('reads prompt from content field if prompt is missing', async () => {
|
|
481
|
-
vi.mocked(runtime.processPrompt).mockResolvedValue({
|
|
482
|
-
formatted: 'ctx',
|
|
483
|
-
enriched: {} as never,
|
|
484
|
-
capabilities: [],
|
|
485
|
-
});
|
|
486
|
-
|
|
487
473
|
await handlePromptSubmit({ content: 'alt prompt' }, runtime, out);
|
|
488
|
-
|
|
489
474
|
expect(runtime.processPrompt).toHaveBeenCalledWith('alt prompt');
|
|
490
475
|
});
|
|
491
476
|
|
|
492
|
-
it('does not write to stdout when formatted is empty', async () => {
|
|
493
|
-
vi.mocked(runtime.processPrompt).mockResolvedValue({
|
|
494
|
-
formatted: '',
|
|
495
|
-
enriched: {} as never,
|
|
496
|
-
capabilities: [],
|
|
497
|
-
});
|
|
498
|
-
|
|
499
|
-
await handlePromptSubmit({ prompt: 'hello' }, runtime, out);
|
|
500
|
-
|
|
501
|
-
expect(out).toHaveLength(0);
|
|
502
|
-
});
|
|
503
|
-
|
|
504
477
|
it('returns early without calling processPrompt when prompt is empty', async () => {
|
|
505
478
|
await handlePromptSubmit({ prompt: '' }, runtime, out);
|
|
506
|
-
|
|
507
479
|
expect(runtime.processPrompt).not.toHaveBeenCalled();
|
|
508
480
|
expect(out).toHaveLength(0);
|
|
509
481
|
});
|
|
510
482
|
|
|
511
483
|
it('returns early when neither prompt nor content present', async () => {
|
|
512
484
|
await handlePromptSubmit({}, runtime, out);
|
|
513
|
-
|
|
514
485
|
expect(runtime.processPrompt).not.toHaveBeenCalled();
|
|
515
486
|
});
|
|
516
487
|
});
|
|
517
488
|
|
|
518
489
|
describe('handlePreCompact', () => {
|
|
519
|
-
it('fires
|
|
490
|
+
it('fires session_compact with summary', async () => {
|
|
520
491
|
const fire = vi.fn().mockResolvedValue([]);
|
|
521
492
|
const runtime = { fire } as unknown as DotAiRuntime;
|
|
522
493
|
|
|
523
494
|
await handlePreCompact({ summary: 'session wrapped up nicely' }, runtime);
|
|
524
495
|
|
|
525
|
-
expect(fire).toHaveBeenCalledWith('
|
|
526
|
-
|
|
496
|
+
expect(fire).toHaveBeenCalledWith('session_compact', {
|
|
497
|
+
summary: 'session wrapped up nicely',
|
|
527
498
|
});
|
|
528
499
|
});
|
|
529
500
|
|
|
@@ -535,7 +506,7 @@ describe('handlePreCompact', () => {
|
|
|
535
506
|
await handlePreCompact({ summary: longSummary }, runtime);
|
|
536
507
|
|
|
537
508
|
const call = fire.mock.calls[0][1];
|
|
538
|
-
expect(call.
|
|
509
|
+
expect(call.summary.length).toBe(1000);
|
|
539
510
|
});
|
|
540
511
|
|
|
541
512
|
it('reads from content field when summary is absent', async () => {
|
|
@@ -544,8 +515,8 @@ describe('handlePreCompact', () => {
|
|
|
544
515
|
|
|
545
516
|
await handlePreCompact({ content: 'fallback summary' }, runtime);
|
|
546
517
|
|
|
547
|
-
expect(fire).toHaveBeenCalledWith('
|
|
548
|
-
|
|
518
|
+
expect(fire).toHaveBeenCalledWith('session_compact', {
|
|
519
|
+
summary: 'fallback summary',
|
|
549
520
|
});
|
|
550
521
|
});
|
|
551
522
|
|
|
@@ -566,28 +537,24 @@ describe('handleStop', () => {
|
|
|
566
537
|
runtime = makeRuntime();
|
|
567
538
|
});
|
|
568
539
|
|
|
569
|
-
it('
|
|
540
|
+
it('fires agent_end with the response', async () => {
|
|
570
541
|
await handleStop({ response: 'I completed the task.' }, runtime);
|
|
571
|
-
|
|
572
|
-
expect(runtime.learn).toHaveBeenCalledWith('I completed the task.');
|
|
542
|
+
expect(runtime.fire).toHaveBeenCalledWith('agent_end', { response: 'I completed the task.' });
|
|
573
543
|
});
|
|
574
544
|
|
|
575
545
|
it('reads from content field when response is absent', async () => {
|
|
576
546
|
await handleStop({ content: 'alt response' }, runtime);
|
|
577
|
-
|
|
578
|
-
expect(runtime.learn).toHaveBeenCalledWith('alt response');
|
|
547
|
+
expect(runtime.fire).toHaveBeenCalledWith('agent_end', { response: 'alt response' });
|
|
579
548
|
});
|
|
580
549
|
|
|
581
|
-
it('does not
|
|
550
|
+
it('does not fire when response is empty', async () => {
|
|
582
551
|
await handleStop({ response: '' }, runtime);
|
|
583
|
-
|
|
584
|
-
expect(runtime.learn).not.toHaveBeenCalled();
|
|
552
|
+
expect(runtime.fire).not.toHaveBeenCalled();
|
|
585
553
|
});
|
|
586
554
|
|
|
587
|
-
it('does not
|
|
555
|
+
it('does not fire when neither response nor content present', async () => {
|
|
588
556
|
await handleStop({}, runtime);
|
|
589
|
-
|
|
590
|
-
expect(runtime.learn).not.toHaveBeenCalled();
|
|
557
|
+
expect(runtime.fire).not.toHaveBeenCalled();
|
|
591
558
|
});
|
|
592
559
|
});
|
|
593
560
|
|
|
@@ -598,11 +565,12 @@ describe('handleSessionStart', () => {
|
|
|
598
565
|
...makeRuntime(),
|
|
599
566
|
diagnostics: {
|
|
600
567
|
extensions: [
|
|
601
|
-
{ path: '/ext/my-ext.js', handlerCounts: {
|
|
568
|
+
{ path: '/ext/my-ext.js', handlerCounts: { context_enrich: 1 }, toolNames: [], commandNames: [], skillNames: [], identityNames: [] },
|
|
602
569
|
],
|
|
603
|
-
usedTiers: [],
|
|
604
570
|
capabilityCount: 0,
|
|
605
571
|
vocabularySize: 0,
|
|
572
|
+
skillCount: 0,
|
|
573
|
+
identityCount: 0,
|
|
606
574
|
},
|
|
607
575
|
};
|
|
608
576
|
|
|
@@ -611,50 +579,6 @@ describe('handleSessionStart', () => {
|
|
|
611
579
|
expect(errOut.some(l => l.includes('1 extension(s)'))).toBe(true);
|
|
612
580
|
});
|
|
613
581
|
|
|
614
|
-
it('warns about events not supported by Claude Code adapter', () => {
|
|
615
|
-
const errOut: string[] = [];
|
|
616
|
-
const unsupportedEvent = '__definitely_not_supported__';
|
|
617
|
-
const runtime = {
|
|
618
|
-
...makeRuntime(),
|
|
619
|
-
diagnostics: {
|
|
620
|
-
extensions: [
|
|
621
|
-
{ path: '/ext/my-ext.js', handlerCounts: { [unsupportedEvent]: 1 }, toolNames: [], commandNames: [], tiers: [] },
|
|
622
|
-
],
|
|
623
|
-
usedTiers: [],
|
|
624
|
-
capabilityCount: 0,
|
|
625
|
-
vocabularySize: 0,
|
|
626
|
-
},
|
|
627
|
-
};
|
|
628
|
-
|
|
629
|
-
handleSessionStart({}, runtime, errOut);
|
|
630
|
-
|
|
631
|
-
const warnings = errOut.filter(l => l.includes('Warning'));
|
|
632
|
-
expect(warnings.length).toBeGreaterThan(0);
|
|
633
|
-
expect(warnings[0]).toContain(unsupportedEvent);
|
|
634
|
-
expect(warnings[0]).toContain('/ext/my-ext.js');
|
|
635
|
-
});
|
|
636
|
-
|
|
637
|
-
it('does not warn for events that ARE supported', () => {
|
|
638
|
-
const errOut: string[] = [];
|
|
639
|
-
const supportedEvent = [...ADAPTER_CAPABILITIES['claude-code']][0];
|
|
640
|
-
const runtime = {
|
|
641
|
-
...makeRuntime(),
|
|
642
|
-
diagnostics: {
|
|
643
|
-
extensions: [
|
|
644
|
-
{ path: '/ext/my-ext.js', handlerCounts: { [supportedEvent]: 1 }, toolNames: [], commandNames: [], tiers: [] },
|
|
645
|
-
],
|
|
646
|
-
usedTiers: [],
|
|
647
|
-
capabilityCount: 0,
|
|
648
|
-
vocabularySize: 0,
|
|
649
|
-
},
|
|
650
|
-
};
|
|
651
|
-
|
|
652
|
-
handleSessionStart({}, runtime, errOut);
|
|
653
|
-
|
|
654
|
-
const warnings = errOut.filter(l => l.includes('Warning'));
|
|
655
|
-
expect(warnings).toHaveLength(0);
|
|
656
|
-
});
|
|
657
|
-
|
|
658
582
|
it('logs boot message when no extensions are loaded', () => {
|
|
659
583
|
const errOut: string[] = [];
|
|
660
584
|
handleSessionStart({}, makeRuntime(), errOut);
|
|
@@ -663,14 +587,3 @@ describe('handleSessionStart', () => {
|
|
|
663
587
|
expect(errOut.filter(l => l.includes('extension')).length).toBe(0);
|
|
664
588
|
});
|
|
665
589
|
});
|
|
666
|
-
|
|
667
|
-
describe('ADAPTER_CAPABILITIES claude-code set', () => {
|
|
668
|
-
it('is a Set', () => {
|
|
669
|
-
expect(ADAPTER_CAPABILITIES['claude-code']).toBeInstanceOf(Set);
|
|
670
|
-
});
|
|
671
|
-
|
|
672
|
-
it('contains expected event names', () => {
|
|
673
|
-
const set = ADAPTER_CAPABILITIES['claude-code'];
|
|
674
|
-
expect(set.size).toBeGreaterThan(0);
|
|
675
|
-
});
|
|
676
|
-
});
|
package/src/hook.ts
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
NoopLogger,
|
|
16
16
|
JsonFileLogger,
|
|
17
17
|
loadConfig,
|
|
18
|
-
|
|
18
|
+
formatSections,
|
|
19
19
|
} from '@dot-ai/core';
|
|
20
20
|
import type { Logger } from '@dot-ai/core';
|
|
21
21
|
|
|
@@ -37,9 +37,6 @@ async function createRuntime(workspaceRoot: string): Promise<DotAiRuntime> {
|
|
|
37
37
|
const runtime = new DotAiRuntime({
|
|
38
38
|
workspaceRoot,
|
|
39
39
|
logger,
|
|
40
|
-
skipIdentities: true,
|
|
41
|
-
maxSkillLength: 3000,
|
|
42
|
-
maxSkills: 5,
|
|
43
40
|
});
|
|
44
41
|
await runtime.boot();
|
|
45
42
|
return runtime;
|
|
@@ -47,8 +44,6 @@ async function createRuntime(workspaceRoot: string): Promise<DotAiRuntime> {
|
|
|
47
44
|
|
|
48
45
|
// ── Event handlers ──
|
|
49
46
|
|
|
50
|
-
const CLAUDE_SUPPORTED = ADAPTER_CAPABILITIES['claude-code'];
|
|
51
|
-
|
|
52
47
|
async function handleSessionStart(event: Record<string, unknown>): Promise<DotAiRuntime | undefined> {
|
|
53
48
|
const workspaceRoot = (event.cwd as string) ?? process.cwd();
|
|
54
49
|
const runtime = await createRuntime(workspaceRoot);
|
|
@@ -58,15 +53,6 @@ async function handleSessionStart(event: Record<string, unknown>): Promise<DotAi
|
|
|
58
53
|
process.stderr.write(`[dot-ai] Booted\n`);
|
|
59
54
|
if (diag.extensions.length > 0) {
|
|
60
55
|
process.stderr.write(`[dot-ai] ${diag.extensions.length} extension(s), ${diag.capabilityCount} tool(s)\n`);
|
|
61
|
-
for (const ext of diag.extensions) {
|
|
62
|
-
for (const eventName of Object.keys(ext.handlerCounts)) {
|
|
63
|
-
if (!CLAUDE_SUPPORTED.has(eventName)) {
|
|
64
|
-
process.stderr.write(
|
|
65
|
-
`[dot-ai] Warning: Extension ${ext.path} uses '${eventName}' (not supported by Claude Code adapter)\n`,
|
|
66
|
-
);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
56
|
}
|
|
71
57
|
return runtime;
|
|
72
58
|
}
|
|
@@ -78,7 +64,8 @@ async function handlePromptSubmit(event: Record<string, unknown>): Promise<DotAi
|
|
|
78
64
|
const prompt = (event.prompt ?? event.content ?? '') as string;
|
|
79
65
|
if (!prompt) return runtime;
|
|
80
66
|
|
|
81
|
-
const {
|
|
67
|
+
const { sections } = await runtime.processPrompt(prompt);
|
|
68
|
+
const formatted = formatSections(sections);
|
|
82
69
|
if (formatted) {
|
|
83
70
|
process.stdout.write(JSON.stringify({ result: formatted }));
|
|
84
71
|
}
|
|
@@ -91,8 +78,8 @@ async function handlePreCompact(event: Record<string, unknown>): Promise<DotAiRu
|
|
|
91
78
|
try {
|
|
92
79
|
const summary = (event.summary ?? event.content ?? '') as string;
|
|
93
80
|
if (summary) {
|
|
94
|
-
await runtime.fire('
|
|
95
|
-
|
|
81
|
+
await runtime.fire('session_compact', {
|
|
82
|
+
summary: summary.slice(0, 1000),
|
|
96
83
|
});
|
|
97
84
|
}
|
|
98
85
|
} catch (err) {
|
|
@@ -107,7 +94,7 @@ async function handleStop(event: Record<string, unknown>): Promise<DotAiRuntime
|
|
|
107
94
|
try {
|
|
108
95
|
const response = (event.response ?? event.content ?? '') as string;
|
|
109
96
|
if (response) {
|
|
110
|
-
await runtime.
|
|
97
|
+
await runtime.fire('agent_end', { response });
|
|
111
98
|
}
|
|
112
99
|
} catch (err) {
|
|
113
100
|
process.stderr.write(`[dot-ai] stop error: ${err}\n`);
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../core/dist/types.d.ts","../core/dist/extension-types.d.ts","../core/dist/logger.d.ts","../core/dist/extension-runner.d.ts","../core/dist/extension-api.d.ts","../core/dist/extension-loader.d.ts","../core/dist/capabilities.d.ts","../core/dist/format.d.ts","../core/dist/runtime.d.ts","../core/dist/labels.d.ts","../core/dist/nodes.d.ts","../core/dist/config.d.ts","../core/dist/package-manager.d.ts","../core/dist/boot-cache.d.ts","../core/dist/index.d.ts","./src/hook.ts","./src/index.ts","./src/mcp-server.ts","../../node_modules/.pnpm/@vitest+pretty-format@4.0.18/node_modules/@vitest/pretty-format/dist/index.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/display.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/timers.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/tasks.d-C7UxawJ9.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/traces.d.402V_yFI.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/config.d.Cy95HiCx.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/worker.d.Dyxm8DEL.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/browser.d.ChKACdzH.d.ts","../../node_modules/.pnpm/@vitest+spy@4.0.18/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/tinyrainbow@3.0.3/node_modules/tinyrainbow/dist/index.d.ts","../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../node_modules/.pnpm/@vitest+expect@4.0.18/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/global.d.B15mdLcR.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/suite.d.BJWk38HB.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/index.d.ts","./src/__tests__/format.test.ts","./src/__tests__/hook.test.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/buffer@5.7.1/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@22.19.12/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/index.d.ts"],"fileIdsList":[[133,182,199,200],[110,111,133,182,199,200],[133,179,180,182,199,200],[133,181,182,199,200],[182,199,200],[133,182,187,199,200,217],[133,182,183,188,193,199,200,202,214,225],[133,182,183,184,193,199,200,202],[128,129,130,133,182,199,200],[133,182,185,199,200,226],[133,182,186,187,194,199,200,203],[133,182,187,199,200,214,222],[133,182,188,190,193,199,200,202],[133,181,182,189,199,200],[133,182,190,191,199,200],[133,182,192,193,199,200],[133,181,182,193,199,200],[133,182,193,194,195,199,200,214,225],[133,182,193,194,195,199,200,209,214,217],[133,175,182,190,193,196,199,200,202,214,225],[133,182,193,194,196,197,199,200,202,214,222,225],[133,182,196,198,199,200,214,222,225],[131,132,133,134,135,136,137,176,177,178,179,180,181,182,183,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],[133,182,193,199,200],[133,182,199,200,201,225],[133,182,190,193,199,200,202,214],[133,182,199,200,203],[133,182,199,200,204],[133,181,182,199,200,205],[133,179,180,181,182,183,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],[133,182,199,200,207],[133,182,199,200,208],[133,182,193,199,200,209,210],[133,182,199,200,209,211,226,228],[133,182,194,199,200],[133,182,193,199,200,214,215,217],[133,182,199,200,216,217],[133,182,199,200,214,215],[133,182,199,200,217],[133,182,199,200,218],[133,179,182,199,200,214,219,225],[133,182,193,199,200,220,221],[133,182,199,200,220,221],[133,182,187,199,200,202,214,222],[133,182,199,200,223],[133,182,199,200,202,224],[133,182,196,199,200,208,225],[133,182,187,199,200,226],[133,182,199,200,214,227],[133,182,199,200,201,228],[133,182,199,200,229],[133,175,182,199,200],[133,175,182,193,195,199,200,205,214,217,225,227,228,230],[133,182,199,200,214,231],[83,87,90,92,107,108,109,112,117,133,182,199,200],[87,88,90,91,133,182,199,200],[87,133,182,199,200],[87,88,90,133,182,199,200],[87,88,133,182,199,200],[82,99,100,133,182,199,200],[82,99,133,182,199,200],[82,89,133,182,199,200],[82,133,182,199,200],[84,133,182,199,200],[82,83,84,85,86,133,182,199,200],[120,121,133,182,199,200],[120,121,122,123,133,182,199,200],[120,122,133,182,199,200],[120,133,182,199,200],[133,147,151,182,199,200,225],[133,147,182,199,200,214,225],[133,142,182,199,200],[133,144,147,182,199,200,222,225],[133,182,199,200,202,222],[133,182,199,200,232],[133,142,182,199,200,232],[133,144,147,182,199,200,202,225],[133,139,140,143,146,182,193,199,200,214,225],[133,147,154,182,199,200],[133,139,145,182,199,200],[133,147,168,169,182,199,200],[133,143,147,182,199,200,217,225,232],[133,168,182,199,200,232],[133,141,142,182,199,200,232],[133,147,182,199,200],[133,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,182,199,200],[133,147,162,182,199,200],[133,147,154,155,182,199,200],[133,145,147,155,156,182,199,200],[133,146,182,199,200],[133,139,142,147,182,199,200],[133,147,151,155,156,182,199,200],[133,151,182,199,200],[133,145,147,150,182,199,200,225],[133,139,144,147,154,182,199,200],[133,182,199,200,214],[133,142,147,168,182,199,200,230,232],[94,133,182,199,200],[94,95,96,97,133,182,199,200],[96,133,182,199,200],[92,114,115,117,133,182,199,200],[92,93,105,117,133,182,199,200],[82,90,92,101,117,133,182,199,200],[98,133,182,199,200],[82,92,101,104,113,116,117,133,182,199,200],[92,93,98,101,117,133,182,199,200],[92,114,115,116,117,133,182,199,200],[92,98,102,103,104,117,133,182,199,200],[82,87,90,92,93,98,101,102,103,104,105,106,107,113,114,115,116,117,118,119,124,133,182,199,200],[78,125,133,182,199,200],[78,133,182,199,200],[65,133,182,199,200],[64,133,182,199,200],[64,65,133,182,199,200],[64,65,68,133,182,199,200],[65,66,133,182,199,200],[64,66,70,133,182,199,200],[64,65,66,67,68,69,70,71,72,73,74,75,76,77,133,182,199,200],[64,65,66,67,70,71,133,182,199,200]],"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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"ec7ccdcefb7cb88b2d95f302573a9e6c5e9c0c4eac9643e67fc9a3cce220a583","impliedFormat":99},{"version":"0f9e8f7b21b0ffd004aafc94c57e58afeb344f26ecfaa3eb4bf1ec425d6fcd54","impliedFormat":99},{"version":"ba43e9f1820c8c62e673c421e1fb1f3d3e4ba71cd06ea8095e57b0ea7f4c4930","impliedFormat":99},{"version":"51188647e427e2f160abbc71970e1a0bbcd25776d97f4268a3839509da648447","impliedFormat":99},{"version":"8962df368307cede784a94a3666f1bf0ac65e04855e426f68be949ce189be0ff","impliedFormat":99},{"version":"424fcba58c0b5990f3e3282322925e0469183f098abcc5c9333f3124b131974f","impliedFormat":99},{"version":"a7e69f7562ef26af8f3322837af1274bc6285df4125f9b3f4b8adda3144b49cf","impliedFormat":99},{"version":"369099eef6ff3555ee1472d3b9518a315a1a9bf4ef19e55ec186a51203b10e6c","impliedFormat":99},{"version":"745ccea9ecbfaf98fe696f28d8d653bc2e9e79368955d21af98acf5c8cb4a9d8","impliedFormat":99},{"version":"84f5d002464b4ee8172fab70ad1352c9f2b2f1c692470f2a5e58db948e9e57a9","impliedFormat":99},{"version":"687962b0869f76a160a90bdf3981daf58edfc467eabeb82f5b4e611215b048f4","impliedFormat":99},{"version":"d3a8bd224f9c129c3bced355b2c70af56246d79d4b36389d5e0a6134791b4bb9","impliedFormat":99},{"version":"f1f1903e6039fae77313053bfd0433fba48a9f4c882754f1228c8af1a1314a14","impliedFormat":99},{"version":"b9d1d4071751d0d87823c367853ab862ea6232e1e039b89d1acb2c0e5bf587ff","impliedFormat":99},{"version":"ae46482bad973bfdf1ccbb32df71bf6973232d1ce8d7a25c66dc24fd1f838cc9","impliedFormat":99},{"version":"cb5c7e63dcabfba737e07193f7f9c9fddd22386a4e49fbd5c0a44740862223b7","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"0a136eddd665fa60b7eeb119e77ca2fd26bc0e56c42e3a238e0cc1267ba7dceb","signature":"028515aeff963558928e93fc419858ea16ad5b7cc4af0419d291d7a6bf37414a","impliedFormat":99},{"version":"de94e2ada55be6d772e615e115ecd81be741b56b6acc2434213b7a42d129e3f2","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"acfb723d81eda39156251aed414c553294870bf53062429ebfcfba8a68cb4753","impliedFormat":99},{"version":"fa69a90381c2f85889722a911a732a5ee3596dc3acecda8a9aa2fa89b9615d8d","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"57e9e1b0911874c62d743af24b5d56032759846533641d550b12a45ff404bf07","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"854cd3a3375ffc4e7a92b2168dd065d7ff2614b43341038a65cca865a44c00c5","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"2f863ee9b873a65d9c3338ea7aaddbdb41a9673f062f06983d712bd01c25dc6b","impliedFormat":99},{"version":"67aa128c2bc170b93794f191feffc65a4b33e878db211cfcb7658c4b72f7a1f5","impliedFormat":99},{"version":"ac3d263474022e9a14c43f588f485d549641d839b159ecc971978b90f34bdf6b","impliedFormat":99},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"72950913f4900b680f44d8cab6dd1ea0311698fc1eefb014eb9cdfc37ac4a734","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"c35b8117804c639c53c87f2c23e0c786df61d552e513bd5179f5b88e29964838","impliedFormat":99},{"version":"c609331c6ed4ad4af54e101088c6a4dcb48f8db7b0b97e44a6efeb130f4331bd","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"67acaedb46832d66c15f1b09fb7b6a0b7f41bdbf8eaa586ec70459b3e8896eb9","impliedFormat":99},{"version":"4535ab977ee871e956eb7bebe2db5de79f5d5ec7dfbbf1d35e08f4a2d6630dac","impliedFormat":99},{"version":"b79b5ed99f26ffb2f8ae4bdcc4b34a9542197dc3fa96cfb425c2a81e618cff28","impliedFormat":99},{"version":"31fd7c12f6e27154efb52a916b872509a771880f3b20f2dfd045785c13aa813f","impliedFormat":99},{"version":"b481de4ab5379bd481ca12fc0b255cdc47341629a22c240a89cdb4e209522be2","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"4e258d11c899cb9ff36b4b5c53df59cf4a5ccae9a9931529686e77431e0a3518","affectsGlobalScope":true,"impliedFormat":99},{"version":"a5ae67a67f786ffe92d34b55467a40fb50fb0093e92388cadce6168fa42690fd","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"a534e61c2f06a147d97aebad720db97dffd8066b7142212e46bcbcdcb640b81a","impliedFormat":99},{"version":"ddf569d04470a4d629090d43a16735185001f3fcf0ae036ead99f2ceab62be48","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"53c448183c7177c83d3eb0b40824cf8952721a6584cf22052adc24f778986732","impliedFormat":99},{"version":"c3b897cf8013b27b505fdeb7f48d39eb12d71356670510e6fb8461543f8d858e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"4b3f15dad100b348432010f27c89cb5ee34e9850d789d0faf8d3e5474dadf109","signature":"d464bc87ed76471921e2dad3d02029930100d985207382b36765e35daadf0f2b","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","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":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"f949f7f6c7802a338039cfc2156d1fe285cdd1e092c64437ebe15ae8edc854e0","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2bc7425ef40526650d6db7e072c1ff4a51101c3ac2cc4b666623b19496a6e27","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[[79,81],126,127],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":199,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":9},"referencedMap":[[109,1],[112,2],[110,1],[179,3],[180,3],[181,4],[133,5],[182,6],[183,7],[184,8],[128,1],[131,9],[129,1],[130,1],[185,10],[186,11],[187,12],[188,13],[189,14],[190,15],[191,15],[192,16],[193,17],[194,18],[195,19],[134,1],[132,1],[196,20],[197,21],[198,22],[232,23],[199,24],[200,1],[201,25],[202,26],[203,27],[204,28],[205,29],[206,30],[207,31],[208,32],[209,33],[210,33],[211,34],[212,1],[213,35],[214,36],[216,37],[215,38],[217,39],[218,40],[219,41],[220,42],[221,43],[222,44],[223,45],[224,46],[225,47],[226,48],[227,49],[228,50],[229,51],[135,1],[136,1],[137,1],[176,52],[177,1],[178,1],[230,53],[231,54],[113,55],[82,1],[92,56],[88,57],[91,58],[114,59],[99,1],[101,60],[100,61],[107,1],[90,62],[83,63],[85,64],[87,65],[86,1],[89,63],[84,1],[111,1],[138,1],[122,66],[124,67],[123,68],[121,69],[120,1],[115,1],[108,1],[61,1],[62,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[26,1],[4,1],[27,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[34,1],[5,1],[35,1],[36,1],[37,1],[38,1],[6,1],[42,1],[39,1],[40,1],[41,1],[43,1],[7,1],[44,1],[49,1],[50,1],[45,1],[46,1],[47,1],[48,1],[8,1],[54,1],[51,1],[52,1],[53,1],[55,1],[9,1],[56,1],[63,1],[57,1],[58,1],[60,1],[59,1],[1,1],[14,1],[13,1],[154,70],[164,71],[153,70],[174,72],[145,73],[144,74],[173,75],[167,76],[172,77],[147,78],[161,79],[146,80],[170,81],[142,82],[141,75],[171,83],[143,84],[148,85],[149,1],[152,85],[139,1],[175,86],[165,87],[156,88],[157,89],[159,90],[155,91],[158,92],[168,75],[150,93],[151,94],[160,95],[140,96],[163,87],[162,85],[166,1],[169,97],[95,98],[98,99],[96,98],[94,1],[97,100],[116,101],[106,102],[102,103],[103,57],[119,104],[117,105],[104,106],[118,107],[93,1],[105,108],[125,109],[126,110],[127,110],[79,111],[80,111],[81,111],[77,1],[70,112],[75,113],[68,114],[69,115],[67,116],[65,113],[71,117],[78,118],[73,113],[66,1],[74,113],[76,1],[72,119],[64,1]],"latestChangedDtsFile":"./dist/__tests__/hook.test.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../core/dist/types.d.ts","../core/dist/extension-types.d.ts","../core/dist/logger.d.ts","../core/dist/extension-runner.d.ts","../core/dist/extension-api.d.ts","../core/dist/extension-loader.d.ts","../core/dist/capabilities.d.ts","../core/dist/runtime.d.ts","../core/dist/labels.d.ts","../core/dist/nodes.d.ts","../core/dist/format.d.ts","../core/dist/config.d.ts","../core/dist/package-manager.d.ts","../core/dist/boot-cache.d.ts","../core/dist/index.d.ts","./src/hook.ts","./src/index.ts","./src/mcp-server.ts","../../node_modules/.pnpm/@vitest+pretty-format@4.0.18/node_modules/@vitest/pretty-format/dist/index.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/display.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/timers.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/tasks.d-C7UxawJ9.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/traces.d.402V_yFI.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/config.d.Cy95HiCx.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/worker.d.Dyxm8DEL.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/browser.d.ChKACdzH.d.ts","../../node_modules/.pnpm/@vitest+spy@4.0.18/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/tinyrainbow@3.0.3/node_modules/tinyrainbow/dist/index.d.ts","../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../node_modules/.pnpm/@vitest+expect@4.0.18/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/global.d.B15mdLcR.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/suite.d.BJWk38HB.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_tsx@4.21.0_yaml@2.8.2/node_modules/vitest/dist/index.d.ts","./src/__tests__/format.test.ts","./src/__tests__/hook.test.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/buffer@5.7.1/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@22.19.12/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/index.d.ts"],"fileIdsList":[[133,182,199,200],[110,111,133,182,199,200],[133,179,180,182,199,200],[133,181,182,199,200],[182,199,200],[133,182,187,199,200,217],[133,182,183,188,193,199,200,202,214,225],[133,182,183,184,193,199,200,202],[128,129,130,133,182,199,200],[133,182,185,199,200,226],[133,182,186,187,194,199,200,203],[133,182,187,199,200,214,222],[133,182,188,190,193,199,200,202],[133,181,182,189,199,200],[133,182,190,191,199,200],[133,182,192,193,199,200],[133,181,182,193,199,200],[133,182,193,194,195,199,200,214,225],[133,182,193,194,195,199,200,209,214,217],[133,175,182,190,193,196,199,200,202,214,225],[133,182,193,194,196,197,199,200,202,214,222,225],[133,182,196,198,199,200,214,222,225],[131,132,133,134,135,136,137,176,177,178,179,180,181,182,183,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],[133,182,193,199,200],[133,182,199,200,201,225],[133,182,190,193,199,200,202,214],[133,182,199,200,203],[133,182,199,200,204],[133,181,182,199,200,205],[133,179,180,181,182,183,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],[133,182,199,200,207],[133,182,199,200,208],[133,182,193,199,200,209,210],[133,182,199,200,209,211,226,228],[133,182,194,199,200],[133,182,193,199,200,214,215,217],[133,182,199,200,216,217],[133,182,199,200,214,215],[133,182,199,200,217],[133,182,199,200,218],[133,179,182,199,200,214,219,225],[133,182,193,199,200,220,221],[133,182,199,200,220,221],[133,182,187,199,200,202,214,222],[133,182,199,200,223],[133,182,199,200,202,224],[133,182,196,199,200,208,225],[133,182,187,199,200,226],[133,182,199,200,214,227],[133,182,199,200,201,228],[133,182,199,200,229],[133,175,182,199,200],[133,175,182,193,195,199,200,205,214,217,225,227,228,230],[133,182,199,200,214,231],[83,87,90,92,107,108,109,112,117,133,182,199,200],[87,88,90,91,133,182,199,200],[87,133,182,199,200],[87,88,90,133,182,199,200],[87,88,133,182,199,200],[82,99,100,133,182,199,200],[82,99,133,182,199,200],[82,89,133,182,199,200],[82,133,182,199,200],[84,133,182,199,200],[82,83,84,85,86,133,182,199,200],[120,121,133,182,199,200],[120,121,122,123,133,182,199,200],[120,122,133,182,199,200],[120,133,182,199,200],[133,147,151,182,199,200,225],[133,147,182,199,200,214,225],[133,142,182,199,200],[133,144,147,182,199,200,222,225],[133,182,199,200,202,222],[133,182,199,200,232],[133,142,182,199,200,232],[133,144,147,182,199,200,202,225],[133,139,140,143,146,182,193,199,200,214,225],[133,147,154,182,199,200],[133,139,145,182,199,200],[133,147,168,169,182,199,200],[133,143,147,182,199,200,217,225,232],[133,168,182,199,200,232],[133,141,142,182,199,200,232],[133,147,182,199,200],[133,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,182,199,200],[133,147,162,182,199,200],[133,147,154,155,182,199,200],[133,145,147,155,156,182,199,200],[133,146,182,199,200],[133,139,142,147,182,199,200],[133,147,151,155,156,182,199,200],[133,151,182,199,200],[133,145,147,150,182,199,200,225],[133,139,144,147,154,182,199,200],[133,182,199,200,214],[133,142,147,168,182,199,200,230,232],[94,133,182,199,200],[94,95,96,97,133,182,199,200],[96,133,182,199,200],[92,114,115,117,133,182,199,200],[92,93,105,117,133,182,199,200],[82,90,92,101,117,133,182,199,200],[98,133,182,199,200],[82,92,101,104,113,116,117,133,182,199,200],[92,93,98,101,117,133,182,199,200],[92,114,115,116,117,133,182,199,200],[92,98,102,103,104,117,133,182,199,200],[82,87,90,92,93,98,101,102,103,104,105,106,107,113,114,115,116,117,118,119,124,133,182,199,200],[78,125,133,182,199,200],[78,133,182,199,200],[65,133,182,199,200],[64,133,182,199,200],[64,65,133,182,199,200],[64,65,68,133,182,199,200],[64,65,66,133,182,199,200],[64,65,66,70,133,182,199,200],[64,65,66,67,68,69,70,71,72,73,74,75,76,77,133,182,199,200],[64,65,66,67,70,133,182,199,200]],"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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"ec7ccdcefb7cb88b2d95f302573a9e6c5e9c0c4eac9643e67fc9a3cce220a583","impliedFormat":99},{"version":"4e861ef3a9d68b23118c1f488ea5c15a2d69af21eb0e82a87ceda35543336f4a","impliedFormat":99},{"version":"ba43e9f1820c8c62e673c421e1fb1f3d3e4ba71cd06ea8095e57b0ea7f4c4930","impliedFormat":99},{"version":"1662e3e335460a1a89fffdfc5e95eb576575d2c8ab75d3ddef22b9b20decea8d","impliedFormat":99},{"version":"01a4594103b060ef33848b41057624950413c7919b48d5775c857724d0c61d38","impliedFormat":99},{"version":"dc8baf19ba667d7228a729d2af51a492f47e4568518ec729a33a01f604f2a3c6","impliedFormat":99},{"version":"a7e69f7562ef26af8f3322837af1274bc6285df4125f9b3f4b8adda3144b49cf","impliedFormat":99},{"version":"fc339cd74121eaf3732b723016bd21a385d3817ba329800c5b96558a8fc38a7c","impliedFormat":99},{"version":"84f5d002464b4ee8172fab70ad1352c9f2b2f1c692470f2a5e58db948e9e57a9","impliedFormat":99},{"version":"687962b0869f76a160a90bdf3981daf58edfc467eabeb82f5b4e611215b048f4","impliedFormat":99},{"version":"fc5e3b2f9794f8daac4b1c8779a14d0cd18ece6fa92d3d79aa8265f97f43fead","impliedFormat":99},{"version":"d3a8bd224f9c129c3bced355b2c70af56246d79d4b36389d5e0a6134791b4bb9","impliedFormat":99},{"version":"9a97e891a6ab2313e4e49c688f55a4cbd748d68442f9ce91a57df2ea6591a5c6","impliedFormat":99},{"version":"7439f18a13e14080782534f459d175c85ebc0234586b85a36a8a1cd6defdfdec","impliedFormat":99},{"version":"e007d3bfcd555c64635925c096e8ab21dd97751920e3e7afdd215de131b7f3ab","impliedFormat":99},{"version":"ff0214b40306ca373efa87650f289c94712bab7af4796bc9b3cc47a5bf64649c","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"0a136eddd665fa60b7eeb119e77ca2fd26bc0e56c42e3a238e0cc1267ba7dceb","signature":"028515aeff963558928e93fc419858ea16ad5b7cc4af0419d291d7a6bf37414a","impliedFormat":99},{"version":"de94e2ada55be6d772e615e115ecd81be741b56b6acc2434213b7a42d129e3f2","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"acfb723d81eda39156251aed414c553294870bf53062429ebfcfba8a68cb4753","impliedFormat":99},{"version":"fa69a90381c2f85889722a911a732a5ee3596dc3acecda8a9aa2fa89b9615d8d","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"57e9e1b0911874c62d743af24b5d56032759846533641d550b12a45ff404bf07","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"854cd3a3375ffc4e7a92b2168dd065d7ff2614b43341038a65cca865a44c00c5","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"2f863ee9b873a65d9c3338ea7aaddbdb41a9673f062f06983d712bd01c25dc6b","impliedFormat":99},{"version":"67aa128c2bc170b93794f191feffc65a4b33e878db211cfcb7658c4b72f7a1f5","impliedFormat":99},{"version":"ac3d263474022e9a14c43f588f485d549641d839b159ecc971978b90f34bdf6b","impliedFormat":99},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"72950913f4900b680f44d8cab6dd1ea0311698fc1eefb014eb9cdfc37ac4a734","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"c35b8117804c639c53c87f2c23e0c786df61d552e513bd5179f5b88e29964838","impliedFormat":99},{"version":"c609331c6ed4ad4af54e101088c6a4dcb48f8db7b0b97e44a6efeb130f4331bd","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"67acaedb46832d66c15f1b09fb7b6a0b7f41bdbf8eaa586ec70459b3e8896eb9","impliedFormat":99},{"version":"4535ab977ee871e956eb7bebe2db5de79f5d5ec7dfbbf1d35e08f4a2d6630dac","impliedFormat":99},{"version":"b79b5ed99f26ffb2f8ae4bdcc4b34a9542197dc3fa96cfb425c2a81e618cff28","impliedFormat":99},{"version":"31fd7c12f6e27154efb52a916b872509a771880f3b20f2dfd045785c13aa813f","impliedFormat":99},{"version":"b481de4ab5379bd481ca12fc0b255cdc47341629a22c240a89cdb4e209522be2","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"4e258d11c899cb9ff36b4b5c53df59cf4a5ccae9a9931529686e77431e0a3518","affectsGlobalScope":true,"impliedFormat":99},{"version":"a5ae67a67f786ffe92d34b55467a40fb50fb0093e92388cadce6168fa42690fd","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"a534e61c2f06a147d97aebad720db97dffd8066b7142212e46bcbcdcb640b81a","impliedFormat":99},{"version":"ddf569d04470a4d629090d43a16735185001f3fcf0ae036ead99f2ceab62be48","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"53c448183c7177c83d3eb0b40824cf8952721a6584cf22052adc24f778986732","impliedFormat":99},{"version":"c3b897cf8013b27b505fdeb7f48d39eb12d71356670510e6fb8461543f8d858e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"33452d00d17e87192f62fba24c9af425b24276f3351279119a728b377008e2dd","signature":"55ddf5d04a71414ac23108d0549c940b7205836e23095349544dd073ebdbee8c","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","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":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"f949f7f6c7802a338039cfc2156d1fe285cdd1e092c64437ebe15ae8edc854e0","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2bc7425ef40526650d6db7e072c1ff4a51101c3ac2cc4b666623b19496a6e27","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[[79,81],126,127],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":199,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":9},"referencedMap":[[109,1],[112,2],[110,1],[179,3],[180,3],[181,4],[133,5],[182,6],[183,7],[184,8],[128,1],[131,9],[129,1],[130,1],[185,10],[186,11],[187,12],[188,13],[189,14],[190,15],[191,15],[192,16],[193,17],[194,18],[195,19],[134,1],[132,1],[196,20],[197,21],[198,22],[232,23],[199,24],[200,1],[201,25],[202,26],[203,27],[204,28],[205,29],[206,30],[207,31],[208,32],[209,33],[210,33],[211,34],[212,1],[213,35],[214,36],[216,37],[215,38],[217,39],[218,40],[219,41],[220,42],[221,43],[222,44],[223,45],[224,46],[225,47],[226,48],[227,49],[228,50],[229,51],[135,1],[136,1],[137,1],[176,52],[177,1],[178,1],[230,53],[231,54],[113,55],[82,1],[92,56],[88,57],[91,58],[114,59],[99,1],[101,60],[100,61],[107,1],[90,62],[83,63],[85,64],[87,65],[86,1],[89,63],[84,1],[111,1],[138,1],[122,66],[124,67],[123,68],[121,69],[120,1],[115,1],[108,1],[61,1],[62,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[26,1],[4,1],[27,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[34,1],[5,1],[35,1],[36,1],[37,1],[38,1],[6,1],[42,1],[39,1],[40,1],[41,1],[43,1],[7,1],[44,1],[49,1],[50,1],[45,1],[46,1],[47,1],[48,1],[8,1],[54,1],[51,1],[52,1],[53,1],[55,1],[9,1],[56,1],[63,1],[57,1],[58,1],[60,1],[59,1],[1,1],[14,1],[13,1],[154,70],[164,71],[153,70],[174,72],[145,73],[144,74],[173,75],[167,76],[172,77],[147,78],[161,79],[146,80],[170,81],[142,82],[141,75],[171,83],[143,84],[148,85],[149,1],[152,85],[139,1],[175,86],[165,87],[156,88],[157,89],[159,90],[155,91],[158,92],[168,75],[150,93],[151,94],[160,95],[140,96],[163,87],[162,85],[166,1],[169,97],[95,98],[98,99],[96,98],[94,1],[97,100],[116,101],[106,102],[102,103],[103,57],[119,104],[117,105],[104,106],[118,107],[93,1],[105,108],[125,109],[126,110],[127,110],[79,111],[80,111],[81,111],[77,1],[70,112],[75,113],[68,114],[69,115],[67,116],[65,113],[74,117],[78,118],[72,113],[66,1],[73,113],[76,1],[71,119],[64,1]],"latestChangedDtsFile":"./dist/__tests__/hook.test.d.ts","version":"5.9.3"}
|