eval-quality 0.2.0 → 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/README.md +17 -12
- package/corpus/dev/README.md +3 -2
- package/corpus/dev/compile-seal-example/brief.json +1 -1
- package/corpus/dev/compile-seal-example/contract.json +1 -1
- package/corpus/dev/contracts/absent-collection-locations.json +1 -1
- package/corpus/dev/contracts/absent-sibling-groups.json +1 -1
- package/corpus/dev/contracts/absent-success-indicator.json +1 -1
- package/corpus/dev/contracts/empty-channel-roles.json +1 -1
- package/corpus/dev/contracts/empty-collection-locations.json +1 -1
- package/corpus/dev/contracts/empty-request-shapes.json +1 -1
- package/corpus/dev/contracts/empty-sibling-groups.json +1 -1
- package/corpus/dev/contracts/fragment-selection.json +1 -0
- package/corpus/dev/contracts/no-collection-quantifier.json +1 -1
- package/corpus/dev/contracts/no-operation-inventory.json +1 -1
- package/corpus/dev/contracts/no-read-back-relation.json +1 -1
- package/corpus/dev/contracts/no-state-change-marker.json +1 -1
- package/corpus/dev/contracts/no-type-violating-step.json +1 -1
- package/corpus/dev/contracts/per-key-split-oracles.json +1 -1
- package/corpus/dev/contracts/review-corpus.json +1 -0
- package/corpus/dev/contracts/satisfied-declarations.json +1 -1
- package/corpus/dev/contracts/single-required-response-key.json +1 -1
- package/corpus/dev/contracts/split-indicator-oracle.json +1 -1
- package/corpus/dev/contracts/unaddressed-parameter-sibling.json +1 -1
- package/corpus/dev/contracts/unnamed-reference-set.json +1 -1
- package/corpus/dev/contracts/wrong-cardinality-form.json +1 -1
- package/corpus/dev/index.json +1 -1
- package/dist/adapters/command-line-adapter.d.ts +44 -0
- package/dist/adapters/command-line-adapter.js +284 -0
- package/dist/adapters/command-target-policy.d.ts +36 -0
- package/dist/adapters/command-target-policy.js +33 -0
- package/dist/adapters/index.d.ts +2 -0
- package/dist/adapters/index.js +1 -0
- package/dist/cli/render.d.ts +2 -5
- package/dist/cli/render.js +51 -1
- package/dist/core/compile/bindings.d.ts +26 -7
- package/dist/core/compile/bindings.js +49 -32
- package/dist/core/compile/compile.d.ts +12 -0
- package/dist/core/compile/compile.js +28 -1
- package/dist/core/compile/excluded-content.d.ts +11 -0
- package/dist/core/compile/excluded-content.js +42 -0
- package/dist/core/compile/expression-legality.d.ts +2 -2
- package/dist/core/compile/expression-legality.js +58 -12
- package/dist/core/compile/interface-inventory.d.ts +34 -1
- package/dist/core/compile/interface-inventory.js +88 -11
- package/dist/core/compile/reachability.d.ts +12 -2
- package/dist/core/compile/reachability.js +123 -36
- package/dist/core/compile/schema-version.d.ts +2 -0
- package/dist/core/compile/schema-version.js +25 -0
- package/dist/core/compile/sensitivity-witness.d.ts +31 -12
- package/dist/core/compile/sensitivity-witness.js +110 -23
- package/dist/core/compile/step-reference.d.ts +2 -0
- package/dist/core/compile/step-reference.js +49 -0
- package/dist/core/coverage/operations.d.ts +62 -0
- package/dist/core/coverage/operations.js +57 -0
- package/dist/core/coverage/relevance.d.ts +4 -2
- package/dist/core/coverage/relevance.js +22 -23
- package/dist/core/coverage/satisfaction.d.ts +2 -2
- package/dist/core/coverage/satisfaction.js +73 -48
- package/dist/core/declared-inputs.d.ts +83 -4
- package/dist/core/declared-inputs.js +105 -8
- package/dist/core/evaluate/evidence-resolution.d.ts +9 -12
- package/dist/core/evaluate/evidence-resolution.js +70 -10
- package/dist/core/evaluate/operators.d.ts +22 -0
- package/dist/core/evaluate/operators.js +17 -1
- package/dist/core/evaluate/resolution.d.ts +14 -3
- package/dist/core/evaluate/resolution.js +63 -3
- package/dist/core/excluded-content.d.ts +65 -0
- package/dist/core/excluded-content.js +113 -0
- package/dist/core/failure-codes.d.ts +2 -2
- package/dist/core/failure-codes.js +5 -2
- package/dist/core/ingest/conditions.d.ts +1 -1
- package/dist/core/ingest/ingest.js +8 -0
- package/dist/core/preflight/plan.d.ts +7 -5
- package/dist/core/preflight/plan.js +75 -32
- package/dist/core/preflight/projection.d.ts +6 -3
- package/dist/core/preflight/projection.js +22 -2
- package/dist/core/preflight/reduce.js +47 -7
- package/dist/core/preflight/witness-evidence.d.ts +5 -5
- package/dist/core/preflight/witness-evidence.js +63 -20
- package/dist/core/schemas/artifact.d.ts +683 -35
- package/dist/core/schemas/constraint-ledger.js +11 -0
- package/dist/core/schemas/defect-signature.d.ts +438 -16
- package/dist/core/schemas/defect-signature.js +58 -10
- package/dist/core/schemas/eval-contract.d.ts +517 -12
- package/dist/core/schemas/eval-contract.js +18 -2
- package/dist/core/schemas/evidence-artifact.d.ts +14 -4
- package/dist/core/schemas/evidence-artifact.js +1 -1
- package/dist/core/schemas/interface.d.ts +741 -13
- package/dist/core/schemas/interface.js +120 -7
- package/dist/core/schemas/isolation-manifest.js +16 -9
- package/dist/core/schemas/plan.d.ts +217 -3
- package/dist/core/schemas/plan.js +22 -1
- package/dist/core/schemas/pointer.d.ts +47 -1
- package/dist/core/schemas/pointer.js +89 -8
- package/dist/core/schemas/port-messages.d.ts +194 -10
- package/dist/core/schemas/port-messages.js +73 -6
- package/dist/core/schemas/probe-body.d.ts +18 -0
- package/dist/core/schemas/probe-body.js +13 -0
- package/dist/core/schemas/probe-policy.d.ts +36 -0
- package/dist/core/schemas/probe-policy.js +44 -0
- package/dist/core/schemas/probe.d.ts +122 -3
- package/dist/core/schemas/probe.js +1 -1
- package/dist/core/schemas/sealed-run-record.d.ts +131 -9
- package/dist/core/schemas/sealed-run-record.js +56 -11
- package/dist/core/schemas/sensitivity-witness.d.ts +108 -6
- package/dist/core/schemas/sensitivity-witness.js +61 -5
- package/dist/core/score/bindings.d.ts +2 -2
- package/dist/core/score/bindings.js +25 -13
- package/dist/core/score/qualification.d.ts +5 -5
- package/dist/core/score/qualification.js +67 -37
- package/dist/core/score/quotation.d.ts +1 -24
- package/dist/core/score/quotation.js +29 -4
- package/dist/core/score/score.js +28 -2
- package/dist/core/score/strength.d.ts +9 -0
- package/dist/core/score/strength.js +35 -1
- package/dist/core/score/witness.d.ts +21 -0
- package/dist/core/score/witness.js +9 -4
- package/dist/core/seal/derived-reference.d.ts +2 -9
- package/dist/core/seal/derived-reference.js +62 -23
- package/dist/core/seal/plan-index.d.ts +18 -3
- package/dist/core/seal/plan-index.js +44 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/ports/environment-probe-port.d.ts +60 -4
- package/dist/testing/conformance.d.ts +2 -1
- package/dist/testing/conformance.js +1 -0
- package/dist/testing/index.d.ts +3 -3
- package/dist/testing/index.js +1 -1
- package/dist/testing/probe-conformance.d.ts +56 -5
- package/dist/testing/probe-conformance.js +196 -5
- package/package.json +1 -1
- package/schemas/eval-contract.schema.json +1356 -464
- package/schemas/evidence-artifact.schema.json +59 -29
- package/schemas/isolation-manifest.schema.json +17 -10
- package/schemas/probe.schema.json +197 -71
- package/schemas/rubric.schema.json +1 -1
- package/schemas/sealed-run-record.schema.json +296 -39
|
@@ -105,29 +105,441 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
105
105
|
approval: z.ZodNullable<z.ZodString>;
|
|
106
106
|
expiresAt: z.ZodNullable<z.ZodISODateTime>;
|
|
107
107
|
}, z.core.$strict>>;
|
|
108
|
-
permittedInterfaces: z.ZodArray<z.ZodObject<{
|
|
108
|
+
permittedInterfaces: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
109
|
+
logicalId: z.ZodString;
|
|
110
|
+
kind: z.ZodLiteral<"api">;
|
|
111
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
112
|
+
operationId: z.ZodString;
|
|
113
|
+
method: z.ZodEnum<{
|
|
114
|
+
DELETE: "DELETE";
|
|
115
|
+
GET: "GET";
|
|
116
|
+
HEAD: "HEAD";
|
|
117
|
+
OPTIONS: "OPTIONS";
|
|
118
|
+
PATCH: "PATCH";
|
|
119
|
+
POST: "POST";
|
|
120
|
+
PUT: "PUT";
|
|
121
|
+
}>;
|
|
122
|
+
pathTemplate: z.ZodString;
|
|
123
|
+
stateChangeMarker: z.ZodBoolean;
|
|
124
|
+
requestShape: z.ZodObject<{
|
|
125
|
+
path: z.ZodObject<{
|
|
126
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
127
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
128
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
129
|
+
array: "array";
|
|
130
|
+
boolean: "boolean";
|
|
131
|
+
null: "null";
|
|
132
|
+
number: "number";
|
|
133
|
+
object: "object";
|
|
134
|
+
string: "string";
|
|
135
|
+
}>>>;
|
|
136
|
+
}, z.core.$strict>;
|
|
137
|
+
query: z.ZodObject<{
|
|
138
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
139
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
140
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
141
|
+
array: "array";
|
|
142
|
+
boolean: "boolean";
|
|
143
|
+
null: "null";
|
|
144
|
+
number: "number";
|
|
145
|
+
object: "object";
|
|
146
|
+
string: "string";
|
|
147
|
+
}>>>;
|
|
148
|
+
}, z.core.$strict>;
|
|
149
|
+
header: z.ZodObject<{
|
|
150
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
151
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
152
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
153
|
+
array: "array";
|
|
154
|
+
boolean: "boolean";
|
|
155
|
+
null: "null";
|
|
156
|
+
number: "number";
|
|
157
|
+
object: "object";
|
|
158
|
+
string: "string";
|
|
159
|
+
}>>>;
|
|
160
|
+
}, z.core.$strict>;
|
|
161
|
+
body: z.ZodObject<{
|
|
162
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
163
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
164
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
165
|
+
array: "array";
|
|
166
|
+
boolean: "boolean";
|
|
167
|
+
null: "null";
|
|
168
|
+
number: "number";
|
|
169
|
+
object: "object";
|
|
170
|
+
string: "string";
|
|
171
|
+
}>>>;
|
|
172
|
+
}, z.core.$strict>;
|
|
173
|
+
}, z.core.$strict>;
|
|
174
|
+
responseDescriptor: z.ZodObject<{
|
|
175
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
176
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
177
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
178
|
+
array: "array";
|
|
179
|
+
boolean: "boolean";
|
|
180
|
+
null: "null";
|
|
181
|
+
number: "number";
|
|
182
|
+
object: "object";
|
|
183
|
+
string: "string";
|
|
184
|
+
}>>>;
|
|
185
|
+
successIndicator: z.ZodNullable<z.ZodString>;
|
|
186
|
+
channelRoles: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
187
|
+
collection: "collection";
|
|
188
|
+
diagnostic: "diagnostic";
|
|
189
|
+
payload: "payload";
|
|
190
|
+
"success-indicator": "success-indicator";
|
|
191
|
+
}>>>;
|
|
192
|
+
collectionLocations: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
193
|
+
pointer: z.ZodString;
|
|
194
|
+
expectedCardinality: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
195
|
+
mode: z.ZodLiteral<"exact">;
|
|
196
|
+
count: z.ZodInt;
|
|
197
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
198
|
+
mode: z.ZodLiteral<"at-most">;
|
|
199
|
+
max: z.ZodInt;
|
|
200
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
201
|
+
mode: z.ZodLiteral<"page-bounded">;
|
|
202
|
+
max: z.ZodInt;
|
|
203
|
+
}, z.core.$strict>], "mode">;
|
|
204
|
+
referenceSet: z.ZodNullable<z.ZodString>;
|
|
205
|
+
}, z.core.$strict>>>;
|
|
206
|
+
}, z.core.$strict>;
|
|
207
|
+
volatilePointers: z.ZodArray<z.ZodString>;
|
|
208
|
+
sensitivityWitness: z.ZodNullable<z.ZodObject<{
|
|
209
|
+
witnessId: z.ZodString;
|
|
210
|
+
channel: z.ZodEnum<{
|
|
211
|
+
argument: "argument";
|
|
212
|
+
body: "body";
|
|
213
|
+
environment: "environment";
|
|
214
|
+
option: "option";
|
|
215
|
+
path: "path";
|
|
216
|
+
query: "query";
|
|
217
|
+
stdin: "stdin";
|
|
218
|
+
}>;
|
|
219
|
+
legs: z.ZodArray<z.ZodObject<{
|
|
220
|
+
legId: z.ZodString;
|
|
221
|
+
inputs: z.ZodUnion<readonly [z.ZodObject<{
|
|
222
|
+
path: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
223
|
+
query: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
224
|
+
header: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
225
|
+
body: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
226
|
+
kind: z.ZodLiteral<"json">;
|
|
227
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
228
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
229
|
+
kind: z.ZodLiteral<"absent">;
|
|
230
|
+
}, z.core.$strict>], "kind">;
|
|
231
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
232
|
+
argument: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
233
|
+
option: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
234
|
+
environment: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
235
|
+
stdin: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
236
|
+
kind: z.ZodLiteral<"json">;
|
|
237
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
238
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
239
|
+
kind: z.ZodLiteral<"text">;
|
|
240
|
+
value: z.ZodString;
|
|
241
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
242
|
+
kind: z.ZodLiteral<"absent">;
|
|
243
|
+
}, z.core.$strict>], "kind">;
|
|
244
|
+
}, z.core.$strict>]>;
|
|
245
|
+
}, z.core.$strict>>;
|
|
246
|
+
relation: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
247
|
+
}, z.core.$strict>>;
|
|
248
|
+
}, z.core.$strict>>;
|
|
249
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
250
|
+
logicalId: z.ZodString;
|
|
251
|
+
kind: z.ZodLiteral<"web">;
|
|
252
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
253
|
+
operationId: z.ZodString;
|
|
254
|
+
method: z.ZodEnum<{
|
|
255
|
+
DELETE: "DELETE";
|
|
256
|
+
GET: "GET";
|
|
257
|
+
HEAD: "HEAD";
|
|
258
|
+
OPTIONS: "OPTIONS";
|
|
259
|
+
PATCH: "PATCH";
|
|
260
|
+
POST: "POST";
|
|
261
|
+
PUT: "PUT";
|
|
262
|
+
}>;
|
|
263
|
+
pathTemplate: z.ZodString;
|
|
264
|
+
stateChangeMarker: z.ZodBoolean;
|
|
265
|
+
requestShape: z.ZodObject<{
|
|
266
|
+
path: z.ZodObject<{
|
|
267
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
268
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
269
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
270
|
+
array: "array";
|
|
271
|
+
boolean: "boolean";
|
|
272
|
+
null: "null";
|
|
273
|
+
number: "number";
|
|
274
|
+
object: "object";
|
|
275
|
+
string: "string";
|
|
276
|
+
}>>>;
|
|
277
|
+
}, z.core.$strict>;
|
|
278
|
+
query: z.ZodObject<{
|
|
279
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
280
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
281
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
282
|
+
array: "array";
|
|
283
|
+
boolean: "boolean";
|
|
284
|
+
null: "null";
|
|
285
|
+
number: "number";
|
|
286
|
+
object: "object";
|
|
287
|
+
string: "string";
|
|
288
|
+
}>>>;
|
|
289
|
+
}, z.core.$strict>;
|
|
290
|
+
header: z.ZodObject<{
|
|
291
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
292
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
293
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
294
|
+
array: "array";
|
|
295
|
+
boolean: "boolean";
|
|
296
|
+
null: "null";
|
|
297
|
+
number: "number";
|
|
298
|
+
object: "object";
|
|
299
|
+
string: "string";
|
|
300
|
+
}>>>;
|
|
301
|
+
}, z.core.$strict>;
|
|
302
|
+
body: z.ZodObject<{
|
|
303
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
304
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
305
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
306
|
+
array: "array";
|
|
307
|
+
boolean: "boolean";
|
|
308
|
+
null: "null";
|
|
309
|
+
number: "number";
|
|
310
|
+
object: "object";
|
|
311
|
+
string: "string";
|
|
312
|
+
}>>>;
|
|
313
|
+
}, z.core.$strict>;
|
|
314
|
+
}, z.core.$strict>;
|
|
315
|
+
responseDescriptor: z.ZodObject<{
|
|
316
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
317
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
318
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
319
|
+
array: "array";
|
|
320
|
+
boolean: "boolean";
|
|
321
|
+
null: "null";
|
|
322
|
+
number: "number";
|
|
323
|
+
object: "object";
|
|
324
|
+
string: "string";
|
|
325
|
+
}>>>;
|
|
326
|
+
successIndicator: z.ZodNullable<z.ZodString>;
|
|
327
|
+
channelRoles: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
328
|
+
collection: "collection";
|
|
329
|
+
diagnostic: "diagnostic";
|
|
330
|
+
payload: "payload";
|
|
331
|
+
"success-indicator": "success-indicator";
|
|
332
|
+
}>>>;
|
|
333
|
+
collectionLocations: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
334
|
+
pointer: z.ZodString;
|
|
335
|
+
expectedCardinality: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
336
|
+
mode: z.ZodLiteral<"exact">;
|
|
337
|
+
count: z.ZodInt;
|
|
338
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
339
|
+
mode: z.ZodLiteral<"at-most">;
|
|
340
|
+
max: z.ZodInt;
|
|
341
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
342
|
+
mode: z.ZodLiteral<"page-bounded">;
|
|
343
|
+
max: z.ZodInt;
|
|
344
|
+
}, z.core.$strict>], "mode">;
|
|
345
|
+
referenceSet: z.ZodNullable<z.ZodString>;
|
|
346
|
+
}, z.core.$strict>>>;
|
|
347
|
+
}, z.core.$strict>;
|
|
348
|
+
volatilePointers: z.ZodArray<z.ZodString>;
|
|
349
|
+
sensitivityWitness: z.ZodNullable<z.ZodObject<{
|
|
350
|
+
witnessId: z.ZodString;
|
|
351
|
+
channel: z.ZodEnum<{
|
|
352
|
+
argument: "argument";
|
|
353
|
+
body: "body";
|
|
354
|
+
environment: "environment";
|
|
355
|
+
option: "option";
|
|
356
|
+
path: "path";
|
|
357
|
+
query: "query";
|
|
358
|
+
stdin: "stdin";
|
|
359
|
+
}>;
|
|
360
|
+
legs: z.ZodArray<z.ZodObject<{
|
|
361
|
+
legId: z.ZodString;
|
|
362
|
+
inputs: z.ZodUnion<readonly [z.ZodObject<{
|
|
363
|
+
path: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
364
|
+
query: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
365
|
+
header: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
366
|
+
body: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
367
|
+
kind: z.ZodLiteral<"json">;
|
|
368
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
369
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
370
|
+
kind: z.ZodLiteral<"absent">;
|
|
371
|
+
}, z.core.$strict>], "kind">;
|
|
372
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
373
|
+
argument: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
374
|
+
option: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
375
|
+
environment: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
376
|
+
stdin: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
377
|
+
kind: z.ZodLiteral<"json">;
|
|
378
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
379
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
380
|
+
kind: z.ZodLiteral<"text">;
|
|
381
|
+
value: z.ZodString;
|
|
382
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
383
|
+
kind: z.ZodLiteral<"absent">;
|
|
384
|
+
}, z.core.$strict>], "kind">;
|
|
385
|
+
}, z.core.$strict>]>;
|
|
386
|
+
}, z.core.$strict>>;
|
|
387
|
+
relation: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
388
|
+
}, z.core.$strict>>;
|
|
389
|
+
}, z.core.$strict>>;
|
|
390
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
391
|
+
logicalId: z.ZodString;
|
|
392
|
+
kind: z.ZodLiteral<"mcp">;
|
|
393
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
394
|
+
operationId: z.ZodString;
|
|
395
|
+
method: z.ZodEnum<{
|
|
396
|
+
DELETE: "DELETE";
|
|
397
|
+
GET: "GET";
|
|
398
|
+
HEAD: "HEAD";
|
|
399
|
+
OPTIONS: "OPTIONS";
|
|
400
|
+
PATCH: "PATCH";
|
|
401
|
+
POST: "POST";
|
|
402
|
+
PUT: "PUT";
|
|
403
|
+
}>;
|
|
404
|
+
pathTemplate: z.ZodString;
|
|
405
|
+
stateChangeMarker: z.ZodBoolean;
|
|
406
|
+
requestShape: z.ZodObject<{
|
|
407
|
+
path: z.ZodObject<{
|
|
408
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
409
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
410
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
411
|
+
array: "array";
|
|
412
|
+
boolean: "boolean";
|
|
413
|
+
null: "null";
|
|
414
|
+
number: "number";
|
|
415
|
+
object: "object";
|
|
416
|
+
string: "string";
|
|
417
|
+
}>>>;
|
|
418
|
+
}, z.core.$strict>;
|
|
419
|
+
query: z.ZodObject<{
|
|
420
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
421
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
422
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
423
|
+
array: "array";
|
|
424
|
+
boolean: "boolean";
|
|
425
|
+
null: "null";
|
|
426
|
+
number: "number";
|
|
427
|
+
object: "object";
|
|
428
|
+
string: "string";
|
|
429
|
+
}>>>;
|
|
430
|
+
}, z.core.$strict>;
|
|
431
|
+
header: z.ZodObject<{
|
|
432
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
433
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
434
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
435
|
+
array: "array";
|
|
436
|
+
boolean: "boolean";
|
|
437
|
+
null: "null";
|
|
438
|
+
number: "number";
|
|
439
|
+
object: "object";
|
|
440
|
+
string: "string";
|
|
441
|
+
}>>>;
|
|
442
|
+
}, z.core.$strict>;
|
|
443
|
+
body: z.ZodObject<{
|
|
444
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
445
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
446
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
447
|
+
array: "array";
|
|
448
|
+
boolean: "boolean";
|
|
449
|
+
null: "null";
|
|
450
|
+
number: "number";
|
|
451
|
+
object: "object";
|
|
452
|
+
string: "string";
|
|
453
|
+
}>>>;
|
|
454
|
+
}, z.core.$strict>;
|
|
455
|
+
}, z.core.$strict>;
|
|
456
|
+
responseDescriptor: z.ZodObject<{
|
|
457
|
+
requiredKeys: z.ZodArray<z.ZodString>;
|
|
458
|
+
permittedKeys: z.ZodArray<z.ZodString>;
|
|
459
|
+
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
460
|
+
array: "array";
|
|
461
|
+
boolean: "boolean";
|
|
462
|
+
null: "null";
|
|
463
|
+
number: "number";
|
|
464
|
+
object: "object";
|
|
465
|
+
string: "string";
|
|
466
|
+
}>>>;
|
|
467
|
+
successIndicator: z.ZodNullable<z.ZodString>;
|
|
468
|
+
channelRoles: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
469
|
+
collection: "collection";
|
|
470
|
+
diagnostic: "diagnostic";
|
|
471
|
+
payload: "payload";
|
|
472
|
+
"success-indicator": "success-indicator";
|
|
473
|
+
}>>>;
|
|
474
|
+
collectionLocations: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
475
|
+
pointer: z.ZodString;
|
|
476
|
+
expectedCardinality: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
477
|
+
mode: z.ZodLiteral<"exact">;
|
|
478
|
+
count: z.ZodInt;
|
|
479
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
480
|
+
mode: z.ZodLiteral<"at-most">;
|
|
481
|
+
max: z.ZodInt;
|
|
482
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
483
|
+
mode: z.ZodLiteral<"page-bounded">;
|
|
484
|
+
max: z.ZodInt;
|
|
485
|
+
}, z.core.$strict>], "mode">;
|
|
486
|
+
referenceSet: z.ZodNullable<z.ZodString>;
|
|
487
|
+
}, z.core.$strict>>>;
|
|
488
|
+
}, z.core.$strict>;
|
|
489
|
+
volatilePointers: z.ZodArray<z.ZodString>;
|
|
490
|
+
sensitivityWitness: z.ZodNullable<z.ZodObject<{
|
|
491
|
+
witnessId: z.ZodString;
|
|
492
|
+
channel: z.ZodEnum<{
|
|
493
|
+
argument: "argument";
|
|
494
|
+
body: "body";
|
|
495
|
+
environment: "environment";
|
|
496
|
+
option: "option";
|
|
497
|
+
path: "path";
|
|
498
|
+
query: "query";
|
|
499
|
+
stdin: "stdin";
|
|
500
|
+
}>;
|
|
501
|
+
legs: z.ZodArray<z.ZodObject<{
|
|
502
|
+
legId: z.ZodString;
|
|
503
|
+
inputs: z.ZodUnion<readonly [z.ZodObject<{
|
|
504
|
+
path: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
505
|
+
query: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
506
|
+
header: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
507
|
+
body: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
508
|
+
kind: z.ZodLiteral<"json">;
|
|
509
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
510
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
511
|
+
kind: z.ZodLiteral<"absent">;
|
|
512
|
+
}, z.core.$strict>], "kind">;
|
|
513
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
514
|
+
argument: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
515
|
+
option: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
516
|
+
environment: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
517
|
+
stdin: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
518
|
+
kind: z.ZodLiteral<"json">;
|
|
519
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
520
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
521
|
+
kind: z.ZodLiteral<"text">;
|
|
522
|
+
value: z.ZodString;
|
|
523
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
524
|
+
kind: z.ZodLiteral<"absent">;
|
|
525
|
+
}, z.core.$strict>], "kind">;
|
|
526
|
+
}, z.core.$strict>]>;
|
|
527
|
+
}, z.core.$strict>>;
|
|
528
|
+
relation: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
529
|
+
}, z.core.$strict>>;
|
|
530
|
+
}, z.core.$strict>>;
|
|
531
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
109
532
|
logicalId: z.ZodString;
|
|
110
|
-
kind: z.
|
|
111
|
-
api: "api";
|
|
112
|
-
cli: "cli";
|
|
113
|
-
mcp: "mcp";
|
|
114
|
-
web: "web";
|
|
115
|
-
}>;
|
|
533
|
+
kind: z.ZodLiteral<"cli">;
|
|
116
534
|
operations: z.ZodArray<z.ZodObject<{
|
|
117
535
|
operationId: z.ZodString;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
OPTIONS: "OPTIONS";
|
|
123
|
-
PATCH: "PATCH";
|
|
124
|
-
POST: "POST";
|
|
125
|
-
PUT: "PUT";
|
|
126
|
-
}>;
|
|
127
|
-
pathTemplate: z.ZodString;
|
|
536
|
+
invocation: z.ZodObject<{
|
|
537
|
+
executable: z.ZodString;
|
|
538
|
+
subcommandPath: z.ZodArray<z.ZodString>;
|
|
539
|
+
}, z.core.$strict>;
|
|
128
540
|
stateChangeMarker: z.ZodBoolean;
|
|
129
541
|
requestShape: z.ZodObject<{
|
|
130
|
-
|
|
542
|
+
argument: z.ZodObject<{
|
|
131
543
|
requiredKeys: z.ZodArray<z.ZodString>;
|
|
132
544
|
permittedKeys: z.ZodArray<z.ZodString>;
|
|
133
545
|
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
@@ -139,7 +551,7 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
139
551
|
string: "string";
|
|
140
552
|
}>>>;
|
|
141
553
|
}, z.core.$strict>;
|
|
142
|
-
|
|
554
|
+
option: z.ZodObject<{
|
|
143
555
|
requiredKeys: z.ZodArray<z.ZodString>;
|
|
144
556
|
permittedKeys: z.ZodArray<z.ZodString>;
|
|
145
557
|
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
@@ -151,7 +563,7 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
151
563
|
string: "string";
|
|
152
564
|
}>>>;
|
|
153
565
|
}, z.core.$strict>;
|
|
154
|
-
|
|
566
|
+
environment: z.ZodObject<{
|
|
155
567
|
requiredKeys: z.ZodArray<z.ZodString>;
|
|
156
568
|
permittedKeys: z.ZodArray<z.ZodString>;
|
|
157
569
|
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
@@ -163,7 +575,7 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
163
575
|
string: "string";
|
|
164
576
|
}>>>;
|
|
165
577
|
}, z.core.$strict>;
|
|
166
|
-
|
|
578
|
+
stdin: z.ZodObject<{
|
|
167
579
|
requiredKeys: z.ZodArray<z.ZodString>;
|
|
168
580
|
permittedKeys: z.ZodArray<z.ZodString>;
|
|
169
581
|
types: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodEnum<{
|
|
@@ -176,6 +588,17 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
176
588
|
}>>>;
|
|
177
589
|
}, z.core.$strict>;
|
|
178
590
|
}, z.core.$strict>;
|
|
591
|
+
artifacts: z.ZodArray<z.ZodString>;
|
|
592
|
+
descriptorChannel: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
593
|
+
kind: z.ZodLiteral<"stream">;
|
|
594
|
+
channel: z.ZodEnum<{
|
|
595
|
+
stderr: "stderr";
|
|
596
|
+
stdout: "stdout";
|
|
597
|
+
}>;
|
|
598
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
599
|
+
kind: z.ZodLiteral<"artifact">;
|
|
600
|
+
artifactId: z.ZodString;
|
|
601
|
+
}, z.core.$strict>], "kind">;
|
|
179
602
|
responseDescriptor: z.ZodObject<{
|
|
180
603
|
requiredKeys: z.ZodArray<z.ZodString>;
|
|
181
604
|
permittedKeys: z.ZodArray<z.ZodString>;
|
|
@@ -213,13 +636,17 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
213
636
|
sensitivityWitness: z.ZodNullable<z.ZodObject<{
|
|
214
637
|
witnessId: z.ZodString;
|
|
215
638
|
channel: z.ZodEnum<{
|
|
639
|
+
argument: "argument";
|
|
216
640
|
body: "body";
|
|
641
|
+
environment: "environment";
|
|
642
|
+
option: "option";
|
|
217
643
|
path: "path";
|
|
218
644
|
query: "query";
|
|
645
|
+
stdin: "stdin";
|
|
219
646
|
}>;
|
|
220
647
|
legs: z.ZodArray<z.ZodObject<{
|
|
221
648
|
legId: z.ZodString;
|
|
222
|
-
inputs: z.ZodObject<{
|
|
649
|
+
inputs: z.ZodUnion<readonly [z.ZodObject<{
|
|
223
650
|
path: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
224
651
|
query: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
225
652
|
header: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -229,12 +656,25 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
229
656
|
}, z.core.$strict>, z.ZodObject<{
|
|
230
657
|
kind: z.ZodLiteral<"absent">;
|
|
231
658
|
}, z.core.$strict>], "kind">;
|
|
232
|
-
}, z.core.$strict
|
|
659
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
660
|
+
argument: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
661
|
+
option: z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>;
|
|
662
|
+
environment: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
663
|
+
stdin: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
664
|
+
kind: z.ZodLiteral<"json">;
|
|
665
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
666
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
667
|
+
kind: z.ZodLiteral<"text">;
|
|
668
|
+
value: z.ZodString;
|
|
669
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
670
|
+
kind: z.ZodLiteral<"absent">;
|
|
671
|
+
}, z.core.$strict>], "kind">;
|
|
672
|
+
}, z.core.$strict>]>;
|
|
233
673
|
}, z.core.$strict>>;
|
|
234
674
|
relation: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
235
675
|
}, z.core.$strict>>;
|
|
236
676
|
}, z.core.$strict>>;
|
|
237
|
-
}, z.core.$strict>>;
|
|
677
|
+
}, z.core.$strict>], "kind">>;
|
|
238
678
|
referenceSets: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
239
679
|
keys: z.ZodArray<z.ZodString>;
|
|
240
680
|
members: z.ZodArray<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
@@ -247,7 +687,7 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
247
687
|
interactionPlan: z.ZodArray<z.ZodObject<{
|
|
248
688
|
stepId: z.ZodString;
|
|
249
689
|
operationId: z.ZodString;
|
|
250
|
-
inputBinding: z.ZodObject<{
|
|
690
|
+
inputBinding: z.ZodUnion<readonly [z.ZodObject<{
|
|
251
691
|
path: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
252
692
|
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
253
693
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -296,7 +736,56 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
296
736
|
}, z.core.$strict>, z.ZodObject<{
|
|
297
737
|
principal: z.ZodString;
|
|
298
738
|
}, z.core.$strict>]>>>;
|
|
299
|
-
}, z.core.$strict
|
|
739
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
740
|
+
argument: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
741
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
742
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
743
|
+
matcher: z.ZodEnum<{
|
|
744
|
+
any: "any";
|
|
745
|
+
"type-violating": "type-violating";
|
|
746
|
+
}>;
|
|
747
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
748
|
+
captured: z.ZodString;
|
|
749
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
750
|
+
principal: z.ZodString;
|
|
751
|
+
}, z.core.$strict>]>>>;
|
|
752
|
+
option: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
753
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
754
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
755
|
+
matcher: z.ZodEnum<{
|
|
756
|
+
any: "any";
|
|
757
|
+
"type-violating": "type-violating";
|
|
758
|
+
}>;
|
|
759
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
760
|
+
captured: z.ZodString;
|
|
761
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
762
|
+
principal: z.ZodString;
|
|
763
|
+
}, z.core.$strict>]>>>;
|
|
764
|
+
environment: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
765
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
766
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
767
|
+
matcher: z.ZodEnum<{
|
|
768
|
+
any: "any";
|
|
769
|
+
"type-violating": "type-violating";
|
|
770
|
+
}>;
|
|
771
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
772
|
+
captured: z.ZodString;
|
|
773
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
774
|
+
principal: z.ZodString;
|
|
775
|
+
}, z.core.$strict>]>>>;
|
|
776
|
+
stdin: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
777
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
778
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
779
|
+
matcher: z.ZodEnum<{
|
|
780
|
+
any: "any";
|
|
781
|
+
"type-violating": "type-violating";
|
|
782
|
+
}>;
|
|
783
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
784
|
+
captured: z.ZodString;
|
|
785
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
786
|
+
principal: z.ZodString;
|
|
787
|
+
}, z.core.$strict>]>>>;
|
|
788
|
+
}, z.core.$strict>]>;
|
|
300
789
|
after: z.ZodNullable<z.ZodString>;
|
|
301
790
|
cardinality: z.ZodEnum<{
|
|
302
791
|
any: "any";
|
|
@@ -488,7 +977,11 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
488
977
|
}, z.core.$strict>], "storage">>;
|
|
489
978
|
findingType: z.ZodLiteral<"defect">;
|
|
490
979
|
observationIds: z.ZodArray<z.ZodString>;
|
|
491
|
-
quotedEvidence: z.ZodArray<z.ZodObject<{
|
|
980
|
+
quotedEvidence: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
981
|
+
quote: z.ZodString;
|
|
982
|
+
channel: z.ZodLiteral<"artifact">;
|
|
983
|
+
artifactId: z.ZodString;
|
|
984
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
492
985
|
quote: z.ZodString;
|
|
493
986
|
channel: z.ZodEnum<{
|
|
494
987
|
"call-inputs": "call-inputs";
|
|
@@ -499,7 +992,8 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
499
992
|
stderr: "stderr";
|
|
500
993
|
stdout: "stdout";
|
|
501
994
|
}>;
|
|
502
|
-
|
|
995
|
+
artifactId: z.ZodNull;
|
|
996
|
+
}, z.core.$strict>]>>;
|
|
503
997
|
}, z.core.$strict>, z.ZodObject<{
|
|
504
998
|
findingId: z.ZodString;
|
|
505
999
|
oracleId: z.ZodNullable<z.ZodString>;
|
|
@@ -559,18 +1053,48 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
559
1053
|
baseline: "baseline";
|
|
560
1054
|
"evaluator-chosen": "evaluator-chosen";
|
|
561
1055
|
}>;
|
|
1056
|
+
principal: z.ZodNullable<z.ZodString>;
|
|
562
1057
|
callInputs: z.ZodObject<{
|
|
563
1058
|
path: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
564
1059
|
query: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
565
1060
|
header: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
566
1061
|
body: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
1062
|
+
argument: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
1063
|
+
option: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
1064
|
+
environment: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
1065
|
+
stdin: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
567
1066
|
}, z.core.$strict>;
|
|
568
1067
|
responseBody: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>>;
|
|
569
1068
|
responseHeaders: z.ZodNullable<z.ZodType<import("./primitives.ts").JsonObject, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonObject, unknown>>>;
|
|
570
1069
|
responseStatus: z.ZodNullable<z.ZodInt>;
|
|
571
|
-
stdout: z.
|
|
572
|
-
|
|
1070
|
+
stdout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1071
|
+
kind: z.ZodLiteral<"json">;
|
|
1072
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1073
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1074
|
+
kind: z.ZodLiteral<"text">;
|
|
1075
|
+
value: z.ZodString;
|
|
1076
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1077
|
+
kind: z.ZodLiteral<"absent">;
|
|
1078
|
+
}, z.core.$strict>], "kind">;
|
|
1079
|
+
stderr: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1080
|
+
kind: z.ZodLiteral<"json">;
|
|
1081
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1082
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1083
|
+
kind: z.ZodLiteral<"text">;
|
|
1084
|
+
value: z.ZodString;
|
|
1085
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1086
|
+
kind: z.ZodLiteral<"absent">;
|
|
1087
|
+
}, z.core.$strict>], "kind">;
|
|
573
1088
|
exitCode: z.ZodNullable<z.ZodInt>;
|
|
1089
|
+
artifacts: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1090
|
+
kind: z.ZodLiteral<"json">;
|
|
1091
|
+
value: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1092
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1093
|
+
kind: z.ZodLiteral<"text">;
|
|
1094
|
+
value: z.ZodString;
|
|
1095
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1096
|
+
kind: z.ZodLiteral<"absent">;
|
|
1097
|
+
}, z.core.$strict>], "kind">>;
|
|
574
1098
|
}, z.core.$strict>>;
|
|
575
1099
|
judgeResults: z.ZodArray<z.ZodObject<{
|
|
576
1100
|
rubricId: z.ZodString;
|
|
@@ -1077,10 +1601,90 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
1077
1601
|
relation: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
1078
1602
|
}, z.core.$strict>>;
|
|
1079
1603
|
}, z.core.$strict>>;
|
|
1080
|
-
defectSignature: z.ZodNullable<z.ZodObject<{
|
|
1604
|
+
defectSignature: z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
|
|
1605
|
+
observableChannel: z.ZodEnum<{
|
|
1606
|
+
artifact: "artifact";
|
|
1607
|
+
"call-inputs": "call-inputs";
|
|
1608
|
+
"exit-code": "exit-code";
|
|
1609
|
+
"response-body": "response-body";
|
|
1610
|
+
"response-headers": "response-headers";
|
|
1611
|
+
"response-status": "response-status";
|
|
1612
|
+
stderr: "stderr";
|
|
1613
|
+
stdout: "stdout";
|
|
1614
|
+
}>;
|
|
1615
|
+
condition: z.ZodObject<{
|
|
1616
|
+
selector: z.ZodObject<{
|
|
1617
|
+
inputBinding: z.ZodObject<{
|
|
1618
|
+
path: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1619
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1620
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1621
|
+
matcher: z.ZodEnum<{
|
|
1622
|
+
any: "any";
|
|
1623
|
+
"type-violating": "type-violating";
|
|
1624
|
+
}>;
|
|
1625
|
+
}, z.core.$strict>]>>>;
|
|
1626
|
+
query: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1627
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1628
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1629
|
+
matcher: z.ZodEnum<{
|
|
1630
|
+
any: "any";
|
|
1631
|
+
"type-violating": "type-violating";
|
|
1632
|
+
}>;
|
|
1633
|
+
}, z.core.$strict>]>>>;
|
|
1634
|
+
header: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1635
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1636
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1637
|
+
matcher: z.ZodEnum<{
|
|
1638
|
+
any: "any";
|
|
1639
|
+
"type-violating": "type-violating";
|
|
1640
|
+
}>;
|
|
1641
|
+
}, z.core.$strict>]>>>;
|
|
1642
|
+
body: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1643
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1644
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1645
|
+
matcher: z.ZodEnum<{
|
|
1646
|
+
any: "any";
|
|
1647
|
+
"type-violating": "type-violating";
|
|
1648
|
+
}>;
|
|
1649
|
+
}, z.core.$strict>]>>>;
|
|
1650
|
+
argument: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1651
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1652
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1653
|
+
matcher: z.ZodEnum<{
|
|
1654
|
+
any: "any";
|
|
1655
|
+
"type-violating": "type-violating";
|
|
1656
|
+
}>;
|
|
1657
|
+
}, z.core.$strict>]>>>;
|
|
1658
|
+
option: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1659
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1660
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1661
|
+
matcher: z.ZodEnum<{
|
|
1662
|
+
any: "any";
|
|
1663
|
+
"type-violating": "type-violating";
|
|
1664
|
+
}>;
|
|
1665
|
+
}, z.core.$strict>]>>>;
|
|
1666
|
+
environment: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1667
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1668
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1669
|
+
matcher: z.ZodEnum<{
|
|
1670
|
+
any: "any";
|
|
1671
|
+
"type-violating": "type-violating";
|
|
1672
|
+
}>;
|
|
1673
|
+
}, z.core.$strict>]>>>;
|
|
1674
|
+
stdin: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1675
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1676
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1677
|
+
matcher: z.ZodEnum<{
|
|
1678
|
+
any: "any";
|
|
1679
|
+
"type-violating": "type-violating";
|
|
1680
|
+
}>;
|
|
1681
|
+
}, z.core.$strict>]>>>;
|
|
1682
|
+
}, z.core.$strict>;
|
|
1683
|
+
}, z.core.$strict>;
|
|
1684
|
+
predicate: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
1685
|
+
}, z.core.$strict>;
|
|
1081
1686
|
interfaceKind: z.ZodEnum<{
|
|
1082
1687
|
api: "api";
|
|
1083
|
-
cli: "cli";
|
|
1084
1688
|
mcp: "mcp";
|
|
1085
1689
|
web: "web";
|
|
1086
1690
|
}>;
|
|
@@ -1094,7 +1698,9 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
1094
1698
|
PUT: "PUT";
|
|
1095
1699
|
}>;
|
|
1096
1700
|
pathTemplate: z.ZodString;
|
|
1701
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1097
1702
|
observableChannel: z.ZodEnum<{
|
|
1703
|
+
artifact: "artifact";
|
|
1098
1704
|
"call-inputs": "call-inputs";
|
|
1099
1705
|
"exit-code": "exit-code";
|
|
1100
1706
|
"response-body": "response-body";
|
|
@@ -1138,11 +1744,48 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
1138
1744
|
"type-violating": "type-violating";
|
|
1139
1745
|
}>;
|
|
1140
1746
|
}, z.core.$strict>]>>>;
|
|
1747
|
+
argument: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1748
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1749
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1750
|
+
matcher: z.ZodEnum<{
|
|
1751
|
+
any: "any";
|
|
1752
|
+
"type-violating": "type-violating";
|
|
1753
|
+
}>;
|
|
1754
|
+
}, z.core.$strict>]>>>;
|
|
1755
|
+
option: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1756
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1757
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1758
|
+
matcher: z.ZodEnum<{
|
|
1759
|
+
any: "any";
|
|
1760
|
+
"type-violating": "type-violating";
|
|
1761
|
+
}>;
|
|
1762
|
+
}, z.core.$strict>]>>>;
|
|
1763
|
+
environment: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1764
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1765
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1766
|
+
matcher: z.ZodEnum<{
|
|
1767
|
+
any: "any";
|
|
1768
|
+
"type-violating": "type-violating";
|
|
1769
|
+
}>;
|
|
1770
|
+
}, z.core.$strict>]>>>;
|
|
1771
|
+
stdin: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1772
|
+
literal: z.ZodType<import("./primitives.ts").JsonValue, unknown, z.core.$ZodTypeInternals<import("./primitives.ts").JsonValue, unknown>>;
|
|
1773
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1774
|
+
matcher: z.ZodEnum<{
|
|
1775
|
+
any: "any";
|
|
1776
|
+
"type-violating": "type-violating";
|
|
1777
|
+
}>;
|
|
1778
|
+
}, z.core.$strict>]>>>;
|
|
1141
1779
|
}, z.core.$strict>;
|
|
1142
1780
|
}, z.core.$strict>;
|
|
1143
1781
|
predicate: z.ZodType<import("./expression.ts").Expression, unknown, z.core.$ZodTypeInternals<import("./expression.ts").Expression, unknown>>;
|
|
1144
1782
|
}, z.core.$strict>;
|
|
1145
|
-
|
|
1783
|
+
interfaceKind: z.ZodLiteral<"cli">;
|
|
1784
|
+
invocation: z.ZodObject<{
|
|
1785
|
+
executable: z.ZodString;
|
|
1786
|
+
subcommandPath: z.ZodArray<z.ZodString>;
|
|
1787
|
+
}, z.core.$strict>;
|
|
1788
|
+
}, z.core.$strict>]>>;
|
|
1146
1789
|
}, z.core.$strict>], "expectedClean">;
|
|
1147
1790
|
readonly priorArt: 'h0-ground-truth';
|
|
1148
1791
|
readonly carriesLineage: true;
|
|
@@ -1491,7 +2134,11 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
1491
2134
|
uncitedFindingGaps: z.ZodArray<z.ZodObject<{
|
|
1492
2135
|
findingId: z.ZodString;
|
|
1493
2136
|
observationIds: z.ZodArray<z.ZodString>;
|
|
1494
|
-
quotedEvidence: z.ZodArray<z.ZodObject<{
|
|
2137
|
+
quotedEvidence: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2138
|
+
quote: z.ZodString;
|
|
2139
|
+
channel: z.ZodLiteral<"artifact">;
|
|
2140
|
+
artifactId: z.ZodString;
|
|
2141
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1495
2142
|
quote: z.ZodString;
|
|
1496
2143
|
channel: z.ZodEnum<{
|
|
1497
2144
|
"call-inputs": "call-inputs";
|
|
@@ -1502,7 +2149,8 @@ export declare const INTERCHANGE_ARTIFACTS: {
|
|
|
1502
2149
|
stderr: "stderr";
|
|
1503
2150
|
stdout: "stdout";
|
|
1504
2151
|
}>;
|
|
1505
|
-
|
|
2152
|
+
artifactId: z.ZodNull;
|
|
2153
|
+
}, z.core.$strict>]>>;
|
|
1506
2154
|
severity: z.ZodEnum<{
|
|
1507
2155
|
critical: "critical";
|
|
1508
2156
|
low: "low";
|