@ddse/acm-sdk 0.5.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.
Files changed (111) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +221 -0
  3. package/dist/capability.d.ts +10 -0
  4. package/dist/capability.d.ts.map +1 -0
  5. package/dist/capability.js +3 -0
  6. package/dist/capability.js.map +1 -0
  7. package/dist/index.d.ts +8 -0
  8. package/dist/index.d.ts.map +1 -0
  9. package/dist/index.js +9 -0
  10. package/dist/index.js.map +1 -0
  11. package/dist/policy.d.ts +5 -0
  12. package/dist/policy.d.ts.map +1 -0
  13. package/dist/policy.js +2 -0
  14. package/dist/policy.js.map +1 -0
  15. package/dist/registry.d.ts +6 -0
  16. package/dist/registry.d.ts.map +1 -0
  17. package/dist/registry.js +3 -0
  18. package/dist/registry.js.map +1 -0
  19. package/dist/src/capability-map.d.ts +6 -0
  20. package/dist/src/capability-map.d.ts.map +1 -0
  21. package/dist/src/capability-map.js +281 -0
  22. package/dist/src/capability-map.js.map +1 -0
  23. package/dist/src/capability.d.ts +10 -0
  24. package/dist/src/capability.d.ts.map +1 -0
  25. package/dist/src/capability.js +3 -0
  26. package/dist/src/capability.js.map +1 -0
  27. package/dist/src/context-provider.d.ts +36 -0
  28. package/dist/src/context-provider.d.ts.map +1 -0
  29. package/dist/src/context-provider.js +59 -0
  30. package/dist/src/context-provider.js.map +1 -0
  31. package/dist/src/context.d.ts +42 -0
  32. package/dist/src/context.d.ts.map +1 -0
  33. package/dist/src/context.js +148 -0
  34. package/dist/src/context.js.map +1 -0
  35. package/dist/src/index.d.ts +12 -0
  36. package/dist/src/index.d.ts.map +1 -0
  37. package/dist/src/index.js +13 -0
  38. package/dist/src/index.js.map +1 -0
  39. package/dist/src/nucleus.d.ts +105 -0
  40. package/dist/src/nucleus.d.ts.map +1 -0
  41. package/dist/src/nucleus.js +208 -0
  42. package/dist/src/nucleus.js.map +1 -0
  43. package/dist/src/policy.d.ts +5 -0
  44. package/dist/src/policy.d.ts.map +1 -0
  45. package/dist/src/policy.js +2 -0
  46. package/dist/src/policy.js.map +1 -0
  47. package/dist/src/registry.d.ts +6 -0
  48. package/dist/src/registry.d.ts.map +1 -0
  49. package/dist/src/registry.js +3 -0
  50. package/dist/src/registry.js.map +1 -0
  51. package/dist/src/stream.d.ts +8 -0
  52. package/dist/src/stream.d.ts.map +1 -0
  53. package/dist/src/stream.js +19 -0
  54. package/dist/src/stream.js.map +1 -0
  55. package/dist/src/task.d.ts +24 -0
  56. package/dist/src/task.d.ts.map +1 -0
  57. package/dist/src/task.js +11 -0
  58. package/dist/src/task.js.map +1 -0
  59. package/dist/src/tool.d.ts +5 -0
  60. package/dist/src/tool.d.ts.map +1 -0
  61. package/dist/src/tool.js +4 -0
  62. package/dist/src/tool.js.map +1 -0
  63. package/dist/src/types.d.ts +195 -0
  64. package/dist/src/types.d.ts.map +1 -0
  65. package/dist/src/types.js +2 -0
  66. package/dist/src/types.js.map +1 -0
  67. package/dist/src/utils.d.ts +22 -0
  68. package/dist/src/utils.d.ts.map +1 -0
  69. package/dist/src/utils.js +194 -0
  70. package/dist/src/utils.js.map +1 -0
  71. package/dist/src/validators.d.ts +20 -0
  72. package/dist/src/validators.d.ts.map +1 -0
  73. package/dist/src/validators.js +209 -0
  74. package/dist/src/validators.js.map +1 -0
  75. package/dist/stream.d.ts +8 -0
  76. package/dist/stream.d.ts.map +1 -0
  77. package/dist/stream.js +19 -0
  78. package/dist/stream.js.map +1 -0
  79. package/dist/task.d.ts +11 -0
  80. package/dist/task.d.ts.map +1 -0
  81. package/dist/task.js +9 -0
  82. package/dist/task.js.map +1 -0
  83. package/dist/tests/phase4-integration.test.d.ts +2 -0
  84. package/dist/tests/phase4-integration.test.d.ts.map +1 -0
  85. package/dist/tests/phase4-integration.test.js +115 -0
  86. package/dist/tests/phase4-integration.test.js.map +1 -0
  87. package/dist/tool.d.ts +5 -0
  88. package/dist/tool.d.ts.map +1 -0
  89. package/dist/tool.js +4 -0
  90. package/dist/tool.js.map +1 -0
  91. package/dist/tsconfig.tsbuildinfo +1 -0
  92. package/dist/types.d.ts +77 -0
  93. package/dist/types.d.ts.map +1 -0
  94. package/dist/types.js +3 -0
  95. package/dist/types.js.map +1 -0
  96. package/package.json +26 -0
  97. package/src/capability.ts +11 -0
  98. package/src/context-provider.ts +136 -0
  99. package/src/context.ts +190 -0
  100. package/src/index.ts +12 -0
  101. package/src/nucleus.ts +341 -0
  102. package/src/policy.ts +9 -0
  103. package/src/registry.ts +7 -0
  104. package/src/stream.ts +24 -0
  105. package/src/task.ts +38 -0
  106. package/src/tool.ts +6 -0
  107. package/src/types.ts +233 -0
  108. package/src/utils.ts +271 -0
  109. package/tests/phase4-integration.test.ts +138 -0
  110. package/tsconfig.json +8 -0
  111. package/tsconfig.tsbuildinfo +1 -0
package/src/utils.ts ADDED
@@ -0,0 +1,271 @@
1
+ import type { Plan } from './types.js';
2
+ import type { CapabilityRegistry } from './capability.js';
3
+
4
+ export type PlannerResultLike = {
5
+ plans?: Plan[];
6
+ contextRef?: string;
7
+ rationale?: string;
8
+ };
9
+
10
+ export type NormalizedPlannerResult = {
11
+ plans: Plan[];
12
+ contextRef: string;
13
+ rationale?: string;
14
+ };
15
+
16
+ export type NormalizePlanOptions = {
17
+ capabilityRegistry?: CapabilityRegistry;
18
+ defaultContextRef?: string;
19
+ planIdPrefix?: string;
20
+ };
21
+
22
+ function canonicalizeCapabilitySlug(value: string): string {
23
+ let normalized = value
24
+ .replace(/[:/\\]+/g, '.')
25
+ .replace(/\s+/g, '_')
26
+ .replace(/-+/g, '_');
27
+
28
+ normalized = normalized.replace(/([a-z0-9])([A-Z])/g, '$1_$2');
29
+
30
+ normalized = normalized
31
+ .replace(/[^a-zA-Z0-9._@]+/g, '_')
32
+ .replace(/_{2,}/g, '_')
33
+ .replace(/\.{2,}/g, '.')
34
+ .replace(/^[._]+|[._]+$/g, '');
35
+
36
+ return normalized.toLowerCase();
37
+ }
38
+
39
+ export function resolveCapabilityName(
40
+ value: unknown,
41
+ registry?: CapabilityRegistry
42
+ ): string {
43
+ if (value === undefined || value === null) {
44
+ return '';
45
+ }
46
+
47
+ const raw = (typeof value === 'string' ? value : String(value)).trim();
48
+ if (!raw) {
49
+ return '';
50
+ }
51
+
52
+ const candidates = new Set<string>();
53
+ const lowered = raw.toLowerCase();
54
+
55
+ candidates.add(raw);
56
+ candidates.add(lowered);
57
+ candidates.add(raw.replace(/\s+/g, '_'));
58
+ candidates.add(lowered.replace(/\s+/g, '_'));
59
+ candidates.add(raw.replace(/\s+/g, '.'));
60
+ candidates.add(lowered.replace(/\s+/g, '.'));
61
+ candidates.add(raw.replace(/[-\s]+/g, '_'));
62
+ candidates.add(lowered.replace(/[-\s]+/g, '_'));
63
+ candidates.add(raw.replace(/[-\s]+/g, '.'));
64
+ candidates.add(lowered.replace(/[-\s]+/g, '.'));
65
+
66
+ const slug = canonicalizeCapabilitySlug(raw);
67
+ candidates.add(slug);
68
+ candidates.add(slug.replace(/\./g, '_'));
69
+ candidates.add(slug.replace(/_/g, '.'));
70
+
71
+ if (registry) {
72
+ for (const candidate of candidates) {
73
+ if (!candidate) continue;
74
+ if (registry.has(candidate)) {
75
+ return candidate;
76
+ }
77
+ }
78
+ }
79
+
80
+ return slug;
81
+ }
82
+
83
+ function shouldUppercaseValue(key: string): boolean {
84
+ const normalizedKey = key
85
+ .replace(/[^a-zA-Z0-9]+/g, '')
86
+ .toLowerCase();
87
+
88
+ return (
89
+ normalizedKey.endsWith('id') ||
90
+ normalizedKey.endsWith('code') ||
91
+ normalizedKey.endsWith('sku') ||
92
+ normalizedKey.endsWith('ref')
93
+ );
94
+ }
95
+
96
+ export function normalizeTaskInput(value: unknown): unknown {
97
+ if (Array.isArray(value)) {
98
+ return value.map(item => normalizeTaskInput(item));
99
+ }
100
+
101
+ if (value && typeof value === 'object') {
102
+ const normalized: Record<string, unknown> = {};
103
+ for (const [rawKey, rawVal] of Object.entries(value as Record<string, unknown>)) {
104
+ const trimmedKey = rawKey.trim();
105
+ let normalizedValue = normalizeTaskInput(rawVal);
106
+ if (typeof normalizedValue === 'string') {
107
+ const trimmedValue = normalizedValue.trim();
108
+ normalizedValue = shouldUppercaseValue(trimmedKey)
109
+ ? trimmedValue.toUpperCase()
110
+ : trimmedValue;
111
+ }
112
+ normalized[trimmedKey] = normalizedValue;
113
+ }
114
+
115
+ for (const [key, val] of Object.entries(normalized)) {
116
+ const lowerKey = key.toLowerCase();
117
+ if (lowerKey.endsWith('ids')) {
118
+ const singularKey = key.slice(0, -1);
119
+ if (!(singularKey in normalized)) {
120
+ if (Array.isArray(val)) {
121
+ if (val.length > 0) {
122
+ normalized[singularKey] = val[0];
123
+ }
124
+ } else if (val !== undefined && val !== null) {
125
+ normalized[singularKey] = val;
126
+ }
127
+ }
128
+ }
129
+
130
+ if (key.includes('_') || key.includes('-')) {
131
+ const camelKey = key
132
+ .replace(/[-_]+(.)?/g, (_, chr?: string) => (chr ? chr.toUpperCase() : ''))
133
+ .replace(/^[A-Z]/, match => match.toLowerCase());
134
+
135
+ if (camelKey && !(camelKey in normalized)) {
136
+ normalized[camelKey] = val;
137
+ }
138
+ }
139
+ }
140
+ return normalized;
141
+ }
142
+
143
+ if (typeof value === 'string') {
144
+ return value.trim();
145
+ }
146
+
147
+ return value;
148
+ }
149
+
150
+ export function normalizePlan(
151
+ plan: Plan,
152
+ options: NormalizePlanOptions = {}
153
+ ): Plan {
154
+ const { capabilityRegistry, defaultContextRef, planIdPrefix } = options;
155
+ const tasks = Array.isArray(plan.tasks) ? plan.tasks : [];
156
+
157
+ const normalizedTasks = tasks.map((task, index) => {
158
+ const trimmedId = typeof task.id === 'string' ? task.id.trim() : task.id;
159
+ const canonicalCapability = resolveCapabilityName(
160
+ task.capability ?? task.capabilityRef ?? '',
161
+ capabilityRegistry
162
+ );
163
+ const resolvedTask = canonicalCapability
164
+ ? capabilityRegistry?.resolve(canonicalCapability)
165
+ : undefined;
166
+
167
+ const fallbackId =
168
+ (typeof resolvedTask?.id === 'string' && resolvedTask.id) ||
169
+ trimmedId ||
170
+ (canonicalCapability ? `${canonicalCapability.replace(/\./g, '-')}-${index + 1}` : `task-${index + 1}`);
171
+
172
+ const verification =
173
+ task.verification ??
174
+ (typeof resolvedTask?.verification === 'function'
175
+ ? resolvedTask.verification()
176
+ : task.verification);
177
+
178
+ return {
179
+ ...task,
180
+ id: fallbackId,
181
+ capability:
182
+ canonicalCapability ||
183
+ (typeof task.capability === 'string' ? task.capability.trim() : task.capability),
184
+ capabilityRef:
185
+ canonicalCapability ||
186
+ (typeof task.capabilityRef === 'string' ? task.capabilityRef.trim() : task.capabilityRef),
187
+ input: normalizeTaskInput(task.input),
188
+ verification,
189
+ };
190
+ });
191
+
192
+ const validTaskIds = new Set(
193
+ normalizedTasks
194
+ .map(task => (typeof task.id === 'string' ? task.id : ''))
195
+ .filter(Boolean)
196
+ );
197
+
198
+ const normalizedEdges = (Array.isArray(plan.edges) ? plan.edges : [])
199
+ .map(edge => ({
200
+ ...edge,
201
+ from: typeof edge.from === 'string' ? edge.from.trim() : edge.from,
202
+ to: typeof edge.to === 'string' ? edge.to.trim() : edge.to,
203
+ }))
204
+ .filter(edge => typeof edge.from === 'string' && typeof edge.to === 'string')
205
+ .filter(edge => validTaskIds.has(edge.from) && validTaskIds.has(edge.to));
206
+
207
+ if (normalizedEdges.length === 0 && normalizedTasks.length > 1) {
208
+ for (let i = 0; i < normalizedTasks.length - 1; i += 1) {
209
+ const current = normalizedTasks[i];
210
+ const next = normalizedTasks[i + 1];
211
+ if (typeof current.id === 'string' && typeof next.id === 'string') {
212
+ normalizedEdges.push({ from: current.id, to: next.id });
213
+ }
214
+ }
215
+ }
216
+
217
+ const trimmedPlanId = typeof plan.id === 'string' ? plan.id.trim() : plan.id;
218
+ const finalPlanId =
219
+ (trimmedPlanId && String(trimmedPlanId)) ??
220
+ `${planIdPrefix ?? 'plan'}-${Date.now()}`;
221
+
222
+ const trimmedContextRef =
223
+ typeof plan.contextRef === 'string' && plan.contextRef.trim()
224
+ ? plan.contextRef.trim()
225
+ : undefined;
226
+
227
+ return {
228
+ ...plan,
229
+ id: finalPlanId,
230
+ contextRef: trimmedContextRef ?? defaultContextRef ?? 'context-unknown',
231
+ tasks: normalizedTasks,
232
+ edges: normalizedEdges,
233
+ };
234
+ }
235
+
236
+ export function normalizePlannerResult(
237
+ result: PlannerResultLike | undefined,
238
+ normalizedPlan: Plan,
239
+ options: NormalizePlanOptions = {}
240
+ ): NormalizedPlannerResult {
241
+ const { capabilityRegistry, defaultContextRef, planIdPrefix } = options;
242
+
243
+ const plans = Array.isArray(result?.plans) ? result!.plans : [];
244
+ const normalizedPlans = plans.map(plan => {
245
+ const trimmedId = typeof plan.id === 'string' ? plan.id.trim() : plan.id;
246
+ if (trimmedId === normalizedPlan.id) {
247
+ return normalizedPlan;
248
+ }
249
+ return normalizePlan(plan, {
250
+ capabilityRegistry,
251
+ defaultContextRef: defaultContextRef ?? normalizedPlan.contextRef,
252
+ planIdPrefix,
253
+ });
254
+ });
255
+
256
+ if (!normalizedPlans.some(plan => plan.id === normalizedPlan.id)) {
257
+ normalizedPlans.push(normalizedPlan);
258
+ }
259
+
260
+ const contextRef =
261
+ result?.contextRef?.trim() ??
262
+ normalizedPlan.contextRef ??
263
+ defaultContextRef ??
264
+ 'context-unknown';
265
+
266
+ return {
267
+ plans: normalizedPlans,
268
+ contextRef,
269
+ rationale: result?.rationale,
270
+ };
271
+ }
@@ -0,0 +1,138 @@
1
+ // Phase 4 Integration Test - Nucleus and Context Builder
2
+ import {
3
+ DeterministicNucleus,
4
+ ContextBuilder,
5
+ InternalContextScopeImpl,
6
+ type NucleusConfig,
7
+ type Goal,
8
+ type Context,
9
+ type Capability,
10
+ } from '../src/index.js';
11
+
12
+ // Mock LLM for testing
13
+ class MockLLM {
14
+ name() {
15
+ return 'mock-llm';
16
+ }
17
+
18
+ async generate(messages: any[], opts?: any) {
19
+ return {
20
+ text: 'Mock response',
21
+ tokens: 10,
22
+ };
23
+ }
24
+
25
+ async generateWithTools(messages: any[], tools: any[], opts?: any) {
26
+ // Return structured plan via tool calls
27
+ return {
28
+ text: 'Planning complete',
29
+ toolCalls: [
30
+ {
31
+ id: 'call-1',
32
+ name: 'emit_plan',
33
+ arguments: {
34
+ planId: 'plan-a',
35
+ tasks: [
36
+ { id: 't1', capability: 'analyze', input: {} },
37
+ { id: 't2', capability: 'process', input: {} },
38
+ ],
39
+ edges: [
40
+ { from: 't1', to: 't2' },
41
+ ],
42
+ rationale: 'Sequential analysis and processing',
43
+ },
44
+ },
45
+ ],
46
+ tokens: 25,
47
+ };
48
+ }
49
+ }
50
+
51
+ console.log('Running Phase 4 Integration Tests');
52
+ console.log('='.repeat(60));
53
+
54
+ // Test 1: Context Builder
55
+ console.log('\nTest 1: Context Builder with Provenance');
56
+ const builder = new ContextBuilder();
57
+ builder
58
+ .addSource('kb://orders/2025', 'database')
59
+ .addFact('orderId', 'O123')
60
+ .addFact('amount', 100.50)
61
+ .addAssumption('customer is active')
62
+ .setProvenance({
63
+ llm: { provider: 'openai', model: 'gpt-4', temperature: 0.1 },
64
+ });
65
+
66
+ const context = builder.build('ctx-v1');
67
+ console.log('✅ Context built with provenance');
68
+ console.log(` Context ID: ${context.id.substring(0, 20)}...`);
69
+ console.log(` Facts: ${Object.keys(context.facts).length}`);
70
+ console.log(` Sources: ${context.sources?.length || 0}`);
71
+
72
+ // Test 2: Nucleus with Internal Context
73
+ console.log('\nTest 2: Nucleus with Internal Context Scope');
74
+ const ledgerEntries: any[] = [];
75
+ const ledgerAppend = (entry: any) => {
76
+ ledgerEntries.push(entry);
77
+ };
78
+
79
+ const contextRef = ContextBuilder.computeContextRef(context);
80
+
81
+ const nucleusConfig: NucleusConfig = {
82
+ goalId: 'GOAL-001',
83
+ goalIntent: 'Help the operator assess order records',
84
+ taskId: 't1',
85
+ contextRef,
86
+ context,
87
+ llmCall: {
88
+ provider: 'openai',
89
+ model: 'gpt-4',
90
+ temperature: 0,
91
+ seed: 12345,
92
+ },
93
+ hooks: {
94
+ preflight: true,
95
+ postcheck: false,
96
+ },
97
+ };
98
+
99
+ const mockLLMCall = async (prompt: string, tools: any[], config: any) => {
100
+ if (!prompt.includes('"orderId": "O123"')) {
101
+ throw new Error('Prompt missing context facts');
102
+ }
103
+ return {
104
+ reasoning: 'Context is sufficient',
105
+ toolCalls: [],
106
+ };
107
+ };
108
+
109
+ const nucleus = new DeterministicNucleus(nucleusConfig, mockLLMCall, ledgerAppend);
110
+
111
+ // Set internal context
112
+ const internalScope = new InternalContextScopeImpl(ledgerAppend);
113
+ internalScope.addArtifact('summary', { text: 'Order summary...' }, {
114
+ tool: 'summarizer',
115
+ rationale: 'Needed for analysis',
116
+ });
117
+
118
+ nucleus.setInternalContext(internalScope);
119
+
120
+ // Run preflight
121
+ const preflightResult = await nucleus.preflight();
122
+ console.log('✅ Nucleus preflight completed');
123
+ console.log(` Status: ${preflightResult.status}`);
124
+ console.log(` Internal artifacts: ${internalScope.artifacts.length}`);
125
+ console.log(` Ledger entries: ${ledgerEntries.length}`);
126
+
127
+ // Test 3: Context Reference Hashing
128
+ console.log('\nTest 3: SHA-256 Context Reference');
129
+ const contextRef1 = ContextBuilder.computeContextRef(context);
130
+ const contextRef2 = ContextBuilder.computeContextRef(context);
131
+ console.log('✅ Context reference hashing');
132
+ console.log(` Ref 1: ${contextRef1.substring(0, 16)}...`);
133
+ console.log(` Ref 2: ${contextRef2.substring(0, 16)}...`);
134
+ console.log(` Deterministic: ${contextRef1 === contextRef2 ? 'YES' : 'NO'}`);
135
+
136
+ console.log('\n' + '='.repeat(60));
137
+ console.log('All Phase 4 integration tests passed! ✅');
138
+ console.log('='.repeat(60));
package/tsconfig.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "./",
5
+ "outDir": "./dist"
6
+ },
7
+ "include": ["src/**/*", "tests/**/*"]
8
+ }
@@ -0,0 +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.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","./src/types.ts","./src/task.ts","./src/capability.ts","./src/tool.ts","./src/registry.ts","./src/policy.ts","./src/stream.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.19/node_modules/@types/node/index.d.ts"],"fileIdsList":[[71,114,117],[71,116,117],[117],[71,117,122,150],[71,117,118,123,128,136,147,158],[71,117,118,119,128,136],[71,117],[66,67,68,71,117],[71,117,120,159],[71,117,121,122,129,137],[71,117,122,147,155],[71,117,123,125,128,136],[71,116,117,124],[71,117,125,126],[71,117,127,128],[71,116,117,128],[71,117,128,129,130,147,158],[71,117,128,129,130,143,147,150],[71,117,125,128,131,136,147,158],[71,117,128,129,131,132,136,147,155,158],[71,117,131,133,147,155,158],[69,70,71,72,73,74,75,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[71,117,128,134],[71,117,135,158,163],[71,117,125,128,136,147],[71,117,137],[71,117,138],[71,116,117,139],[71,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[71,117,141],[71,117,142],[71,117,128,143,144],[71,117,143,145,159,161],[71,117,128,147,148,150],[71,117,149,150],[71,117,147,148],[71,117,150],[71,117,151],[71,114,117,147,152],[71,117,128,153,154],[71,117,153,154],[71,117,122,136,147,155],[71,117,156],[71,117,136,157],[71,117,131,142,158],[71,117,122,159],[71,117,147,160],[71,117,135,161],[71,117,162],[71,112,117],[71,112,117,128,130,139,147,150,158,161,163],[71,117,147,164],[71,84,88,117,158],[71,84,117,147,158],[71,79,117],[71,81,84,117,155,158],[71,117,136,155],[71,117,165],[71,79,117,165],[71,81,84,117,136,158],[71,76,77,80,83,117,128,147,158],[71,84,91,117],[71,76,82,117],[71,84,105,106,117],[71,80,84,117,150,158,165],[71,105,117,165],[71,78,79,117,165],[71,84,117],[71,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,117],[71,84,99,117],[71,84,91,92,117],[71,82,84,92,93,117],[71,83,117],[71,76,79,84,117],[71,84,88,92,93,117],[71,88,117],[71,82,84,87,117,158],[71,76,81,84,91,117],[71,117,147],[71,79,84,105,117,163,165],[58,59,71,117],[58,59,60,61,62,63,64,71,117],[58,71,117],[61,71,117]],"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":"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":"d5fcf12a1e8b07360b5d2a5ce468260cc550f6a87b6c6b7a0cc16f5ac6d0d13f","signature":"f0b083c223183dc9418ab6487f7e40faea1d7d9f28bc89ea7092695e74c5ea5d"},{"version":"932246c30a5424d25be3629929117b944b6e934664ac7b117c06ba357c91e2cc","signature":"68f5387a7bc6b383b9ec94676fe57c6a0ba31276e43d7863b90a2c14238cc066"},{"version":"687eb8ee472ba07fc940236f97dcfcd04a1b77b550184312a1bb36540729e648","signature":"1a88dfa5ab3bdecb302f94b4abdf1510c68699cf3437347a3462116cf37d8fb4"},{"version":"8fe61e10442ae4c3d672f1eb6b72e79c102cc16cc4b3e5bc4b19d310f31ae0a6","signature":"d11a4c7da78f3ca2be8e9dcdbe007e5abd0dbd2ab82ae686c76772346bf8c620"},{"version":"67a89ec74ba77c614415adaa793c82d102d2f25cea2a3ef6b3d86b140af63e35","signature":"5d5df716a2e624c74357b49383a950b8ff0567890c28e62d3787011dd26eaf4d"},{"version":"8fe845cdc767171f1e4b2aa75546709ad49089a8c428cd4057e36be68629e06a","signature":"4e863ccf9bf55d8b9120ce28e4faee052e191fa9fa2c9637d427682a9a72059c"},{"version":"63da9704b071c3be9e8e1dd9f2c8ad2ebca0933590ff03b0647f4b7c749b0eb0","signature":"45b1108af4c5adaa8e1cf58e6fcaa73fde57c72254c7ae5603673c04b364c522"},{"version":"838f9c67980140b407c6b792255c46c95ef36d07b30f1c02d1ca89f85bd1faa0","signature":"4329d5d602586aa42de074aee567ab2f678a3049ebe4b4a2403a09427357f2e2"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e2e0a2dfc6bfabffacba3cc3395aa8197f30893942a2625bd9923ea34a27a3c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"1d140fe7e071ea06038b6c5e01fea83f72d9d6d68e0d606a3d824323f5133388","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"685657a3ec619ef12aa7f754eee3b28598d3bf9749da89839a72a343fffef5ff","impliedFormat":1},{"version":"0c52340a45f6a46b67d766210f921aed61a5f1defe9e708fa5d3389bdf743d98","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"fed70ffbe859d54d8c7e1ef8cc2bc38af99b00a273ebb69ac293d2cb656210bd","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[58,65]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":7,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[114,1],[115,1],[116,2],[71,3],[117,4],[118,5],[119,6],[66,7],[69,8],[67,7],[68,7],[120,9],[121,10],[122,11],[123,12],[124,13],[125,14],[126,14],[127,15],[128,16],[129,17],[130,18],[72,7],[70,7],[131,19],[132,20],[133,21],[165,22],[134,23],[135,24],[136,25],[137,26],[138,27],[139,28],[140,29],[141,30],[142,31],[143,32],[144,32],[145,33],[146,7],[147,34],[149,35],[148,36],[150,37],[151,38],[152,39],[153,40],[154,41],[155,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[73,7],[74,7],[75,7],[113,50],[163,51],[164,52],[56,7],[57,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[8,7],[49,7],[46,7],[47,7],[48,7],[50,7],[9,7],[51,7],[52,7],[53,7],[55,7],[54,7],[1,7],[91,53],[101,54],[90,53],[111,55],[82,56],[81,57],[110,58],[104,59],[109,60],[84,61],[98,62],[83,63],[107,64],[79,65],[78,58],[108,66],[80,67],[85,68],[86,7],[89,68],[76,7],[112,69],[102,70],[93,71],[94,72],[96,73],[92,74],[95,75],[105,58],[87,76],[88,77],[97,78],[77,79],[100,70],[99,68],[103,7],[106,80],[60,81],[65,82],[63,83],[62,84],[64,83],[59,83],[61,7],[58,7]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.3"}