@selleragent/api-contract 0.7.0 → 0.8.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.
@@ -0,0 +1,1483 @@
1
+ import { z } from 'zod';
2
+ export declare const curationSlotStatusSchema: z.ZodEnum<{
3
+ active: "active";
4
+ draft: "draft";
5
+ deprecated: "deprecated";
6
+ retired: "retired";
7
+ }>;
8
+ export declare const curationAdequacyStatusSchema: z.ZodEnum<{
9
+ healthy: "healthy";
10
+ watch: "watch";
11
+ refresh_required: "refresh_required";
12
+ }>;
13
+ export declare const curationRunKindSchema: z.ZodEnum<{
14
+ rule_eval: "rule_eval";
15
+ scorecard_eval: "scorecard_eval";
16
+ compare: "compare";
17
+ fast_fit: "fast_fit";
18
+ full_fit: "full_fit";
19
+ slot_adequacy: "slot_adequacy";
20
+ }>;
21
+ export declare const curationEngineSchema: z.ZodEnum<{
22
+ codex: "codex";
23
+ deterministic: "deterministic";
24
+ deterministic_v1: "deterministic_v1";
25
+ deterministic_configurable: "deterministic_configurable";
26
+ agent_codex: "agent_codex";
27
+ }>;
28
+ export declare const curationTriggerSourceSchema: z.ZodEnum<{
29
+ manual: "manual";
30
+ replay_auto: "replay_auto";
31
+ compare_auto: "compare_auto";
32
+ fit_judge: "fit_judge";
33
+ promotion_review: "promotion_review";
34
+ }>;
35
+ export declare const curationCandidateStateSchema: z.ZodEnum<{
36
+ rejected: "rejected";
37
+ retired: "retired";
38
+ fit_candidate: "fit_candidate";
39
+ rotation_candidate: "rotation_candidate";
40
+ approved: "approved";
41
+ }>;
42
+ export declare const curationSlotEvaluationStageSchema: z.ZodEnum<{
43
+ fast_fit: "fast_fit";
44
+ full_fit: "full_fit";
45
+ }>;
46
+ export declare const curationRecommendedStateSchema: z.ZodEnum<{
47
+ fit_candidate: "fit_candidate";
48
+ rotation_candidate: "rotation_candidate";
49
+ ignore: "ignore";
50
+ }>;
51
+ export declare const curationRotationDecisionSchema: z.ZodEnum<{
52
+ rejected: "rejected";
53
+ approved: "approved";
54
+ keep_candidate: "keep_candidate";
55
+ }>;
56
+ export declare const curationTranscriptSummarySourceSchema: z.ZodEnum<{
57
+ fast_fit_auto: "fast_fit_auto";
58
+ full_fit_auto: "full_fit_auto";
59
+ human_edit: "human_edit";
60
+ }>;
61
+ export declare const curationSignalSchema: z.ZodString;
62
+ export declare const curationAnalysisActorSchema: z.ZodEnum<{
63
+ customer: "customer";
64
+ company: "company";
65
+ either: "either";
66
+ }>;
67
+ export declare const curationAnalysisScopeSchema: z.ZodEnum<{
68
+ whole_dialog: "whole_dialog";
69
+ tail: "tail";
70
+ }>;
71
+ export declare const curationAnalysisTermMatchModeSchema: z.ZodEnum<{
72
+ any: "any";
73
+ all: "all";
74
+ }>;
75
+ export declare const curationAnalysisExpressionSchema: z.ZodType<unknown>;
76
+ export declare const curationAnalysisSignalDefinitionSchema: z.ZodObject<{
77
+ signal_id: z.ZodString;
78
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
79
+ detect: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
80
+ }, z.core.$strip>;
81
+ export declare const curationAnalysisStageDefinitionSchema: z.ZodObject<{
82
+ stage_id: z.ZodString;
83
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
84
+ detect: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
85
+ }, z.core.$strip>;
86
+ export declare const curationAnalysisTagDefinitionSchema: z.ZodObject<{
87
+ tag_id: z.ZodString;
88
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
89
+ detect: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
90
+ }, z.core.$strip>;
91
+ export declare const curationAnalysisFileSchema: z.ZodObject<{
92
+ schema_version: z.ZodLiteral<1>;
93
+ kind: z.ZodLiteral<"sa_curation_analysis">;
94
+ business_slug: z.ZodString;
95
+ signals: z.ZodDefault<z.ZodArray<z.ZodObject<{
96
+ signal_id: z.ZodString;
97
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
98
+ detect: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
99
+ }, z.core.$strip>>>;
100
+ stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
101
+ stage_id: z.ZodString;
102
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
103
+ detect: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
104
+ }, z.core.$strip>>>;
105
+ tags: z.ZodDefault<z.ZodArray<z.ZodObject<{
106
+ tag_id: z.ZodString;
107
+ label: z.ZodDefault<z.ZodNullable<z.ZodString>>;
108
+ detect: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
109
+ }, z.core.$strip>>>;
110
+ }, z.core.$strip>;
111
+ export declare const curationFastFitProfileSchema: z.ZodObject<{
112
+ minTurns: z.ZodDefault<z.ZodNumber>;
113
+ maxTurns: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
114
+ candidateThreshold: z.ZodDefault<z.ZodNumber>;
115
+ promotionThreshold: z.ZodDefault<z.ZodNumber>;
116
+ requiredSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
117
+ positiveSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
118
+ negativeSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
119
+ }, z.core.$strip>;
120
+ export declare const curationSlotDefinitionSchema: z.ZodObject<{
121
+ slot_id: z.ZodString;
122
+ label: z.ZodString;
123
+ purpose: z.ZodString;
124
+ status: z.ZodDefault<z.ZodEnum<{
125
+ active: "active";
126
+ draft: "draft";
127
+ deprecated: "deprecated";
128
+ retired: "retired";
129
+ }>>;
130
+ covered_rules: z.ZodDefault<z.ZodArray<z.ZodString>>;
131
+ covered_rule_prefixes: z.ZodDefault<z.ZodArray<z.ZodString>>;
132
+ target_capabilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
133
+ full_fit_scorecard_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
134
+ fast_fit: z.ZodObject<{
135
+ minTurns: z.ZodDefault<z.ZodNumber>;
136
+ maxTurns: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
137
+ candidateThreshold: z.ZodDefault<z.ZodNumber>;
138
+ promotionThreshold: z.ZodDefault<z.ZodNumber>;
139
+ requiredSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
140
+ positiveSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
141
+ negativeSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
142
+ }, z.core.$strip>;
143
+ }, z.core.$strip>;
144
+ export declare const curationSlotsFileSchema: z.ZodObject<{
145
+ schema_version: z.ZodLiteral<1>;
146
+ kind: z.ZodLiteral<"sa_curation_slots">;
147
+ business_slug: z.ZodString;
148
+ slots: z.ZodArray<z.ZodObject<{
149
+ slot_id: z.ZodString;
150
+ label: z.ZodString;
151
+ purpose: z.ZodString;
152
+ status: z.ZodDefault<z.ZodEnum<{
153
+ active: "active";
154
+ draft: "draft";
155
+ deprecated: "deprecated";
156
+ retired: "retired";
157
+ }>>;
158
+ covered_rules: z.ZodDefault<z.ZodArray<z.ZodString>>;
159
+ covered_rule_prefixes: z.ZodDefault<z.ZodArray<z.ZodString>>;
160
+ target_capabilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
161
+ full_fit_scorecard_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
162
+ fast_fit: z.ZodObject<{
163
+ minTurns: z.ZodDefault<z.ZodNumber>;
164
+ maxTurns: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
165
+ candidateThreshold: z.ZodDefault<z.ZodNumber>;
166
+ promotionThreshold: z.ZodDefault<z.ZodNumber>;
167
+ requiredSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
168
+ positiveSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
169
+ negativeSignals: z.ZodDefault<z.ZodArray<z.ZodString>>;
170
+ }, z.core.$strip>;
171
+ }, z.core.$strip>>;
172
+ }, z.core.$strip>;
173
+ export declare const curatedRegistryCaseSchema: z.ZodObject<{
174
+ transcript_path: z.ZodString;
175
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
176
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
177
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
178
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
179
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
180
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
181
+ }, z.core.$strip>;
182
+ export declare const curatedRegistrySlotSchema: z.ZodObject<{
183
+ slot_id: z.ZodString;
184
+ active: z.ZodDefault<z.ZodNullable<z.ZodObject<{
185
+ transcript_path: z.ZodString;
186
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
187
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
188
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
189
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
190
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
191
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
192
+ }, z.core.$strip>>>;
193
+ candidates: z.ZodDefault<z.ZodArray<z.ZodObject<{
194
+ transcript_path: z.ZodString;
195
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
196
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
197
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
198
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
199
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
200
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
201
+ }, z.core.$strip>>>;
202
+ retired: z.ZodDefault<z.ZodArray<z.ZodObject<{
203
+ transcript_path: z.ZodString;
204
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
205
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
206
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
207
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
208
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
209
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
210
+ }, z.core.$strip>>>;
211
+ }, z.core.$strip>;
212
+ export declare const curatedRegistryFileSchema: z.ZodObject<{
213
+ schema_version: z.ZodLiteral<1>;
214
+ kind: z.ZodLiteral<"sa_curated_transcript_registry">;
215
+ business_slug: z.ZodString;
216
+ slots: z.ZodDefault<z.ZodArray<z.ZodObject<{
217
+ slot_id: z.ZodString;
218
+ active: z.ZodDefault<z.ZodNullable<z.ZodObject<{
219
+ transcript_path: z.ZodString;
220
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
221
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
222
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
223
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
224
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
225
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
226
+ }, z.core.$strip>>>;
227
+ candidates: z.ZodDefault<z.ZodArray<z.ZodObject<{
228
+ transcript_path: z.ZodString;
229
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
230
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
231
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
232
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
233
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
234
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
235
+ }, z.core.$strip>>>;
236
+ retired: z.ZodDefault<z.ZodArray<z.ZodObject<{
237
+ transcript_path: z.ZodString;
238
+ transcript_fingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
239
+ rationale: z.ZodDefault<z.ZodNullable<z.ZodString>>;
240
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
241
+ promoted_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
242
+ promoted_by: z.ZodDefault<z.ZodNullable<z.ZodString>>;
243
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
244
+ }, z.core.$strip>>>;
245
+ }, z.core.$strip>>>;
246
+ }, z.core.$strip>;
247
+ export declare const curationTranscriptRecordSchema: z.ZodObject<{
248
+ transcriptFingerprint: z.ZodString;
249
+ businessProfileSlug: z.ZodString;
250
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
251
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
252
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
253
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
254
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
255
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
256
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
257
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
258
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
259
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
260
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
261
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
262
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
263
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
264
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
265
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
266
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
267
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
268
+ fast_fit_auto: "fast_fit_auto";
269
+ full_fit_auto: "full_fit_auto";
270
+ human_edit: "human_edit";
271
+ }>>>;
272
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
273
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
274
+ createdAt: z.ZodString;
275
+ updatedAt: z.ZodString;
276
+ }, z.core.$strip>;
277
+ export declare const curationTranscriptRecordMapSchema: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
278
+ transcriptFingerprint: z.ZodString;
279
+ businessProfileSlug: z.ZodString;
280
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
281
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
282
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
283
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
284
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
285
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
286
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
287
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
288
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
289
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
290
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
291
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
292
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
293
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
294
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
295
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
296
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
297
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
298
+ fast_fit_auto: "fast_fit_auto";
299
+ full_fit_auto: "full_fit_auto";
300
+ human_edit: "human_edit";
301
+ }>>>;
302
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
303
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
304
+ createdAt: z.ZodString;
305
+ updatedAt: z.ZodString;
306
+ }, z.core.$strip>>>;
307
+ export declare const curationEvaluationRunSchema: z.ZodObject<{
308
+ evaluationRunId: z.ZodString;
309
+ businessProfileSlug: z.ZodString;
310
+ transcriptFingerprint: z.ZodString;
311
+ runKind: z.ZodEnum<{
312
+ rule_eval: "rule_eval";
313
+ scorecard_eval: "scorecard_eval";
314
+ compare: "compare";
315
+ fast_fit: "fast_fit";
316
+ full_fit: "full_fit";
317
+ slot_adequacy: "slot_adequacy";
318
+ }>;
319
+ triggerSource: z.ZodEnum<{
320
+ manual: "manual";
321
+ replay_auto: "replay_auto";
322
+ compare_auto: "compare_auto";
323
+ fit_judge: "fit_judge";
324
+ promotion_review: "promotion_review";
325
+ }>;
326
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
327
+ codex: "codex";
328
+ deterministic: "deterministic";
329
+ deterministic_v1: "deterministic_v1";
330
+ deterministic_configurable: "deterministic_configurable";
331
+ agent_codex: "agent_codex";
332
+ }>>>;
333
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
334
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
335
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
336
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
337
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
338
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
339
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
340
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
341
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
342
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
343
+ createdAt: z.ZodString;
344
+ }, z.core.$strip>;
345
+ export declare const curationRuleEvalCacheEntrySchema: z.ZodObject<{
346
+ cacheKey: z.ZodString;
347
+ businessProfileSlug: z.ZodString;
348
+ transcriptFingerprint: z.ZodString;
349
+ ruleId: z.ZodString;
350
+ ruleFingerprint: z.ZodString;
351
+ engine: z.ZodEnum<{
352
+ codex: "codex";
353
+ deterministic: "deterministic";
354
+ deterministic_v1: "deterministic_v1";
355
+ deterministic_configurable: "deterministic_configurable";
356
+ agent_codex: "agent_codex";
357
+ }>;
358
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
359
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
360
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
361
+ evalMode: z.ZodDefault<z.ZodString>;
362
+ passed: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
363
+ verdict: z.ZodDefault<z.ZodNullable<z.ZodString>>;
364
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
365
+ payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
366
+ createdAt: z.ZodString;
367
+ updatedAt: z.ZodString;
368
+ }, z.core.$strip>;
369
+ export declare const curationSlotEvaluationSchema: z.ZodObject<{
370
+ slotId: z.ZodString;
371
+ stage: z.ZodEnum<{
372
+ fast_fit: "fast_fit";
373
+ full_fit: "full_fit";
374
+ }>;
375
+ score: z.ZodNumber;
376
+ recommendedState: z.ZodEnum<{
377
+ fit_candidate: "fit_candidate";
378
+ rotation_candidate: "rotation_candidate";
379
+ ignore: "ignore";
380
+ }>;
381
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
382
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
383
+ }, z.core.$strip>;
384
+ export declare const curationCandidateRecordSchema: z.ZodObject<{
385
+ candidateId: z.ZodString;
386
+ businessProfileSlug: z.ZodString;
387
+ transcriptFingerprint: z.ZodString;
388
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
389
+ slotId: z.ZodString;
390
+ stage: z.ZodEnum<{
391
+ fast_fit: "fast_fit";
392
+ full_fit: "full_fit";
393
+ }>;
394
+ state: z.ZodEnum<{
395
+ rejected: "rejected";
396
+ retired: "retired";
397
+ fit_candidate: "fit_candidate";
398
+ rotation_candidate: "rotation_candidate";
399
+ approved: "approved";
400
+ }>;
401
+ score: z.ZodNumber;
402
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
403
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
404
+ createdAt: z.ZodString;
405
+ updatedAt: z.ZodString;
406
+ }, z.core.$strip>;
407
+ export declare const curationRotationDecisionRecordSchema: z.ZodObject<{
408
+ decisionId: z.ZodString;
409
+ businessProfileSlug: z.ZodString;
410
+ transcriptFingerprint: z.ZodString;
411
+ slotId: z.ZodString;
412
+ decision: z.ZodEnum<{
413
+ rejected: "rejected";
414
+ approved: "approved";
415
+ keep_candidate: "keep_candidate";
416
+ }>;
417
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
418
+ notes: z.ZodDefault<z.ZodNullable<z.ZodString>>;
419
+ registryCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
420
+ createdAt: z.ZodString;
421
+ }, z.core.$strip>;
422
+ export declare const curationSlotAdequacySnapshotSchema: z.ZodObject<{
423
+ snapshotId: z.ZodString;
424
+ businessProfileSlug: z.ZodString;
425
+ slotsFingerprint: z.ZodString;
426
+ rulesFingerprint: z.ZodString;
427
+ status: z.ZodEnum<{
428
+ healthy: "healthy";
429
+ watch: "watch";
430
+ refresh_required: "refresh_required";
431
+ }>;
432
+ coveredRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
433
+ missingRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
434
+ metrics: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
435
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
436
+ createdAt: z.ZodString;
437
+ }, z.core.$strip>;
438
+ export declare const curationUpsertTranscriptRecordRequestSchema: z.ZodObject<{
439
+ record: z.ZodObject<{
440
+ transcriptFingerprint: z.ZodString;
441
+ businessProfileSlug: z.ZodString;
442
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
443
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
444
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
445
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
446
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
447
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
448
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
449
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
450
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
451
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
452
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
453
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
454
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
455
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
456
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
457
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
458
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
459
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
460
+ fast_fit_auto: "fast_fit_auto";
461
+ full_fit_auto: "full_fit_auto";
462
+ human_edit: "human_edit";
463
+ }>>>;
464
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
465
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
466
+ createdAt: z.ZodString;
467
+ updatedAt: z.ZodString;
468
+ }, z.core.$strip>;
469
+ }, z.core.$strip>;
470
+ export declare const curationUpsertTranscriptRecordResponseSchema: z.ZodObject<{
471
+ record: z.ZodObject<{
472
+ transcriptFingerprint: z.ZodString;
473
+ businessProfileSlug: z.ZodString;
474
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
475
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
476
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
477
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
478
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
479
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
480
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
481
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
482
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
483
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
484
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
485
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
486
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
487
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
488
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
489
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
490
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
491
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
492
+ fast_fit_auto: "fast_fit_auto";
493
+ full_fit_auto: "full_fit_auto";
494
+ human_edit: "human_edit";
495
+ }>>>;
496
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
497
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
498
+ createdAt: z.ZodString;
499
+ updatedAt: z.ZodString;
500
+ }, z.core.$strip>;
501
+ }, z.core.$strip>;
502
+ export declare const curationRecordEvaluationRunRequestSchema: z.ZodObject<{
503
+ transcript: z.ZodOptional<z.ZodObject<{
504
+ transcriptFingerprint: z.ZodString;
505
+ businessProfileSlug: z.ZodString;
506
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
507
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
508
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
509
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
510
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
511
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
512
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
513
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
514
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
515
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
516
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
517
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
518
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
519
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
520
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
521
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
522
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
523
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
524
+ fast_fit_auto: "fast_fit_auto";
525
+ full_fit_auto: "full_fit_auto";
526
+ human_edit: "human_edit";
527
+ }>>>;
528
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
529
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
530
+ createdAt: z.ZodString;
531
+ updatedAt: z.ZodString;
532
+ }, z.core.$strip>>;
533
+ evaluation: z.ZodObject<{
534
+ evaluationRunId: z.ZodString;
535
+ businessProfileSlug: z.ZodString;
536
+ transcriptFingerprint: z.ZodString;
537
+ runKind: z.ZodEnum<{
538
+ rule_eval: "rule_eval";
539
+ scorecard_eval: "scorecard_eval";
540
+ compare: "compare";
541
+ fast_fit: "fast_fit";
542
+ full_fit: "full_fit";
543
+ slot_adequacy: "slot_adequacy";
544
+ }>;
545
+ triggerSource: z.ZodEnum<{
546
+ manual: "manual";
547
+ replay_auto: "replay_auto";
548
+ compare_auto: "compare_auto";
549
+ fit_judge: "fit_judge";
550
+ promotion_review: "promotion_review";
551
+ }>;
552
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
553
+ codex: "codex";
554
+ deterministic: "deterministic";
555
+ deterministic_v1: "deterministic_v1";
556
+ deterministic_configurable: "deterministic_configurable";
557
+ agent_codex: "agent_codex";
558
+ }>>>;
559
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
560
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
561
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
562
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
563
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
564
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
565
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
566
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
567
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
568
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
569
+ createdAt: z.ZodString;
570
+ }, z.core.$strip>;
571
+ }, z.core.$strip>;
572
+ export declare const curationRecordEvaluationRunResponseSchema: z.ZodObject<{
573
+ evaluation: z.ZodObject<{
574
+ evaluationRunId: z.ZodString;
575
+ businessProfileSlug: z.ZodString;
576
+ transcriptFingerprint: z.ZodString;
577
+ runKind: z.ZodEnum<{
578
+ rule_eval: "rule_eval";
579
+ scorecard_eval: "scorecard_eval";
580
+ compare: "compare";
581
+ fast_fit: "fast_fit";
582
+ full_fit: "full_fit";
583
+ slot_adequacy: "slot_adequacy";
584
+ }>;
585
+ triggerSource: z.ZodEnum<{
586
+ manual: "manual";
587
+ replay_auto: "replay_auto";
588
+ compare_auto: "compare_auto";
589
+ fit_judge: "fit_judge";
590
+ promotion_review: "promotion_review";
591
+ }>;
592
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
593
+ codex: "codex";
594
+ deterministic: "deterministic";
595
+ deterministic_v1: "deterministic_v1";
596
+ deterministic_configurable: "deterministic_configurable";
597
+ agent_codex: "agent_codex";
598
+ }>>>;
599
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
600
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
601
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
602
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
603
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
604
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
605
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
606
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
607
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
608
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
609
+ createdAt: z.ZodString;
610
+ }, z.core.$strip>;
611
+ }, z.core.$strip>;
612
+ export declare const curationGetRuleEvalCacheRequestSchema: z.ZodObject<{
613
+ cacheKey: z.ZodString;
614
+ }, z.core.$strip>;
615
+ export declare const curationGetRuleEvalCacheResponseSchema: z.ZodObject<{
616
+ entry: z.ZodDefault<z.ZodNullable<z.ZodObject<{
617
+ cacheKey: z.ZodString;
618
+ businessProfileSlug: z.ZodString;
619
+ transcriptFingerprint: z.ZodString;
620
+ ruleId: z.ZodString;
621
+ ruleFingerprint: z.ZodString;
622
+ engine: z.ZodEnum<{
623
+ codex: "codex";
624
+ deterministic: "deterministic";
625
+ deterministic_v1: "deterministic_v1";
626
+ deterministic_configurable: "deterministic_configurable";
627
+ agent_codex: "agent_codex";
628
+ }>;
629
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
630
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
631
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
632
+ evalMode: z.ZodDefault<z.ZodString>;
633
+ passed: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
634
+ verdict: z.ZodDefault<z.ZodNullable<z.ZodString>>;
635
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
636
+ payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
637
+ createdAt: z.ZodString;
638
+ updatedAt: z.ZodString;
639
+ }, z.core.$strip>>>;
640
+ }, z.core.$strip>;
641
+ export declare const curationRecordRuleEvalCacheEntryRequestSchema: z.ZodObject<{
642
+ transcript: z.ZodOptional<z.ZodObject<{
643
+ transcriptFingerprint: z.ZodString;
644
+ businessProfileSlug: z.ZodString;
645
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
646
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
647
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
648
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
649
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
650
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
651
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
652
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
653
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
654
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
655
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
656
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
657
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
658
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
659
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
660
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
661
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
662
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
663
+ fast_fit_auto: "fast_fit_auto";
664
+ full_fit_auto: "full_fit_auto";
665
+ human_edit: "human_edit";
666
+ }>>>;
667
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
668
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
669
+ createdAt: z.ZodString;
670
+ updatedAt: z.ZodString;
671
+ }, z.core.$strip>>;
672
+ evaluation: z.ZodOptional<z.ZodObject<{
673
+ evaluationRunId: z.ZodString;
674
+ businessProfileSlug: z.ZodString;
675
+ transcriptFingerprint: z.ZodString;
676
+ runKind: z.ZodEnum<{
677
+ rule_eval: "rule_eval";
678
+ scorecard_eval: "scorecard_eval";
679
+ compare: "compare";
680
+ fast_fit: "fast_fit";
681
+ full_fit: "full_fit";
682
+ slot_adequacy: "slot_adequacy";
683
+ }>;
684
+ triggerSource: z.ZodEnum<{
685
+ manual: "manual";
686
+ replay_auto: "replay_auto";
687
+ compare_auto: "compare_auto";
688
+ fit_judge: "fit_judge";
689
+ promotion_review: "promotion_review";
690
+ }>;
691
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
692
+ codex: "codex";
693
+ deterministic: "deterministic";
694
+ deterministic_v1: "deterministic_v1";
695
+ deterministic_configurable: "deterministic_configurable";
696
+ agent_codex: "agent_codex";
697
+ }>>>;
698
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
699
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
700
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
701
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
702
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
703
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
704
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
705
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
706
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
707
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
708
+ createdAt: z.ZodString;
709
+ }, z.core.$strip>>;
710
+ entry: z.ZodObject<{
711
+ cacheKey: z.ZodString;
712
+ businessProfileSlug: z.ZodString;
713
+ transcriptFingerprint: z.ZodString;
714
+ ruleId: z.ZodString;
715
+ ruleFingerprint: z.ZodString;
716
+ engine: z.ZodEnum<{
717
+ codex: "codex";
718
+ deterministic: "deterministic";
719
+ deterministic_v1: "deterministic_v1";
720
+ deterministic_configurable: "deterministic_configurable";
721
+ agent_codex: "agent_codex";
722
+ }>;
723
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
724
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
725
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
726
+ evalMode: z.ZodDefault<z.ZodString>;
727
+ passed: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
728
+ verdict: z.ZodDefault<z.ZodNullable<z.ZodString>>;
729
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
730
+ payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
731
+ createdAt: z.ZodString;
732
+ updatedAt: z.ZodString;
733
+ }, z.core.$strip>;
734
+ }, z.core.$strip>;
735
+ export declare const curationRecordRuleEvalCacheEntryResponseSchema: z.ZodObject<{
736
+ entry: z.ZodObject<{
737
+ cacheKey: z.ZodString;
738
+ businessProfileSlug: z.ZodString;
739
+ transcriptFingerprint: z.ZodString;
740
+ ruleId: z.ZodString;
741
+ ruleFingerprint: z.ZodString;
742
+ engine: z.ZodEnum<{
743
+ codex: "codex";
744
+ deterministic: "deterministic";
745
+ deterministic_v1: "deterministic_v1";
746
+ deterministic_configurable: "deterministic_configurable";
747
+ agent_codex: "agent_codex";
748
+ }>;
749
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
750
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
751
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
752
+ evalMode: z.ZodDefault<z.ZodString>;
753
+ passed: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
754
+ verdict: z.ZodDefault<z.ZodNullable<z.ZodString>>;
755
+ score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
756
+ payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
757
+ createdAt: z.ZodString;
758
+ updatedAt: z.ZodString;
759
+ }, z.core.$strip>;
760
+ }, z.core.$strip>;
761
+ export declare const curationRecordFastFitRequestSchema: z.ZodObject<{
762
+ transcript: z.ZodObject<{
763
+ transcriptFingerprint: z.ZodString;
764
+ businessProfileSlug: z.ZodString;
765
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
766
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
767
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
768
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
769
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
770
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
771
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
772
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
773
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
774
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
775
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
776
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
777
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
778
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
779
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
780
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
781
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
782
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
783
+ fast_fit_auto: "fast_fit_auto";
784
+ full_fit_auto: "full_fit_auto";
785
+ human_edit: "human_edit";
786
+ }>>>;
787
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
788
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
789
+ createdAt: z.ZodString;
790
+ updatedAt: z.ZodString;
791
+ }, z.core.$strip>;
792
+ evaluation: z.ZodOptional<z.ZodObject<{
793
+ evaluationRunId: z.ZodString;
794
+ businessProfileSlug: z.ZodString;
795
+ transcriptFingerprint: z.ZodString;
796
+ runKind: z.ZodEnum<{
797
+ rule_eval: "rule_eval";
798
+ scorecard_eval: "scorecard_eval";
799
+ compare: "compare";
800
+ fast_fit: "fast_fit";
801
+ full_fit: "full_fit";
802
+ slot_adequacy: "slot_adequacy";
803
+ }>;
804
+ triggerSource: z.ZodEnum<{
805
+ manual: "manual";
806
+ replay_auto: "replay_auto";
807
+ compare_auto: "compare_auto";
808
+ fit_judge: "fit_judge";
809
+ promotion_review: "promotion_review";
810
+ }>;
811
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
812
+ codex: "codex";
813
+ deterministic: "deterministic";
814
+ deterministic_v1: "deterministic_v1";
815
+ deterministic_configurable: "deterministic_configurable";
816
+ agent_codex: "agent_codex";
817
+ }>>>;
818
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
819
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
820
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
821
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
822
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
823
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
824
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
825
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
826
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
827
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
828
+ createdAt: z.ZodString;
829
+ }, z.core.$strip>>;
830
+ slotEvaluations: z.ZodArray<z.ZodObject<{
831
+ slotId: z.ZodString;
832
+ stage: z.ZodEnum<{
833
+ fast_fit: "fast_fit";
834
+ full_fit: "full_fit";
835
+ }>;
836
+ score: z.ZodNumber;
837
+ recommendedState: z.ZodEnum<{
838
+ fit_candidate: "fit_candidate";
839
+ rotation_candidate: "rotation_candidate";
840
+ ignore: "ignore";
841
+ }>;
842
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
843
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
844
+ }, z.core.$strip>>;
845
+ }, z.core.$strip>;
846
+ export declare const curationRecordFastFitResponseSchema: z.ZodObject<{
847
+ transcript: z.ZodObject<{
848
+ transcriptFingerprint: z.ZodString;
849
+ businessProfileSlug: z.ZodString;
850
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
851
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
852
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
853
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
854
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
855
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
856
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
857
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
858
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
859
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
860
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
861
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
862
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
863
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
864
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
865
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
866
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
867
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
868
+ fast_fit_auto: "fast_fit_auto";
869
+ full_fit_auto: "full_fit_auto";
870
+ human_edit: "human_edit";
871
+ }>>>;
872
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
873
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
874
+ createdAt: z.ZodString;
875
+ updatedAt: z.ZodString;
876
+ }, z.core.$strip>;
877
+ evaluation: z.ZodDefault<z.ZodNullable<z.ZodObject<{
878
+ evaluationRunId: z.ZodString;
879
+ businessProfileSlug: z.ZodString;
880
+ transcriptFingerprint: z.ZodString;
881
+ runKind: z.ZodEnum<{
882
+ rule_eval: "rule_eval";
883
+ scorecard_eval: "scorecard_eval";
884
+ compare: "compare";
885
+ fast_fit: "fast_fit";
886
+ full_fit: "full_fit";
887
+ slot_adequacy: "slot_adequacy";
888
+ }>;
889
+ triggerSource: z.ZodEnum<{
890
+ manual: "manual";
891
+ replay_auto: "replay_auto";
892
+ compare_auto: "compare_auto";
893
+ fit_judge: "fit_judge";
894
+ promotion_review: "promotion_review";
895
+ }>;
896
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
897
+ codex: "codex";
898
+ deterministic: "deterministic";
899
+ deterministic_v1: "deterministic_v1";
900
+ deterministic_configurable: "deterministic_configurable";
901
+ agent_codex: "agent_codex";
902
+ }>>>;
903
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
904
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
905
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
906
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
907
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
908
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
909
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
910
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
911
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
912
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
913
+ createdAt: z.ZodString;
914
+ }, z.core.$strip>>>;
915
+ candidates: z.ZodArray<z.ZodObject<{
916
+ candidateId: z.ZodString;
917
+ businessProfileSlug: z.ZodString;
918
+ transcriptFingerprint: z.ZodString;
919
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
920
+ slotId: z.ZodString;
921
+ stage: z.ZodEnum<{
922
+ fast_fit: "fast_fit";
923
+ full_fit: "full_fit";
924
+ }>;
925
+ state: z.ZodEnum<{
926
+ rejected: "rejected";
927
+ retired: "retired";
928
+ fit_candidate: "fit_candidate";
929
+ rotation_candidate: "rotation_candidate";
930
+ approved: "approved";
931
+ }>;
932
+ score: z.ZodNumber;
933
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
934
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
935
+ createdAt: z.ZodString;
936
+ updatedAt: z.ZodString;
937
+ }, z.core.$strip>>;
938
+ }, z.core.$strip>;
939
+ export declare const curationListHistoryRequestSchema: z.ZodObject<{
940
+ businessProfileSlug: z.ZodString;
941
+ transcriptFingerprint: z.ZodOptional<z.ZodString>;
942
+ runKinds: z.ZodDefault<z.ZodArray<z.ZodEnum<{
943
+ rule_eval: "rule_eval";
944
+ scorecard_eval: "scorecard_eval";
945
+ compare: "compare";
946
+ fast_fit: "fast_fit";
947
+ full_fit: "full_fit";
948
+ slot_adequacy: "slot_adequacy";
949
+ }>>>;
950
+ limit: z.ZodDefault<z.ZodNumber>;
951
+ }, z.core.$strip>;
952
+ export declare const curationListHistoryResponseSchema: z.ZodObject<{
953
+ runs: z.ZodArray<z.ZodObject<{
954
+ evaluationRunId: z.ZodString;
955
+ businessProfileSlug: z.ZodString;
956
+ transcriptFingerprint: z.ZodString;
957
+ runKind: z.ZodEnum<{
958
+ rule_eval: "rule_eval";
959
+ scorecard_eval: "scorecard_eval";
960
+ compare: "compare";
961
+ fast_fit: "fast_fit";
962
+ full_fit: "full_fit";
963
+ slot_adequacy: "slot_adequacy";
964
+ }>;
965
+ triggerSource: z.ZodEnum<{
966
+ manual: "manual";
967
+ replay_auto: "replay_auto";
968
+ compare_auto: "compare_auto";
969
+ fit_judge: "fit_judge";
970
+ promotion_review: "promotion_review";
971
+ }>;
972
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
973
+ codex: "codex";
974
+ deterministic: "deterministic";
975
+ deterministic_v1: "deterministic_v1";
976
+ deterministic_configurable: "deterministic_configurable";
977
+ agent_codex: "agent_codex";
978
+ }>>>;
979
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
980
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
981
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
982
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
983
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
984
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
985
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
986
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
987
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
988
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
989
+ createdAt: z.ZodString;
990
+ }, z.core.$strip>>;
991
+ transcripts: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
992
+ transcriptFingerprint: z.ZodString;
993
+ businessProfileSlug: z.ZodString;
994
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
995
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
996
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
997
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
998
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
999
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1000
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1001
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1002
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1003
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1004
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1005
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1006
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
1007
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
1008
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1009
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
1010
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1011
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1012
+ fast_fit_auto: "fast_fit_auto";
1013
+ full_fit_auto: "full_fit_auto";
1014
+ human_edit: "human_edit";
1015
+ }>>>;
1016
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1017
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1018
+ createdAt: z.ZodString;
1019
+ updatedAt: z.ZodString;
1020
+ }, z.core.$strip>>>;
1021
+ }, z.core.$strip>;
1022
+ export declare const curationListFitCandidatesRequestSchema: z.ZodObject<{
1023
+ businessProfileSlug: z.ZodString;
1024
+ slotId: z.ZodOptional<z.ZodString>;
1025
+ limit: z.ZodDefault<z.ZodNumber>;
1026
+ }, z.core.$strip>;
1027
+ export declare const curationListFitCandidatesResponseSchema: z.ZodObject<{
1028
+ candidates: z.ZodArray<z.ZodObject<{
1029
+ candidateId: z.ZodString;
1030
+ businessProfileSlug: z.ZodString;
1031
+ transcriptFingerprint: z.ZodString;
1032
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1033
+ slotId: z.ZodString;
1034
+ stage: z.ZodEnum<{
1035
+ fast_fit: "fast_fit";
1036
+ full_fit: "full_fit";
1037
+ }>;
1038
+ state: z.ZodEnum<{
1039
+ rejected: "rejected";
1040
+ retired: "retired";
1041
+ fit_candidate: "fit_candidate";
1042
+ rotation_candidate: "rotation_candidate";
1043
+ approved: "approved";
1044
+ }>;
1045
+ score: z.ZodNumber;
1046
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1047
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1048
+ createdAt: z.ZodString;
1049
+ updatedAt: z.ZodString;
1050
+ }, z.core.$strip>>;
1051
+ transcripts: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
1052
+ transcriptFingerprint: z.ZodString;
1053
+ businessProfileSlug: z.ZodString;
1054
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1055
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1056
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1057
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1058
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1059
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1060
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1061
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1062
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1063
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1064
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1065
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1066
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
1067
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
1068
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1069
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
1070
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1071
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1072
+ fast_fit_auto: "fast_fit_auto";
1073
+ full_fit_auto: "full_fit_auto";
1074
+ human_edit: "human_edit";
1075
+ }>>>;
1076
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1077
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1078
+ createdAt: z.ZodString;
1079
+ updatedAt: z.ZodString;
1080
+ }, z.core.$strip>>>;
1081
+ }, z.core.$strip>;
1082
+ export declare const curationRecordFullFitRequestSchema: z.ZodObject<{
1083
+ transcript: z.ZodObject<{
1084
+ transcriptFingerprint: z.ZodString;
1085
+ businessProfileSlug: z.ZodString;
1086
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1087
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1088
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1089
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1090
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1091
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1092
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1093
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1094
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1095
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1096
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1097
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1098
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
1099
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
1100
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1101
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
1102
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1103
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1104
+ fast_fit_auto: "fast_fit_auto";
1105
+ full_fit_auto: "full_fit_auto";
1106
+ human_edit: "human_edit";
1107
+ }>>>;
1108
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1109
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1110
+ createdAt: z.ZodString;
1111
+ updatedAt: z.ZodString;
1112
+ }, z.core.$strip>;
1113
+ evaluation: z.ZodOptional<z.ZodObject<{
1114
+ evaluationRunId: z.ZodString;
1115
+ businessProfileSlug: z.ZodString;
1116
+ transcriptFingerprint: z.ZodString;
1117
+ runKind: z.ZodEnum<{
1118
+ rule_eval: "rule_eval";
1119
+ scorecard_eval: "scorecard_eval";
1120
+ compare: "compare";
1121
+ fast_fit: "fast_fit";
1122
+ full_fit: "full_fit";
1123
+ slot_adequacy: "slot_adequacy";
1124
+ }>;
1125
+ triggerSource: z.ZodEnum<{
1126
+ manual: "manual";
1127
+ replay_auto: "replay_auto";
1128
+ compare_auto: "compare_auto";
1129
+ fit_judge: "fit_judge";
1130
+ promotion_review: "promotion_review";
1131
+ }>;
1132
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1133
+ codex: "codex";
1134
+ deterministic: "deterministic";
1135
+ deterministic_v1: "deterministic_v1";
1136
+ deterministic_configurable: "deterministic_configurable";
1137
+ agent_codex: "agent_codex";
1138
+ }>>>;
1139
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1140
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1141
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1142
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1143
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1144
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1145
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1146
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
1147
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1148
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1149
+ createdAt: z.ZodString;
1150
+ }, z.core.$strip>>;
1151
+ slotEvaluations: z.ZodArray<z.ZodObject<{
1152
+ slotId: z.ZodString;
1153
+ stage: z.ZodEnum<{
1154
+ fast_fit: "fast_fit";
1155
+ full_fit: "full_fit";
1156
+ }>;
1157
+ score: z.ZodNumber;
1158
+ recommendedState: z.ZodEnum<{
1159
+ fit_candidate: "fit_candidate";
1160
+ rotation_candidate: "rotation_candidate";
1161
+ ignore: "ignore";
1162
+ }>;
1163
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1164
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1165
+ }, z.core.$strip>>;
1166
+ }, z.core.$strip>;
1167
+ export declare const curationRecordFullFitResponseSchema: z.ZodObject<{
1168
+ transcript: z.ZodObject<{
1169
+ transcriptFingerprint: z.ZodString;
1170
+ businessProfileSlug: z.ZodString;
1171
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1172
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1173
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1174
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1175
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1176
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1177
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1178
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1179
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1180
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1181
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1182
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1183
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
1184
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
1185
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1186
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
1187
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1188
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1189
+ fast_fit_auto: "fast_fit_auto";
1190
+ full_fit_auto: "full_fit_auto";
1191
+ human_edit: "human_edit";
1192
+ }>>>;
1193
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1194
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1195
+ createdAt: z.ZodString;
1196
+ updatedAt: z.ZodString;
1197
+ }, z.core.$strip>;
1198
+ evaluation: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1199
+ evaluationRunId: z.ZodString;
1200
+ businessProfileSlug: z.ZodString;
1201
+ transcriptFingerprint: z.ZodString;
1202
+ runKind: z.ZodEnum<{
1203
+ rule_eval: "rule_eval";
1204
+ scorecard_eval: "scorecard_eval";
1205
+ compare: "compare";
1206
+ fast_fit: "fast_fit";
1207
+ full_fit: "full_fit";
1208
+ slot_adequacy: "slot_adequacy";
1209
+ }>;
1210
+ triggerSource: z.ZodEnum<{
1211
+ manual: "manual";
1212
+ replay_auto: "replay_auto";
1213
+ compare_auto: "compare_auto";
1214
+ fit_judge: "fit_judge";
1215
+ promotion_review: "promotion_review";
1216
+ }>;
1217
+ engine: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1218
+ codex: "codex";
1219
+ deterministic: "deterministic";
1220
+ deterministic_v1: "deterministic_v1";
1221
+ deterministic_configurable: "deterministic_configurable";
1222
+ agent_codex: "agent_codex";
1223
+ }>>>;
1224
+ executionProfileId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1225
+ modelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1226
+ reasoning: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1227
+ ruleId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1228
+ ruleFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1229
+ scorecardId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1230
+ scorecardFingerprint: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1231
+ forceReeval: z.ZodDefault<z.ZodBoolean>;
1232
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1233
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1234
+ createdAt: z.ZodString;
1235
+ }, z.core.$strip>>>;
1236
+ candidates: z.ZodArray<z.ZodObject<{
1237
+ candidateId: z.ZodString;
1238
+ businessProfileSlug: z.ZodString;
1239
+ transcriptFingerprint: z.ZodString;
1240
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1241
+ slotId: z.ZodString;
1242
+ stage: z.ZodEnum<{
1243
+ fast_fit: "fast_fit";
1244
+ full_fit: "full_fit";
1245
+ }>;
1246
+ state: z.ZodEnum<{
1247
+ rejected: "rejected";
1248
+ retired: "retired";
1249
+ fit_candidate: "fit_candidate";
1250
+ rotation_candidate: "rotation_candidate";
1251
+ approved: "approved";
1252
+ }>;
1253
+ score: z.ZodNumber;
1254
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1255
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1256
+ createdAt: z.ZodString;
1257
+ updatedAt: z.ZodString;
1258
+ }, z.core.$strip>>;
1259
+ }, z.core.$strip>;
1260
+ export declare const curationListRotationCandidatesRequestSchema: z.ZodObject<{
1261
+ businessProfileSlug: z.ZodString;
1262
+ slotId: z.ZodOptional<z.ZodString>;
1263
+ limit: z.ZodDefault<z.ZodNumber>;
1264
+ }, z.core.$strip>;
1265
+ export declare const curationListRotationCandidatesResponseSchema: z.ZodObject<{
1266
+ candidates: z.ZodArray<z.ZodObject<{
1267
+ candidateId: z.ZodString;
1268
+ businessProfileSlug: z.ZodString;
1269
+ transcriptFingerprint: z.ZodString;
1270
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1271
+ slotId: z.ZodString;
1272
+ stage: z.ZodEnum<{
1273
+ fast_fit: "fast_fit";
1274
+ full_fit: "full_fit";
1275
+ }>;
1276
+ state: z.ZodEnum<{
1277
+ rejected: "rejected";
1278
+ retired: "retired";
1279
+ fit_candidate: "fit_candidate";
1280
+ rotation_candidate: "rotation_candidate";
1281
+ approved: "approved";
1282
+ }>;
1283
+ score: z.ZodNumber;
1284
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1285
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1286
+ createdAt: z.ZodString;
1287
+ updatedAt: z.ZodString;
1288
+ }, z.core.$strip>>;
1289
+ transcripts: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
1290
+ transcriptFingerprint: z.ZodString;
1291
+ businessProfileSlug: z.ZodString;
1292
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1293
+ transcriptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1294
+ familyId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1295
+ conversationId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1296
+ sourceType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1297
+ runKind: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1298
+ actorMode: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1299
+ profileCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1300
+ rulesCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1301
+ platformCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1302
+ summaryShort: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1303
+ summaryMedium: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1304
+ businessTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
1305
+ stagesObserved: z.ZodDefault<z.ZodArray<z.ZodString>>;
1306
+ currentStageGuess: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1307
+ stageProgression: z.ZodDefault<z.ZodArray<z.ZodString>>;
1308
+ latestState: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1309
+ summarySource: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
1310
+ fast_fit_auto: "fast_fit_auto";
1311
+ full_fit_auto: "full_fit_auto";
1312
+ human_edit: "human_edit";
1313
+ }>>>;
1314
+ semanticMetadataUpdatedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1315
+ metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1316
+ createdAt: z.ZodString;
1317
+ updatedAt: z.ZodString;
1318
+ }, z.core.$strip>>>;
1319
+ }, z.core.$strip>;
1320
+ export declare const curationRecordRotationDecisionRequestSchema: z.ZodObject<{
1321
+ decision: z.ZodObject<{
1322
+ decisionId: z.ZodString;
1323
+ businessProfileSlug: z.ZodString;
1324
+ transcriptFingerprint: z.ZodString;
1325
+ slotId: z.ZodString;
1326
+ decision: z.ZodEnum<{
1327
+ rejected: "rejected";
1328
+ approved: "approved";
1329
+ keep_candidate: "keep_candidate";
1330
+ }>;
1331
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1332
+ notes: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1333
+ registryCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1334
+ createdAt: z.ZodString;
1335
+ }, z.core.$strip>;
1336
+ }, z.core.$strip>;
1337
+ export declare const curationRecordRotationDecisionResponseSchema: z.ZodObject<{
1338
+ decision: z.ZodObject<{
1339
+ decisionId: z.ZodString;
1340
+ businessProfileSlug: z.ZodString;
1341
+ transcriptFingerprint: z.ZodString;
1342
+ slotId: z.ZodString;
1343
+ decision: z.ZodEnum<{
1344
+ rejected: "rejected";
1345
+ approved: "approved";
1346
+ keep_candidate: "keep_candidate";
1347
+ }>;
1348
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1349
+ notes: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1350
+ registryCommitSha: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1351
+ createdAt: z.ZodString;
1352
+ }, z.core.$strip>;
1353
+ candidate: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1354
+ candidateId: z.ZodString;
1355
+ businessProfileSlug: z.ZodString;
1356
+ transcriptFingerprint: z.ZodString;
1357
+ transcriptPath: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1358
+ slotId: z.ZodString;
1359
+ stage: z.ZodEnum<{
1360
+ fast_fit: "fast_fit";
1361
+ full_fit: "full_fit";
1362
+ }>;
1363
+ state: z.ZodEnum<{
1364
+ rejected: "rejected";
1365
+ retired: "retired";
1366
+ fit_candidate: "fit_candidate";
1367
+ rotation_candidate: "rotation_candidate";
1368
+ approved: "approved";
1369
+ }>;
1370
+ score: z.ZodNumber;
1371
+ summary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1372
+ details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1373
+ createdAt: z.ZodString;
1374
+ updatedAt: z.ZodString;
1375
+ }, z.core.$strip>>>;
1376
+ }, z.core.$strip>;
1377
+ export declare const curationRecordSlotAdequacySnapshotRequestSchema: z.ZodObject<{
1378
+ snapshot: z.ZodObject<{
1379
+ snapshotId: z.ZodString;
1380
+ businessProfileSlug: z.ZodString;
1381
+ slotsFingerprint: z.ZodString;
1382
+ rulesFingerprint: z.ZodString;
1383
+ status: z.ZodEnum<{
1384
+ healthy: "healthy";
1385
+ watch: "watch";
1386
+ refresh_required: "refresh_required";
1387
+ }>;
1388
+ coveredRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
1389
+ missingRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
1390
+ metrics: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1391
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1392
+ createdAt: z.ZodString;
1393
+ }, z.core.$strip>;
1394
+ }, z.core.$strip>;
1395
+ export declare const curationRecordSlotAdequacySnapshotResponseSchema: z.ZodObject<{
1396
+ snapshot: z.ZodObject<{
1397
+ snapshotId: z.ZodString;
1398
+ businessProfileSlug: z.ZodString;
1399
+ slotsFingerprint: z.ZodString;
1400
+ rulesFingerprint: z.ZodString;
1401
+ status: z.ZodEnum<{
1402
+ healthy: "healthy";
1403
+ watch: "watch";
1404
+ refresh_required: "refresh_required";
1405
+ }>;
1406
+ coveredRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
1407
+ missingRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
1408
+ metrics: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1409
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1410
+ createdAt: z.ZodString;
1411
+ }, z.core.$strip>;
1412
+ }, z.core.$strip>;
1413
+ export declare const curationGetLatestSlotAdequacySnapshotRequestSchema: z.ZodObject<{
1414
+ businessProfileSlug: z.ZodString;
1415
+ }, z.core.$strip>;
1416
+ export declare const curationGetLatestSlotAdequacySnapshotResponseSchema: z.ZodObject<{
1417
+ snapshot: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1418
+ snapshotId: z.ZodString;
1419
+ businessProfileSlug: z.ZodString;
1420
+ slotsFingerprint: z.ZodString;
1421
+ rulesFingerprint: z.ZodString;
1422
+ status: z.ZodEnum<{
1423
+ healthy: "healthy";
1424
+ watch: "watch";
1425
+ refresh_required: "refresh_required";
1426
+ }>;
1427
+ coveredRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
1428
+ missingRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
1429
+ metrics: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1430
+ actorEmail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1431
+ createdAt: z.ZodString;
1432
+ }, z.core.$strip>>>;
1433
+ }, z.core.$strip>;
1434
+ export type CurationAdequacyStatus = z.infer<typeof curationAdequacyStatusSchema>;
1435
+ export type CurationAnalysisFile = z.infer<typeof curationAnalysisFileSchema>;
1436
+ export type CurationAnalysisSignalDefinition = z.infer<typeof curationAnalysisSignalDefinitionSchema>;
1437
+ export type CurationAnalysisStageDefinition = z.infer<typeof curationAnalysisStageDefinitionSchema>;
1438
+ export type CurationAnalysisTagDefinition = z.infer<typeof curationAnalysisTagDefinitionSchema>;
1439
+ export type CurationCandidateRecord = z.infer<typeof curationCandidateRecordSchema>;
1440
+ export type CurationCandidateState = z.infer<typeof curationCandidateStateSchema>;
1441
+ export type CurationEngine = z.infer<typeof curationEngineSchema>;
1442
+ export type CurationEvaluationRun = z.infer<typeof curationEvaluationRunSchema>;
1443
+ export type CurationGetLatestSlotAdequacySnapshotInput = z.infer<typeof curationGetLatestSlotAdequacySnapshotRequestSchema>;
1444
+ export type CurationGetLatestSlotAdequacySnapshotOutput = z.infer<typeof curationGetLatestSlotAdequacySnapshotResponseSchema>;
1445
+ export type CurationGetRuleEvalCacheInput = z.infer<typeof curationGetRuleEvalCacheRequestSchema>;
1446
+ export type CurationGetRuleEvalCacheOutput = z.infer<typeof curationGetRuleEvalCacheResponseSchema>;
1447
+ export type CurationListFitCandidatesInput = z.infer<typeof curationListFitCandidatesRequestSchema>;
1448
+ export type CurationListFitCandidatesOutput = z.infer<typeof curationListFitCandidatesResponseSchema>;
1449
+ export type CurationListHistoryInput = z.infer<typeof curationListHistoryRequestSchema>;
1450
+ export type CurationListHistoryOutput = z.infer<typeof curationListHistoryResponseSchema>;
1451
+ export type CurationListRotationCandidatesInput = z.infer<typeof curationListRotationCandidatesRequestSchema>;
1452
+ export type CurationListRotationCandidatesOutput = z.infer<typeof curationListRotationCandidatesResponseSchema>;
1453
+ export type CurationRecordEvaluationRunInput = z.infer<typeof curationRecordEvaluationRunRequestSchema>;
1454
+ export type CurationRecordEvaluationRunOutput = z.infer<typeof curationRecordEvaluationRunResponseSchema>;
1455
+ export type CurationRecordFastFitInput = z.infer<typeof curationRecordFastFitRequestSchema>;
1456
+ export type CurationRecordFastFitOutput = z.infer<typeof curationRecordFastFitResponseSchema>;
1457
+ export type CurationRecordFullFitInput = z.infer<typeof curationRecordFullFitRequestSchema>;
1458
+ export type CurationRecordFullFitOutput = z.infer<typeof curationRecordFullFitResponseSchema>;
1459
+ export type CurationRecordRotationDecisionInput = z.infer<typeof curationRecordRotationDecisionRequestSchema>;
1460
+ export type CurationRecordRotationDecisionOutput = z.infer<typeof curationRecordRotationDecisionResponseSchema>;
1461
+ export type CurationRecordRuleEvalCacheEntryInput = z.infer<typeof curationRecordRuleEvalCacheEntryRequestSchema>;
1462
+ export type CurationRecordRuleEvalCacheEntryOutput = z.infer<typeof curationRecordRuleEvalCacheEntryResponseSchema>;
1463
+ export type CurationRecordSlotAdequacySnapshotInput = z.infer<typeof curationRecordSlotAdequacySnapshotRequestSchema>;
1464
+ export type CurationRecordSlotAdequacySnapshotOutput = z.infer<typeof curationRecordSlotAdequacySnapshotResponseSchema>;
1465
+ export type CurationRecommendedState = z.infer<typeof curationRecommendedStateSchema>;
1466
+ export type CurationRotationDecision = z.infer<typeof curationRotationDecisionSchema>;
1467
+ export type CurationRotationDecisionRecord = z.infer<typeof curationRotationDecisionRecordSchema>;
1468
+ export type CurationRuleEvalCacheEntry = z.infer<typeof curationRuleEvalCacheEntrySchema>;
1469
+ export type CurationRunKind = z.infer<typeof curationRunKindSchema>;
1470
+ export type CurationSignal = z.infer<typeof curationSignalSchema>;
1471
+ export type CurationSlotAdequacySnapshot = z.infer<typeof curationSlotAdequacySnapshotSchema>;
1472
+ export type CurationSlotDefinition = z.infer<typeof curationSlotDefinitionSchema>;
1473
+ export type CurationSlotEvaluation = z.infer<typeof curationSlotEvaluationSchema>;
1474
+ export type CurationSlotEvaluationStage = z.infer<typeof curationSlotEvaluationStageSchema>;
1475
+ export type CurationSlotStatus = z.infer<typeof curationSlotStatusSchema>;
1476
+ export type CurationSlotsFile = z.infer<typeof curationSlotsFileSchema>;
1477
+ export type CurationTranscriptRecord = z.infer<typeof curationTranscriptRecordSchema>;
1478
+ export type CurationTranscriptRecordMap = z.infer<typeof curationTranscriptRecordMapSchema>;
1479
+ export type CurationTranscriptSummarySource = z.infer<typeof curationTranscriptSummarySourceSchema>;
1480
+ export type CuratedRegistryCase = z.infer<typeof curatedRegistryCaseSchema>;
1481
+ export type CuratedRegistryFile = z.infer<typeof curatedRegistryFileSchema>;
1482
+ export type CuratedRegistrySlot = z.infer<typeof curatedRegistrySlotSchema>;
1483
+ //# sourceMappingURL=curation.d.ts.map