@ddse/acm-framework 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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 DDSE Foundation
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,100 @@
1
+ # @ddse/acm-framework
2
+
3
+ High-level helper that wraps the ACM structured planner and runtime behind a single `setup`/`execute` flow. It is intended for developers who want to run the full ACM pipeline without manually orchestrating planners, registries, and the nucleus configuration.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @ddse/acm-framework
9
+ ```
10
+
11
+ ## Quick Usage
12
+
13
+ ```typescript
14
+ import { ACMFramework } from '@ddse/acm-framework';
15
+ import { createOllamaClient } from '@ddse/acm-llm';
16
+ import { SimpleCapabilityRegistry, SimpleToolRegistry } from '@ddse/acm-aicoder';
17
+
18
+ const llm = createOllamaClient('llama3.1');
19
+
20
+ const framework = ACMFramework.create({
21
+ capabilityRegistry,
22
+ toolRegistry,
23
+ policyEngine,
24
+ nucleus: {
25
+ call: async (prompt, tools, config) => llm.generateWithTools!(
26
+ [{ role: 'system', content: prompt }],
27
+ tools,
28
+ config,
29
+ ),
30
+ llmConfig: {
31
+ provider: llm.name(),
32
+ model: 'llama3.1',
33
+ temperature: 0.1,
34
+ maxTokens: 512,
35
+ },
36
+ },
37
+ });
38
+
39
+ const result = await framework.execute({
40
+ goal: 'Investigate login failures reported overnight.',
41
+ engine: ExecutionEngine.ACM, // optional, ACM is the default
42
+ });
43
+
44
+ console.log(result.plan);
45
+ console.log(result.execution.outputsByTask);
46
+ ```
47
+
48
+ ### API Highlights
49
+
50
+ - `ACMFramework.create(options)` — configure registries, policy, nucleus call, and planner defaults.
51
+ - `framework.plan(request)` — generate plan(s) and inspect the planner ledger before execution.
52
+ - `framework.execute(request)` — end-to-end plan + execute with a single call.
53
+
54
+ Both methods accept either a plain string or a full `Goal` object and will synthesize goal/context identifiers automatically.
55
+
56
+ ## Options Overview
57
+
58
+ - `capabilityRegistry`, `toolRegistry`, `policyEngine` — existing ACM registries you already configure for planners/runtimes.
59
+ - `nucleus.call` / `nucleus.llmConfig` — how to talk to your LLM provider. The helper constructs `DeterministicNucleus` instances by default.
60
+ - `planner.planCount`, `planner.selector` — override plan fan-out and selection logic.
61
+ - `defaultStream`, `verify` — reuse streaming sink or verification hooks across invocations.
62
+ - `execution.engine` — choose between the default resumable ACM runtime (`ACM`),
63
+ the LangGraph adapter (`LANGGRAPH`), or the Microsoft Agent Framework adapter (`MSAF`).
64
+ Per-call overrides are also supported via `execute({ engine: ... })`.
65
+ - `execution.resumeFrom`, `execution.checkpointInterval`, `execution.checkpointStore`, `execution.runId` — ACM-only resume controls.
66
+ - `plan({ ledger })` / `execute({ ledger })` — reuse an existing `MemoryLedger` so external observers (e.g., UI stores) can tap into log events while the wrapper runs.
67
+ - `execute({ existingPlan })` — skip re-planning by providing a preselected plan plus the original `PlannerResult`.
68
+
69
+ ### Execution Engines
70
+
71
+ By default the wrapper uses the resumable ACM runtime, which supports checkpoints
72
+ and `resumeFrom` execution. You can opt into the adapter engines when you want
73
+ LangGraph or Microsoft Agent Framework compatibility:
74
+
75
+ ```typescript
76
+ import { ACMFramework, ExecutionEngine } from '@ddse/acm-framework';
77
+
78
+ const framework = ACMFramework.create({
79
+ // ...existing configuration
80
+ execution: {
81
+ engine: ExecutionEngine.LANGGRAPH,
82
+ },
83
+ });
84
+
85
+ const result = await framework.execute({
86
+ goal: 'Run the onboarding workflow',
87
+ engine: ExecutionEngine.MSAF, // override per-call if desired
88
+ });
89
+ ```
90
+
91
+ The adapter engines stream events, enforce policies, and honor tool guards, but
92
+ they **do not** currently support checkpoint/resume. For resumable executions,
93
+ keep `ExecutionEngine.ACM` (the default).
94
+
95
+ ## Related Packages
96
+
97
+ - `@ddse/acm-sdk` — lower-level abstractions used by this helper.
98
+ - `@ddse/acm-planner` — structured planner leveraged internally.
99
+ - `@ddse/acm-runtime` — deterministic execution engine invoked by `execute()`.
100
+ - `@ddse/acm-adapters` — LangGraph and MS Agent Framework adapters optionally used by the wrapper.
@@ -0,0 +1,93 @@
1
+ import { ExternalContextProviderAdapter, type CapabilityRegistry, type Context, type Goal, type LedgerEntry, type LLMCallFn, type NucleusConfig, type NucleusFactory, type Plan, type PolicyEngine, type StreamSink, type ToolRegistry } from '@ddse/acm-sdk';
2
+ import { StructuredLLMPlanner, type PlannerOptions, type PlannerResult } from '@ddse/acm-planner';
3
+ import { MemoryLedger, type ExecutePlanResult, type ResumableExecutePlanOptions } from '@ddse/acm-runtime';
4
+ export type PlanSelector = (result: PlannerResult) => Plan;
5
+ export declare enum ExecutionEngine {
6
+ ACM = "ACM",
7
+ LANGGRAPH = "LANGGRAPH",
8
+ MSAF = "MSAF"
9
+ }
10
+ export interface ACMExecutionOptions {
11
+ engine?: ExecutionEngine;
12
+ resumeFrom?: ResumableExecutePlanOptions['resumeFrom'];
13
+ checkpointInterval?: ResumableExecutePlanOptions['checkpointInterval'];
14
+ checkpointStore?: ResumableExecutePlanOptions['checkpointStore'];
15
+ runId?: ResumableExecutePlanOptions['runId'];
16
+ }
17
+ export interface ACMFrameworkOptions {
18
+ capabilityRegistry: CapabilityRegistry;
19
+ toolRegistry: ToolRegistry;
20
+ policyEngine?: PolicyEngine;
21
+ contextProvider?: ExternalContextProviderAdapter;
22
+ planner?: {
23
+ instance?: StructuredLLMPlanner;
24
+ planCount?: PlannerOptions['planCount'];
25
+ selector?: PlanSelector;
26
+ };
27
+ nucleus: {
28
+ call: LLMCallFn;
29
+ llmConfig: NucleusConfig['llmCall'];
30
+ hooks?: NucleusConfig['hooks'];
31
+ allowedTools?: string[];
32
+ factory?: (ledger: MemoryLedger) => NucleusFactory;
33
+ };
34
+ verify?: ResumableExecutePlanOptions['verify'];
35
+ defaultStream?: StreamSink;
36
+ execution?: ACMExecutionOptions;
37
+ }
38
+ export interface ACMPlanRequest {
39
+ goal: string | Goal;
40
+ context?: Context;
41
+ planCount?: PlannerOptions['planCount'];
42
+ stream?: StreamSink;
43
+ planSelector?: PlanSelector;
44
+ ledger?: MemoryLedger;
45
+ }
46
+ export interface ACMPlanResponse {
47
+ goal: Goal;
48
+ context: Context;
49
+ result: PlannerResult;
50
+ selectedPlan: Plan;
51
+ ledger: readonly LedgerEntry[];
52
+ }
53
+ export interface ACMExecuteRequest extends ACMPlanRequest {
54
+ verify?: ResumableExecutePlanOptions['verify'];
55
+ planSelector?: PlanSelector;
56
+ engine?: ExecutionEngine;
57
+ resumeFrom?: ResumableExecutePlanOptions['resumeFrom'];
58
+ checkpointInterval?: ResumableExecutePlanOptions['checkpointInterval'];
59
+ checkpointStore?: ResumableExecutePlanOptions['checkpointStore'];
60
+ runId?: ResumableExecutePlanOptions['runId'];
61
+ ledger?: MemoryLedger;
62
+ existingPlan?: {
63
+ plan: Plan;
64
+ plannerResult: PlannerResult;
65
+ };
66
+ }
67
+ export interface ACMExecuteResult {
68
+ goal: Goal;
69
+ context: Context;
70
+ plan: Plan;
71
+ planner: PlannerResult;
72
+ execution: ExecutePlanResult;
73
+ }
74
+ export declare class ACMFramework {
75
+ static create(options: ACMFrameworkOptions): ACMFramework;
76
+ private readonly capabilityRegistry;
77
+ private readonly toolRegistry;
78
+ private readonly policyEngine?;
79
+ private readonly contextProvider?;
80
+ private readonly planner;
81
+ private readonly defaultPlanCount;
82
+ private readonly planSelector;
83
+ private readonly nucleusOptions;
84
+ private readonly defaultVerify?;
85
+ private readonly defaultStream?;
86
+ private readonly executionDefaults;
87
+ private constructor();
88
+ plan(request: ACMPlanRequest): Promise<ACMPlanResponse>;
89
+ execute(request: ACMExecuteRequest): Promise<ACMExecuteResult>;
90
+ private getNucleusFactory;
91
+ private toExecutionResult;
92
+ }
93
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js ADDED
@@ -0,0 +1,243 @@
1
+ import { DeterministicNucleus, } from '@ddse/acm-sdk';
2
+ import { StructuredLLMPlanner, } from '@ddse/acm-planner';
3
+ import { executeResumablePlan, MemoryLedger, } from '@ddse/acm-runtime';
4
+ import { LangGraphAdapter, MSAgentFrameworkAdapter } from '@ddse/acm-adapters';
5
+ export var ExecutionEngine;
6
+ (function (ExecutionEngine) {
7
+ ExecutionEngine["ACM"] = "ACM";
8
+ ExecutionEngine["LANGGRAPH"] = "LANGGRAPH";
9
+ ExecutionEngine["MSAF"] = "MSAF";
10
+ })(ExecutionEngine || (ExecutionEngine = {}));
11
+ export class ACMFramework {
12
+ static create(options) {
13
+ return new ACMFramework(options);
14
+ }
15
+ capabilityRegistry;
16
+ toolRegistry;
17
+ policyEngine;
18
+ contextProvider;
19
+ planner;
20
+ defaultPlanCount;
21
+ planSelector;
22
+ nucleusOptions;
23
+ defaultVerify;
24
+ defaultStream;
25
+ executionDefaults;
26
+ constructor(options) {
27
+ this.capabilityRegistry = options.capabilityRegistry;
28
+ this.toolRegistry = options.toolRegistry;
29
+ this.policyEngine = options.policyEngine;
30
+ this.contextProvider = options.contextProvider;
31
+ this.planner = options.planner?.instance ?? new StructuredLLMPlanner();
32
+ this.defaultPlanCount = options.planner?.planCount ?? 1;
33
+ this.planSelector = options.planner?.selector ?? ((result) => {
34
+ if (!result.plans.length) {
35
+ throw new Error('Planner did not return any plans.');
36
+ }
37
+ return result.plans[0];
38
+ });
39
+ this.nucleusOptions = options.nucleus;
40
+ this.defaultVerify = options.verify;
41
+ this.defaultStream = options.defaultStream;
42
+ const executionDefaults = options.execution ?? {};
43
+ this.executionDefaults = {
44
+ engine: executionDefaults.engine ?? ExecutionEngine.ACM,
45
+ resumeFrom: executionDefaults.resumeFrom,
46
+ checkpointInterval: executionDefaults.checkpointInterval,
47
+ checkpointStore: executionDefaults.checkpointStore,
48
+ runId: executionDefaults.runId,
49
+ };
50
+ }
51
+ async plan(request) {
52
+ const goal = normalizeGoal(request.goal);
53
+ const context = normalizeContext(request.context);
54
+ const planCount = request.planCount ?? this.defaultPlanCount;
55
+ const stream = request.stream ?? this.defaultStream;
56
+ const ledger = request.ledger ?? new MemoryLedger();
57
+ const nucleusFactory = this.getNucleusFactory(ledger);
58
+ const plannerResult = await this.planner.plan({
59
+ goal,
60
+ context,
61
+ capabilities: this.capabilityRegistry.list(),
62
+ nucleusFactory,
63
+ nucleusConfig: {
64
+ llmCall: this.nucleusOptions.llmConfig,
65
+ hooks: this.nucleusOptions.hooks,
66
+ allowedTools: this.nucleusOptions.allowedTools,
67
+ },
68
+ stream,
69
+ planCount,
70
+ });
71
+ if (!plannerResult.plans.length) {
72
+ throw new Error('Planner did not emit any plans.');
73
+ }
74
+ const selector = request.planSelector ?? this.planSelector;
75
+ const selectedPlan = selector(plannerResult);
76
+ return {
77
+ goal,
78
+ context,
79
+ result: plannerResult,
80
+ selectedPlan,
81
+ ledger: ledger.getEntries(),
82
+ };
83
+ }
84
+ async execute(request) {
85
+ const goal = normalizeGoal(request.goal);
86
+ const context = normalizeContext(request.context);
87
+ const planCount = request.planCount ?? this.defaultPlanCount;
88
+ const stream = request.stream ?? this.defaultStream;
89
+ const verify = request.verify ?? this.defaultVerify;
90
+ const engine = request.engine ?? this.executionDefaults.engine;
91
+ const resumeFrom = request.resumeFrom ?? this.executionDefaults.resumeFrom;
92
+ const checkpointInterval = request.checkpointInterval ?? this.executionDefaults.checkpointInterval;
93
+ const checkpointStore = request.checkpointStore ?? this.executionDefaults.checkpointStore;
94
+ const runId = request.runId ?? this.executionDefaults.runId;
95
+ const ledger = request.ledger ?? new MemoryLedger();
96
+ const nucleusFactory = this.getNucleusFactory(ledger);
97
+ let plannerResult;
98
+ let plan;
99
+ if (request.existingPlan) {
100
+ plannerResult = request.existingPlan.plannerResult;
101
+ plan = request.existingPlan.plan;
102
+ }
103
+ else {
104
+ plannerResult = await this.planner.plan({
105
+ goal,
106
+ context,
107
+ capabilities: this.capabilityRegistry.list(),
108
+ nucleusFactory,
109
+ nucleusConfig: {
110
+ llmCall: this.nucleusOptions.llmConfig,
111
+ hooks: this.nucleusOptions.hooks,
112
+ allowedTools: this.nucleusOptions.allowedTools,
113
+ },
114
+ stream,
115
+ planCount,
116
+ });
117
+ if (!plannerResult.plans.length) {
118
+ throw new Error('Planner did not emit any plans.');
119
+ }
120
+ const selector = request.planSelector ?? this.planSelector;
121
+ plan = selector(plannerResult);
122
+ }
123
+ let execution;
124
+ switch (engine) {
125
+ case ExecutionEngine.LANGGRAPH: {
126
+ const adapter = new LangGraphAdapter({
127
+ goal,
128
+ context,
129
+ plan,
130
+ capabilityRegistry: this.capabilityRegistry,
131
+ toolRegistry: this.toolRegistry,
132
+ policy: this.policyEngine,
133
+ stream,
134
+ ledger,
135
+ nucleusFactory,
136
+ nucleusConfig: {
137
+ llmCall: this.nucleusOptions.llmConfig,
138
+ hooks: this.nucleusOptions.hooks,
139
+ allowedTools: this.nucleusOptions.allowedTools,
140
+ },
141
+ });
142
+ const result = await adapter.execute();
143
+ execution = this.toExecutionResult(result.outputsByTask, result.ledger);
144
+ break;
145
+ }
146
+ case ExecutionEngine.MSAF: {
147
+ const adapter = new MSAgentFrameworkAdapter({
148
+ goal,
149
+ context,
150
+ plan,
151
+ capabilityRegistry: this.capabilityRegistry,
152
+ toolRegistry: this.toolRegistry,
153
+ policy: this.policyEngine,
154
+ stream,
155
+ ledger,
156
+ nucleusFactory,
157
+ nucleusConfig: {
158
+ llmCall: this.nucleusOptions.llmConfig,
159
+ hooks: this.nucleusOptions.hooks,
160
+ allowedTools: this.nucleusOptions.allowedTools,
161
+ },
162
+ });
163
+ const result = await adapter.execute();
164
+ execution = this.toExecutionResult(result.outputsByTask, result.ledger);
165
+ break;
166
+ }
167
+ case ExecutionEngine.ACM:
168
+ default: {
169
+ execution = await executeResumablePlan({
170
+ goal,
171
+ context,
172
+ plan,
173
+ capabilityRegistry: this.capabilityRegistry,
174
+ toolRegistry: this.toolRegistry,
175
+ policy: this.policyEngine,
176
+ verify,
177
+ stream,
178
+ ledger,
179
+ nucleusFactory,
180
+ nucleusConfig: {
181
+ llmCall: this.nucleusOptions.llmConfig,
182
+ hooks: this.nucleusOptions.hooks,
183
+ allowedTools: this.nucleusOptions.allowedTools,
184
+ },
185
+ contextProvider: this.contextProvider,
186
+ resumeFrom,
187
+ checkpointInterval,
188
+ checkpointStore,
189
+ runId,
190
+ });
191
+ break;
192
+ }
193
+ }
194
+ return {
195
+ goal,
196
+ context,
197
+ plan,
198
+ planner: plannerResult,
199
+ execution,
200
+ };
201
+ }
202
+ getNucleusFactory(ledger) {
203
+ if (this.nucleusOptions.factory) {
204
+ return this.nucleusOptions.factory(ledger);
205
+ }
206
+ return (config) => new DeterministicNucleus(config, this.nucleusOptions.call, (entry) => {
207
+ ledger.append(entry.type, entry.details);
208
+ });
209
+ }
210
+ toExecutionResult(outputsByTask, ledger) {
211
+ const taskRecords = Object.fromEntries(Object.entries(outputsByTask).map(([taskId, output]) => [taskId, { output }]));
212
+ return {
213
+ outputsByTask: taskRecords,
214
+ ledger,
215
+ };
216
+ }
217
+ }
218
+ function normalizeGoal(input) {
219
+ if (typeof input === 'string') {
220
+ return {
221
+ id: `goal-${Date.now()}`,
222
+ intent: input,
223
+ };
224
+ }
225
+ return {
226
+ ...input,
227
+ id: input.id ?? `goal-${Date.now()}`,
228
+ };
229
+ }
230
+ function normalizeContext(context) {
231
+ if (!context) {
232
+ return {
233
+ id: `ctx-${Date.now()}`,
234
+ facts: {},
235
+ };
236
+ }
237
+ return {
238
+ ...context,
239
+ id: context.id ?? `ctx-${Date.now()}`,
240
+ facts: context.facts ?? {},
241
+ };
242
+ }
243
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@ddse/acm-framework",
3
+ "version": "0.5.0",
4
+ "description": "High-level developer wrapper for the ACM planner and runtime",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "dependencies": {
15
+ "@ddse/acm-sdk": "0.5.0",
16
+ "@ddse/acm-runtime": "0.5.0",
17
+ "@ddse/acm-adapters": "0.5.0",
18
+ "@ddse/acm-planner": "0.5.0"
19
+ },
20
+ "keywords": [
21
+ "acm",
22
+ "framework",
23
+ "planner",
24
+ "runtime"
25
+ ],
26
+ "license": "MIT",
27
+ "scripts": {
28
+ "build": "tsc",
29
+ "clean": "rm -rf dist",
30
+ "dev": "tsc --watch"
31
+ }
32
+ }
package/src/index.ts ADDED
@@ -0,0 +1,362 @@
1
+ import {
2
+ DeterministicNucleus,
3
+ ExternalContextProviderAdapter,
4
+ type CapabilityRegistry,
5
+ type Context,
6
+ type Goal,
7
+ type LedgerEntry,
8
+ type LLMCallFn,
9
+ type NucleusConfig,
10
+ type NucleusFactory,
11
+ type Plan,
12
+ type PolicyEngine,
13
+ type StreamSink,
14
+ type ToolRegistry,
15
+ } from '@ddse/acm-sdk';
16
+ import {
17
+ StructuredLLMPlanner,
18
+ type PlannerOptions,
19
+ type PlannerResult,
20
+ } from '@ddse/acm-planner';
21
+ import {
22
+ executeResumablePlan,
23
+ MemoryLedger,
24
+ type ExecutePlanResult,
25
+ type ResumableExecutePlanOptions,
26
+ } from '@ddse/acm-runtime';
27
+ import { LangGraphAdapter, MSAgentFrameworkAdapter } from '@ddse/acm-adapters';
28
+
29
+ export type PlanSelector = (result: PlannerResult) => Plan;
30
+
31
+ export enum ExecutionEngine {
32
+ ACM = 'ACM',
33
+ LANGGRAPH = 'LANGGRAPH',
34
+ MSAF = 'MSAF',
35
+ }
36
+
37
+ export interface ACMExecutionOptions {
38
+ engine?: ExecutionEngine;
39
+ resumeFrom?: ResumableExecutePlanOptions['resumeFrom'];
40
+ checkpointInterval?: ResumableExecutePlanOptions['checkpointInterval'];
41
+ checkpointStore?: ResumableExecutePlanOptions['checkpointStore'];
42
+ runId?: ResumableExecutePlanOptions['runId'];
43
+ }
44
+
45
+ export interface ACMFrameworkOptions {
46
+ capabilityRegistry: CapabilityRegistry;
47
+ toolRegistry: ToolRegistry;
48
+ policyEngine?: PolicyEngine;
49
+ contextProvider?: ExternalContextProviderAdapter;
50
+ planner?: {
51
+ instance?: StructuredLLMPlanner;
52
+ planCount?: PlannerOptions['planCount'];
53
+ selector?: PlanSelector;
54
+ };
55
+ nucleus: {
56
+ call: LLMCallFn;
57
+ llmConfig: NucleusConfig['llmCall'];
58
+ hooks?: NucleusConfig['hooks'];
59
+ allowedTools?: string[];
60
+ factory?: (ledger: MemoryLedger) => NucleusFactory;
61
+ };
62
+ verify?: ResumableExecutePlanOptions['verify'];
63
+ defaultStream?: StreamSink;
64
+ execution?: ACMExecutionOptions;
65
+ }
66
+
67
+ export interface ACMPlanRequest {
68
+ goal: string | Goal;
69
+ context?: Context;
70
+ planCount?: PlannerOptions['planCount'];
71
+ stream?: StreamSink;
72
+ planSelector?: PlanSelector;
73
+ ledger?: MemoryLedger;
74
+ }
75
+
76
+ export interface ACMPlanResponse {
77
+ goal: Goal;
78
+ context: Context;
79
+ result: PlannerResult;
80
+ selectedPlan: Plan;
81
+ ledger: readonly LedgerEntry[];
82
+ }
83
+
84
+ export interface ACMExecuteRequest extends ACMPlanRequest {
85
+ verify?: ResumableExecutePlanOptions['verify'];
86
+ planSelector?: PlanSelector;
87
+ engine?: ExecutionEngine;
88
+ resumeFrom?: ResumableExecutePlanOptions['resumeFrom'];
89
+ checkpointInterval?: ResumableExecutePlanOptions['checkpointInterval'];
90
+ checkpointStore?: ResumableExecutePlanOptions['checkpointStore'];
91
+ runId?: ResumableExecutePlanOptions['runId'];
92
+ ledger?: MemoryLedger;
93
+ existingPlan?: {
94
+ plan: Plan;
95
+ plannerResult: PlannerResult;
96
+ };
97
+ }
98
+
99
+ export interface ACMExecuteResult {
100
+ goal: Goal;
101
+ context: Context;
102
+ plan: Plan;
103
+ planner: PlannerResult;
104
+ execution: ExecutePlanResult;
105
+ }
106
+
107
+ export class ACMFramework {
108
+ static create(options: ACMFrameworkOptions): ACMFramework {
109
+ return new ACMFramework(options);
110
+ }
111
+
112
+ private readonly capabilityRegistry: CapabilityRegistry;
113
+ private readonly toolRegistry: ToolRegistry;
114
+ private readonly policyEngine?: PolicyEngine;
115
+ private readonly contextProvider?: ExternalContextProviderAdapter;
116
+ private readonly planner: StructuredLLMPlanner;
117
+ private readonly defaultPlanCount: PlannerOptions['planCount'];
118
+ private readonly planSelector: PlanSelector;
119
+ private readonly nucleusOptions: ACMFrameworkOptions['nucleus'];
120
+ private readonly defaultVerify?: ResumableExecutePlanOptions['verify'];
121
+ private readonly defaultStream?: StreamSink;
122
+ private readonly executionDefaults: Required<Pick<ACMExecutionOptions, 'engine'>> & Omit<ACMExecutionOptions, 'engine'>;
123
+
124
+ private constructor(options: ACMFrameworkOptions) {
125
+ this.capabilityRegistry = options.capabilityRegistry;
126
+ this.toolRegistry = options.toolRegistry;
127
+ this.policyEngine = options.policyEngine;
128
+ this.contextProvider = options.contextProvider;
129
+ this.planner = options.planner?.instance ?? new StructuredLLMPlanner();
130
+ this.defaultPlanCount = options.planner?.planCount ?? 1;
131
+ this.planSelector = options.planner?.selector ?? ((result) => {
132
+ if (!result.plans.length) {
133
+ throw new Error('Planner did not return any plans.');
134
+ }
135
+ return result.plans[0];
136
+ });
137
+ this.nucleusOptions = options.nucleus;
138
+ this.defaultVerify = options.verify;
139
+ this.defaultStream = options.defaultStream;
140
+ const executionDefaults = options.execution ?? {};
141
+ this.executionDefaults = {
142
+ engine: executionDefaults.engine ?? ExecutionEngine.ACM,
143
+ resumeFrom: executionDefaults.resumeFrom,
144
+ checkpointInterval: executionDefaults.checkpointInterval,
145
+ checkpointStore: executionDefaults.checkpointStore,
146
+ runId: executionDefaults.runId,
147
+ };
148
+ }
149
+
150
+ async plan(request: ACMPlanRequest): Promise<ACMPlanResponse> {
151
+ const goal = normalizeGoal(request.goal);
152
+ const context = normalizeContext(request.context);
153
+ const planCount = request.planCount ?? this.defaultPlanCount;
154
+ const stream = request.stream ?? this.defaultStream;
155
+ const ledger = request.ledger ?? new MemoryLedger();
156
+ const nucleusFactory = this.getNucleusFactory(ledger);
157
+ const plannerResult = await this.planner.plan({
158
+ goal,
159
+ context,
160
+ capabilities: this.capabilityRegistry.list(),
161
+ nucleusFactory,
162
+ nucleusConfig: {
163
+ llmCall: this.nucleusOptions.llmConfig,
164
+ hooks: this.nucleusOptions.hooks,
165
+ allowedTools: this.nucleusOptions.allowedTools,
166
+ },
167
+ stream,
168
+ planCount,
169
+ });
170
+
171
+ if (!plannerResult.plans.length) {
172
+ throw new Error('Planner did not emit any plans.');
173
+ }
174
+
175
+ const selector = request.planSelector ?? this.planSelector;
176
+ const selectedPlan = selector(plannerResult);
177
+
178
+ return {
179
+ goal,
180
+ context,
181
+ result: plannerResult,
182
+ selectedPlan,
183
+ ledger: ledger.getEntries(),
184
+ };
185
+ }
186
+
187
+ async execute(request: ACMExecuteRequest): Promise<ACMExecuteResult> {
188
+ const goal = normalizeGoal(request.goal);
189
+ const context = normalizeContext(request.context);
190
+ const planCount = request.planCount ?? this.defaultPlanCount;
191
+ const stream = request.stream ?? this.defaultStream;
192
+ const verify = request.verify ?? this.defaultVerify;
193
+ const engine = request.engine ?? this.executionDefaults.engine;
194
+ const resumeFrom = request.resumeFrom ?? this.executionDefaults.resumeFrom;
195
+ const checkpointInterval = request.checkpointInterval ?? this.executionDefaults.checkpointInterval;
196
+ const checkpointStore = request.checkpointStore ?? this.executionDefaults.checkpointStore;
197
+ const runId = request.runId ?? this.executionDefaults.runId;
198
+
199
+ const ledger = request.ledger ?? new MemoryLedger();
200
+ const nucleusFactory = this.getNucleusFactory(ledger);
201
+ let plannerResult: PlannerResult;
202
+ let plan: Plan;
203
+
204
+ if (request.existingPlan) {
205
+ plannerResult = request.existingPlan.plannerResult;
206
+ plan = request.existingPlan.plan;
207
+ } else {
208
+ plannerResult = await this.planner.plan({
209
+ goal,
210
+ context,
211
+ capabilities: this.capabilityRegistry.list(),
212
+ nucleusFactory,
213
+ nucleusConfig: {
214
+ llmCall: this.nucleusOptions.llmConfig,
215
+ hooks: this.nucleusOptions.hooks,
216
+ allowedTools: this.nucleusOptions.allowedTools,
217
+ },
218
+ stream,
219
+ planCount,
220
+ });
221
+
222
+ if (!plannerResult.plans.length) {
223
+ throw new Error('Planner did not emit any plans.');
224
+ }
225
+
226
+ const selector = request.planSelector ?? this.planSelector;
227
+ plan = selector(plannerResult);
228
+ }
229
+
230
+ let execution: ExecutePlanResult;
231
+
232
+ switch (engine) {
233
+ case ExecutionEngine.LANGGRAPH: {
234
+ const adapter = new LangGraphAdapter({
235
+ goal,
236
+ context,
237
+ plan,
238
+ capabilityRegistry: this.capabilityRegistry,
239
+ toolRegistry: this.toolRegistry,
240
+ policy: this.policyEngine,
241
+ stream,
242
+ ledger,
243
+ nucleusFactory,
244
+ nucleusConfig: {
245
+ llmCall: this.nucleusOptions.llmConfig,
246
+ hooks: this.nucleusOptions.hooks,
247
+ allowedTools: this.nucleusOptions.allowedTools,
248
+ },
249
+ });
250
+ const result = await adapter.execute();
251
+ execution = this.toExecutionResult(result.outputsByTask, result.ledger as LedgerEntry[]);
252
+ break;
253
+ }
254
+ case ExecutionEngine.MSAF: {
255
+ const adapter = new MSAgentFrameworkAdapter({
256
+ goal,
257
+ context,
258
+ plan,
259
+ capabilityRegistry: this.capabilityRegistry,
260
+ toolRegistry: this.toolRegistry,
261
+ policy: this.policyEngine,
262
+ stream,
263
+ ledger,
264
+ nucleusFactory,
265
+ nucleusConfig: {
266
+ llmCall: this.nucleusOptions.llmConfig,
267
+ hooks: this.nucleusOptions.hooks,
268
+ allowedTools: this.nucleusOptions.allowedTools,
269
+ },
270
+ });
271
+ const result = await adapter.execute();
272
+ execution = this.toExecutionResult(result.outputsByTask, result.ledger as LedgerEntry[]);
273
+ break;
274
+ }
275
+ case ExecutionEngine.ACM:
276
+ default: {
277
+ execution = await executeResumablePlan({
278
+ goal,
279
+ context,
280
+ plan,
281
+ capabilityRegistry: this.capabilityRegistry,
282
+ toolRegistry: this.toolRegistry,
283
+ policy: this.policyEngine,
284
+ verify,
285
+ stream,
286
+ ledger,
287
+ nucleusFactory,
288
+ nucleusConfig: {
289
+ llmCall: this.nucleusOptions.llmConfig,
290
+ hooks: this.nucleusOptions.hooks,
291
+ allowedTools: this.nucleusOptions.allowedTools,
292
+ },
293
+ contextProvider: this.contextProvider,
294
+ resumeFrom,
295
+ checkpointInterval,
296
+ checkpointStore,
297
+ runId,
298
+ });
299
+ break;
300
+ }
301
+ }
302
+
303
+ return {
304
+ goal,
305
+ context,
306
+ plan,
307
+ planner: plannerResult,
308
+ execution,
309
+ };
310
+ }
311
+
312
+ private getNucleusFactory(ledger: MemoryLedger): NucleusFactory {
313
+ if (this.nucleusOptions.factory) {
314
+ return this.nucleusOptions.factory(ledger);
315
+ }
316
+
317
+ return (config: NucleusConfig) =>
318
+ new DeterministicNucleus(config, this.nucleusOptions.call, (entry: LedgerEntry) => {
319
+ ledger.append(entry.type, entry.details);
320
+ });
321
+ }
322
+
323
+ private toExecutionResult(outputsByTask: Record<string, any>, ledger: readonly LedgerEntry[]): ExecutePlanResult {
324
+ const taskRecords = Object.fromEntries(
325
+ Object.entries(outputsByTask).map(([taskId, output]) => [taskId, { output }])
326
+ );
327
+
328
+ return {
329
+ outputsByTask: taskRecords,
330
+ ledger,
331
+ };
332
+ }
333
+ }
334
+
335
+ function normalizeGoal(input: string | Goal): Goal {
336
+ if (typeof input === 'string') {
337
+ return {
338
+ id: `goal-${Date.now()}`,
339
+ intent: input,
340
+ };
341
+ }
342
+
343
+ return {
344
+ ...input,
345
+ id: input.id ?? `goal-${Date.now()}`,
346
+ };
347
+ }
348
+
349
+ function normalizeContext(context?: Context): Context {
350
+ if (!context) {
351
+ return {
352
+ id: `ctx-${Date.now()}`,
353
+ facts: {},
354
+ };
355
+ }
356
+
357
+ return {
358
+ ...context,
359
+ id: context.id ?? `ctx-${Date.now()}`,
360
+ facts: context.facts ?? {},
361
+ };
362
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "./src",
5
+ "outDir": "./dist"
6
+ },
7
+ "include": ["src/**/*"],
8
+ "references": [
9
+ { "path": "../acm-sdk" },
10
+ { "path": "../acm-planner" },
11
+ { "path": "../acm-runtime" },
12
+ { "path": "../acm-adapters" }
13
+ ]
14
+ }
@@ -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","../acm-sdk/dist/src/nucleus.d.ts","../acm-sdk/dist/src/types.d.ts","../acm-sdk/dist/src/tool.d.ts","../acm-sdk/dist/src/task.d.ts","../acm-sdk/dist/src/capability.d.ts","../acm-sdk/dist/src/registry.d.ts","../acm-sdk/dist/src/policy.d.ts","../acm-sdk/dist/src/stream.d.ts","../acm-sdk/dist/src/context.d.ts","../acm-sdk/dist/src/context-provider.d.ts","../acm-sdk/dist/src/utils.d.ts","../acm-sdk/dist/src/index.d.ts","../acm-planner/dist/structured-planner.d.ts","../acm-planner/dist/index.d.ts","../acm-runtime/dist/src/ledger.d.ts","../acm-runtime/dist/src/executor.d.ts","../acm-runtime/dist/src/guards.d.ts","../acm-runtime/dist/src/retry.d.ts","../acm-runtime/dist/src/checkpoint.d.ts","../acm-runtime/dist/src/resumable-executor.d.ts","../acm-runtime/dist/src/tool-envelope.d.ts","../acm-runtime/dist/src/execution-transcript.d.ts","../acm-runtime/dist/src/index.d.ts","../acm-adapters/dist/langgraph.d.ts","../acm-adapters/dist/msaf.d.ts","../acm-adapters/dist/index.d.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":[[90,133,136],[90,135,136],[136],[90,136,141,169],[90,136,137,142,147,155,166,177],[90,136,137,138,147,155],[90,136],[85,86,87,90,136],[90,136,139,178],[90,136,140,141,148,156],[90,136,141,166,174],[90,136,142,144,147,155],[90,135,136,143],[90,136,144,145],[90,136,146,147],[90,135,136,147],[90,136,147,148,149,166,177],[90,136,147,148,149,162,166,169],[90,136,144,147,150,155,166,177],[90,136,147,148,150,151,155,166,174,177],[90,136,150,152,166,174,177],[88,89,90,91,92,93,94,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,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[90,136,147,153],[90,136,154,177,182],[90,136,144,147,155,166],[90,136,156],[90,136,157],[90,135,136,158],[90,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,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[90,136,160],[90,136,161],[90,136,147,162,163],[90,136,162,164,178,180],[90,136,147,166,167,169],[90,136,168,169],[90,136,166,167],[90,136,169],[90,136,170],[90,133,136,166,171],[90,136,147,172,173],[90,136,172,173],[90,136,141,155,166,174],[90,136,175],[90,136,155,176],[90,136,150,161,177],[90,136,141,178],[90,136,166,179],[90,136,154,180],[90,136,181],[90,131,136],[90,131,136,147,149,158,166,169,177,180,182],[90,136,166,183],[90,103,107,136,177],[90,103,136,166,177],[90,98,136],[90,100,103,136,174,177],[90,136,155,174],[90,136,184],[90,98,136,184],[90,100,103,136,155,177],[90,95,96,99,102,136,147,166,177],[90,103,110,136],[90,95,101,136],[90,103,124,125,136],[90,99,103,136,169,177,184],[90,124,136,184],[90,97,98,136,184],[90,103,136],[90,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,136],[90,103,118,136],[90,103,110,111,136],[90,101,103,111,112,136],[90,102,136],[90,95,98,103,136],[90,103,107,111,112,136],[90,107,136],[90,101,103,106,136,177],[90,95,100,103,110,136],[90,136,166],[90,98,103,124,136,182,184],[81,82,90,136],[69,80,90,136],[69,71,80,83,90,136],[70,90,136],[69,90,136],[69,73,90,136],[69,72,73,90,136],[69,72,90,136],[72,73,74,75,76,77,78,79,90,136],[73,76,90,136],[59,61,90,136],[58,59,60,90,136],[59,90,136],[58,59,60,61,62,63,64,65,66,67,68,90,136],[60,90,136],[58,59,90,136],[58,90,136],[59,62,90,136]],"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},"5ad07c262dfb2f14353e2f3ffc096600cad7c02a36f8bfb1011f0a034377feb0","777102e8edbfc06dd3f1b71ec30ee7d694ebb29f20f8e413383a41fe6804e1b2","d11a4c7da78f3ca2be8e9dcdbe007e5abd0dbd2ab82ae686c76772346bf8c620","75e2ff50a8320c8f80aef345259ee659ccc9d40504f848e9b24b1e304fc55352","1a88dfa5ab3bdecb302f94b4abdf1510c68699cf3437347a3462116cf37d8fb4","5d5df716a2e624c74357b49383a950b8ff0567890c28e62d3787011dd26eaf4d","4e863ccf9bf55d8b9120ce28e4faee052e191fa9fa2c9637d427682a9a72059c","45b1108af4c5adaa8e1cf58e6fcaa73fde57c72254c7ae5603673c04b364c522","e99d408704752e8bab84079cec1c33682b98715949145f0a95d2c98997d565ac","17d36096aa97a3177dbced126f752049a19e11778345a280227eb64c33972518","ca8bd23c8b8a2e6fc15fb248bfbc2db70faac477c5780265cc2ce96445f8fc8d","fbf4f020dab462fed68d3623ea47d3c9376b462d5d199ba4992351c6830e4f8c","b43b545481454b2b118fc65433f416814ad7abd3d672f0de9aa3ab7b120fedc0","da1e9ee2ad14319ad4317f89b974502869a694e064ddc446d58858e688b62530","3aa45f94e5ec25f2acdb1a80429f5e39eda783987d1f0c3792f0cf9be407d336","0ef5fa73a1d1e7831e3ad53b809fd27207ebf9177e6ff6dea5218417dde91d74","12d546b3a13d2fc00a48504d4a9642e94ce59b33a003cb3aebde6e9d49e3519e","92995ed1ef27b3b80014ea3d36c91c40c5472a4662eb51fccf115da902ee2184","e6b1f0cc1570bd91e86059572602581b8e05c3c9c541de6f07bc44fa09fc1511","d6a33ee53192c057e201f2c4dc466238e4bb0c4803e2934764101b48ed46f3f1","3061b1be21acfed129e7775a8da2696f86ecf95a28f823e3a9f4f5f736d1da31","d7d23a50e435c5e4e97537eaae7144d3b1a03e8e0c56d23e1f21e7fd307d8622","8015f507d8799d7fa9429c81d0a19efb8c2ccbb5826bbfc5a299b3f2beb10de4","7334f7a2f15c77661861046878602520274874e7bec455570c4eae936dd62ac1","1fc60dbf6793a8a3e2692648ac89fed4942089ba15516764fadc627d792d5265","7c114b584830d295d0a3a51ebcf4590436fcdb93bf33c2a21bf54c184df409d0",{"version":"5a48782e341fa10e163e11266b609142de5a76aa769dca1edc79a8e8e204e844","signature":"bea16a7a43d1fe1d9e5a626e8d4e526873388a5d778fbf6261dcb2a295f8fa0c"},{"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":[84],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":7,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[133,1],[134,1],[135,2],[90,3],[136,4],[137,5],[138,6],[85,7],[88,8],[86,7],[87,7],[139,9],[140,10],[141,11],[142,12],[143,13],[144,14],[145,14],[146,15],[147,16],[148,17],[149,18],[91,7],[89,7],[150,19],[151,20],[152,21],[184,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,31],[162,32],[163,32],[164,33],[165,7],[166,34],[168,35],[167,36],[169,37],[170,38],[171,39],[172,40],[173,41],[174,42],[175,43],[176,44],[177,45],[178,46],[179,47],[180,48],[181,49],[92,7],[93,7],[94,7],[132,50],[182,51],[183,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],[110,53],[120,54],[109,53],[130,55],[101,56],[100,57],[129,58],[123,59],[128,60],[103,61],[117,62],[102,63],[126,64],[98,65],[97,58],[127,66],[99,67],[104,68],[105,7],[108,68],[95,7],[131,69],[121,70],[112,71],[113,72],[115,73],[111,74],[114,75],[124,58],[106,76],[107,77],[116,78],[96,79],[119,70],[118,68],[122,7],[125,80],[83,81],[81,82],[82,82],[84,83],[71,84],[70,85],[76,86],[79,87],[73,88],[74,85],[80,89],[72,85],[77,90],[75,7],[78,88],[62,91],[67,92],[66,93],[69,94],[58,93],[64,93],[63,95],[65,93],[61,96],[60,7],[59,97],[68,98]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.3"}