@colophon-claims/verify 0.0.0 → 0.2.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 +39 -0
- package/dist/admission/application.d.ts +18 -0
- package/dist/admission/application.js +53 -0
- package/dist/admission/contracts.d.ts +506 -0
- package/dist/admission/contracts.js +459 -0
- package/dist/admission/index.d.ts +5 -0
- package/dist/admission/index.js +5 -0
- package/dist/admission/intake.d.ts +75 -0
- package/dist/admission/intake.js +70 -0
- package/dist/admission/result-evaluation.d.ts +18 -0
- package/dist/admission/result-evaluation.js +71 -0
- package/dist/admission/screening-sample.d.ts +56 -0
- package/dist/admission/screening-sample.js +126 -0
- package/dist/admission/verification.d.ts +102 -0
- package/dist/admission/verification.js +844 -0
- package/dist/anchor/check.d.ts +95 -0
- package/dist/anchor/check.js +146 -0
- package/dist/anchor/ports.d.ts +6 -0
- package/dist/anchor/ports.js +354 -0
- package/dist/assets.d.ts +33 -0
- package/dist/assets.js +885 -0
- package/dist/bin.d.ts +2 -0
- package/dist/bin.js +20 -0
- package/dist/cli.d.ts +14 -0
- package/dist/cli.js +205 -0
- package/dist/comparison.d.ts +64 -0
- package/dist/comparison.js +235 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +23 -0
- package/dist/manifest.d.ts +54 -0
- package/dist/manifest.js +240 -0
- package/dist/materialize.d.ts +4 -0
- package/dist/materialize.js +13 -0
- package/dist/profile/admission-receipts.d.ts +11 -0
- package/dist/profile/admission-receipts.js +24 -0
- package/dist/profile/anchor-claims.d.ts +157 -0
- package/dist/profile/anchor-claims.js +330 -0
- package/dist/profile/artifacts.d.ts +261 -0
- package/dist/profile/artifacts.js +139 -0
- package/dist/profile/assembly-ports.d.ts +19 -0
- package/dist/profile/assembly-ports.js +42 -0
- package/dist/profile/binary-judge-manifest.d.ts +121 -0
- package/dist/profile/binary-judge-manifest.js +106 -0
- package/dist/profile/binary-qualification.d.ts +9 -0
- package/dist/profile/binary-qualification.js +58 -0
- package/dist/profile/branding-assets.d.ts +5 -0
- package/dist/profile/branding-assets.js +5 -0
- package/dist/profile/branding.d.ts +24 -0
- package/dist/profile/branding.js +14 -0
- package/dist/profile/claim-consistency.d.ts +26 -0
- package/dist/profile/claim-consistency.js +91 -0
- package/dist/profile/claim.d.ts +327 -0
- package/dist/profile/claim.js +742 -0
- package/dist/profile/errors.d.ts +49 -0
- package/dist/profile/errors.js +78 -0
- package/dist/profile/inspect-assurance.d.ts +16 -0
- package/dist/profile/inspect-assurance.js +30 -0
- package/dist/profile/inspect-disclosure.d.ts +28 -0
- package/dist/profile/inspect-disclosure.js +54 -0
- package/dist/profile/inspect-manifest.d.ts +706 -0
- package/dist/profile/inspect-manifest.js +397 -0
- package/dist/profile/isolation.d.ts +21 -0
- package/dist/profile/isolation.js +31 -0
- package/dist/profile/pinning-evidence.d.ts +41 -0
- package/dist/profile/pinning-evidence.js +43 -0
- package/dist/profile/ports.d.ts +3 -0
- package/dist/profile/ports.js +11 -0
- package/dist/profile/preview-log.d.ts +4 -0
- package/dist/profile/preview-log.js +3 -0
- package/dist/profile/run-results.d.ts +17 -0
- package/dist/profile/run-results.js +23 -0
- package/dist/profile/signing.d.ts +10 -0
- package/dist/profile/signing.js +46 -0
- package/dist/profile/trust.d.ts +13 -0
- package/dist/profile/trust.js +35 -0
- package/dist/profile/venue.d.ts +2 -0
- package/dist/profile/venue.js +2 -0
- package/dist/profile/verdict.d.ts +28 -0
- package/dist/profile/verdict.js +51 -0
- package/dist/reader-instructions.d.ts +41 -0
- package/dist/reader-instructions.js +52 -0
- package/dist/schema.d.ts +380 -0
- package/dist/schema.js +498 -0
- package/dist/verify.d.ts +72 -0
- package/dist/verify.js +1573 -0
- package/dist/version.d.ts +2 -0
- package/dist/version.js +2 -0
- package/package.json +63 -3
- package/schemas/assembly-row.schema.json +194 -0
- package/schemas/bundle-manifest.schema.json +23 -0
- package/schemas/claim-package.schema.json +279 -0
- package/schemas/dsse-envelope.schema.json +25 -0
- package/schemas/evidence-catalog.schema.json +43 -0
- package/schemas/public-trust.schema.json +44 -0
- package/schemas/verdict-catalog.schema.json +27 -0
- package/scripts/external-verify.py +238 -0
package/dist/schema.d.ts
ADDED
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const BUNDLE_TRUST_FORMAT: "benchmark-product-public-trust/2";
|
|
3
|
+
export declare const BUNDLE_EVIDENCE_FORMAT: "benchmark-product-evidence-catalog/2";
|
|
4
|
+
export declare const BUNDLE_VERDICTS_FORMAT: "benchmark-product-verdict-catalog/2";
|
|
5
|
+
export declare const BUNDLE_ASSEMBLY_FORMAT: "benchmark-product-assembly/2";
|
|
6
|
+
export declare const BUNDLE_V4_TRUST_FORMAT: "benchmark-product-public-trust/4";
|
|
7
|
+
export declare const BUNDLE_V4_EVIDENCE_FORMAT: "benchmark-product-evidence-catalog/4";
|
|
8
|
+
export declare const BUNDLE_QUALIFICATION_FORMAT: "benchmark-product-binary-qualification/1";
|
|
9
|
+
export declare const BUNDLE_V4_EVIDENCE_ROLES: readonly ["task", "runtime-selection", "evaluation-spec", "admission-receipt", "solve-submission", "run-pinning-evidence", "evaluation-submission", "solve-delivery", "solve-output", "evaluation-task", "evaluation-delivery", "verdict", "item-bank", "source-manifest", "admission-index", "admission-manifest", "replacement-ledger", "source-item", "judge-instrument", "analysis-context", "label-resolution", "human-review-evaluation-spec", "human-review-form", "human-review-packet", "human-review-response", "human-review-verdict", "reviewer-roster", "review-visibility-receipt", "review-reveal-receipt", "operator-assertion", "snapshot-probe", "screening-table", "screening-reveal-receipt", "screening-instrument", "screening-sampling-script", "screening-raw-outputs", "screening-prompt", "screening-procedure", "screening-pool", "screening-sample-commitment", "screening-transcript"];
|
|
10
|
+
export type BundleV4EvidenceRole = (typeof BUNDLE_V4_EVIDENCE_ROLES)[number];
|
|
11
|
+
export declare const BUNDLE_V4_ADMISSION_EVIDENCE_ROLES: readonly ["admission-manifest", "replacement-ledger", "source-item", "label-resolution", "analysis-context", "human-review-evaluation-spec", "human-review-form", "human-review-packet", "human-review-response", "human-review-verdict", "reviewer-roster", "review-visibility-receipt", "review-reveal-receipt", "operator-assertion", "screening-table", "screening-reveal-receipt", "screening-instrument", "screening-sampling-script", "screening-raw-outputs", "screening-prompt", "screening-procedure", "screening-pool", "screening-sample-commitment", "screening-transcript"];
|
|
12
|
+
export declare const BundleTrustSchema: z.ZodObject<{
|
|
13
|
+
format: z.ZodLiteral<"benchmark-product-public-trust/2">;
|
|
14
|
+
selfRun: z.ZodObject<{
|
|
15
|
+
custody: z.ZodLiteral<"workspace-minted">;
|
|
16
|
+
evaluatorDistinctness: z.ZodLiteral<"agent-distinctness-only">;
|
|
17
|
+
partyIndependence: z.ZodLiteral<"not-established">;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
report: z.ZodObject<{
|
|
20
|
+
keyId: z.ZodString;
|
|
21
|
+
algorithm: z.ZodLiteral<"ed25519">;
|
|
22
|
+
spkiDerBase64: z.ZodString;
|
|
23
|
+
author: z.ZodString;
|
|
24
|
+
didKey: z.ZodString;
|
|
25
|
+
validFrom: z.ZodString;
|
|
26
|
+
}, z.core.$strip>;
|
|
27
|
+
evaluators: z.ZodArray<z.ZodObject<{
|
|
28
|
+
keyId: z.ZodString;
|
|
29
|
+
algorithm: z.ZodLiteral<"ed25519">;
|
|
30
|
+
spkiDerBase64: z.ZodString;
|
|
31
|
+
evaluator: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>;
|
|
33
|
+
}, z.core.$strip>;
|
|
34
|
+
export type BundleTrust = z.infer<typeof BundleTrustSchema>;
|
|
35
|
+
export declare const BundleV4TrustSchema: z.ZodObject<{
|
|
36
|
+
format: z.ZodLiteral<"benchmark-product-public-trust/4">;
|
|
37
|
+
selfRun: z.ZodObject<{
|
|
38
|
+
custody: z.ZodLiteral<"workspace-minted">;
|
|
39
|
+
evaluatorDistinctness: z.ZodLiteral<"agent-distinctness-only">;
|
|
40
|
+
partyIndependence: z.ZodLiteral<"not-established">;
|
|
41
|
+
}, z.core.$strict>;
|
|
42
|
+
report: z.ZodObject<{
|
|
43
|
+
keyId: z.ZodString;
|
|
44
|
+
algorithm: z.ZodLiteral<"ed25519">;
|
|
45
|
+
spkiDerBase64: z.ZodString;
|
|
46
|
+
author: z.ZodString;
|
|
47
|
+
didKey: z.ZodString;
|
|
48
|
+
validFrom: z.ZodString;
|
|
49
|
+
}, z.core.$strict>;
|
|
50
|
+
evaluators: z.ZodArray<z.ZodObject<{
|
|
51
|
+
keyId: z.ZodString;
|
|
52
|
+
algorithm: z.ZodLiteral<"ed25519">;
|
|
53
|
+
spkiDerBase64: z.ZodString;
|
|
54
|
+
evaluator: z.ZodString;
|
|
55
|
+
}, z.core.$strict>>;
|
|
56
|
+
admission: z.ZodObject<{
|
|
57
|
+
reviewers: z.ZodArray<z.ZodObject<{
|
|
58
|
+
evaluator: z.ZodString;
|
|
59
|
+
keyId: z.ZodString;
|
|
60
|
+
}, z.core.$strict>>;
|
|
61
|
+
authorities: z.ZodArray<z.ZodObject<{
|
|
62
|
+
role: z.ZodEnum<{
|
|
63
|
+
"roster-attestor": "roster-attestor";
|
|
64
|
+
"truth-reveal-attestor": "truth-reveal-attestor";
|
|
65
|
+
"operator-truth-attestor": "operator-truth-attestor";
|
|
66
|
+
}>;
|
|
67
|
+
keyId: z.ZodString;
|
|
68
|
+
}, z.core.$strict>>;
|
|
69
|
+
}, z.core.$strict>;
|
|
70
|
+
}, z.core.$strict>;
|
|
71
|
+
export type BundleV4Trust = z.infer<typeof BundleV4TrustSchema>;
|
|
72
|
+
export declare const BUNDLE_EVIDENCE_ROLES: readonly ["task", "runtime-selection", "evaluation-spec", "admission-receipt", "solve-submission", "run-pinning-evidence", "evaluation-submission", "solve-delivery", "solve-output", "evaluation-task", "evaluation-delivery", "verdict", "judge-instrument", "analysis-context", "label-resolution"];
|
|
73
|
+
export type BundleEvidenceRole = (typeof BUNDLE_EVIDENCE_ROLES)[number];
|
|
74
|
+
export declare const BundleEvidenceCatalogSchema: z.ZodObject<{
|
|
75
|
+
format: z.ZodLiteral<"benchmark-product-evidence-catalog/2">;
|
|
76
|
+
records: z.ZodArray<z.ZodObject<{
|
|
77
|
+
sha256: z.ZodString;
|
|
78
|
+
roles: z.ZodArray<z.ZodEnum<{
|
|
79
|
+
verdict: "verdict";
|
|
80
|
+
task: "task";
|
|
81
|
+
"runtime-selection": "runtime-selection";
|
|
82
|
+
"evaluation-spec": "evaluation-spec";
|
|
83
|
+
"admission-receipt": "admission-receipt";
|
|
84
|
+
"solve-submission": "solve-submission";
|
|
85
|
+
"run-pinning-evidence": "run-pinning-evidence";
|
|
86
|
+
"evaluation-submission": "evaluation-submission";
|
|
87
|
+
"solve-delivery": "solve-delivery";
|
|
88
|
+
"solve-output": "solve-output";
|
|
89
|
+
"evaluation-task": "evaluation-task";
|
|
90
|
+
"evaluation-delivery": "evaluation-delivery";
|
|
91
|
+
"judge-instrument": "judge-instrument";
|
|
92
|
+
"analysis-context": "analysis-context";
|
|
93
|
+
"label-resolution": "label-resolution";
|
|
94
|
+
}>>;
|
|
95
|
+
}, z.core.$strip>>;
|
|
96
|
+
}, z.core.$strip>;
|
|
97
|
+
export type BundleEvidenceCatalog = z.infer<typeof BundleEvidenceCatalogSchema>;
|
|
98
|
+
export declare const BundleV4EvidenceCatalogSchema: z.ZodObject<{
|
|
99
|
+
format: z.ZodLiteral<"benchmark-product-evidence-catalog/4">;
|
|
100
|
+
records: z.ZodArray<z.ZodObject<{
|
|
101
|
+
sha256: z.ZodString;
|
|
102
|
+
roles: z.ZodArray<z.ZodEnum<{
|
|
103
|
+
verdict: "verdict";
|
|
104
|
+
task: "task";
|
|
105
|
+
"runtime-selection": "runtime-selection";
|
|
106
|
+
"evaluation-spec": "evaluation-spec";
|
|
107
|
+
"admission-receipt": "admission-receipt";
|
|
108
|
+
"solve-submission": "solve-submission";
|
|
109
|
+
"run-pinning-evidence": "run-pinning-evidence";
|
|
110
|
+
"evaluation-submission": "evaluation-submission";
|
|
111
|
+
"solve-delivery": "solve-delivery";
|
|
112
|
+
"solve-output": "solve-output";
|
|
113
|
+
"evaluation-task": "evaluation-task";
|
|
114
|
+
"evaluation-delivery": "evaluation-delivery";
|
|
115
|
+
"item-bank": "item-bank";
|
|
116
|
+
"source-manifest": "source-manifest";
|
|
117
|
+
"admission-index": "admission-index";
|
|
118
|
+
"admission-manifest": "admission-manifest";
|
|
119
|
+
"replacement-ledger": "replacement-ledger";
|
|
120
|
+
"source-item": "source-item";
|
|
121
|
+
"judge-instrument": "judge-instrument";
|
|
122
|
+
"analysis-context": "analysis-context";
|
|
123
|
+
"label-resolution": "label-resolution";
|
|
124
|
+
"human-review-evaluation-spec": "human-review-evaluation-spec";
|
|
125
|
+
"human-review-form": "human-review-form";
|
|
126
|
+
"human-review-packet": "human-review-packet";
|
|
127
|
+
"human-review-response": "human-review-response";
|
|
128
|
+
"human-review-verdict": "human-review-verdict";
|
|
129
|
+
"reviewer-roster": "reviewer-roster";
|
|
130
|
+
"review-visibility-receipt": "review-visibility-receipt";
|
|
131
|
+
"review-reveal-receipt": "review-reveal-receipt";
|
|
132
|
+
"operator-assertion": "operator-assertion";
|
|
133
|
+
"snapshot-probe": "snapshot-probe";
|
|
134
|
+
"screening-table": "screening-table";
|
|
135
|
+
"screening-reveal-receipt": "screening-reveal-receipt";
|
|
136
|
+
"screening-instrument": "screening-instrument";
|
|
137
|
+
"screening-sampling-script": "screening-sampling-script";
|
|
138
|
+
"screening-raw-outputs": "screening-raw-outputs";
|
|
139
|
+
"screening-prompt": "screening-prompt";
|
|
140
|
+
"screening-procedure": "screening-procedure";
|
|
141
|
+
"screening-pool": "screening-pool";
|
|
142
|
+
"screening-sample-commitment": "screening-sample-commitment";
|
|
143
|
+
"screening-transcript": "screening-transcript";
|
|
144
|
+
}>>;
|
|
145
|
+
}, z.core.$strict>>;
|
|
146
|
+
}, z.core.$strict>;
|
|
147
|
+
export type BundleV4EvidenceCatalog = z.infer<typeof BundleV4EvidenceCatalogSchema>;
|
|
148
|
+
export declare const BundleQualificationSchema: z.ZodObject<{
|
|
149
|
+
format: z.ZodLiteral<"benchmark-product-binary-qualification/1">;
|
|
150
|
+
claimSchema: z.ZodLiteral<"benchmark-product.claim-package/2">;
|
|
151
|
+
sourceManifestSha256: z.ZodString;
|
|
152
|
+
admissionManifestSha256: z.ZodString;
|
|
153
|
+
publicationGrade: z.ZodBoolean;
|
|
154
|
+
truthAdmission: z.ZodEnum<{
|
|
155
|
+
"two-human-unanimous": "two-human-unanimous";
|
|
156
|
+
"operator-only": "operator-only";
|
|
157
|
+
"screened-operator-sampled": "screened-operator-sampled";
|
|
158
|
+
}>;
|
|
159
|
+
candidateClasses: z.ZodArray<z.ZodString>;
|
|
160
|
+
strata: z.ZodArray<z.ZodString>;
|
|
161
|
+
arms: z.ZodArray<z.ZodObject<{
|
|
162
|
+
armId: z.ZodString;
|
|
163
|
+
instrumentSha256: z.ZodString;
|
|
164
|
+
}, z.core.$strict>>;
|
|
165
|
+
items: z.ZodArray<z.ZodObject<{
|
|
166
|
+
taskSha256: z.ZodString;
|
|
167
|
+
itemSha256: z.ZodString;
|
|
168
|
+
labelResolutionSha256: z.ZodString;
|
|
169
|
+
analysisContextSha256: z.ZodString;
|
|
170
|
+
}, z.core.$strict>>;
|
|
171
|
+
exclusions: z.ZodArray<z.ZodObject<{
|
|
172
|
+
itemSha256: z.ZodString;
|
|
173
|
+
replacementItemSha256: z.ZodString;
|
|
174
|
+
reason: z.ZodEnum<{
|
|
175
|
+
"review-disagreement": "review-disagreement";
|
|
176
|
+
"review-indeterminate": "review-indeterminate";
|
|
177
|
+
"review-incomplete": "review-incomplete";
|
|
178
|
+
"screening-disagreement": "screening-disagreement";
|
|
179
|
+
"screening-indeterminate": "screening-indeterminate";
|
|
180
|
+
"screening-hand-excluded": "screening-hand-excluded";
|
|
181
|
+
}>;
|
|
182
|
+
}, z.core.$strict>>;
|
|
183
|
+
admissionRecords: z.ZodArray<z.ZodObject<{
|
|
184
|
+
sha256: z.ZodString;
|
|
185
|
+
roles: z.ZodArray<z.ZodEnum<{
|
|
186
|
+
"admission-manifest": "admission-manifest";
|
|
187
|
+
"replacement-ledger": "replacement-ledger";
|
|
188
|
+
"source-item": "source-item";
|
|
189
|
+
"analysis-context": "analysis-context";
|
|
190
|
+
"label-resolution": "label-resolution";
|
|
191
|
+
"human-review-evaluation-spec": "human-review-evaluation-spec";
|
|
192
|
+
"human-review-form": "human-review-form";
|
|
193
|
+
"human-review-packet": "human-review-packet";
|
|
194
|
+
"human-review-response": "human-review-response";
|
|
195
|
+
"human-review-verdict": "human-review-verdict";
|
|
196
|
+
"reviewer-roster": "reviewer-roster";
|
|
197
|
+
"review-visibility-receipt": "review-visibility-receipt";
|
|
198
|
+
"review-reveal-receipt": "review-reveal-receipt";
|
|
199
|
+
"operator-assertion": "operator-assertion";
|
|
200
|
+
"screening-table": "screening-table";
|
|
201
|
+
"screening-reveal-receipt": "screening-reveal-receipt";
|
|
202
|
+
"screening-instrument": "screening-instrument";
|
|
203
|
+
"screening-sampling-script": "screening-sampling-script";
|
|
204
|
+
"screening-raw-outputs": "screening-raw-outputs";
|
|
205
|
+
"screening-prompt": "screening-prompt";
|
|
206
|
+
"screening-procedure": "screening-procedure";
|
|
207
|
+
"screening-pool": "screening-pool";
|
|
208
|
+
"screening-sample-commitment": "screening-sample-commitment";
|
|
209
|
+
"screening-transcript": "screening-transcript";
|
|
210
|
+
}>>;
|
|
211
|
+
}, z.core.$strict>>;
|
|
212
|
+
reachableSha256s: z.ZodArray<z.ZodString>;
|
|
213
|
+
}, z.core.$strict>;
|
|
214
|
+
export type BundleQualification = z.infer<typeof BundleQualificationSchema>;
|
|
215
|
+
export declare const BundleVerdictCatalogSchema: z.ZodObject<{
|
|
216
|
+
format: z.ZodLiteral<"benchmark-product-verdict-catalog/2">;
|
|
217
|
+
verdicts: z.ZodArray<z.ZodObject<{
|
|
218
|
+
sha256: z.ZodString;
|
|
219
|
+
evaluator: z.ZodString;
|
|
220
|
+
keyId: z.ZodString;
|
|
221
|
+
cellKeys: z.ZodArray<z.ZodString>;
|
|
222
|
+
}, z.core.$strip>>;
|
|
223
|
+
}, z.core.$strip>;
|
|
224
|
+
export type BundleVerdictCatalog = z.infer<typeof BundleVerdictCatalogSchema>;
|
|
225
|
+
export declare const BundleAssemblyHeaderSchema: z.ZodObject<{
|
|
226
|
+
format: z.ZodLiteral<"benchmark-product-assembly/2">;
|
|
227
|
+
kind: z.ZodLiteral<"run">;
|
|
228
|
+
runCancelled: z.ZodBoolean;
|
|
229
|
+
draftId: z.ZodString;
|
|
230
|
+
assurancePreset: z.ZodString;
|
|
231
|
+
rehearsal: z.ZodOptional<z.ZodObject<{
|
|
232
|
+
previewCount: z.ZodNumber;
|
|
233
|
+
timestamps: z.ZodArray<z.ZodString>;
|
|
234
|
+
}, z.core.$strip>>;
|
|
235
|
+
graph: z.ZodObject<{
|
|
236
|
+
admissions: z.ZodArray<z.ZodObject<{
|
|
237
|
+
taskSha256: z.ZodString;
|
|
238
|
+
receiptSha256: z.ZodString;
|
|
239
|
+
}, z.core.$strip>>;
|
|
240
|
+
solveSubmissions: z.ZodArray<z.ZodObject<{
|
|
241
|
+
cellKey: z.ZodString;
|
|
242
|
+
dispatch: z.ZodNumber;
|
|
243
|
+
sha256: z.ZodString;
|
|
244
|
+
pinningEvidenceSha256: z.ZodOptional<z.ZodString>;
|
|
245
|
+
}, z.core.$strip>>;
|
|
246
|
+
evaluationSubmissions: z.ZodArray<z.ZodObject<{
|
|
247
|
+
cellKey: z.ZodString;
|
|
248
|
+
dispatch: z.ZodNumber;
|
|
249
|
+
evalIndex: z.ZodNumber;
|
|
250
|
+
evaluationAttempt: z.ZodOptional<z.ZodNumber>;
|
|
251
|
+
evaluator: z.ZodString;
|
|
252
|
+
evalTaskSha256: z.ZodString;
|
|
253
|
+
sha256: z.ZodString;
|
|
254
|
+
}, z.core.$strip>>;
|
|
255
|
+
solveDeliveries: z.ZodArray<z.ZodObject<{
|
|
256
|
+
cellKey: z.ZodString;
|
|
257
|
+
dispatch: z.ZodNumber;
|
|
258
|
+
attempt: z.ZodString;
|
|
259
|
+
sha256: z.ZodString;
|
|
260
|
+
outputs: z.ZodArray<z.ZodObject<{
|
|
261
|
+
name: z.ZodString;
|
|
262
|
+
sha256: z.ZodString;
|
|
263
|
+
}, z.core.$strip>>;
|
|
264
|
+
}, z.core.$strip>>;
|
|
265
|
+
evaluations: z.ZodArray<z.ZodObject<{
|
|
266
|
+
cellKey: z.ZodString;
|
|
267
|
+
evalIndex: z.ZodNumber;
|
|
268
|
+
evaluationAttempt: z.ZodOptional<z.ZodNumber>;
|
|
269
|
+
relationship: z.ZodOptional<z.ZodEnum<{
|
|
270
|
+
"same-execution-scorer": "same-execution-scorer";
|
|
271
|
+
"separate-log-verifier": "separate-log-verifier";
|
|
272
|
+
}>>;
|
|
273
|
+
evaluator: z.ZodOptional<z.ZodString>;
|
|
274
|
+
evalTaskSha256: z.ZodOptional<z.ZodString>;
|
|
275
|
+
evalSubmissionSha256: z.ZodOptional<z.ZodString>;
|
|
276
|
+
evalAttempt: z.ZodOptional<z.ZodString>;
|
|
277
|
+
evalDeliverySha256: z.ZodOptional<z.ZodString>;
|
|
278
|
+
verdictSha256: z.ZodOptional<z.ZodString>;
|
|
279
|
+
evaluationTerminal: z.ZodOptional<z.ZodLiteral<"could-not-grade">>;
|
|
280
|
+
failureCategory: z.ZodOptional<z.ZodEnum<{
|
|
281
|
+
"invalid-document": "invalid-document";
|
|
282
|
+
"unsupported-profile": "unsupported-profile";
|
|
283
|
+
"unsupported-requirement": "unsupported-requirement";
|
|
284
|
+
"unsupported-capability": "unsupported-capability";
|
|
285
|
+
"invalid-reference": "invalid-reference";
|
|
286
|
+
"content-corruption": "content-corruption";
|
|
287
|
+
"access-denied": "access-denied";
|
|
288
|
+
"submission-conflict": "submission-conflict";
|
|
289
|
+
"attempt-not-found": "attempt-not-found";
|
|
290
|
+
"dependency-unavailable": "dependency-unavailable";
|
|
291
|
+
"backend-unavailable": "backend-unavailable";
|
|
292
|
+
"operation-aborted": "operation-aborted";
|
|
293
|
+
"deadline-exceeded": "deadline-exceeded";
|
|
294
|
+
"transport-failure": "transport-failure";
|
|
295
|
+
"result-unavailable": "result-unavailable";
|
|
296
|
+
"protocol-violation": "protocol-violation";
|
|
297
|
+
}>>;
|
|
298
|
+
}, z.core.$strip>>;
|
|
299
|
+
evaluationRetries: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
300
|
+
cellKey: z.ZodString;
|
|
301
|
+
dispatch: z.ZodNumber;
|
|
302
|
+
evalIndex: z.ZodNumber;
|
|
303
|
+
evaluationAttempt: z.ZodNumber;
|
|
304
|
+
evaluator: z.ZodString;
|
|
305
|
+
evalTaskSha256: z.ZodOptional<z.ZodString>;
|
|
306
|
+
evalSubmissionSha256: z.ZodOptional<z.ZodString>;
|
|
307
|
+
evalAttempt: z.ZodOptional<z.ZodString>;
|
|
308
|
+
failureCategory: z.ZodEnum<{
|
|
309
|
+
"invalid-document": "invalid-document";
|
|
310
|
+
"unsupported-profile": "unsupported-profile";
|
|
311
|
+
"unsupported-requirement": "unsupported-requirement";
|
|
312
|
+
"unsupported-capability": "unsupported-capability";
|
|
313
|
+
"invalid-reference": "invalid-reference";
|
|
314
|
+
"content-corruption": "content-corruption";
|
|
315
|
+
"access-denied": "access-denied";
|
|
316
|
+
"submission-conflict": "submission-conflict";
|
|
317
|
+
"attempt-not-found": "attempt-not-found";
|
|
318
|
+
"dependency-unavailable": "dependency-unavailable";
|
|
319
|
+
"backend-unavailable": "backend-unavailable";
|
|
320
|
+
"operation-aborted": "operation-aborted";
|
|
321
|
+
"deadline-exceeded": "deadline-exceeded";
|
|
322
|
+
"transport-failure": "transport-failure";
|
|
323
|
+
"result-unavailable": "result-unavailable";
|
|
324
|
+
"protocol-violation": "protocol-violation";
|
|
325
|
+
}>;
|
|
326
|
+
recoveryAdvice: z.ZodLiteral<"new-attempt-required">;
|
|
327
|
+
detail: z.ZodString;
|
|
328
|
+
}, z.core.$strip>>>;
|
|
329
|
+
}, z.core.$strip>;
|
|
330
|
+
}, z.core.$strip>;
|
|
331
|
+
export type BundleAssemblyHeader = z.infer<typeof BundleAssemblyHeaderSchema>;
|
|
332
|
+
export declare const BundleAssemblyCellSchema: z.ZodObject<{
|
|
333
|
+
kind: z.ZodLiteral<"cell">;
|
|
334
|
+
cellKey: z.ZodString;
|
|
335
|
+
armId: z.ZodString;
|
|
336
|
+
replicate: z.ZodNumber;
|
|
337
|
+
taskDigest: z.ZodString;
|
|
338
|
+
dispatches: z.ZodNumber;
|
|
339
|
+
accounted: z.ZodOptional<z.ZodNumber>;
|
|
340
|
+
submissionSha256: z.ZodOptional<z.ZodString>;
|
|
341
|
+
pinningEvidenceSha256: z.ZodOptional<z.ZodString>;
|
|
342
|
+
attempt: z.ZodOptional<z.ZodString>;
|
|
343
|
+
deliverySha256: z.ZodOptional<z.ZodString>;
|
|
344
|
+
solveOutputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
345
|
+
name: z.ZodString;
|
|
346
|
+
sha256: z.ZodString;
|
|
347
|
+
}, z.core.$strip>>>;
|
|
348
|
+
evaluationSpecSha256: z.ZodOptional<z.ZodString>;
|
|
349
|
+
evaluationTerminal: z.ZodOptional<z.ZodLiteral<"could-not-grade">>;
|
|
350
|
+
admission: z.ZodOptional<z.ZodObject<{
|
|
351
|
+
zeroReplayVariance: z.ZodBoolean;
|
|
352
|
+
externalCapabilities: z.ZodBoolean;
|
|
353
|
+
}, z.core.$strip>>;
|
|
354
|
+
admissionReceiptSha256: z.ZodOptional<z.ZodString>;
|
|
355
|
+
verdicts: z.ZodArray<z.ZodObject<{
|
|
356
|
+
sha256: z.ZodString;
|
|
357
|
+
relationship: z.ZodOptional<z.ZodEnum<{
|
|
358
|
+
"same-execution-scorer": "same-execution-scorer";
|
|
359
|
+
"separate-log-verifier": "separate-log-verifier";
|
|
360
|
+
}>>;
|
|
361
|
+
evalTaskSha256: z.ZodOptional<z.ZodString>;
|
|
362
|
+
evalSubmissionSha256: z.ZodOptional<z.ZodString>;
|
|
363
|
+
evalDeliverySha256: z.ZodOptional<z.ZodString>;
|
|
364
|
+
evalAttempt: z.ZodOptional<z.ZodString>;
|
|
365
|
+
evalIndex: z.ZodNumber;
|
|
366
|
+
evaluator: z.ZodString;
|
|
367
|
+
verdict: z.ZodEnum<{
|
|
368
|
+
pass: "pass";
|
|
369
|
+
fail: "fail";
|
|
370
|
+
inconclusive: "inconclusive";
|
|
371
|
+
}>;
|
|
372
|
+
evaluationSpecSha256: z.ZodString;
|
|
373
|
+
measurements: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
374
|
+
}, z.core.$strip>>;
|
|
375
|
+
}, z.core.$strip>;
|
|
376
|
+
export type BundleAssemblyCell = z.infer<typeof BundleAssemblyCellSchema>;
|
|
377
|
+
export declare const BundleCancelMarkerSchema: z.ZodObject<{
|
|
378
|
+
requestedAt: z.ZodString;
|
|
379
|
+
principal: z.ZodString;
|
|
380
|
+
}, z.core.$strip>;
|