@executioncontrolprotocol/types 0.10.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/README.md +16 -0
- package/dist/capabilities.d.ts +31 -0
- package/dist/capabilities.d.ts.map +1 -0
- package/dist/capabilities.js +2 -0
- package/dist/capabilities.js.map +1 -0
- package/dist/encoding.d.ts +99 -0
- package/dist/encoding.d.ts.map +1 -0
- package/dist/encoding.js +25 -0
- package/dist/encoding.js.map +1 -0
- package/dist/environment.d.ts +132 -0
- package/dist/environment.d.ts.map +1 -0
- package/dist/environment.js +2 -0
- package/dist/environment.js.map +1 -0
- package/dist/harness-feedback.d.ts +43 -0
- package/dist/harness-feedback.d.ts.map +1 -0
- package/dist/harness-feedback.js +2 -0
- package/dist/harness-feedback.js.map +1 -0
- package/dist/harness-reply.d.ts +63 -0
- package/dist/harness-reply.d.ts.map +1 -0
- package/dist/harness-reply.js +30 -0
- package/dist/harness-reply.js.map +1 -0
- package/dist/harness-run-context.d.ts +228 -0
- package/dist/harness-run-context.d.ts.map +1 -0
- package/dist/harness-run-context.js +35 -0
- package/dist/harness-run-context.js.map +1 -0
- package/dist/harness-tasks.d.ts +403 -0
- package/dist/harness-tasks.d.ts.map +1 -0
- package/dist/harness-tasks.js +50 -0
- package/dist/harness-tasks.js.map +1 -0
- package/dist/harness.d.ts +118 -0
- package/dist/harness.d.ts.map +1 -0
- package/dist/harness.js +34 -0
- package/dist/harness.js.map +1 -0
- package/dist/image.d.ts +150 -0
- package/dist/image.d.ts.map +1 -0
- package/dist/image.js +46 -0
- package/dist/image.js.map +1 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/dist/intent.d.ts +35 -0
- package/dist/intent.d.ts.map +1 -0
- package/dist/intent.js +26 -0
- package/dist/intent.js.map +1 -0
- package/dist/invoke.d.ts +44 -0
- package/dist/invoke.d.ts.map +1 -0
- package/dist/invoke.js +9 -0
- package/dist/invoke.js.map +1 -0
- package/dist/lifecycle.d.ts +27 -0
- package/dist/lifecycle.d.ts.map +1 -0
- package/dist/lifecycle.js +2 -0
- package/dist/lifecycle.js.map +1 -0
- package/dist/model.d.ts +57 -0
- package/dist/model.d.ts.map +1 -0
- package/dist/model.js +32 -0
- package/dist/model.js.map +1 -0
- package/dist/patch-errors.d.ts +11 -0
- package/dist/patch-errors.d.ts.map +1 -0
- package/dist/patch-errors.js +9 -0
- package/dist/patch-errors.js.map +1 -0
- package/dist/patch.d.ts +51 -0
- package/dist/patch.d.ts.map +1 -0
- package/dist/patch.js +2 -0
- package/dist/patch.js.map +1 -0
- package/dist/registry.d.ts +24 -0
- package/dist/registry.d.ts.map +1 -0
- package/dist/registry.js +2 -0
- package/dist/registry.js.map +1 -0
- package/dist/run.d.ts +35 -0
- package/dist/run.d.ts.map +1 -0
- package/dist/run.js +2 -0
- package/dist/run.js.map +1 -0
- package/dist/schema.d.ts +67 -0
- package/dist/schema.d.ts.map +1 -0
- package/dist/schema.js +2 -0
- package/dist/schema.js.map +1 -0
- package/dist/schemas/decode.result.json +155 -0
- package/dist/schemas/encode.result.json +162 -0
- package/dist/schemas/environment.describe.json +210 -0
- package/dist/schemas/environment.manifest.json +159 -0
- package/dist/schemas/environment.search.json +72 -0
- package/dist/schemas/patch.json +104 -0
- package/dist/schemas/patch.result.json +260 -0
- package/dist/schemas/run.request.json +485 -0
- package/dist/schemas/run.result.json +170 -0
- package/dist/schemas/validation.result.json +89 -0
- package/dist/schemas/workflow.manifest.json +451 -0
- package/dist/store.d.ts +30 -0
- package/dist/store.d.ts.map +1 -0
- package/dist/store.js +2 -0
- package/dist/store.js.map +1 -0
- package/dist/validation.d.ts +20 -0
- package/dist/validation.d.ts.map +1 -0
- package/dist/validation.js +2 -0
- package/dist/validation.js.map +1 -0
- package/dist/version.d.ts +5 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +3 -0
- package/dist/version.js.map +1 -0
- package/dist/workflow.d.ts +55 -0
- package/dist/workflow.d.ts.map +1 -0
- package/dist/workflow.js +2 -0
- package/dist/workflow.js.map +1 -0
- package/package.json +33 -0
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import type { RunResult } from "./run.js";
|
|
3
|
+
import type { WorkflowManifest } from "./workflow.js";
|
|
4
|
+
/** Zod mirror of per-step run history (eval fixtures). @category Harness */
|
|
5
|
+
export declare const stepRunRecordSchema: z.ZodObject<{
|
|
6
|
+
status: z.ZodString;
|
|
7
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
8
|
+
committedAs: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
10
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11
|
+
mutations: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
status: string;
|
|
14
|
+
output?: unknown;
|
|
15
|
+
committedAs?: string | null | undefined;
|
|
16
|
+
attempts?: number | undefined;
|
|
17
|
+
usage?: Record<string, unknown> | undefined;
|
|
18
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
status: string;
|
|
21
|
+
output?: unknown;
|
|
22
|
+
committedAs?: string | null | undefined;
|
|
23
|
+
attempts?: number | undefined;
|
|
24
|
+
usage?: Record<string, unknown> | undefined;
|
|
25
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
26
|
+
}>;
|
|
27
|
+
/** Zod mirror of run result document (eval fixtures). @category Harness */
|
|
28
|
+
export declare const runResultSchema: z.ZodObject<{
|
|
29
|
+
schema: z.ZodLiteral<"@executioncontrolprotocol.run.result">;
|
|
30
|
+
version: z.ZodString;
|
|
31
|
+
run: z.ZodObject<{
|
|
32
|
+
id: z.ZodString;
|
|
33
|
+
status: z.ZodString;
|
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
|
35
|
+
status: string;
|
|
36
|
+
id: string;
|
|
37
|
+
}, {
|
|
38
|
+
status: string;
|
|
39
|
+
id: string;
|
|
40
|
+
}>;
|
|
41
|
+
state: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
42
|
+
history: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43
|
+
status: z.ZodString;
|
|
44
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
45
|
+
committedAs: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
47
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
48
|
+
mutations: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
49
|
+
}, "strip", z.ZodTypeAny, {
|
|
50
|
+
status: string;
|
|
51
|
+
output?: unknown;
|
|
52
|
+
committedAs?: string | null | undefined;
|
|
53
|
+
attempts?: number | undefined;
|
|
54
|
+
usage?: Record<string, unknown> | undefined;
|
|
55
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
56
|
+
}, {
|
|
57
|
+
status: string;
|
|
58
|
+
output?: unknown;
|
|
59
|
+
committedAs?: string | null | undefined;
|
|
60
|
+
attempts?: number | undefined;
|
|
61
|
+
usage?: Record<string, unknown> | undefined;
|
|
62
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
63
|
+
}>>>;
|
|
64
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
version: string;
|
|
67
|
+
run: {
|
|
68
|
+
status: string;
|
|
69
|
+
id: string;
|
|
70
|
+
};
|
|
71
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
72
|
+
usage?: Record<string, unknown> | undefined;
|
|
73
|
+
state?: Record<string, unknown> | undefined;
|
|
74
|
+
history?: Record<string, {
|
|
75
|
+
status: string;
|
|
76
|
+
output?: unknown;
|
|
77
|
+
committedAs?: string | null | undefined;
|
|
78
|
+
attempts?: number | undefined;
|
|
79
|
+
usage?: Record<string, unknown> | undefined;
|
|
80
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
81
|
+
}> | undefined;
|
|
82
|
+
}, {
|
|
83
|
+
version: string;
|
|
84
|
+
run: {
|
|
85
|
+
status: string;
|
|
86
|
+
id: string;
|
|
87
|
+
};
|
|
88
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
89
|
+
usage?: Record<string, unknown> | undefined;
|
|
90
|
+
state?: Record<string, unknown> | undefined;
|
|
91
|
+
history?: Record<string, {
|
|
92
|
+
status: string;
|
|
93
|
+
output?: unknown;
|
|
94
|
+
committedAs?: string | null | undefined;
|
|
95
|
+
attempts?: number | undefined;
|
|
96
|
+
usage?: Record<string, unknown> | undefined;
|
|
97
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
98
|
+
}> | undefined;
|
|
99
|
+
}>;
|
|
100
|
+
/** Snapshot passed into harnesses for run-aware assistance. @category Harness */
|
|
101
|
+
export interface HarnessRunContext {
|
|
102
|
+
/** Result from ecp.run() or equivalent. */
|
|
103
|
+
run: RunResult;
|
|
104
|
+
/** Workflow manifest when the run was started (optional but recommended). */
|
|
105
|
+
workflow?: WorkflowManifest;
|
|
106
|
+
}
|
|
107
|
+
/** Zod schema for {@link HarnessRunContext}. @category Harness */
|
|
108
|
+
export declare const harnessRunContextSchema: z.ZodObject<{
|
|
109
|
+
run: z.ZodObject<{
|
|
110
|
+
schema: z.ZodLiteral<"@executioncontrolprotocol.run.result">;
|
|
111
|
+
version: z.ZodString;
|
|
112
|
+
run: z.ZodObject<{
|
|
113
|
+
id: z.ZodString;
|
|
114
|
+
status: z.ZodString;
|
|
115
|
+
}, "strip", z.ZodTypeAny, {
|
|
116
|
+
status: string;
|
|
117
|
+
id: string;
|
|
118
|
+
}, {
|
|
119
|
+
status: string;
|
|
120
|
+
id: string;
|
|
121
|
+
}>;
|
|
122
|
+
state: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
123
|
+
history: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
124
|
+
status: z.ZodString;
|
|
125
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
126
|
+
committedAs: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
127
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
129
|
+
mutations: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
130
|
+
}, "strip", z.ZodTypeAny, {
|
|
131
|
+
status: string;
|
|
132
|
+
output?: unknown;
|
|
133
|
+
committedAs?: string | null | undefined;
|
|
134
|
+
attempts?: number | undefined;
|
|
135
|
+
usage?: Record<string, unknown> | undefined;
|
|
136
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
137
|
+
}, {
|
|
138
|
+
status: string;
|
|
139
|
+
output?: unknown;
|
|
140
|
+
committedAs?: string | null | undefined;
|
|
141
|
+
attempts?: number | undefined;
|
|
142
|
+
usage?: Record<string, unknown> | undefined;
|
|
143
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
144
|
+
}>>>;
|
|
145
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
146
|
+
}, "strip", z.ZodTypeAny, {
|
|
147
|
+
version: string;
|
|
148
|
+
run: {
|
|
149
|
+
status: string;
|
|
150
|
+
id: string;
|
|
151
|
+
};
|
|
152
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
153
|
+
usage?: Record<string, unknown> | undefined;
|
|
154
|
+
state?: Record<string, unknown> | undefined;
|
|
155
|
+
history?: Record<string, {
|
|
156
|
+
status: string;
|
|
157
|
+
output?: unknown;
|
|
158
|
+
committedAs?: string | null | undefined;
|
|
159
|
+
attempts?: number | undefined;
|
|
160
|
+
usage?: Record<string, unknown> | undefined;
|
|
161
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
162
|
+
}> | undefined;
|
|
163
|
+
}, {
|
|
164
|
+
version: string;
|
|
165
|
+
run: {
|
|
166
|
+
status: string;
|
|
167
|
+
id: string;
|
|
168
|
+
};
|
|
169
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
170
|
+
usage?: Record<string, unknown> | undefined;
|
|
171
|
+
state?: Record<string, unknown> | undefined;
|
|
172
|
+
history?: Record<string, {
|
|
173
|
+
status: string;
|
|
174
|
+
output?: unknown;
|
|
175
|
+
committedAs?: string | null | undefined;
|
|
176
|
+
attempts?: number | undefined;
|
|
177
|
+
usage?: Record<string, unknown> | undefined;
|
|
178
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
179
|
+
}> | undefined;
|
|
180
|
+
}>;
|
|
181
|
+
workflow: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
182
|
+
}, "strip", z.ZodTypeAny, {
|
|
183
|
+
run: {
|
|
184
|
+
version: string;
|
|
185
|
+
run: {
|
|
186
|
+
status: string;
|
|
187
|
+
id: string;
|
|
188
|
+
};
|
|
189
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
190
|
+
usage?: Record<string, unknown> | undefined;
|
|
191
|
+
state?: Record<string, unknown> | undefined;
|
|
192
|
+
history?: Record<string, {
|
|
193
|
+
status: string;
|
|
194
|
+
output?: unknown;
|
|
195
|
+
committedAs?: string | null | undefined;
|
|
196
|
+
attempts?: number | undefined;
|
|
197
|
+
usage?: Record<string, unknown> | undefined;
|
|
198
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
199
|
+
}> | undefined;
|
|
200
|
+
};
|
|
201
|
+
workflow?: Record<string, unknown> | undefined;
|
|
202
|
+
}, {
|
|
203
|
+
run: {
|
|
204
|
+
version: string;
|
|
205
|
+
run: {
|
|
206
|
+
status: string;
|
|
207
|
+
id: string;
|
|
208
|
+
};
|
|
209
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
210
|
+
usage?: Record<string, unknown> | undefined;
|
|
211
|
+
state?: Record<string, unknown> | undefined;
|
|
212
|
+
history?: Record<string, {
|
|
213
|
+
status: string;
|
|
214
|
+
output?: unknown;
|
|
215
|
+
committedAs?: string | null | undefined;
|
|
216
|
+
attempts?: number | undefined;
|
|
217
|
+
usage?: Record<string, unknown> | undefined;
|
|
218
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
219
|
+
}> | undefined;
|
|
220
|
+
};
|
|
221
|
+
workflow?: Record<string, unknown> | undefined;
|
|
222
|
+
}>;
|
|
223
|
+
/**
|
|
224
|
+
* Build harness run context from a live run (single adapter for runtime + eval loaders).
|
|
225
|
+
* @category Harness
|
|
226
|
+
*/
|
|
227
|
+
export declare function toHarnessRunContext(run: RunResult, workflow?: WorkflowManifest): HarnessRunContext;
|
|
228
|
+
//# sourceMappingURL=harness-run-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"harness-run-context.d.ts","sourceRoot":"","sources":["../src/harness-run-context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AACzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAErD,4EAA4E;AAC5E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAA;AAEF,2EAA2E;AAC3E,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU1B,CAAA;AAEF,iFAAiF;AACjF,MAAM,WAAW,iBAAiB;IAChC,2CAA2C;IAC3C,GAAG,EAAE,SAAS,CAAA;IACd,6EAA6E;IAC7E,QAAQ,CAAC,EAAE,gBAAgB,CAAA;CAC5B;AAED,kEAAkE;AAClE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGlC,CAAA;AAEF;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,GAAG,EAAE,SAAS,EACd,QAAQ,CAAC,EAAE,gBAAgB,GAC1B,iBAAiB,CAEnB"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** Zod mirror of per-step run history (eval fixtures). @category Harness */
|
|
3
|
+
export const stepRunRecordSchema = z.object({
|
|
4
|
+
status: z.string(),
|
|
5
|
+
output: z.unknown().optional(),
|
|
6
|
+
committedAs: z.string().nullable().optional(),
|
|
7
|
+
attempts: z.number().optional(),
|
|
8
|
+
usage: z.record(z.string(), z.unknown()).optional(),
|
|
9
|
+
mutations: z.array(z.record(z.string(), z.unknown())).optional(),
|
|
10
|
+
});
|
|
11
|
+
/** Zod mirror of run result document (eval fixtures). @category Harness */
|
|
12
|
+
export const runResultSchema = z.object({
|
|
13
|
+
schema: z.literal("@executioncontrolprotocol.run.result"),
|
|
14
|
+
version: z.string(),
|
|
15
|
+
run: z.object({
|
|
16
|
+
id: z.string(),
|
|
17
|
+
status: z.string(),
|
|
18
|
+
}),
|
|
19
|
+
state: z.record(z.string(), z.unknown()).optional(),
|
|
20
|
+
history: z.record(z.string(), stepRunRecordSchema).optional(),
|
|
21
|
+
usage: z.record(z.string(), z.unknown()).optional(),
|
|
22
|
+
});
|
|
23
|
+
/** Zod schema for {@link HarnessRunContext}. @category Harness */
|
|
24
|
+
export const harnessRunContextSchema = z.object({
|
|
25
|
+
run: runResultSchema,
|
|
26
|
+
workflow: z.record(z.string(), z.unknown()).optional(),
|
|
27
|
+
});
|
|
28
|
+
/**
|
|
29
|
+
* Build harness run context from a live run (single adapter for runtime + eval loaders).
|
|
30
|
+
* @category Harness
|
|
31
|
+
*/
|
|
32
|
+
export function toHarnessRunContext(run, workflow) {
|
|
33
|
+
return workflow !== undefined ? { run, workflow } : { run };
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=harness-run-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"harness-run-context.js","sourceRoot":"","sources":["../src/harness-run-context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB,4EAA4E;AAC5E,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC9B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;CACjE,CAAC,CAAA;AAEF,2EAA2E;AAC3E,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;IACzD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC;QACZ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;QACd,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;KACnB,CAAC;IACF,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,mBAAmB,CAAC,CAAC,QAAQ,EAAE;IAC7D,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;CACpD,CAAC,CAAA;AAUF,kEAAkE;AAClE,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,GAAG,EAAE,eAAe;IACpB,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;CACvD,CAAC,CAAA;AAEF;;;GAGG;AACH,MAAM,UAAU,mBAAmB,CACjC,GAAc,EACd,QAA2B;IAE3B,OAAO,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,CAAA;AAC7D,CAAC"}
|
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** Shared harness task ids for browser and third-party harnesses. @category Harness */
|
|
3
|
+
export declare const HARNESS_TASK_IDS: {
|
|
4
|
+
readonly WORKFLOW_AUTHORING: "workflow-authoring";
|
|
5
|
+
readonly INTENT_CLASSIFICATION: "intent-classification";
|
|
6
|
+
readonly WORKFLOW_ASSISTANT: "workflow-assistant";
|
|
7
|
+
readonly CHAT: "chat";
|
|
8
|
+
};
|
|
9
|
+
/** Harness task id union. @category Harness */
|
|
10
|
+
export type HarnessTaskId = (typeof HARNESS_TASK_IDS)[keyof typeof HARNESS_TASK_IDS];
|
|
11
|
+
/** Intent classification harness input. @category Harness */
|
|
12
|
+
export declare const harnessIntentClassificationInputSchema: z.ZodObject<{
|
|
13
|
+
/** User message to classify. */
|
|
14
|
+
message: z.ZodString;
|
|
15
|
+
/** Optional model override. */
|
|
16
|
+
model: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
message: string;
|
|
19
|
+
model?: string | undefined;
|
|
20
|
+
}, {
|
|
21
|
+
message: string;
|
|
22
|
+
model?: string | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
/** Workflow authoring harness input. @category Harness */
|
|
25
|
+
export declare const harnessWorkflowAuthoringInputSchema: z.ZodObject<{
|
|
26
|
+
/** Authoring request text. */
|
|
27
|
+
request: z.ZodString;
|
|
28
|
+
/** Baseline manifest for patch mode. */
|
|
29
|
+
manifest: z.ZodOptional<z.ZodUnknown>;
|
|
30
|
+
/** Optional model override. */
|
|
31
|
+
model: z.ZodOptional<z.ZodString>;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
request: string;
|
|
34
|
+
model?: string | undefined;
|
|
35
|
+
manifest?: unknown;
|
|
36
|
+
}, {
|
|
37
|
+
request: string;
|
|
38
|
+
model?: string | undefined;
|
|
39
|
+
manifest?: unknown;
|
|
40
|
+
}>;
|
|
41
|
+
/** Multi-shot chat harness input (intent shot + contextualized execution). @category Harness */
|
|
42
|
+
export declare const harnessChatInputSchema: z.ZodObject<{
|
|
43
|
+
/** User message. */
|
|
44
|
+
message: z.ZodString;
|
|
45
|
+
/** Baseline manifest for patch routing. */
|
|
46
|
+
manifest: z.ZodOptional<z.ZodUnknown>;
|
|
47
|
+
/** Optional run context for assistant routing. */
|
|
48
|
+
runContext: z.ZodOptional<z.ZodObject<{
|
|
49
|
+
run: z.ZodObject<{
|
|
50
|
+
schema: z.ZodLiteral<"@executioncontrolprotocol.run.result">;
|
|
51
|
+
version: z.ZodString;
|
|
52
|
+
run: z.ZodObject<{
|
|
53
|
+
id: z.ZodString;
|
|
54
|
+
status: z.ZodString;
|
|
55
|
+
}, "strip", z.ZodTypeAny, {
|
|
56
|
+
status: string;
|
|
57
|
+
id: string;
|
|
58
|
+
}, {
|
|
59
|
+
status: string;
|
|
60
|
+
id: string;
|
|
61
|
+
}>;
|
|
62
|
+
state: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
63
|
+
history: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
64
|
+
status: z.ZodString;
|
|
65
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
66
|
+
committedAs: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
68
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
69
|
+
mutations: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
|
71
|
+
status: string;
|
|
72
|
+
output?: unknown;
|
|
73
|
+
committedAs?: string | null | undefined;
|
|
74
|
+
attempts?: number | undefined;
|
|
75
|
+
usage?: Record<string, unknown> | undefined;
|
|
76
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
77
|
+
}, {
|
|
78
|
+
status: string;
|
|
79
|
+
output?: unknown;
|
|
80
|
+
committedAs?: string | null | undefined;
|
|
81
|
+
attempts?: number | undefined;
|
|
82
|
+
usage?: Record<string, unknown> | undefined;
|
|
83
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
84
|
+
}>>>;
|
|
85
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
86
|
+
}, "strip", z.ZodTypeAny, {
|
|
87
|
+
version: string;
|
|
88
|
+
run: {
|
|
89
|
+
status: string;
|
|
90
|
+
id: string;
|
|
91
|
+
};
|
|
92
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
93
|
+
usage?: Record<string, unknown> | undefined;
|
|
94
|
+
state?: Record<string, unknown> | undefined;
|
|
95
|
+
history?: Record<string, {
|
|
96
|
+
status: string;
|
|
97
|
+
output?: unknown;
|
|
98
|
+
committedAs?: string | null | undefined;
|
|
99
|
+
attempts?: number | undefined;
|
|
100
|
+
usage?: Record<string, unknown> | undefined;
|
|
101
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
102
|
+
}> | undefined;
|
|
103
|
+
}, {
|
|
104
|
+
version: string;
|
|
105
|
+
run: {
|
|
106
|
+
status: string;
|
|
107
|
+
id: string;
|
|
108
|
+
};
|
|
109
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
110
|
+
usage?: Record<string, unknown> | undefined;
|
|
111
|
+
state?: Record<string, unknown> | undefined;
|
|
112
|
+
history?: Record<string, {
|
|
113
|
+
status: string;
|
|
114
|
+
output?: unknown;
|
|
115
|
+
committedAs?: string | null | undefined;
|
|
116
|
+
attempts?: number | undefined;
|
|
117
|
+
usage?: Record<string, unknown> | undefined;
|
|
118
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
119
|
+
}> | undefined;
|
|
120
|
+
}>;
|
|
121
|
+
workflow: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
122
|
+
}, "strip", z.ZodTypeAny, {
|
|
123
|
+
run: {
|
|
124
|
+
version: string;
|
|
125
|
+
run: {
|
|
126
|
+
status: string;
|
|
127
|
+
id: string;
|
|
128
|
+
};
|
|
129
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
130
|
+
usage?: Record<string, unknown> | undefined;
|
|
131
|
+
state?: Record<string, unknown> | undefined;
|
|
132
|
+
history?: Record<string, {
|
|
133
|
+
status: string;
|
|
134
|
+
output?: unknown;
|
|
135
|
+
committedAs?: string | null | undefined;
|
|
136
|
+
attempts?: number | undefined;
|
|
137
|
+
usage?: Record<string, unknown> | undefined;
|
|
138
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
139
|
+
}> | undefined;
|
|
140
|
+
};
|
|
141
|
+
workflow?: Record<string, unknown> | undefined;
|
|
142
|
+
}, {
|
|
143
|
+
run: {
|
|
144
|
+
version: string;
|
|
145
|
+
run: {
|
|
146
|
+
status: string;
|
|
147
|
+
id: string;
|
|
148
|
+
};
|
|
149
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
150
|
+
usage?: Record<string, unknown> | undefined;
|
|
151
|
+
state?: Record<string, unknown> | undefined;
|
|
152
|
+
history?: Record<string, {
|
|
153
|
+
status: string;
|
|
154
|
+
output?: unknown;
|
|
155
|
+
committedAs?: string | null | undefined;
|
|
156
|
+
attempts?: number | undefined;
|
|
157
|
+
usage?: Record<string, unknown> | undefined;
|
|
158
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
159
|
+
}> | undefined;
|
|
160
|
+
};
|
|
161
|
+
workflow?: Record<string, unknown> | undefined;
|
|
162
|
+
}>>;
|
|
163
|
+
/** Rolling conversation summary supplied by the caller between turns. */
|
|
164
|
+
conversationSummary: z.ZodOptional<z.ZodString>;
|
|
165
|
+
/** Optional model override. */
|
|
166
|
+
model: z.ZodOptional<z.ZodString>;
|
|
167
|
+
}, "strip", z.ZodTypeAny, {
|
|
168
|
+
message: string;
|
|
169
|
+
model?: string | undefined;
|
|
170
|
+
manifest?: unknown;
|
|
171
|
+
runContext?: {
|
|
172
|
+
run: {
|
|
173
|
+
version: string;
|
|
174
|
+
run: {
|
|
175
|
+
status: string;
|
|
176
|
+
id: string;
|
|
177
|
+
};
|
|
178
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
179
|
+
usage?: Record<string, unknown> | undefined;
|
|
180
|
+
state?: Record<string, unknown> | undefined;
|
|
181
|
+
history?: Record<string, {
|
|
182
|
+
status: string;
|
|
183
|
+
output?: unknown;
|
|
184
|
+
committedAs?: string | null | undefined;
|
|
185
|
+
attempts?: number | undefined;
|
|
186
|
+
usage?: Record<string, unknown> | undefined;
|
|
187
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
188
|
+
}> | undefined;
|
|
189
|
+
};
|
|
190
|
+
workflow?: Record<string, unknown> | undefined;
|
|
191
|
+
} | undefined;
|
|
192
|
+
conversationSummary?: string | undefined;
|
|
193
|
+
}, {
|
|
194
|
+
message: string;
|
|
195
|
+
model?: string | undefined;
|
|
196
|
+
manifest?: unknown;
|
|
197
|
+
runContext?: {
|
|
198
|
+
run: {
|
|
199
|
+
version: string;
|
|
200
|
+
run: {
|
|
201
|
+
status: string;
|
|
202
|
+
id: string;
|
|
203
|
+
};
|
|
204
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
205
|
+
usage?: Record<string, unknown> | undefined;
|
|
206
|
+
state?: Record<string, unknown> | undefined;
|
|
207
|
+
history?: Record<string, {
|
|
208
|
+
status: string;
|
|
209
|
+
output?: unknown;
|
|
210
|
+
committedAs?: string | null | undefined;
|
|
211
|
+
attempts?: number | undefined;
|
|
212
|
+
usage?: Record<string, unknown> | undefined;
|
|
213
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
214
|
+
}> | undefined;
|
|
215
|
+
};
|
|
216
|
+
workflow?: Record<string, unknown> | undefined;
|
|
217
|
+
} | undefined;
|
|
218
|
+
conversationSummary?: string | undefined;
|
|
219
|
+
}>;
|
|
220
|
+
/** Multi-shot chat input type. @category Harness */
|
|
221
|
+
export type HarnessChatInput = z.infer<typeof harnessChatInputSchema>;
|
|
222
|
+
/** Unified workflow assistant harness input. @category Harness */
|
|
223
|
+
export declare const harnessWorkflowAssistantInputSchema: z.ZodObject<{
|
|
224
|
+
/** User message. */
|
|
225
|
+
message: z.ZodString;
|
|
226
|
+
/** Optional model override. */
|
|
227
|
+
model: z.ZodOptional<z.ZodString>;
|
|
228
|
+
/** Optional run context for run-aware Q&A. */
|
|
229
|
+
runContext: z.ZodOptional<z.ZodObject<{
|
|
230
|
+
run: z.ZodObject<{
|
|
231
|
+
schema: z.ZodLiteral<"@executioncontrolprotocol.run.result">;
|
|
232
|
+
version: z.ZodString;
|
|
233
|
+
run: z.ZodObject<{
|
|
234
|
+
id: z.ZodString;
|
|
235
|
+
status: z.ZodString;
|
|
236
|
+
}, "strip", z.ZodTypeAny, {
|
|
237
|
+
status: string;
|
|
238
|
+
id: string;
|
|
239
|
+
}, {
|
|
240
|
+
status: string;
|
|
241
|
+
id: string;
|
|
242
|
+
}>;
|
|
243
|
+
state: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
244
|
+
history: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
245
|
+
status: z.ZodString;
|
|
246
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
247
|
+
committedAs: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
248
|
+
attempts: z.ZodOptional<z.ZodNumber>;
|
|
249
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
250
|
+
mutations: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
251
|
+
}, "strip", z.ZodTypeAny, {
|
|
252
|
+
status: string;
|
|
253
|
+
output?: unknown;
|
|
254
|
+
committedAs?: string | null | undefined;
|
|
255
|
+
attempts?: number | undefined;
|
|
256
|
+
usage?: Record<string, unknown> | undefined;
|
|
257
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
258
|
+
}, {
|
|
259
|
+
status: string;
|
|
260
|
+
output?: unknown;
|
|
261
|
+
committedAs?: string | null | undefined;
|
|
262
|
+
attempts?: number | undefined;
|
|
263
|
+
usage?: Record<string, unknown> | undefined;
|
|
264
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
265
|
+
}>>>;
|
|
266
|
+
usage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
267
|
+
}, "strip", z.ZodTypeAny, {
|
|
268
|
+
version: string;
|
|
269
|
+
run: {
|
|
270
|
+
status: string;
|
|
271
|
+
id: string;
|
|
272
|
+
};
|
|
273
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
274
|
+
usage?: Record<string, unknown> | undefined;
|
|
275
|
+
state?: Record<string, unknown> | undefined;
|
|
276
|
+
history?: Record<string, {
|
|
277
|
+
status: string;
|
|
278
|
+
output?: unknown;
|
|
279
|
+
committedAs?: string | null | undefined;
|
|
280
|
+
attempts?: number | undefined;
|
|
281
|
+
usage?: Record<string, unknown> | undefined;
|
|
282
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
283
|
+
}> | undefined;
|
|
284
|
+
}, {
|
|
285
|
+
version: string;
|
|
286
|
+
run: {
|
|
287
|
+
status: string;
|
|
288
|
+
id: string;
|
|
289
|
+
};
|
|
290
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
291
|
+
usage?: Record<string, unknown> | undefined;
|
|
292
|
+
state?: Record<string, unknown> | undefined;
|
|
293
|
+
history?: Record<string, {
|
|
294
|
+
status: string;
|
|
295
|
+
output?: unknown;
|
|
296
|
+
committedAs?: string | null | undefined;
|
|
297
|
+
attempts?: number | undefined;
|
|
298
|
+
usage?: Record<string, unknown> | undefined;
|
|
299
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
300
|
+
}> | undefined;
|
|
301
|
+
}>;
|
|
302
|
+
workflow: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
303
|
+
}, "strip", z.ZodTypeAny, {
|
|
304
|
+
run: {
|
|
305
|
+
version: string;
|
|
306
|
+
run: {
|
|
307
|
+
status: string;
|
|
308
|
+
id: string;
|
|
309
|
+
};
|
|
310
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
311
|
+
usage?: Record<string, unknown> | undefined;
|
|
312
|
+
state?: Record<string, unknown> | undefined;
|
|
313
|
+
history?: Record<string, {
|
|
314
|
+
status: string;
|
|
315
|
+
output?: unknown;
|
|
316
|
+
committedAs?: string | null | undefined;
|
|
317
|
+
attempts?: number | undefined;
|
|
318
|
+
usage?: Record<string, unknown> | undefined;
|
|
319
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
320
|
+
}> | undefined;
|
|
321
|
+
};
|
|
322
|
+
workflow?: Record<string, unknown> | undefined;
|
|
323
|
+
}, {
|
|
324
|
+
run: {
|
|
325
|
+
version: string;
|
|
326
|
+
run: {
|
|
327
|
+
status: string;
|
|
328
|
+
id: string;
|
|
329
|
+
};
|
|
330
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
331
|
+
usage?: Record<string, unknown> | undefined;
|
|
332
|
+
state?: Record<string, unknown> | undefined;
|
|
333
|
+
history?: Record<string, {
|
|
334
|
+
status: string;
|
|
335
|
+
output?: unknown;
|
|
336
|
+
committedAs?: string | null | undefined;
|
|
337
|
+
attempts?: number | undefined;
|
|
338
|
+
usage?: Record<string, unknown> | undefined;
|
|
339
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
340
|
+
}> | undefined;
|
|
341
|
+
};
|
|
342
|
+
workflow?: Record<string, unknown> | undefined;
|
|
343
|
+
}>>;
|
|
344
|
+
/** Optional workflow manifest summary context. */
|
|
345
|
+
workflow: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
346
|
+
}, "strip", z.ZodTypeAny, {
|
|
347
|
+
message: string;
|
|
348
|
+
workflow?: Record<string, unknown> | undefined;
|
|
349
|
+
model?: string | undefined;
|
|
350
|
+
runContext?: {
|
|
351
|
+
run: {
|
|
352
|
+
version: string;
|
|
353
|
+
run: {
|
|
354
|
+
status: string;
|
|
355
|
+
id: string;
|
|
356
|
+
};
|
|
357
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
358
|
+
usage?: Record<string, unknown> | undefined;
|
|
359
|
+
state?: Record<string, unknown> | undefined;
|
|
360
|
+
history?: Record<string, {
|
|
361
|
+
status: string;
|
|
362
|
+
output?: unknown;
|
|
363
|
+
committedAs?: string | null | undefined;
|
|
364
|
+
attempts?: number | undefined;
|
|
365
|
+
usage?: Record<string, unknown> | undefined;
|
|
366
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
367
|
+
}> | undefined;
|
|
368
|
+
};
|
|
369
|
+
workflow?: Record<string, unknown> | undefined;
|
|
370
|
+
} | undefined;
|
|
371
|
+
}, {
|
|
372
|
+
message: string;
|
|
373
|
+
workflow?: Record<string, unknown> | undefined;
|
|
374
|
+
model?: string | undefined;
|
|
375
|
+
runContext?: {
|
|
376
|
+
run: {
|
|
377
|
+
version: string;
|
|
378
|
+
run: {
|
|
379
|
+
status: string;
|
|
380
|
+
id: string;
|
|
381
|
+
};
|
|
382
|
+
schema: "@executioncontrolprotocol.run.result";
|
|
383
|
+
usage?: Record<string, unknown> | undefined;
|
|
384
|
+
state?: Record<string, unknown> | undefined;
|
|
385
|
+
history?: Record<string, {
|
|
386
|
+
status: string;
|
|
387
|
+
output?: unknown;
|
|
388
|
+
committedAs?: string | null | undefined;
|
|
389
|
+
attempts?: number | undefined;
|
|
390
|
+
usage?: Record<string, unknown> | undefined;
|
|
391
|
+
mutations?: Record<string, unknown>[] | undefined;
|
|
392
|
+
}> | undefined;
|
|
393
|
+
};
|
|
394
|
+
workflow?: Record<string, unknown> | undefined;
|
|
395
|
+
} | undefined;
|
|
396
|
+
}>;
|
|
397
|
+
/** Intent classification input type. @category Harness */
|
|
398
|
+
export type HarnessIntentClassificationInput = z.infer<typeof harnessIntentClassificationInputSchema>;
|
|
399
|
+
/** Workflow authoring input type. @category Harness */
|
|
400
|
+
export type HarnessWorkflowAuthoringInput = z.infer<typeof harnessWorkflowAuthoringInputSchema>;
|
|
401
|
+
/** Workflow assistant input type. @category Harness */
|
|
402
|
+
export type HarnessWorkflowAssistantInput = z.infer<typeof harnessWorkflowAssistantInputSchema>;
|
|
403
|
+
//# sourceMappingURL=harness-tasks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"harness-tasks.d.ts","sourceRoot":"","sources":["../src/harness-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,uFAAuF;AACvF,eAAO,MAAM,gBAAgB;;;;;CAKnB,CAAA;AAEV,+CAA+C;AAC/C,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAA;AAEpF,6DAA6D;AAC7D,eAAO,MAAM,sCAAsC;IACjD,gCAAgC;;IAEhC,+BAA+B;;;;;;;;EAE/B,CAAA;AAEF,0DAA0D;AAC1D,eAAO,MAAM,mCAAmC;IAC9C,8BAA8B;;IAE9B,wCAAwC;;IAExC,+BAA+B;;;;;;;;;;EAE/B,CAAA;AAEF,gGAAgG;AAChG,eAAO,MAAM,sBAAsB;IACjC,oBAAoB;;IAEpB,2CAA2C;;IAE3C,kDAAkD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAElD,yEAAyE;;IAEzE,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE/B,CAAA;AAEF,oDAAoD;AACpD,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,kEAAkE;AAClE,eAAO,MAAM,mCAAmC;IAC9C,oBAAoB;;IAEpB,+BAA+B;;IAE/B,8CAA8C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAE9C,kDAAkD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAElD,CAAA;AAEF,0DAA0D;AAC1D,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,sCAAsC,CAC9C,CAAA;AAED,uDAAuD;AACvD,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAA;AAE/F,uDAAuD;AACvD,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAA"}
|