@selleragent/api-contract 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/.tsbuildinfo +1 -0
  2. package/dist/auth.d.ts +457 -0
  3. package/dist/auth.d.ts.map +1 -0
  4. package/dist/auth.js +122 -0
  5. package/dist/auth.js.map +1 -0
  6. package/dist/commerce.d.ts +1393 -0
  7. package/dist/commerce.d.ts.map +1 -0
  8. package/dist/commerce.js +255 -0
  9. package/dist/commerce.js.map +1 -0
  10. package/dist/conversations.d.ts +1956 -0
  11. package/dist/conversations.d.ts.map +1 -0
  12. package/dist/conversations.js +234 -0
  13. package/dist/conversations.js.map +1 -0
  14. package/dist/customers.d.ts +1235 -0
  15. package/dist/customers.d.ts.map +1 -0
  16. package/dist/customers.js +214 -0
  17. package/dist/customers.js.map +1 -0
  18. package/dist/followups.d.ts +382 -0
  19. package/dist/followups.d.ts.map +1 -0
  20. package/dist/followups.js +99 -0
  21. package/dist/followups.js.map +1 -0
  22. package/dist/index.d.ts +22 -0
  23. package/dist/index.d.ts.map +1 -0
  24. package/dist/index.js +588 -0
  25. package/dist/index.js.map +1 -0
  26. package/dist/judge-files.d.ts +873 -0
  27. package/dist/judge-files.d.ts.map +1 -0
  28. package/dist/judge-files.js +280 -0
  29. package/dist/judge-files.js.map +1 -0
  30. package/dist/operations.d.ts +23537 -0
  31. package/dist/operations.d.ts.map +1 -0
  32. package/dist/operations.js +1832 -0
  33. package/dist/operations.js.map +1 -0
  34. package/dist/ops.d.ts +4438 -0
  35. package/dist/ops.d.ts.map +1 -0
  36. package/dist/ops.js +537 -0
  37. package/dist/ops.js.map +1 -0
  38. package/dist/runtime.d.ts +1051 -0
  39. package/dist/runtime.d.ts.map +1 -0
  40. package/dist/runtime.js +325 -0
  41. package/dist/runtime.js.map +1 -0
  42. package/dist/semantic-eval.d.ts +1234 -0
  43. package/dist/semantic-eval.d.ts.map +1 -0
  44. package/dist/semantic-eval.js +162 -0
  45. package/dist/semantic-eval.js.map +1 -0
  46. package/dist/system.d.ts +69 -0
  47. package/dist/system.d.ts.map +1 -0
  48. package/dist/system.js +52 -0
  49. package/dist/system.js.map +1 -0
  50. package/package.json +38 -0
@@ -0,0 +1,873 @@
1
+ import { z } from 'zod';
2
+ export declare const judgeFileSchemaVersionSchema: z.ZodLiteral<1>;
3
+ export declare const judgeProfileScopeSchema: z.ZodEnum<{
4
+ dialog: "dialog";
5
+ turn: "turn";
6
+ }>;
7
+ export declare const judgeParamValueSchema: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
8
+ export declare const judgeSeveritySchema: z.ZodEnum<{
9
+ critical: "critical";
10
+ major: "major";
11
+ minor: "minor";
12
+ }>;
13
+ export declare const judgeRuleApplyToSchema: z.ZodEnum<{
14
+ focus_only: "focus_only";
15
+ next_company_reply: "next_company_reply";
16
+ journey_slice: "journey_slice";
17
+ whole_dialog: "whole_dialog";
18
+ all_matches: "all_matches";
19
+ }>;
20
+ export declare const judgeScorecardModeSchema: z.ZodEnum<{
21
+ acceptance: "acceptance";
22
+ diagnostic: "diagnostic";
23
+ }>;
24
+ export declare const judgeRuntimeEngineSchema: z.ZodEnum<{
25
+ codex: "codex";
26
+ deterministic: "deterministic";
27
+ }>;
28
+ export declare const canonicalConversationSourceSchema: z.ZodObject<{
29
+ type: z.ZodEnum<{
30
+ exported_live_conversation: "exported_live_conversation";
31
+ scenario_fixture: "scenario_fixture";
32
+ manual_file: "manual_file";
33
+ }>;
34
+ environment: z.ZodDefault<z.ZodNullable<z.ZodString>>;
35
+ exportedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
36
+ }, z.core.$strip>;
37
+ export type CanonicalConversationSource = z.infer<typeof canonicalConversationSourceSchema>;
38
+ export declare const canonicalConversationHeaderSchema: z.ZodObject<{
39
+ conversationId: z.ZodString;
40
+ channel: z.ZodString;
41
+ source: z.ZodObject<{
42
+ type: z.ZodEnum<{
43
+ exported_live_conversation: "exported_live_conversation";
44
+ scenario_fixture: "scenario_fixture";
45
+ manual_file: "manual_file";
46
+ }>;
47
+ environment: z.ZodDefault<z.ZodNullable<z.ZodString>>;
48
+ exportedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
49
+ }, z.core.$strip>;
50
+ }, z.core.$strip>;
51
+ export type CanonicalConversationHeader = z.infer<typeof canonicalConversationHeaderSchema>;
52
+ export declare const canonicalConversationParticipantSchema: z.ZodObject<{
53
+ id: z.ZodString;
54
+ role: z.ZodEnum<{
55
+ customer: "customer";
56
+ company: "company";
57
+ system: "system";
58
+ }>;
59
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
60
+ bot: "bot";
61
+ operator: "operator";
62
+ hybrid: "hybrid";
63
+ }>>>;
64
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
65
+ }, z.core.$strip>;
66
+ export type CanonicalConversationParticipant = z.infer<typeof canonicalConversationParticipantSchema>;
67
+ export declare const canonicalConversationTurnSchema: z.ZodObject<{
68
+ turnId: z.ZodString;
69
+ actorId: z.ZodString;
70
+ actorRole: z.ZodEnum<{
71
+ customer: "customer";
72
+ company: "company";
73
+ system: "system";
74
+ }>;
75
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
76
+ bot: "bot";
77
+ operator: "operator";
78
+ hybrid: "hybrid";
79
+ }>>>;
80
+ timestamp: z.ZodDefault<z.ZodNullable<z.ZodString>>;
81
+ text: z.ZodString;
82
+ }, z.core.$strip>;
83
+ export type CanonicalConversationTurn = z.infer<typeof canonicalConversationTurnSchema>;
84
+ export declare const canonicalConversationSummarySchema: z.ZodObject<{
85
+ summaryRef: z.ZodString;
86
+ summaryText: z.ZodString;
87
+ knownFacts: z.ZodDefault<z.ZodArray<z.ZodString>>;
88
+ productsMentioned: z.ZodDefault<z.ZodArray<z.ZodString>>;
89
+ customerGoals: z.ZodDefault<z.ZodArray<z.ZodString>>;
90
+ }, z.core.$strip>;
91
+ export type CanonicalConversationSummary = z.infer<typeof canonicalConversationSummarySchema>;
92
+ export declare const canonicalConversationTraceRefSchema: z.ZodObject<{
93
+ ref: z.ZodString;
94
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
95
+ }, z.core.$strip>;
96
+ export type CanonicalConversationTraceRef = z.infer<typeof canonicalConversationTraceRefSchema>;
97
+ export declare const canonicalConversationContextSchema: z.ZodObject<{
98
+ domainNote: z.ZodDefault<z.ZodNullable<z.ZodString>>;
99
+ stateSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
100
+ packedContextSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
101
+ historicalSummaries: z.ZodDefault<z.ZodArray<z.ZodObject<{
102
+ summaryRef: z.ZodString;
103
+ summaryText: z.ZodString;
104
+ knownFacts: z.ZodDefault<z.ZodArray<z.ZodString>>;
105
+ productsMentioned: z.ZodDefault<z.ZodArray<z.ZodString>>;
106
+ customerGoals: z.ZodDefault<z.ZodArray<z.ZodString>>;
107
+ }, z.core.$strip>>>;
108
+ traceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
109
+ ref: z.ZodString;
110
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
111
+ }, z.core.$strip>>>;
112
+ }, z.core.$strip>;
113
+ export type CanonicalConversationContext = z.infer<typeof canonicalConversationContextSchema>;
114
+ export declare const canonicalConversationCoverageSchema: z.ZodObject<{
115
+ mode: z.ZodEnum<{
116
+ full: "full";
117
+ packed: "packed";
118
+ excerpt: "excerpt";
119
+ raw_full: "raw_full";
120
+ }>;
121
+ note: z.ZodDefault<z.ZodNullable<z.ZodString>>;
122
+ }, z.core.$strip>;
123
+ export type CanonicalConversationCoverage = z.infer<typeof canonicalConversationCoverageSchema>;
124
+ export declare const canonicalConversationFocusSchema: z.ZodObject<{
125
+ customer_turn_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
126
+ company_turn_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
127
+ }, z.core.$strip>;
128
+ export type CanonicalConversationFocus = z.infer<typeof canonicalConversationFocusSchema>;
129
+ export declare const canonicalConversationProfileProvenanceSchema: z.ZodObject<{
130
+ version_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
131
+ version_number: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
132
+ repository_url: z.ZodDefault<z.ZodNullable<z.ZodString>>;
133
+ commit_sha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
134
+ }, z.core.$strip>;
135
+ export type CanonicalConversationProfileProvenance = z.infer<typeof canonicalConversationProfileProvenanceSchema>;
136
+ export declare const canonicalConversationTranscriptSchema: z.ZodObject<{
137
+ schema_version: z.ZodLiteral<1>;
138
+ kind: z.ZodLiteral<"sa_conversation">;
139
+ business_slug: z.ZodString;
140
+ profile_version: z.ZodDefault<z.ZodNullable<z.ZodString>>;
141
+ conversation: z.ZodObject<{
142
+ conversationId: z.ZodString;
143
+ channel: z.ZodString;
144
+ source: z.ZodObject<{
145
+ type: z.ZodEnum<{
146
+ exported_live_conversation: "exported_live_conversation";
147
+ scenario_fixture: "scenario_fixture";
148
+ manual_file: "manual_file";
149
+ }>;
150
+ environment: z.ZodDefault<z.ZodNullable<z.ZodString>>;
151
+ exportedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
152
+ }, z.core.$strip>;
153
+ }, z.core.$strip>;
154
+ participants: z.ZodDefault<z.ZodArray<z.ZodObject<{
155
+ id: z.ZodString;
156
+ role: z.ZodEnum<{
157
+ customer: "customer";
158
+ company: "company";
159
+ system: "system";
160
+ }>;
161
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
162
+ bot: "bot";
163
+ operator: "operator";
164
+ hybrid: "hybrid";
165
+ }>>>;
166
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
167
+ }, z.core.$strip>>>;
168
+ turns: z.ZodDefault<z.ZodArray<z.ZodObject<{
169
+ turnId: z.ZodString;
170
+ actorId: z.ZodString;
171
+ actorRole: z.ZodEnum<{
172
+ customer: "customer";
173
+ company: "company";
174
+ system: "system";
175
+ }>;
176
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
177
+ bot: "bot";
178
+ operator: "operator";
179
+ hybrid: "hybrid";
180
+ }>>>;
181
+ timestamp: z.ZodDefault<z.ZodNullable<z.ZodString>>;
182
+ text: z.ZodString;
183
+ }, z.core.$strip>>>;
184
+ context: z.ZodObject<{
185
+ domainNote: z.ZodDefault<z.ZodNullable<z.ZodString>>;
186
+ stateSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
187
+ packedContextSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
188
+ historicalSummaries: z.ZodDefault<z.ZodArray<z.ZodObject<{
189
+ summaryRef: z.ZodString;
190
+ summaryText: z.ZodString;
191
+ knownFacts: z.ZodDefault<z.ZodArray<z.ZodString>>;
192
+ productsMentioned: z.ZodDefault<z.ZodArray<z.ZodString>>;
193
+ customerGoals: z.ZodDefault<z.ZodArray<z.ZodString>>;
194
+ }, z.core.$strip>>>;
195
+ traceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
196
+ ref: z.ZodString;
197
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
198
+ }, z.core.$strip>>>;
199
+ }, z.core.$strip>;
200
+ coverage: z.ZodOptional<z.ZodObject<{
201
+ mode: z.ZodEnum<{
202
+ full: "full";
203
+ packed: "packed";
204
+ excerpt: "excerpt";
205
+ raw_full: "raw_full";
206
+ }>;
207
+ note: z.ZodDefault<z.ZodNullable<z.ZodString>>;
208
+ }, z.core.$strip>>;
209
+ focus: z.ZodOptional<z.ZodObject<{
210
+ customer_turn_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
211
+ company_turn_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
212
+ }, z.core.$strip>>;
213
+ profile_provenance: z.ZodOptional<z.ZodObject<{
214
+ version_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
215
+ version_number: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
216
+ repository_url: z.ZodDefault<z.ZodNullable<z.ZodString>>;
217
+ commit_sha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
218
+ }, z.core.$strip>>;
219
+ }, z.core.$strip>;
220
+ export type CanonicalConversationTranscript = z.infer<typeof canonicalConversationTranscriptSchema>;
221
+ export declare const expectationContributionFileSchema: z.ZodObject<{
222
+ good_signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
223
+ expectationId: z.ZodString;
224
+ label: z.ZodString;
225
+ description: z.ZodString;
226
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
227
+ weight: z.ZodDefault<z.ZodNumber>;
228
+ }, z.core.$strip>>>;
229
+ bad_signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
230
+ expectationId: z.ZodString;
231
+ label: z.ZodString;
232
+ description: z.ZodString;
233
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
234
+ weight: z.ZodDefault<z.ZodNumber>;
235
+ }, z.core.$strip>>>;
236
+ must_do: z.ZodDefault<z.ZodArray<z.ZodObject<{
237
+ expectationId: z.ZodString;
238
+ label: z.ZodString;
239
+ description: z.ZodString;
240
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
241
+ weight: z.ZodDefault<z.ZodNumber>;
242
+ }, z.core.$strip>>>;
243
+ must_not_do: z.ZodDefault<z.ZodArray<z.ZodObject<{
244
+ expectationId: z.ZodString;
245
+ label: z.ZodString;
246
+ description: z.ZodString;
247
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
248
+ weight: z.ZodDefault<z.ZodNumber>;
249
+ }, z.core.$strip>>>;
250
+ domain_anchors: z.ZodDefault<z.ZodArray<z.ZodString>>;
251
+ expected_next_step_kinds: z.ZodDefault<z.ZodArray<z.ZodString>>;
252
+ forbidden_moves: z.ZodDefault<z.ZodArray<z.ZodString>>;
253
+ notes: z.ZodDefault<z.ZodArray<z.ZodString>>;
254
+ }, z.core.$strip>;
255
+ export type ExpectationContributionFile = z.infer<typeof expectationContributionFileSchema>;
256
+ export declare const expectationBlockFileSchema: z.ZodObject<{
257
+ schema_version: z.ZodLiteral<1>;
258
+ kind: z.ZodLiteral<"sa_expectation_block">;
259
+ block_id: z.ZodString;
260
+ label: z.ZodString;
261
+ supported_kinds: z.ZodDefault<z.ZodArray<z.ZodEnum<{
262
+ turn: "turn";
263
+ journey: "journey";
264
+ }>>>;
265
+ scope: z.ZodEnum<{
266
+ dialog: "dialog";
267
+ turn: "turn";
268
+ }>;
269
+ contribution: z.ZodObject<{
270
+ good_signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
271
+ expectationId: z.ZodString;
272
+ label: z.ZodString;
273
+ description: z.ZodString;
274
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
275
+ weight: z.ZodDefault<z.ZodNumber>;
276
+ }, z.core.$strip>>>;
277
+ bad_signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
278
+ expectationId: z.ZodString;
279
+ label: z.ZodString;
280
+ description: z.ZodString;
281
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
282
+ weight: z.ZodDefault<z.ZodNumber>;
283
+ }, z.core.$strip>>>;
284
+ must_do: z.ZodDefault<z.ZodArray<z.ZodObject<{
285
+ expectationId: z.ZodString;
286
+ label: z.ZodString;
287
+ description: z.ZodString;
288
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
289
+ weight: z.ZodDefault<z.ZodNumber>;
290
+ }, z.core.$strip>>>;
291
+ must_not_do: z.ZodDefault<z.ZodArray<z.ZodObject<{
292
+ expectationId: z.ZodString;
293
+ label: z.ZodString;
294
+ description: z.ZodString;
295
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
296
+ weight: z.ZodDefault<z.ZodNumber>;
297
+ }, z.core.$strip>>>;
298
+ domain_anchors: z.ZodDefault<z.ZodArray<z.ZodString>>;
299
+ expected_next_step_kinds: z.ZodDefault<z.ZodArray<z.ZodString>>;
300
+ forbidden_moves: z.ZodDefault<z.ZodArray<z.ZodString>>;
301
+ notes: z.ZodDefault<z.ZodArray<z.ZodString>>;
302
+ }, z.core.$strip>;
303
+ }, z.core.$strip>;
304
+ export type ExpectationBlockFile = z.infer<typeof expectationBlockFileSchema>;
305
+ export declare const expectationProfileImportFileSchema: z.ZodObject<{
306
+ block: z.ZodString;
307
+ with: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
308
+ }, z.core.$strip>;
309
+ export type ExpectationProfileImportFile = z.infer<typeof expectationProfileImportFileSchema>;
310
+ export declare const expectationProfileFileSchema: z.ZodObject<{
311
+ schema_version: z.ZodLiteral<1>;
312
+ kind: z.ZodLiteral<"sa_expectation_profile">;
313
+ profile_id: z.ZodString;
314
+ label: z.ZodString;
315
+ contract_id: z.ZodString;
316
+ contract_version: z.ZodString;
317
+ target_kind: z.ZodEnum<{
318
+ turn: "turn";
319
+ journey: "journey";
320
+ }>;
321
+ stage_label: z.ZodString;
322
+ context_policy: z.ZodEnum<{
323
+ minimal_only: "minimal_only";
324
+ allow_windowed: "allow_windowed";
325
+ allow_full: "allow_full";
326
+ }>;
327
+ evaluation_question: z.ZodString;
328
+ imports: z.ZodDefault<z.ZodArray<z.ZodObject<{
329
+ block: z.ZodString;
330
+ with: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
331
+ }, z.core.$strip>>>;
332
+ local: z.ZodOptional<z.ZodObject<{
333
+ good_signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
334
+ expectationId: z.ZodString;
335
+ label: z.ZodString;
336
+ description: z.ZodString;
337
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
338
+ weight: z.ZodDefault<z.ZodNumber>;
339
+ }, z.core.$strip>>>;
340
+ bad_signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
341
+ expectationId: z.ZodString;
342
+ label: z.ZodString;
343
+ description: z.ZodString;
344
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
345
+ weight: z.ZodDefault<z.ZodNumber>;
346
+ }, z.core.$strip>>>;
347
+ must_do: z.ZodDefault<z.ZodArray<z.ZodObject<{
348
+ expectationId: z.ZodString;
349
+ label: z.ZodString;
350
+ description: z.ZodString;
351
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
352
+ weight: z.ZodDefault<z.ZodNumber>;
353
+ }, z.core.$strip>>>;
354
+ must_not_do: z.ZodDefault<z.ZodArray<z.ZodObject<{
355
+ expectationId: z.ZodString;
356
+ label: z.ZodString;
357
+ description: z.ZodString;
358
+ evidenceHints: z.ZodDefault<z.ZodArray<z.ZodString>>;
359
+ weight: z.ZodDefault<z.ZodNumber>;
360
+ }, z.core.$strip>>>;
361
+ domain_anchors: z.ZodDefault<z.ZodArray<z.ZodString>>;
362
+ expected_next_step_kinds: z.ZodDefault<z.ZodArray<z.ZodString>>;
363
+ forbidden_moves: z.ZodDefault<z.ZodArray<z.ZodString>>;
364
+ notes: z.ZodDefault<z.ZodArray<z.ZodString>>;
365
+ }, z.core.$strip>>;
366
+ }, z.core.$strip>;
367
+ export type ExpectationProfileFile = z.infer<typeof expectationProfileFileSchema>;
368
+ export declare const judgeRuleClauseFileSchema: z.ZodObject<{
369
+ id: z.ZodString;
370
+ text: z.ZodString;
371
+ severity: z.ZodDefault<z.ZodEnum<{
372
+ critical: "critical";
373
+ major: "major";
374
+ minor: "minor";
375
+ }>>;
376
+ evidence_hints: z.ZodDefault<z.ZodArray<z.ZodString>>;
377
+ }, z.core.$strip>;
378
+ export type JudgeRuleClauseFile = z.infer<typeof judgeRuleClauseFileSchema>;
379
+ export declare const judgeRuleAcceptanceFileSchema: z.ZodObject<{
380
+ min_score: z.ZodDefault<z.ZodNumber>;
381
+ pass_verdicts: z.ZodDefault<z.ZodArray<z.ZodEnum<{
382
+ pass: "pass";
383
+ soft_fail: "soft_fail";
384
+ fail: "fail";
385
+ inconclusive: "inconclusive";
386
+ contract_error: "contract_error";
387
+ }>>>;
388
+ fail_on_violations: z.ZodDefault<z.ZodArray<z.ZodString>>;
389
+ fail_on_missed: z.ZodDefault<z.ZodArray<z.ZodString>>;
390
+ }, z.core.$strip>;
391
+ export type JudgeRuleAcceptanceFile = z.infer<typeof judgeRuleAcceptanceFileSchema>;
392
+ export declare const judgeRuleFileSchema: z.ZodObject<{
393
+ schema_version: z.ZodDefault<z.ZodLiteral<1>>;
394
+ kind: z.ZodDefault<z.ZodLiteral<"sa_judge_rule">>;
395
+ id: z.ZodString;
396
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
397
+ question: z.ZodString;
398
+ applies_to: z.ZodEnum<{
399
+ focus_only: "focus_only";
400
+ next_company_reply: "next_company_reply";
401
+ journey_slice: "journey_slice";
402
+ whole_dialog: "whole_dialog";
403
+ all_matches: "all_matches";
404
+ }>;
405
+ imports: z.ZodDefault<z.ZodArray<z.ZodString>>;
406
+ contract_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
407
+ contract_version: z.ZodDefault<z.ZodNullable<z.ZodString>>;
408
+ context_policy: z.ZodOptional<z.ZodEnum<{
409
+ minimal_only: "minimal_only";
410
+ allow_windowed: "allow_windowed";
411
+ allow_full: "allow_full";
412
+ }>>;
413
+ must: z.ZodDefault<z.ZodArray<z.ZodObject<{
414
+ id: z.ZodString;
415
+ text: z.ZodString;
416
+ severity: z.ZodDefault<z.ZodEnum<{
417
+ critical: "critical";
418
+ major: "major";
419
+ minor: "minor";
420
+ }>>;
421
+ evidence_hints: z.ZodDefault<z.ZodArray<z.ZodString>>;
422
+ }, z.core.$strip>>>;
423
+ must_not: z.ZodDefault<z.ZodArray<z.ZodObject<{
424
+ id: z.ZodString;
425
+ text: z.ZodString;
426
+ severity: z.ZodDefault<z.ZodEnum<{
427
+ critical: "critical";
428
+ major: "major";
429
+ minor: "minor";
430
+ }>>;
431
+ evidence_hints: z.ZodDefault<z.ZodArray<z.ZodString>>;
432
+ }, z.core.$strip>>>;
433
+ good: z.ZodDefault<z.ZodArray<z.ZodObject<{
434
+ id: z.ZodString;
435
+ text: z.ZodString;
436
+ severity: z.ZodDefault<z.ZodEnum<{
437
+ critical: "critical";
438
+ major: "major";
439
+ minor: "minor";
440
+ }>>;
441
+ evidence_hints: z.ZodDefault<z.ZodArray<z.ZodString>>;
442
+ }, z.core.$strip>>>;
443
+ bad: z.ZodDefault<z.ZodArray<z.ZodObject<{
444
+ id: z.ZodString;
445
+ text: z.ZodString;
446
+ severity: z.ZodDefault<z.ZodEnum<{
447
+ critical: "critical";
448
+ major: "major";
449
+ minor: "minor";
450
+ }>>;
451
+ evidence_hints: z.ZodDefault<z.ZodArray<z.ZodString>>;
452
+ }, z.core.$strip>>>;
453
+ acceptance: z.ZodOptional<z.ZodObject<{
454
+ min_score: z.ZodDefault<z.ZodNumber>;
455
+ pass_verdicts: z.ZodDefault<z.ZodArray<z.ZodEnum<{
456
+ pass: "pass";
457
+ soft_fail: "soft_fail";
458
+ fail: "fail";
459
+ inconclusive: "inconclusive";
460
+ contract_error: "contract_error";
461
+ }>>>;
462
+ fail_on_violations: z.ZodDefault<z.ZodArray<z.ZodString>>;
463
+ fail_on_missed: z.ZodDefault<z.ZodArray<z.ZodString>>;
464
+ }, z.core.$strip>>;
465
+ }, z.core.$strip>;
466
+ export type JudgeRuleFile = z.infer<typeof judgeRuleFileSchema>;
467
+ export declare const judgeScorecardRuleEntrySchema: z.ZodObject<{
468
+ rule: z.ZodString;
469
+ weight: z.ZodDefault<z.ZodNumber>;
470
+ }, z.core.$strip>;
471
+ export type JudgeScorecardRuleEntry = z.infer<typeof judgeScorecardRuleEntrySchema>;
472
+ export declare const judgeScorecardRuntimeSchema: z.ZodObject<{
473
+ engine: z.ZodDefault<z.ZodEnum<{
474
+ codex: "codex";
475
+ deterministic: "deterministic";
476
+ }>>;
477
+ model: z.ZodDefault<z.ZodNullable<z.ZodString>>;
478
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
479
+ minimal: "minimal";
480
+ low: "low";
481
+ medium: "medium";
482
+ high: "high";
483
+ xhigh: "xhigh";
484
+ }>>>;
485
+ concurrency: z.ZodDefault<z.ZodNumber>;
486
+ }, z.core.$strip>;
487
+ export type JudgeScorecardRuntime = z.infer<typeof judgeScorecardRuntimeSchema>;
488
+ export declare const judgeScorecardPolicySchema: z.ZodDefault<z.ZodObject<{
489
+ min_total_score: z.ZodDefault<z.ZodNumber>;
490
+ fail_if_any: z.ZodDefault<z.ZodArray<z.ZodString>>;
491
+ allow_partial: z.ZodDefault<z.ZodBoolean>;
492
+ }, z.core.$strip>>;
493
+ export type JudgeScorecardPolicy = z.infer<typeof judgeScorecardPolicySchema>;
494
+ export declare const judgeScorecardFileSchema: z.ZodObject<{
495
+ schema_version: z.ZodDefault<z.ZodLiteral<1>>;
496
+ kind: z.ZodDefault<z.ZodLiteral<"sa_judge_scorecard">>;
497
+ id: z.ZodString;
498
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
499
+ mode: z.ZodDefault<z.ZodEnum<{
500
+ acceptance: "acceptance";
501
+ diagnostic: "diagnostic";
502
+ }>>;
503
+ runtime: z.ZodOptional<z.ZodObject<{
504
+ engine: z.ZodDefault<z.ZodEnum<{
505
+ codex: "codex";
506
+ deterministic: "deterministic";
507
+ }>>;
508
+ model: z.ZodDefault<z.ZodNullable<z.ZodString>>;
509
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
510
+ minimal: "minimal";
511
+ low: "low";
512
+ medium: "medium";
513
+ high: "high";
514
+ xhigh: "xhigh";
515
+ }>>>;
516
+ concurrency: z.ZodDefault<z.ZodNumber>;
517
+ }, z.core.$strip>>;
518
+ rules: z.ZodArray<z.ZodObject<{
519
+ rule: z.ZodString;
520
+ weight: z.ZodDefault<z.ZodNumber>;
521
+ }, z.core.$strip>>;
522
+ policy: z.ZodDefault<z.ZodObject<{
523
+ min_total_score: z.ZodDefault<z.ZodNumber>;
524
+ fail_if_any: z.ZodDefault<z.ZodArray<z.ZodString>>;
525
+ allow_partial: z.ZodDefault<z.ZodBoolean>;
526
+ }, z.core.$strip>>;
527
+ }, z.core.$strip>;
528
+ export type JudgeScorecardFile = z.infer<typeof judgeScorecardFileSchema>;
529
+ export declare const canonicalJudgeProfileRefSchema: z.ZodObject<{
530
+ profile_id: z.ZodString;
531
+ label: z.ZodString;
532
+ contract_id: z.ZodString;
533
+ contract_version: z.ZodString;
534
+ imported_blocks: z.ZodDefault<z.ZodArray<z.ZodObject<{
535
+ block_id: z.ZodString;
536
+ label: z.ZodString;
537
+ scope: z.ZodEnum<{
538
+ dialog: "dialog";
539
+ turn: "turn";
540
+ }>;
541
+ params: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
542
+ }, z.core.$strip>>>;
543
+ }, z.core.$strip>;
544
+ export type CanonicalJudgeProfileRef = z.infer<typeof canonicalJudgeProfileRefSchema>;
545
+ export declare const canonicalJudgeSourceSchema: z.ZodObject<{
546
+ kind: z.ZodEnum<{
547
+ conversation: "conversation";
548
+ scenario: "scenario";
549
+ transcript: "transcript";
550
+ }>;
551
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
552
+ path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
553
+ conversation_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
554
+ channel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
555
+ }, z.core.$strip>;
556
+ export type CanonicalJudgeSource = z.infer<typeof canonicalJudgeSourceSchema>;
557
+ export declare const canonicalJudgeExecutionSchema: z.ZodObject<{
558
+ target_id: z.ZodString;
559
+ target_kind: z.ZodString;
560
+ accepted_verdicts: z.ZodDefault<z.ZodArray<z.ZodEnum<{
561
+ pass: "pass";
562
+ soft_fail: "soft_fail";
563
+ fail: "fail";
564
+ inconclusive: "inconclusive";
565
+ contract_error: "contract_error";
566
+ }>>>;
567
+ final_context_level: z.ZodEnum<{
568
+ full: "full";
569
+ minimal: "minimal";
570
+ windowed: "windowed";
571
+ }>;
572
+ passed: z.ZodBoolean;
573
+ summary: z.ZodString;
574
+ }, z.core.$strip>;
575
+ export type CanonicalJudgeExecution = z.infer<typeof canonicalJudgeExecutionSchema>;
576
+ export declare const canonicalJudgeProvenanceSchema: z.ZodObject<{
577
+ generated_at: z.ZodString;
578
+ project_root: z.ZodDefault<z.ZodNullable<z.ZodString>>;
579
+ transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
580
+ source_artifact_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
581
+ api_base_url: z.ZodDefault<z.ZodNullable<z.ZodString>>;
582
+ }, z.core.$strip>;
583
+ export type CanonicalJudgeProvenance = z.infer<typeof canonicalJudgeProvenanceSchema>;
584
+ export declare const canonicalJudgeVerdictSchema: z.ZodObject<{
585
+ schema_version: z.ZodLiteral<1>;
586
+ kind: z.ZodLiteral<"sa_judge_verdict">;
587
+ business_slug: z.ZodString;
588
+ run_id: z.ZodString;
589
+ source: z.ZodObject<{
590
+ kind: z.ZodEnum<{
591
+ conversation: "conversation";
592
+ scenario: "scenario";
593
+ transcript: "transcript";
594
+ }>;
595
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
596
+ path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
597
+ conversation_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
598
+ channel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
599
+ }, z.core.$strip>;
600
+ profile: z.ZodObject<{
601
+ profile_id: z.ZodString;
602
+ label: z.ZodString;
603
+ contract_id: z.ZodString;
604
+ contract_version: z.ZodString;
605
+ imported_blocks: z.ZodDefault<z.ZodArray<z.ZodObject<{
606
+ block_id: z.ZodString;
607
+ label: z.ZodString;
608
+ scope: z.ZodEnum<{
609
+ dialog: "dialog";
610
+ turn: "turn";
611
+ }>;
612
+ params: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
613
+ }, z.core.$strip>>>;
614
+ }, z.core.$strip>;
615
+ execution: z.ZodObject<{
616
+ target_id: z.ZodString;
617
+ target_kind: z.ZodString;
618
+ accepted_verdicts: z.ZodDefault<z.ZodArray<z.ZodEnum<{
619
+ pass: "pass";
620
+ soft_fail: "soft_fail";
621
+ fail: "fail";
622
+ inconclusive: "inconclusive";
623
+ contract_error: "contract_error";
624
+ }>>>;
625
+ final_context_level: z.ZodEnum<{
626
+ full: "full";
627
+ minimal: "minimal";
628
+ windowed: "windowed";
629
+ }>;
630
+ passed: z.ZodBoolean;
631
+ summary: z.ZodString;
632
+ }, z.core.$strip>;
633
+ result: z.ZodObject<{
634
+ decision: z.ZodObject<{
635
+ verdict: z.ZodEnum<{
636
+ pass: "pass";
637
+ soft_fail: "soft_fail";
638
+ fail: "fail";
639
+ inconclusive: "inconclusive";
640
+ contract_error: "contract_error";
641
+ }>;
642
+ confidence: z.ZodNumber;
643
+ score: z.ZodNumber;
644
+ summary: z.ZodString;
645
+ contractId: z.ZodString;
646
+ contractVersion: z.ZodString;
647
+ contextPacketHash: z.ZodString;
648
+ }, z.core.$strip>;
649
+ analysis: z.ZodObject<{
650
+ matchedExpectations: z.ZodDefault<z.ZodArray<z.ZodObject<{
651
+ expectationId: z.ZodString;
652
+ status: z.ZodEnum<{
653
+ matched: "matched";
654
+ missed: "missed";
655
+ violated: "violated";
656
+ ambiguous: "ambiguous";
657
+ }>;
658
+ because: z.ZodString;
659
+ evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
660
+ ref: z.ZodString;
661
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
662
+ }, z.core.$strip>>>;
663
+ }, z.core.$strip>>>;
664
+ missedExpectations: z.ZodDefault<z.ZodArray<z.ZodObject<{
665
+ expectationId: z.ZodString;
666
+ status: z.ZodEnum<{
667
+ matched: "matched";
668
+ missed: "missed";
669
+ violated: "violated";
670
+ ambiguous: "ambiguous";
671
+ }>;
672
+ because: z.ZodString;
673
+ evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
674
+ ref: z.ZodString;
675
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
676
+ }, z.core.$strip>>>;
677
+ }, z.core.$strip>>>;
678
+ violations: z.ZodDefault<z.ZodArray<z.ZodObject<{
679
+ expectationId: z.ZodString;
680
+ status: z.ZodEnum<{
681
+ matched: "matched";
682
+ missed: "missed";
683
+ violated: "violated";
684
+ ambiguous: "ambiguous";
685
+ }>;
686
+ because: z.ZodString;
687
+ evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
688
+ ref: z.ZodString;
689
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
690
+ }, z.core.$strip>>>;
691
+ }, z.core.$strip>>>;
692
+ ambiguities: z.ZodDefault<z.ZodArray<z.ZodObject<{
693
+ expectationId: z.ZodString;
694
+ status: z.ZodEnum<{
695
+ matched: "matched";
696
+ missed: "missed";
697
+ violated: "violated";
698
+ ambiguous: "ambiguous";
699
+ }>;
700
+ because: z.ZodString;
701
+ evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
702
+ ref: z.ZodString;
703
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
704
+ }, z.core.$strip>>>;
705
+ }, z.core.$strip>>>;
706
+ missingContextItems: z.ZodDefault<z.ZodArray<z.ZodString>>;
707
+ contextUsed: z.ZodEnum<{
708
+ full: "full";
709
+ minimal: "minimal";
710
+ windowed: "windowed";
711
+ }>;
712
+ needsMoreContext: z.ZodBoolean;
713
+ escalationUsed: z.ZodBoolean;
714
+ escalationReason: z.ZodDefault<z.ZodNullable<z.ZodString>>;
715
+ contractErrors: z.ZodDefault<z.ZodArray<z.ZodObject<{
716
+ code: z.ZodString;
717
+ message: z.ZodString;
718
+ evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
719
+ ref: z.ZodString;
720
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
721
+ }, z.core.$strip>>>;
722
+ }, z.core.$strip>>>;
723
+ }, z.core.$strip>;
724
+ error: z.ZodDefault<z.ZodNullable<z.ZodObject<{
725
+ code: z.ZodString;
726
+ message: z.ZodString;
727
+ }, z.core.$strip>>>;
728
+ }, z.core.$strip>;
729
+ metadata: z.ZodObject<{
730
+ provider: z.ZodString;
731
+ modelId: z.ZodString;
732
+ finishReason: z.ZodDefault<z.ZodNullable<z.ZodString>>;
733
+ latencyMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
734
+ usage: z.ZodDefault<z.ZodNullable<z.ZodObject<{
735
+ inputTokens: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
736
+ outputTokens: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
737
+ totalTokens: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
738
+ }, z.core.$strip>>>;
739
+ promptHash: z.ZodString;
740
+ systemPromptHash: z.ZodString;
741
+ userPromptHash: z.ZodString;
742
+ }, z.core.$strip>;
743
+ provenance: z.ZodObject<{
744
+ generated_at: z.ZodString;
745
+ project_root: z.ZodDefault<z.ZodNullable<z.ZodString>>;
746
+ transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
747
+ source_artifact_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
748
+ api_base_url: z.ZodDefault<z.ZodNullable<z.ZodString>>;
749
+ }, z.core.$strip>;
750
+ }, z.core.$strip>;
751
+ export type CanonicalJudgeVerdict = z.infer<typeof canonicalJudgeVerdictSchema>;
752
+ export declare const canonicalJudgeRuleRunSchema: z.ZodObject<{
753
+ job_id: z.ZodString;
754
+ rule_id: z.ZodString;
755
+ window_label: z.ZodString;
756
+ applies_to: z.ZodEnum<{
757
+ focus_only: "focus_only";
758
+ next_company_reply: "next_company_reply";
759
+ journey_slice: "journey_slice";
760
+ whole_dialog: "whole_dialog";
761
+ all_matches: "all_matches";
762
+ }>;
763
+ weight: z.ZodNumber;
764
+ operational_status: z.ZodEnum<{
765
+ completed: "completed";
766
+ failed: "failed";
767
+ }>;
768
+ worker_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
769
+ pass: "pass";
770
+ soft_fail: "soft_fail";
771
+ fail: "fail";
772
+ inconclusive: "inconclusive";
773
+ contract_error: "contract_error";
774
+ }>>>;
775
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
776
+ contribution: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
777
+ passed: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
778
+ confidence: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
779
+ matched_count: z.ZodDefault<z.ZodNumber>;
780
+ missed_count: z.ZodDefault<z.ZodNumber>;
781
+ violations_count: z.ZodDefault<z.ZodNumber>;
782
+ ambiguities_count: z.ZodDefault<z.ZodNumber>;
783
+ retries_used: z.ZodDefault<z.ZodNumber>;
784
+ artifact_dir: z.ZodString;
785
+ error: z.ZodDefault<z.ZodNullable<z.ZodObject<{
786
+ message: z.ZodString;
787
+ }, z.core.$strip>>>;
788
+ }, z.core.$strip>;
789
+ export type CanonicalJudgeRuleRun = z.infer<typeof canonicalJudgeRuleRunSchema>;
790
+ export declare const canonicalJudgeScorecardReportSchema: z.ZodObject<{
791
+ schema_version: z.ZodLiteral<1>;
792
+ kind: z.ZodLiteral<"sa_judge_scorecard_report">;
793
+ run_id: z.ZodString;
794
+ business_slug: z.ZodString;
795
+ transcript_path: z.ZodString;
796
+ scorecard_id: z.ZodString;
797
+ scorecard_mode: z.ZodEnum<{
798
+ acceptance: "acceptance";
799
+ diagnostic: "diagnostic";
800
+ }>;
801
+ profile_root: z.ZodString;
802
+ profile_commit_sha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
803
+ profile_repository_url: z.ZodDefault<z.ZodNullable<z.ZodString>>;
804
+ runtime: z.ZodObject<{
805
+ engine: z.ZodDefault<z.ZodEnum<{
806
+ codex: "codex";
807
+ deterministic: "deterministic";
808
+ }>>;
809
+ model: z.ZodDefault<z.ZodNullable<z.ZodString>>;
810
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
811
+ minimal: "minimal";
812
+ low: "low";
813
+ medium: "medium";
814
+ high: "high";
815
+ xhigh: "xhigh";
816
+ }>>>;
817
+ concurrency: z.ZodDefault<z.ZodNumber>;
818
+ }, z.core.$strip>;
819
+ totals: z.ZodObject<{
820
+ score: z.ZodNumber;
821
+ verdict: z.ZodEnum<{
822
+ pass: "pass";
823
+ soft_fail: "soft_fail";
824
+ fail: "fail";
825
+ inconclusive: "inconclusive";
826
+ contract_error: "contract_error";
827
+ }>;
828
+ passed: z.ZodBoolean;
829
+ hard_fail_rules: z.ZodDefault<z.ZodArray<z.ZodString>>;
830
+ completed_jobs: z.ZodNumber;
831
+ failed_jobs: z.ZodNumber;
832
+ }, z.core.$strip>;
833
+ rules: z.ZodDefault<z.ZodArray<z.ZodObject<{
834
+ job_id: z.ZodString;
835
+ rule_id: z.ZodString;
836
+ window_label: z.ZodString;
837
+ applies_to: z.ZodEnum<{
838
+ focus_only: "focus_only";
839
+ next_company_reply: "next_company_reply";
840
+ journey_slice: "journey_slice";
841
+ whole_dialog: "whole_dialog";
842
+ all_matches: "all_matches";
843
+ }>;
844
+ weight: z.ZodNumber;
845
+ operational_status: z.ZodEnum<{
846
+ completed: "completed";
847
+ failed: "failed";
848
+ }>;
849
+ worker_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
850
+ pass: "pass";
851
+ soft_fail: "soft_fail";
852
+ fail: "fail";
853
+ inconclusive: "inconclusive";
854
+ contract_error: "contract_error";
855
+ }>>>;
856
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
857
+ contribution: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
858
+ passed: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
859
+ confidence: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
860
+ matched_count: z.ZodDefault<z.ZodNumber>;
861
+ missed_count: z.ZodDefault<z.ZodNumber>;
862
+ violations_count: z.ZodDefault<z.ZodNumber>;
863
+ ambiguities_count: z.ZodDefault<z.ZodNumber>;
864
+ retries_used: z.ZodDefault<z.ZodNumber>;
865
+ artifact_dir: z.ZodString;
866
+ error: z.ZodDefault<z.ZodNullable<z.ZodObject<{
867
+ message: z.ZodString;
868
+ }, z.core.$strip>>>;
869
+ }, z.core.$strip>>>;
870
+ generated_at: z.ZodString;
871
+ }, z.core.$strip>;
872
+ export type CanonicalJudgeScorecardReport = z.infer<typeof canonicalJudgeScorecardReportSchema>;
873
+ //# sourceMappingURL=judge-files.d.ts.map