@selleragent/api-contract 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.tsbuildinfo +1 -1
- package/dist/auth.d.ts +457 -0
- package/dist/auth.d.ts.map +1 -0
- package/dist/auth.js +122 -0
- package/dist/auth.js.map +1 -0
- package/dist/conversations.d.ts +135 -135
- package/dist/evaluations.d.ts +432 -0
- package/dist/evaluations.d.ts.map +1 -0
- package/dist/evaluations.js +69 -0
- package/dist/evaluations.js.map +1 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +49 -11
- package/dist/index.js.map +1 -1
- package/dist/judge-files.d.ts +330 -37
- package/dist/judge-files.d.ts.map +1 -1
- package/dist/judge-files.js +150 -6
- package/dist/judge-files.js.map +1 -1
- package/dist/operations.d.ts +2330 -985
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +118 -8
- package/dist/operations.js.map +1 -1
- package/dist/ops.d.ts +123 -123
- package/dist/runtime.d.ts +3 -3
- package/dist/semantic-eval.d.ts +16 -16
- package/package.json +1 -1
|
@@ -0,0 +1,432 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const evaluationsUpsertSuiteRunRequestSchema: z.ZodObject<{
|
|
3
|
+
record: z.ZodObject<{
|
|
4
|
+
suite_run_id: z.ZodString;
|
|
5
|
+
business_slug: z.ZodString;
|
|
6
|
+
suite_root: z.ZodString;
|
|
7
|
+
filter: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
8
|
+
status: z.ZodEnum<{
|
|
9
|
+
queued: "queued";
|
|
10
|
+
running: "running";
|
|
11
|
+
completed: "completed";
|
|
12
|
+
failed: "failed";
|
|
13
|
+
}>;
|
|
14
|
+
totals: z.ZodObject<{
|
|
15
|
+
total_cases: z.ZodDefault<z.ZodNumber>;
|
|
16
|
+
passed: z.ZodDefault<z.ZodNumber>;
|
|
17
|
+
soft_failed: z.ZodDefault<z.ZodNumber>;
|
|
18
|
+
failed: z.ZodDefault<z.ZodNumber>;
|
|
19
|
+
regressed: z.ZodDefault<z.ZodNumber>;
|
|
20
|
+
errored: z.ZodDefault<z.ZodNumber>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
started_at: z.ZodString;
|
|
23
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
24
|
+
summary_markdown: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
25
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
26
|
+
}, z.core.$strip>;
|
|
27
|
+
}, z.core.$strip>;
|
|
28
|
+
export declare const evaluationsUpsertSuiteRunResponseSchema: z.ZodObject<{
|
|
29
|
+
record: z.ZodObject<{
|
|
30
|
+
suite_run_id: z.ZodString;
|
|
31
|
+
business_slug: z.ZodString;
|
|
32
|
+
suite_root: z.ZodString;
|
|
33
|
+
filter: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
34
|
+
status: z.ZodEnum<{
|
|
35
|
+
queued: "queued";
|
|
36
|
+
running: "running";
|
|
37
|
+
completed: "completed";
|
|
38
|
+
failed: "failed";
|
|
39
|
+
}>;
|
|
40
|
+
totals: z.ZodObject<{
|
|
41
|
+
total_cases: z.ZodDefault<z.ZodNumber>;
|
|
42
|
+
passed: z.ZodDefault<z.ZodNumber>;
|
|
43
|
+
soft_failed: z.ZodDefault<z.ZodNumber>;
|
|
44
|
+
failed: z.ZodDefault<z.ZodNumber>;
|
|
45
|
+
regressed: z.ZodDefault<z.ZodNumber>;
|
|
46
|
+
errored: z.ZodDefault<z.ZodNumber>;
|
|
47
|
+
}, z.core.$strip>;
|
|
48
|
+
started_at: z.ZodString;
|
|
49
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
50
|
+
summary_markdown: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
51
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
52
|
+
}, z.core.$strip>;
|
|
53
|
+
}, z.core.$strip>;
|
|
54
|
+
export declare const evaluationsUpsertCaseRunRequestSchema: z.ZodObject<{
|
|
55
|
+
record: z.ZodObject<{
|
|
56
|
+
case_run_id: z.ZodString;
|
|
57
|
+
suite_run_id: z.ZodString;
|
|
58
|
+
business_slug: z.ZodString;
|
|
59
|
+
case_id: z.ZodString;
|
|
60
|
+
case_path: z.ZodString;
|
|
61
|
+
compare_mode: z.ZodEnum<{
|
|
62
|
+
optional: "optional";
|
|
63
|
+
off: "off";
|
|
64
|
+
required: "required";
|
|
65
|
+
}>;
|
|
66
|
+
compare_status: z.ZodEnum<{
|
|
67
|
+
regressed: "regressed";
|
|
68
|
+
off: "off";
|
|
69
|
+
missing: "missing";
|
|
70
|
+
preserved: "preserved";
|
|
71
|
+
improved: "improved";
|
|
72
|
+
changed: "changed";
|
|
73
|
+
unchanged: "unchanged";
|
|
74
|
+
}>;
|
|
75
|
+
status: z.ZodEnum<{
|
|
76
|
+
queued: "queued";
|
|
77
|
+
running: "running";
|
|
78
|
+
completed: "completed";
|
|
79
|
+
failed: "failed";
|
|
80
|
+
}>;
|
|
81
|
+
verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
82
|
+
error: "error";
|
|
83
|
+
failed: "failed";
|
|
84
|
+
passed: "passed";
|
|
85
|
+
soft_failed: "soft_failed";
|
|
86
|
+
regressed: "regressed";
|
|
87
|
+
}>>>;
|
|
88
|
+
transcript_path: z.ZodString;
|
|
89
|
+
replay_transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
90
|
+
scorecards: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
91
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
92
|
+
score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
93
|
+
semantic_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
94
|
+
pass: "pass";
|
|
95
|
+
soft_fail: "soft_fail";
|
|
96
|
+
fail: "fail";
|
|
97
|
+
inconclusive: "inconclusive";
|
|
98
|
+
contract_error: "contract_error";
|
|
99
|
+
}>>>;
|
|
100
|
+
check_failures: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
101
|
+
compare_regressions: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
102
|
+
started_at: z.ZodString;
|
|
103
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
104
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
105
|
+
}, z.core.$strip>;
|
|
106
|
+
}, z.core.$strip>;
|
|
107
|
+
export declare const evaluationsUpsertCaseRunResponseSchema: z.ZodObject<{
|
|
108
|
+
record: z.ZodObject<{
|
|
109
|
+
case_run_id: z.ZodString;
|
|
110
|
+
suite_run_id: z.ZodString;
|
|
111
|
+
business_slug: z.ZodString;
|
|
112
|
+
case_id: z.ZodString;
|
|
113
|
+
case_path: z.ZodString;
|
|
114
|
+
compare_mode: z.ZodEnum<{
|
|
115
|
+
optional: "optional";
|
|
116
|
+
off: "off";
|
|
117
|
+
required: "required";
|
|
118
|
+
}>;
|
|
119
|
+
compare_status: z.ZodEnum<{
|
|
120
|
+
regressed: "regressed";
|
|
121
|
+
off: "off";
|
|
122
|
+
missing: "missing";
|
|
123
|
+
preserved: "preserved";
|
|
124
|
+
improved: "improved";
|
|
125
|
+
changed: "changed";
|
|
126
|
+
unchanged: "unchanged";
|
|
127
|
+
}>;
|
|
128
|
+
status: z.ZodEnum<{
|
|
129
|
+
queued: "queued";
|
|
130
|
+
running: "running";
|
|
131
|
+
completed: "completed";
|
|
132
|
+
failed: "failed";
|
|
133
|
+
}>;
|
|
134
|
+
verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
135
|
+
error: "error";
|
|
136
|
+
failed: "failed";
|
|
137
|
+
passed: "passed";
|
|
138
|
+
soft_failed: "soft_failed";
|
|
139
|
+
regressed: "regressed";
|
|
140
|
+
}>>>;
|
|
141
|
+
transcript_path: z.ZodString;
|
|
142
|
+
replay_transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
143
|
+
scorecards: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
144
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
145
|
+
score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
146
|
+
semantic_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
147
|
+
pass: "pass";
|
|
148
|
+
soft_fail: "soft_fail";
|
|
149
|
+
fail: "fail";
|
|
150
|
+
inconclusive: "inconclusive";
|
|
151
|
+
contract_error: "contract_error";
|
|
152
|
+
}>>>;
|
|
153
|
+
check_failures: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
154
|
+
compare_regressions: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
155
|
+
started_at: z.ZodString;
|
|
156
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
157
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
158
|
+
}, z.core.$strip>;
|
|
159
|
+
}, z.core.$strip>;
|
|
160
|
+
export declare const evaluationsReplaceCheckResultsRequestSchema: z.ZodObject<{
|
|
161
|
+
caseRunId: z.ZodString;
|
|
162
|
+
results: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
163
|
+
check_result_id: z.ZodString;
|
|
164
|
+
suite_run_id: z.ZodString;
|
|
165
|
+
case_run_id: z.ZodString;
|
|
166
|
+
business_slug: z.ZodString;
|
|
167
|
+
case_id: z.ZodString;
|
|
168
|
+
check_id: z.ZodString;
|
|
169
|
+
check_use: z.ZodString;
|
|
170
|
+
severity: z.ZodEnum<{
|
|
171
|
+
critical: "critical";
|
|
172
|
+
major: "major";
|
|
173
|
+
minor: "minor";
|
|
174
|
+
}>;
|
|
175
|
+
passed: z.ZodBoolean;
|
|
176
|
+
details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
177
|
+
created_at: z.ZodString;
|
|
178
|
+
}, z.core.$strip>>>;
|
|
179
|
+
}, z.core.$strip>;
|
|
180
|
+
export declare const evaluationsReplaceCheckResultsResponseSchema: z.ZodObject<{
|
|
181
|
+
caseRunId: z.ZodString;
|
|
182
|
+
results: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
183
|
+
check_result_id: z.ZodString;
|
|
184
|
+
suite_run_id: z.ZodString;
|
|
185
|
+
case_run_id: z.ZodString;
|
|
186
|
+
business_slug: z.ZodString;
|
|
187
|
+
case_id: z.ZodString;
|
|
188
|
+
check_id: z.ZodString;
|
|
189
|
+
check_use: z.ZodString;
|
|
190
|
+
severity: z.ZodEnum<{
|
|
191
|
+
critical: "critical";
|
|
192
|
+
major: "major";
|
|
193
|
+
minor: "minor";
|
|
194
|
+
}>;
|
|
195
|
+
passed: z.ZodBoolean;
|
|
196
|
+
details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
197
|
+
created_at: z.ZodString;
|
|
198
|
+
}, z.core.$strip>>>;
|
|
199
|
+
}, z.core.$strip>;
|
|
200
|
+
export declare const evaluationsGetSuiteRunRequestSchema: z.ZodObject<{
|
|
201
|
+
businessProfileSlug: z.ZodString;
|
|
202
|
+
suiteRunId: z.ZodString;
|
|
203
|
+
}, z.core.$strip>;
|
|
204
|
+
export declare const evaluationsGetSuiteRunResponseSchema: z.ZodObject<{
|
|
205
|
+
record: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
206
|
+
suite_run_id: z.ZodString;
|
|
207
|
+
business_slug: z.ZodString;
|
|
208
|
+
suite_root: z.ZodString;
|
|
209
|
+
filter: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
210
|
+
status: z.ZodEnum<{
|
|
211
|
+
queued: "queued";
|
|
212
|
+
running: "running";
|
|
213
|
+
completed: "completed";
|
|
214
|
+
failed: "failed";
|
|
215
|
+
}>;
|
|
216
|
+
totals: z.ZodObject<{
|
|
217
|
+
total_cases: z.ZodDefault<z.ZodNumber>;
|
|
218
|
+
passed: z.ZodDefault<z.ZodNumber>;
|
|
219
|
+
soft_failed: z.ZodDefault<z.ZodNumber>;
|
|
220
|
+
failed: z.ZodDefault<z.ZodNumber>;
|
|
221
|
+
regressed: z.ZodDefault<z.ZodNumber>;
|
|
222
|
+
errored: z.ZodDefault<z.ZodNumber>;
|
|
223
|
+
}, z.core.$strip>;
|
|
224
|
+
started_at: z.ZodString;
|
|
225
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
226
|
+
summary_markdown: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
227
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
228
|
+
}, z.core.$strip>>>;
|
|
229
|
+
}, z.core.$strip>;
|
|
230
|
+
export declare const evaluationsListSuiteRunsRequestSchema: z.ZodObject<{
|
|
231
|
+
businessProfileSlug: z.ZodString;
|
|
232
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
233
|
+
queued: "queued";
|
|
234
|
+
running: "running";
|
|
235
|
+
completed: "completed";
|
|
236
|
+
failed: "failed";
|
|
237
|
+
}>>;
|
|
238
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
239
|
+
}, z.core.$strip>;
|
|
240
|
+
export declare const evaluationsListSuiteRunsResponseSchema: z.ZodObject<{
|
|
241
|
+
records: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
242
|
+
suite_run_id: z.ZodString;
|
|
243
|
+
business_slug: z.ZodString;
|
|
244
|
+
suite_root: z.ZodString;
|
|
245
|
+
filter: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
246
|
+
status: z.ZodEnum<{
|
|
247
|
+
queued: "queued";
|
|
248
|
+
running: "running";
|
|
249
|
+
completed: "completed";
|
|
250
|
+
failed: "failed";
|
|
251
|
+
}>;
|
|
252
|
+
totals: z.ZodObject<{
|
|
253
|
+
total_cases: z.ZodDefault<z.ZodNumber>;
|
|
254
|
+
passed: z.ZodDefault<z.ZodNumber>;
|
|
255
|
+
soft_failed: z.ZodDefault<z.ZodNumber>;
|
|
256
|
+
failed: z.ZodDefault<z.ZodNumber>;
|
|
257
|
+
regressed: z.ZodDefault<z.ZodNumber>;
|
|
258
|
+
errored: z.ZodDefault<z.ZodNumber>;
|
|
259
|
+
}, z.core.$strip>;
|
|
260
|
+
started_at: z.ZodString;
|
|
261
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
262
|
+
summary_markdown: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
263
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
264
|
+
}, z.core.$strip>>>;
|
|
265
|
+
}, z.core.$strip>;
|
|
266
|
+
export declare const evaluationsGetCaseRunRequestSchema: z.ZodObject<{
|
|
267
|
+
businessProfileSlug: z.ZodString;
|
|
268
|
+
caseRunId: z.ZodString;
|
|
269
|
+
}, z.core.$strip>;
|
|
270
|
+
export declare const evaluationsGetCaseRunResponseSchema: z.ZodObject<{
|
|
271
|
+
record: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
272
|
+
case_run_id: z.ZodString;
|
|
273
|
+
suite_run_id: z.ZodString;
|
|
274
|
+
business_slug: z.ZodString;
|
|
275
|
+
case_id: z.ZodString;
|
|
276
|
+
case_path: z.ZodString;
|
|
277
|
+
compare_mode: z.ZodEnum<{
|
|
278
|
+
optional: "optional";
|
|
279
|
+
off: "off";
|
|
280
|
+
required: "required";
|
|
281
|
+
}>;
|
|
282
|
+
compare_status: z.ZodEnum<{
|
|
283
|
+
regressed: "regressed";
|
|
284
|
+
off: "off";
|
|
285
|
+
missing: "missing";
|
|
286
|
+
preserved: "preserved";
|
|
287
|
+
improved: "improved";
|
|
288
|
+
changed: "changed";
|
|
289
|
+
unchanged: "unchanged";
|
|
290
|
+
}>;
|
|
291
|
+
status: z.ZodEnum<{
|
|
292
|
+
queued: "queued";
|
|
293
|
+
running: "running";
|
|
294
|
+
completed: "completed";
|
|
295
|
+
failed: "failed";
|
|
296
|
+
}>;
|
|
297
|
+
verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
298
|
+
error: "error";
|
|
299
|
+
failed: "failed";
|
|
300
|
+
passed: "passed";
|
|
301
|
+
soft_failed: "soft_failed";
|
|
302
|
+
regressed: "regressed";
|
|
303
|
+
}>>>;
|
|
304
|
+
transcript_path: z.ZodString;
|
|
305
|
+
replay_transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
306
|
+
scorecards: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
307
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
308
|
+
score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
309
|
+
semantic_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
310
|
+
pass: "pass";
|
|
311
|
+
soft_fail: "soft_fail";
|
|
312
|
+
fail: "fail";
|
|
313
|
+
inconclusive: "inconclusive";
|
|
314
|
+
contract_error: "contract_error";
|
|
315
|
+
}>>>;
|
|
316
|
+
check_failures: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
317
|
+
compare_regressions: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
318
|
+
started_at: z.ZodString;
|
|
319
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
320
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
321
|
+
}, z.core.$strip>>>;
|
|
322
|
+
}, z.core.$strip>;
|
|
323
|
+
export declare const evaluationsListCaseRunsRequestSchema: z.ZodObject<{
|
|
324
|
+
businessProfileSlug: z.ZodString;
|
|
325
|
+
suiteRunId: z.ZodOptional<z.ZodString>;
|
|
326
|
+
caseId: z.ZodOptional<z.ZodString>;
|
|
327
|
+
verdict: z.ZodOptional<z.ZodEnum<{
|
|
328
|
+
error: "error";
|
|
329
|
+
failed: "failed";
|
|
330
|
+
passed: "passed";
|
|
331
|
+
soft_failed: "soft_failed";
|
|
332
|
+
regressed: "regressed";
|
|
333
|
+
}>>;
|
|
334
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
335
|
+
}, z.core.$strip>;
|
|
336
|
+
export declare const evaluationsListCaseRunsResponseSchema: z.ZodObject<{
|
|
337
|
+
records: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
338
|
+
case_run_id: z.ZodString;
|
|
339
|
+
suite_run_id: z.ZodString;
|
|
340
|
+
business_slug: z.ZodString;
|
|
341
|
+
case_id: z.ZodString;
|
|
342
|
+
case_path: z.ZodString;
|
|
343
|
+
compare_mode: z.ZodEnum<{
|
|
344
|
+
optional: "optional";
|
|
345
|
+
off: "off";
|
|
346
|
+
required: "required";
|
|
347
|
+
}>;
|
|
348
|
+
compare_status: z.ZodEnum<{
|
|
349
|
+
regressed: "regressed";
|
|
350
|
+
off: "off";
|
|
351
|
+
missing: "missing";
|
|
352
|
+
preserved: "preserved";
|
|
353
|
+
improved: "improved";
|
|
354
|
+
changed: "changed";
|
|
355
|
+
unchanged: "unchanged";
|
|
356
|
+
}>;
|
|
357
|
+
status: z.ZodEnum<{
|
|
358
|
+
queued: "queued";
|
|
359
|
+
running: "running";
|
|
360
|
+
completed: "completed";
|
|
361
|
+
failed: "failed";
|
|
362
|
+
}>;
|
|
363
|
+
verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
364
|
+
error: "error";
|
|
365
|
+
failed: "failed";
|
|
366
|
+
passed: "passed";
|
|
367
|
+
soft_failed: "soft_failed";
|
|
368
|
+
regressed: "regressed";
|
|
369
|
+
}>>>;
|
|
370
|
+
transcript_path: z.ZodString;
|
|
371
|
+
replay_transcript_path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
372
|
+
scorecards: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
373
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
374
|
+
score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
375
|
+
semantic_verdict: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
|
|
376
|
+
pass: "pass";
|
|
377
|
+
soft_fail: "soft_fail";
|
|
378
|
+
fail: "fail";
|
|
379
|
+
inconclusive: "inconclusive";
|
|
380
|
+
contract_error: "contract_error";
|
|
381
|
+
}>>>;
|
|
382
|
+
check_failures: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
383
|
+
compare_regressions: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
384
|
+
started_at: z.ZodString;
|
|
385
|
+
finished_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
386
|
+
payload: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
387
|
+
}, z.core.$strip>>>;
|
|
388
|
+
}, z.core.$strip>;
|
|
389
|
+
export declare const evaluationsListCheckResultsRequestSchema: z.ZodObject<{
|
|
390
|
+
businessProfileSlug: z.ZodString;
|
|
391
|
+
suiteRunId: z.ZodOptional<z.ZodString>;
|
|
392
|
+
caseRunId: z.ZodOptional<z.ZodString>;
|
|
393
|
+
caseId: z.ZodOptional<z.ZodString>;
|
|
394
|
+
checkId: z.ZodOptional<z.ZodString>;
|
|
395
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
396
|
+
}, z.core.$strip>;
|
|
397
|
+
export declare const evaluationsListCheckResultsResponseSchema: z.ZodObject<{
|
|
398
|
+
records: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
399
|
+
check_result_id: z.ZodString;
|
|
400
|
+
suite_run_id: z.ZodString;
|
|
401
|
+
case_run_id: z.ZodString;
|
|
402
|
+
business_slug: z.ZodString;
|
|
403
|
+
case_id: z.ZodString;
|
|
404
|
+
check_id: z.ZodString;
|
|
405
|
+
check_use: z.ZodString;
|
|
406
|
+
severity: z.ZodEnum<{
|
|
407
|
+
critical: "critical";
|
|
408
|
+
major: "major";
|
|
409
|
+
minor: "minor";
|
|
410
|
+
}>;
|
|
411
|
+
passed: z.ZodBoolean;
|
|
412
|
+
details: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
413
|
+
created_at: z.ZodString;
|
|
414
|
+
}, z.core.$strip>>>;
|
|
415
|
+
}, z.core.$strip>;
|
|
416
|
+
export type EvaluationsUpsertSuiteRunInput = z.infer<typeof evaluationsUpsertSuiteRunRequestSchema>;
|
|
417
|
+
export type EvaluationsUpsertSuiteRunOutput = z.infer<typeof evaluationsUpsertSuiteRunResponseSchema>;
|
|
418
|
+
export type EvaluationsUpsertCaseRunInput = z.infer<typeof evaluationsUpsertCaseRunRequestSchema>;
|
|
419
|
+
export type EvaluationsUpsertCaseRunOutput = z.infer<typeof evaluationsUpsertCaseRunResponseSchema>;
|
|
420
|
+
export type EvaluationsReplaceCheckResultsInput = z.infer<typeof evaluationsReplaceCheckResultsRequestSchema>;
|
|
421
|
+
export type EvaluationsReplaceCheckResultsOutput = z.infer<typeof evaluationsReplaceCheckResultsResponseSchema>;
|
|
422
|
+
export type EvaluationsGetSuiteRunInput = z.infer<typeof evaluationsGetSuiteRunRequestSchema>;
|
|
423
|
+
export type EvaluationsGetSuiteRunOutput = z.infer<typeof evaluationsGetSuiteRunResponseSchema>;
|
|
424
|
+
export type EvaluationsListSuiteRunsInput = z.infer<typeof evaluationsListSuiteRunsRequestSchema>;
|
|
425
|
+
export type EvaluationsListSuiteRunsOutput = z.infer<typeof evaluationsListSuiteRunsResponseSchema>;
|
|
426
|
+
export type EvaluationsGetCaseRunInput = z.infer<typeof evaluationsGetCaseRunRequestSchema>;
|
|
427
|
+
export type EvaluationsGetCaseRunOutput = z.infer<typeof evaluationsGetCaseRunResponseSchema>;
|
|
428
|
+
export type EvaluationsListCaseRunsInput = z.infer<typeof evaluationsListCaseRunsRequestSchema>;
|
|
429
|
+
export type EvaluationsListCaseRunsOutput = z.infer<typeof evaluationsListCaseRunsResponseSchema>;
|
|
430
|
+
export type EvaluationsListCheckResultsInput = z.infer<typeof evaluationsListCheckResultsRequestSchema>;
|
|
431
|
+
export type EvaluationsListCheckResultsOutput = z.infer<typeof evaluationsListCheckResultsResponseSchema>;
|
|
432
|
+
//# sourceMappingURL=evaluations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"evaluations.d.ts","sourceRoot":"","sources":["../src/evaluations.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.evaluationsListCheckResultsResponseSchema = exports.evaluationsListCheckResultsRequestSchema = exports.evaluationsListCaseRunsResponseSchema = exports.evaluationsListCaseRunsRequestSchema = exports.evaluationsGetCaseRunResponseSchema = exports.evaluationsGetCaseRunRequestSchema = exports.evaluationsListSuiteRunsResponseSchema = exports.evaluationsListSuiteRunsRequestSchema = exports.evaluationsGetSuiteRunResponseSchema = exports.evaluationsGetSuiteRunRequestSchema = exports.evaluationsReplaceCheckResultsResponseSchema = exports.evaluationsReplaceCheckResultsRequestSchema = exports.evaluationsUpsertCaseRunResponseSchema = exports.evaluationsUpsertCaseRunRequestSchema = exports.evaluationsUpsertSuiteRunResponseSchema = exports.evaluationsUpsertSuiteRunRequestSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const judge_files_1 = require("./judge-files");
|
|
6
|
+
exports.evaluationsUpsertSuiteRunRequestSchema = zod_1.z.object({
|
|
7
|
+
record: judge_files_1.evaluationSuiteRunRecordSchema
|
|
8
|
+
});
|
|
9
|
+
exports.evaluationsUpsertSuiteRunResponseSchema = zod_1.z.object({
|
|
10
|
+
record: judge_files_1.evaluationSuiteRunRecordSchema
|
|
11
|
+
});
|
|
12
|
+
exports.evaluationsUpsertCaseRunRequestSchema = zod_1.z.object({
|
|
13
|
+
record: judge_files_1.evaluationCaseRunRecordSchema
|
|
14
|
+
});
|
|
15
|
+
exports.evaluationsUpsertCaseRunResponseSchema = zod_1.z.object({
|
|
16
|
+
record: judge_files_1.evaluationCaseRunRecordSchema
|
|
17
|
+
});
|
|
18
|
+
exports.evaluationsReplaceCheckResultsRequestSchema = zod_1.z.object({
|
|
19
|
+
caseRunId: zod_1.z.string().min(1),
|
|
20
|
+
results: zod_1.z.array(judge_files_1.evaluationCheckResultSchema).default([])
|
|
21
|
+
});
|
|
22
|
+
exports.evaluationsReplaceCheckResultsResponseSchema = zod_1.z.object({
|
|
23
|
+
caseRunId: zod_1.z.string().min(1),
|
|
24
|
+
results: zod_1.z.array(judge_files_1.evaluationCheckResultSchema).default([])
|
|
25
|
+
});
|
|
26
|
+
exports.evaluationsGetSuiteRunRequestSchema = zod_1.z.object({
|
|
27
|
+
businessProfileSlug: zod_1.z.string().min(1),
|
|
28
|
+
suiteRunId: zod_1.z.string().min(1)
|
|
29
|
+
});
|
|
30
|
+
exports.evaluationsGetSuiteRunResponseSchema = zod_1.z.object({
|
|
31
|
+
record: judge_files_1.evaluationSuiteRunRecordSchema.nullable().default(null)
|
|
32
|
+
});
|
|
33
|
+
exports.evaluationsListSuiteRunsRequestSchema = zod_1.z.object({
|
|
34
|
+
businessProfileSlug: zod_1.z.string().min(1),
|
|
35
|
+
status: judge_files_1.evaluationSuiteRunStatusSchema.optional(),
|
|
36
|
+
limit: zod_1.z.number().int().positive().max(500).default(50)
|
|
37
|
+
});
|
|
38
|
+
exports.evaluationsListSuiteRunsResponseSchema = zod_1.z.object({
|
|
39
|
+
records: zod_1.z.array(judge_files_1.evaluationSuiteRunRecordSchema).default([])
|
|
40
|
+
});
|
|
41
|
+
exports.evaluationsGetCaseRunRequestSchema = zod_1.z.object({
|
|
42
|
+
businessProfileSlug: zod_1.z.string().min(1),
|
|
43
|
+
caseRunId: zod_1.z.string().min(1)
|
|
44
|
+
});
|
|
45
|
+
exports.evaluationsGetCaseRunResponseSchema = zod_1.z.object({
|
|
46
|
+
record: judge_files_1.evaluationCaseRunRecordSchema.nullable().default(null)
|
|
47
|
+
});
|
|
48
|
+
exports.evaluationsListCaseRunsRequestSchema = zod_1.z.object({
|
|
49
|
+
businessProfileSlug: zod_1.z.string().min(1),
|
|
50
|
+
suiteRunId: zod_1.z.string().min(1).optional(),
|
|
51
|
+
caseId: zod_1.z.string().min(1).optional(),
|
|
52
|
+
verdict: judge_files_1.evaluationCaseVerdictSchema.optional(),
|
|
53
|
+
limit: zod_1.z.number().int().positive().max(500).default(100)
|
|
54
|
+
});
|
|
55
|
+
exports.evaluationsListCaseRunsResponseSchema = zod_1.z.object({
|
|
56
|
+
records: zod_1.z.array(judge_files_1.evaluationCaseRunRecordSchema).default([])
|
|
57
|
+
});
|
|
58
|
+
exports.evaluationsListCheckResultsRequestSchema = zod_1.z.object({
|
|
59
|
+
businessProfileSlug: zod_1.z.string().min(1),
|
|
60
|
+
suiteRunId: zod_1.z.string().min(1).optional(),
|
|
61
|
+
caseRunId: zod_1.z.string().min(1).optional(),
|
|
62
|
+
caseId: zod_1.z.string().min(1).optional(),
|
|
63
|
+
checkId: zod_1.z.string().min(1).optional(),
|
|
64
|
+
limit: zod_1.z.number().int().positive().max(1000).default(250)
|
|
65
|
+
});
|
|
66
|
+
exports.evaluationsListCheckResultsResponseSchema = zod_1.z.object({
|
|
67
|
+
records: zod_1.z.array(judge_files_1.evaluationCheckResultSchema).default([])
|
|
68
|
+
});
|
|
69
|
+
//# sourceMappingURL=evaluations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"evaluations.js","sourceRoot":"","sources":["../src/evaluations.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
export { authCheckAccessOperation, authCheckAccessRequestSchema, authCheckAccessResponseSchema, authCompleteMagicLinkRequestSchema, authCompleteMagicLinkResponseSchema, authAbandonCliLoginIntentOperation, authAbandonCliLoginIntentRequestSchema, authAbandonCliLoginIntentResponseSchema, authCompleteCliBrowserLoginOperation, authCompleteCliBrowserLoginRequestSchema, authCompleteCliBrowserLoginResponseSchema, authEnsureOperatorOperation, authEnsureOperatorRequestSchema, authEnsureOperatorResponseSchema, authGetCliBrowserLoginStateOperation, authCliBrowserLoginStateRequestSchema, authCliBrowserLoginStateResponseSchema, authCliBrowserLoginStateSchema, authGetCliLoginIntentOperation, authGetCliLoginIntentRequestSchema, authGetCliLoginIntentResponseSchema, authGetWorkspaceTrustPolicyOperation, authGetWorkspaceTrustPolicyRequestSchema, authGetWorkspaceTrustPolicyResponseSchema, authExchangeScenarioTokenRequestSchema, authExchangeScenarioTokenResponseSchema, authGetSessionOperation, authGetSessionRequestSchema, authGetSessionResponseSchema, authListSessionsOperation, authListSessionsRequestSchema, authListSessionsResponseSchema, authRevokeSessionOperation, authRevokeSessionRequestSchema, authRevokeSessionResponseSchema, authIssueDeployTokenOperation, authIssueDeployTokenRequestSchema, authIssueDeployTokenResponseSchema, authIssueScenarioTokenOperation, authIssueScenarioTokenRequestSchema, authIssueScenarioTokenResponseSchema, authIssueSystemAdminInviteOperation, authIssueSystemAdminInviteRequestSchema, authIssueSystemAdminInviteResponseSchema, authIssueWorkspaceInviteOperation, authIssueWorkspaceInviteRequestSchema, authIssueWorkspaceInviteResponseSchema, authInviteRecordSchema, authInviteRoleSchema, authInviteScopeSchema, authInviteStatusSchema, authListWorkspaceMembersOperation, authListWorkspaceMembersRequestSchema, authListWorkspaceMembersResponseSchema, authUpsertWorkspaceMemberOperation, authUpsertWorkspaceMemberRequestSchema, authUpsertWorkspaceMemberResponseSchema, authListSystemAdminsOperation, authListSystemAdminsRequestSchema, authListSystemAdminsResponseSchema, authListSystemAdminInvitesOperation, authListSystemAdminInvitesRequestSchema, authListSystemAdminInvitesResponseSchema, authListWorkspaceInvitesOperation, authListWorkspaceInvitesRequestSchema, authListWorkspaceInvitesResponseSchema, authRevokeSystemAdminInviteOperation, authRevokeSystemAdminInviteRequestSchema, authRevokeSystemAdminInviteResponseSchema, authRevokeWorkspaceInviteOperation, authRevokeWorkspaceInviteRequestSchema, authRevokeWorkspaceInviteResponseSchema, authSetWorkspaceTrustPolicyOperation, authSetWorkspaceTrustPolicyRequestSchema, authSetWorkspaceTrustPolicyResponseSchema, authWorkspaceTrustModeSchema, authWorkspaceTrustPolicySchema, authWorkspaceMemberEntrySchema, businessProfileMemberEntrySchema, businessProfileMembershipSchema, businessProfileSchema, businessProfileProjectBundleSchema, businessProfileProjectFileSchema, businessProfileProjectManifestSchema, businessProfileMediaAssetKindSchema, businessProfileMediaAssetSchema, businessProfileMediaFolderSchema, businessProfileMediaRegistrySchema, businessProfileProjectSecretRefSchema, businessProfileProjectSecretStatusSchema, businessProfileStatusSchema, businessProfileSourceProviderSchema, businessProfileAutoRolloutStatusSchema, businessProfilePublishJobSchema, businessProfilePublishJobStatusSchema, businessProfilePublishTriggerSourceSchema, businessProfileReleaseSchema, telegramIntegrationReleaseAssignmentSchema, businessProfileVersionSchema, businessProfileVersionSourceSchema, businessProfilesGetOperation, businessProfilesGetRequestSchema, businessProfilesGetResponseSchema, businessProfilesGetPublishJobOperation, businessProfilesGetPublishJobRequestSchema, businessProfilesGetPublishJobResponseSchema, businessProfilesCreateReleaseOperation, businessProfilesCreateReleaseRequestSchema, businessProfilesCreateReleaseResponseSchema, businessProfilesPromoteReleaseOperation, businessProfilesPromoteReleaseRequestSchema, businessProfilesPromoteReleaseResponseSchema, businessProfilesListMembersOperation, businessProfilesListMembersRequestSchema, businessProfilesListMembersResponseSchema, businessProfilesListOperation, businessProfilesListRequestSchema, businessProfilesListResponseSchema, businessProfilesListReleasesOperation, businessProfilesListReleasesRequestSchema, businessProfilesListReleasesResponseSchema, businessProfilesListVersionsOperation, businessProfilesListVersionsRequestSchema, businessProfilesListVersionsResponseSchema, businessProfilesStartPublishJobOperation, businessProfilesStartPublishJobRequestSchema, businessProfilesStartPublishJobResponseSchema, businessProfilesVerifyRepoAccessOperation, businessProfilesVerifyRepoAccessRequestSchema, businessProfilesVerifyRepoAccessResponseSchema, integrationsApproveTelegramBusinessAccountOperation, integrationsApproveTelegramBusinessAccountRequestSchema, integrationsApproveTelegramBusinessAccountResponseSchema, integrationsBlockTelegramBusinessAccountOperation, integrationsBlockTelegramBusinessAccountRequestSchema, integrationsBlockTelegramBusinessAccountResponseSchema, integrationsBindTelegramEmployeeOperation, integrationsBindTelegramEmployeeRequestSchema, integrationsBindTelegramEmployeeResponseSchema, integrationsAssignReleaseOperation, integrationsAssignReleaseRequestSchema, integrationsAssignReleaseResponseSchema, integrationsGetTelegramBotReleaseAssignmentOperation, integrationsGetTelegramBotReleaseAssignmentRequestSchema, integrationsGetTelegramBotReleaseAssignmentResponseSchema, integrationsSetTelegramBotAutoRolloutPolicyOperation, integrationsSetTelegramBotAutoRolloutPolicyRequestSchema, integrationsSetTelegramBotAutoRolloutPolicyResponseSchema, integrationsGetTelegramBusinessAccountOperation, integrationsGetTelegramBusinessAccountRequestSchema, integrationsGetTelegramBusinessAccountResponseSchema, integrationsGetTelegramEmployeeBindingStatusOperation, integrationsGetTelegramEmployeeBindingStatusRequestSchema, integrationsGetTelegramEmployeeBindingStatusResponseSchema, integrationsListTelegramBotsOperation, integrationsListTelegramBotsRequestSchema, integrationsListTelegramBotsResponseSchema, integrationsListTelegramBusinessAccountsOperation, integrationsListTelegramBusinessAccountsRequestSchema, integrationsListTelegramBusinessAccountsResponseSchema, integrationsListTelegramEmployeeBindingsOperation, integrationsListTelegramEmployeeBindingsRequestSchema, integrationsListTelegramEmployeeBindingsResponseSchema, integrationsListTelegramObservedUsersOperation, integrationsListTelegramObservedUsersRequestSchema, integrationsListTelegramObservedUsersResponseSchema, integrationsMigrateLegacyTelegramDefaultOperation, integrationsMigrateLegacyTelegramDefaultRequestSchema, integrationsMigrateLegacyTelegramDefaultResponseSchema, integrationsReconcileTelegramIntegrationOperation, integrationsReconcileTelegramIntegrationRequestSchema, integrationsReconcileTelegramIntegrationResponseSchema, integrationsRefreshTelegramBusinessAccountOperation, integrationsRefreshTelegramBusinessAccountRequestSchema, integrationsRefreshTelegramBusinessAccountResponseSchema, integrationsRevokeTelegramEmployeeBindingOperation, integrationsRevokeTelegramEmployeeBindingRequestSchema, integrationsRevokeTelegramEmployeeBindingResponseSchema, integrationsResyncTelegramEmployeeCommandsOperation, integrationsResyncTelegramEmployeeCommandsRequestSchema, integrationsResyncTelegramEmployeeCommandsResponseSchema, integrationsSyncTelegramCommandsOperation, integrationsSyncTelegramCommandsRequestSchema, integrationsSyncTelegramCommandsResponseSchema, integrationsSyncTelegramWebhookOperation, integrationsSyncTelegramWebhookRequestSchema, integrationsSyncTelegramWebhookResponseSchema, integrationsUpsertTelegramBotOperation, integrationsUpsertTelegramBotRequestSchema, integrationsUpsertTelegramBotResponseSchema, integrationsVerifyTelegramIntegrationOperation, integrationsVerifyTelegramIntegrationRequestSchema, integrationsVerifyTelegramIntegrationResponseSchema, authLogoutResponseSchema, authRequestMagicLinkOperation, authRequestMagicLinkRequestSchema, authRequestMagicLinkResponseSchema, authCliLoginIntentSchema, authCliLoginAttemptTokenSchema, authCliLoginIntentDeliveryModeSchema, authCliLoginIntentStatusSchema, authDeployActionSchema, authRequestCliLoginMagicLinkOperation, authRequestCliLoginMagicLinkRequestSchema, authRequestCliLoginMagicLinkResponseSchema, authStartCliLoginIntentOperation, authStartCliLoginIntentRequestSchema, authStartCliLoginIntentResponseSchema, authSessionSchema, authSessionRecordSchema, authSessionSourceSchema, opsAddOperatorNoteOperation, opsApplyLegacyReconcileOperation, opsApplySchemaMigrationsOperation, opsCreateBackupArtifactOperation, opsGetBackupArtifactOperation, opsGetDiagnosticsOperation, opsGetLegacyReconcileStatusOperation, opsGetReadinessOperation, opsGetRolloutExecutionOperation, opsGetRestoreDrillOperation, opsGetSchemaStatusOperation, opsGetConversationWorkspaceOperation, opsListConversationFeedOperation, opsListBackupArtifactsOperation, opsListRolloutExecutionsOperation, opsListRestoreDrillsOperation, opsRecordRolloutExecutionOperation, opsReconcileBusinessOperation, opsRefreshRuntimeProviderOperation, opsRefreshTelegramIntegrationOperation, opsRunRestoreDrillOperation, opsSendOperatorMessageOperation, opsSetOwnershipModeOperation, opsStartHandoffOperation, followUpsCompleteTaskOperation, followUpsEvaluateConversationOperation, followUpsListTasksOperation, curationGetLatestSlotAdequacySnapshotOperation, curationGetRuleEvalCacheOperation, curationListFitCandidatesOperation, curationListHistoryOperation, curationListRotationCandidatesOperation, curationRecordEvaluationRunOperation, curationRecordFastFitOperation, curationRecordFullFitOperation, curationRecordRotationDecisionOperation, curationRecordRuleEvalCacheEntryOperation, curationRecordSlotAdequacySnapshotOperation, curationUpsertTranscriptRecordOperation, conversationsGetContextOperation, conversationsGetReplyJobOperation, conversationsGetReplayJobOperation, conversationsListTimelineOperation, conversationsProcessInboundEventOperation, conversationsReplayTranscriptOperation, commerceCreateCartOperation, commerceCreateOrderSnapshotOperation, commerceGetCatalogOperation, commerceGetContextOperation, commerceQuoteDealOperation, commerceReplaceCartItemsOperation, commerceSeedCatalogOperation, contractCatalogSchema, getOperationCatalog, getOperationDefinition, isOperationId, operationCatalogEntrySchema, operationDefinitions, operationErrorEnvelopeSchema, operationKindSchema, operationRequestEnvelopeSchema, operationSuccessEnvelopeSchema, operatorAccessContextSchema, operatorAccountStatusSchema, operatorRecordSchema, operatorRoleSchema, platformErrorCodeSchema, platformErrorSchema, telegramBotIntegrationSchema, telegramBusinessAccountSchema, telegramBusinessBindingStatusSchema, telegramCommandActorClassSchema, telegramEmployeeBindingSchema, telegramEmployeeBindingStatusSchema, telegramIntegrationModeSchema, telegramObservedUserSchema, runtimeGetPackedContextOperation, runtimeDeleteModelProfileRequestSchema, runtimeDeleteModelProfileResponseSchema, runtimeFailureBackoffModeSchema, runtimeFailureBackoffSchema, runtimeFailurePolicyRuleSchema, runtimeFailurePolicySchema, runtimeGetEffectiveModelProfileRequestSchema, runtimeGetEffectiveModelProfileResponseSchema, runtimeGetUsageSummaryRequestSchema, runtimeGetUsageSummaryResponseSchema, runtimeCredentialSourceSchema, runtimeFailureCategorySchema, runtimeFallbackEventSchema, runtimeListFallbackEventsRequestSchema, runtimeListFallbackEventsResponseSchema, runtimeListModelProfilesRequestSchema, runtimeListModelProfilesResponseSchema, runtimeListProvidersRequestSchema, runtimeListProvidersResponseSchema, runtimeModelProfileRolesSchema, runtimeModelProfileSchema, runtimeModelProfileScopeSchema, runtimeModelRoleConfigSchema, runtimeVerifierConfigSchema, runtimeReconcileProvidersRequestSchema, runtimeReconcileProvidersResponseSchema, runtimeReconcileModelProfilesRequestSchema, runtimeReconcileModelProfilesResponseSchema, runtimeEffectiveModelProfileSchema, runtimeEffectiveModelProfileRolesSchema, runtimeEffectiveModelRoleConfigSchema, runtimeProviderCapabilitiesSchema, runtimeProviderKindSchema, runtimeProviderSchema, runtimeProviderScopeSchema, runtimeRoutingTargetSchema, runtimeStageKeySchema, runtimeUpsertModelProfileRequestSchema, runtimeUpsertModelProfileResponseSchema, runtimeUpsertProviderRequestSchema, runtimeUpsertProviderResponseSchema, runtimeUsageEventSchema, runtimeUsageEventStatusSchema, runtimeUsageSummarySchema, runtimeDeleteModelProfileOperation, runtimeGetEffectiveModelProfileOperation, runtimeGetUsageSummaryOperation, runtimeListDecisionTracesOperation, runtimeListFallbackEventsOperation, runtimeListModelProfilesOperation, runtimeListProvidersOperation, runtimeReconcileModelProfilesOperation, runtimeUpsertModelProfileOperation, runtimeUpsertProviderOperation, systemEchoOperation, systemHealthOperation, systemIntegrationStatusOperation, systemInfoOperation, customersEnsureIdentityOperation, customersGetContextOperation, customersPatchMemoryOperation, workspaceMembershipSchema, workspaceMembershipStatusSchema } from './operations';
|
|
1
|
+
export { authCheckAccessOperation, authCheckAccessRequestSchema, authCheckAccessResponseSchema, authCompleteMagicLinkRequestSchema, authCompleteMagicLinkResponseSchema, authAbandonCliLoginIntentOperation, authAbandonCliLoginIntentRequestSchema, authAbandonCliLoginIntentResponseSchema, authCompleteCliBrowserLoginOperation, authCompleteCliBrowserLoginRequestSchema, authCompleteCliBrowserLoginResponseSchema, authEnsureOperatorOperation, authEnsureOperatorRequestSchema, authEnsureOperatorResponseSchema, authGetCliBrowserLoginStateOperation, authCliBrowserLoginStateRequestSchema, authCliBrowserLoginStateResponseSchema, authCliBrowserLoginStateSchema, authGetCliLoginIntentOperation, authGetCliLoginIntentRequestSchema, authGetCliLoginIntentResponseSchema, authGetWorkspaceTrustPolicyOperation, authGetWorkspaceTrustPolicyRequestSchema, authGetWorkspaceTrustPolicyResponseSchema, authExchangeScenarioTokenRequestSchema, authExchangeScenarioTokenResponseSchema, authGetSessionOperation, authGetSessionRequestSchema, authGetSessionResponseSchema, authListSessionsOperation, authListSessionsRequestSchema, authListSessionsResponseSchema, authRevokeSessionOperation, authRevokeSessionRequestSchema, authRevokeSessionResponseSchema, authIssueDeployTokenOperation, authIssueDeployTokenRequestSchema, authIssueDeployTokenResponseSchema, authIssueScenarioTokenOperation, authIssueScenarioTokenRequestSchema, authIssueScenarioTokenResponseSchema, authIssueSystemAdminInviteOperation, authIssueSystemAdminInviteRequestSchema, authIssueSystemAdminInviteResponseSchema, authIssueWorkspaceInviteOperation, authIssueWorkspaceInviteRequestSchema, authIssueWorkspaceInviteResponseSchema, authInviteRecordSchema, authInviteRoleSchema, authInviteScopeSchema, authInviteStatusSchema, authListWorkspaceMembersOperation, authListWorkspaceMembersRequestSchema, authListWorkspaceMembersResponseSchema, authUpsertWorkspaceMemberOperation, authUpsertWorkspaceMemberRequestSchema, authUpsertWorkspaceMemberResponseSchema, authListSystemAdminsOperation, authListSystemAdminsRequestSchema, authListSystemAdminsResponseSchema, authListSystemAdminInvitesOperation, authListSystemAdminInvitesRequestSchema, authListSystemAdminInvitesResponseSchema, authListWorkspaceInvitesOperation, authListWorkspaceInvitesRequestSchema, authListWorkspaceInvitesResponseSchema, authRevokeSystemAdminInviteOperation, authRevokeSystemAdminInviteRequestSchema, authRevokeSystemAdminInviteResponseSchema, authRevokeWorkspaceInviteOperation, authRevokeWorkspaceInviteRequestSchema, authRevokeWorkspaceInviteResponseSchema, authSetWorkspaceTrustPolicyOperation, authSetWorkspaceTrustPolicyRequestSchema, authSetWorkspaceTrustPolicyResponseSchema, authWorkspaceTrustModeSchema, authWorkspaceTrustPolicySchema, authWorkspaceMemberEntrySchema, businessProfileMemberEntrySchema, businessProfileMembershipSchema, businessProfileSchema, businessProfileProjectBundleSchema, businessProfileProjectFileSchema, businessProfileProjectManifestSchema, businessProfileMediaAssetKindSchema, businessProfileMediaAssetSchema, businessProfileMediaFolderSchema, businessProfileMediaRegistrySchema, businessProfileProjectSecretRefSchema, businessProfileProjectSecretStatusSchema, businessProfileStatusSchema, businessProfileSourceProviderSchema, businessProfileAutoRolloutStatusSchema, businessProfilePublishJobSchema, businessProfilePublishJobStatusSchema, businessProfilePublishTriggerSourceSchema, businessProfileReleaseSchema, telegramIntegrationReleaseAssignmentSchema, businessProfileVersionSchema, businessProfileVersionSourceSchema, businessProfilesGetOperation, businessProfilesGetRequestSchema, businessProfilesGetResponseSchema, businessProfilesGetPublishJobOperation, businessProfilesGetPublishJobRequestSchema, businessProfilesGetPublishJobResponseSchema, businessProfilesCreateReleaseOperation, businessProfilesCreateReleaseRequestSchema, businessProfilesCreateReleaseResponseSchema, businessProfilesPromoteReleaseOperation, businessProfilesPromoteReleaseRequestSchema, businessProfilesPromoteReleaseResponseSchema, businessProfilesListMembersOperation, businessProfilesListMembersRequestSchema, businessProfilesListMembersResponseSchema, businessProfilesListOperation, businessProfilesListRequestSchema, businessProfilesListResponseSchema, businessProfilesListReleasesOperation, businessProfilesListReleasesRequestSchema, businessProfilesListReleasesResponseSchema, businessProfilesListVersionsOperation, businessProfilesListVersionsRequestSchema, businessProfilesListVersionsResponseSchema, businessProfilesStartPublishJobOperation, businessProfilesStartPublishJobRequestSchema, businessProfilesStartPublishJobResponseSchema, businessProfilesVerifyRepoAccessOperation, businessProfilesVerifyRepoAccessRequestSchema, businessProfilesVerifyRepoAccessResponseSchema, integrationsApproveTelegramBusinessAccountOperation, integrationsApproveTelegramBusinessAccountRequestSchema, integrationsApproveTelegramBusinessAccountResponseSchema, integrationsBlockTelegramBusinessAccountOperation, integrationsBlockTelegramBusinessAccountRequestSchema, integrationsBlockTelegramBusinessAccountResponseSchema, integrationsBindTelegramEmployeeOperation, integrationsBindTelegramEmployeeRequestSchema, integrationsBindTelegramEmployeeResponseSchema, integrationsAssignReleaseOperation, integrationsAssignReleaseRequestSchema, integrationsAssignReleaseResponseSchema, integrationsGetTelegramBotReleaseAssignmentOperation, integrationsGetTelegramBotReleaseAssignmentRequestSchema, integrationsGetTelegramBotReleaseAssignmentResponseSchema, integrationsSetTelegramBotAutoRolloutPolicyOperation, integrationsSetTelegramBotAutoRolloutPolicyRequestSchema, integrationsSetTelegramBotAutoRolloutPolicyResponseSchema, integrationsGetTelegramBusinessAccountOperation, integrationsGetTelegramBusinessAccountRequestSchema, integrationsGetTelegramBusinessAccountResponseSchema, integrationsGetTelegramEmployeeBindingStatusOperation, integrationsGetTelegramEmployeeBindingStatusRequestSchema, integrationsGetTelegramEmployeeBindingStatusResponseSchema, integrationsListTelegramBotsOperation, integrationsListTelegramBotsRequestSchema, integrationsListTelegramBotsResponseSchema, integrationsListTelegramBusinessAccountsOperation, integrationsListTelegramBusinessAccountsRequestSchema, integrationsListTelegramBusinessAccountsResponseSchema, integrationsListTelegramEmployeeBindingsOperation, integrationsListTelegramEmployeeBindingsRequestSchema, integrationsListTelegramEmployeeBindingsResponseSchema, integrationsListTelegramObservedUsersOperation, integrationsListTelegramObservedUsersRequestSchema, integrationsListTelegramObservedUsersResponseSchema, integrationsMigrateLegacyTelegramDefaultOperation, integrationsMigrateLegacyTelegramDefaultRequestSchema, integrationsMigrateLegacyTelegramDefaultResponseSchema, integrationsReconcileTelegramIntegrationOperation, integrationsReconcileTelegramIntegrationRequestSchema, integrationsReconcileTelegramIntegrationResponseSchema, integrationsRefreshTelegramBusinessAccountOperation, integrationsRefreshTelegramBusinessAccountRequestSchema, integrationsRefreshTelegramBusinessAccountResponseSchema, integrationsRevokeTelegramEmployeeBindingOperation, integrationsRevokeTelegramEmployeeBindingRequestSchema, integrationsRevokeTelegramEmployeeBindingResponseSchema, integrationsResyncTelegramEmployeeCommandsOperation, integrationsResyncTelegramEmployeeCommandsRequestSchema, integrationsResyncTelegramEmployeeCommandsResponseSchema, integrationsSyncTelegramCommandsOperation, integrationsSyncTelegramCommandsRequestSchema, integrationsSyncTelegramCommandsResponseSchema, integrationsSyncTelegramWebhookOperation, integrationsSyncTelegramWebhookRequestSchema, integrationsSyncTelegramWebhookResponseSchema, integrationsUpsertTelegramBotOperation, integrationsUpsertTelegramBotRequestSchema, integrationsUpsertTelegramBotResponseSchema, integrationsVerifyTelegramIntegrationOperation, integrationsVerifyTelegramIntegrationRequestSchema, integrationsVerifyTelegramIntegrationResponseSchema, authLogoutResponseSchema, authRequestMagicLinkOperation, authRequestMagicLinkRequestSchema, authRequestMagicLinkResponseSchema, authCliLoginIntentSchema, authCliLoginAttemptTokenSchema, authCliLoginIntentDeliveryModeSchema, authCliLoginIntentStatusSchema, authDeployActionSchema, authRequestCliLoginMagicLinkOperation, authRequestCliLoginMagicLinkRequestSchema, authRequestCliLoginMagicLinkResponseSchema, authStartCliLoginIntentOperation, authStartCliLoginIntentRequestSchema, authStartCliLoginIntentResponseSchema, authSessionSchema, authSessionRecordSchema, authSessionSourceSchema, opsAddOperatorNoteOperation, opsApplyLegacyReconcileOperation, opsApplySchemaMigrationsOperation, opsCreateBackupArtifactOperation, opsGetBackupArtifactOperation, opsGetDiagnosticsOperation, opsGetLegacyReconcileStatusOperation, opsGetReadinessOperation, opsGetRolloutExecutionOperation, opsGetRestoreDrillOperation, opsGetSchemaStatusOperation, opsGetConversationWorkspaceOperation, opsListConversationFeedOperation, opsListBackupArtifactsOperation, opsListRolloutExecutionsOperation, opsListRestoreDrillsOperation, opsRecordRolloutExecutionOperation, opsReconcileBusinessOperation, opsRefreshRuntimeProviderOperation, opsRefreshTelegramIntegrationOperation, opsRunRestoreDrillOperation, opsSendOperatorMessageOperation, opsSetOwnershipModeOperation, opsStartHandoffOperation, followUpsCompleteTaskOperation, followUpsEvaluateConversationOperation, followUpsListTasksOperation, curationGetLatestSlotAdequacySnapshotOperation, curationGetRuleEvalCacheOperation, curationListFitCandidatesOperation, curationListHistoryOperation, curationListRotationCandidatesOperation, curationRecordEvaluationRunOperation, curationRecordFastFitOperation, curationRecordFullFitOperation, curationRecordRotationDecisionOperation, curationRecordRuleEvalCacheEntryOperation, curationRecordSlotAdequacySnapshotOperation, curationUpsertTranscriptRecordOperation, evaluationsGetCaseRunOperation, evaluationsGetSuiteRunOperation, evaluationsListCaseRunsOperation, evaluationsListCheckResultsOperation, evaluationsListSuiteRunsOperation, evaluationsReplaceCheckResultsOperation, evaluationsUpsertCaseRunOperation, evaluationsUpsertSuiteRunOperation, conversationsGetContextOperation, conversationsGetReplyJobOperation, conversationsGetReplayJobOperation, conversationsListTimelineOperation, conversationsProcessInboundEventOperation, conversationsReplayTranscriptOperation, commerceCreateCartOperation, commerceCreateOrderSnapshotOperation, commerceGetCatalogOperation, commerceGetContextOperation, commerceQuoteDealOperation, commerceReplaceCartItemsOperation, commerceSeedCatalogOperation, contractCatalogSchema, getOperationCatalog, getOperationDefinition, isOperationId, operationCatalogEntrySchema, operationDefinitions, operationErrorEnvelopeSchema, operationKindSchema, operationRequestEnvelopeSchema, operationSuccessEnvelopeSchema, operatorAccessContextSchema, operatorAccountStatusSchema, operatorRecordSchema, operatorRoleSchema, platformErrorCodeSchema, platformErrorSchema, telegramBotIntegrationSchema, telegramBusinessAccountSchema, telegramBusinessBindingStatusSchema, telegramCommandActorClassSchema, telegramEmployeeBindingSchema, telegramEmployeeBindingStatusSchema, telegramIntegrationModeSchema, telegramObservedUserSchema, runtimeGetPackedContextOperation, runtimeDeleteModelProfileRequestSchema, runtimeDeleteModelProfileResponseSchema, runtimeFailureBackoffModeSchema, runtimeFailureBackoffSchema, runtimeFailurePolicyRuleSchema, runtimeFailurePolicySchema, runtimeGetEffectiveModelProfileRequestSchema, runtimeGetEffectiveModelProfileResponseSchema, runtimeGetUsageSummaryRequestSchema, runtimeGetUsageSummaryResponseSchema, runtimeCredentialSourceSchema, runtimeFailureCategorySchema, runtimeFallbackEventSchema, runtimeListFallbackEventsRequestSchema, runtimeListFallbackEventsResponseSchema, runtimeListModelProfilesRequestSchema, runtimeListModelProfilesResponseSchema, runtimeListProvidersRequestSchema, runtimeListProvidersResponseSchema, runtimeModelProfileRolesSchema, runtimeModelProfileSchema, runtimeModelProfileScopeSchema, runtimeModelRoleConfigSchema, runtimeVerifierConfigSchema, runtimeReconcileProvidersRequestSchema, runtimeReconcileProvidersResponseSchema, runtimeReconcileModelProfilesRequestSchema, runtimeReconcileModelProfilesResponseSchema, runtimeEffectiveModelProfileSchema, runtimeEffectiveModelProfileRolesSchema, runtimeEffectiveModelRoleConfigSchema, runtimeProviderCapabilitiesSchema, runtimeProviderKindSchema, runtimeProviderSchema, runtimeProviderScopeSchema, runtimeRoutingTargetSchema, runtimeStageKeySchema, runtimeUpsertModelProfileRequestSchema, runtimeUpsertModelProfileResponseSchema, runtimeUpsertProviderRequestSchema, runtimeUpsertProviderResponseSchema, runtimeUsageEventSchema, runtimeUsageEventStatusSchema, runtimeUsageSummarySchema, runtimeDeleteModelProfileOperation, runtimeGetEffectiveModelProfileOperation, runtimeGetUsageSummaryOperation, runtimeListDecisionTracesOperation, runtimeListFallbackEventsOperation, runtimeListModelProfilesOperation, runtimeListProvidersOperation, runtimeReconcileModelProfilesOperation, runtimeUpsertModelProfileOperation, runtimeUpsertProviderOperation, systemEchoOperation, systemHealthOperation, systemIntegrationStatusOperation, systemInfoOperation, customersEnsureIdentityOperation, customersGetContextOperation, customersPatchMemoryOperation, workspaceMembershipSchema, workspaceMembershipStatusSchema } from './operations';
|
|
2
2
|
export { operationsDriftEntrySchema, operationsDriftSeveritySchema, operationsEntityKindSchema, operationsReadinessCountsSchema, operationsRepairResultSchema, operationsReadinessResponseSchema, operationsSnapshotSourceKindSchema, operationsStatusSchema, operationsStatusSnapshotSchema, conversationFeedFilterSchema, conversationFeedItemSchema, handoffRecordSchema, opsGetDiagnosticsRequestSchema, opsGetDiagnosticsResponseSchema, notificationRoutingClassSchema, notificationRoutingRecipientSchema, notificationRoutingRecipientInputSchema, notificationRoutingRouteSchema, notificationRoutingProfileSchema, opsGetNotificationRoutingRequestSchema, opsGetNotificationRoutingResponseSchema, opsAddNotificationRoutingRecipientRequestSchema, opsAddNotificationRoutingRecipientResponseSchema, opsRemoveNotificationRoutingRecipientRequestSchema, opsRemoveNotificationRoutingRecipientResponseSchema, opsGetReadinessRequestSchema, opsGetReadinessResponseSchema, opsGetRolloutExecutionRequestSchema, opsGetRolloutExecutionResponseSchema, linkedConversationSummarySchema, operatorActorSchema, operatorNoteSchema, opsAddOperatorNoteRequestSchema, opsAddOperatorNoteResponseSchema, opsApplyLegacyReconcileRequestSchema, opsApplyLegacyReconcileResponseSchema, opsApplySchemaMigrationsRequestSchema, opsApplySchemaMigrationsResponseSchema, backupArtifactCoverageSchema, backupArtifactEncryptionSchema, backupArtifactFormatSchema, backupArtifactKindSchema, backupArtifactManifestSchema, backupArtifactSourceKindSchema, opsCreateBackupArtifactRequestSchema, opsCreateBackupArtifactResponseSchema, opsGetBackupArtifactRequestSchema, opsGetBackupArtifactResponseSchema, opsGetConversationWorkspaceRequestSchema, opsGetConversationWorkspaceResponseSchema, opsGetLegacyReconcileStatusRequestSchema, opsGetLegacyReconcileStatusResponseSchema, opsListConversationFeedRequestSchema, opsListConversationFeedResponseSchema, opsListBackupArtifactsRequestSchema, opsListBackupArtifactsResponseSchema, opsListReleaseVerificationsRequestSchema, opsListReleaseVerificationsResponseSchema, opsListRolloutExecutionsRequestSchema, opsListRolloutExecutionsResponseSchema, opsListRestoreDrillsRequestSchema, opsListRestoreDrillsResponseSchema, opsGetReleaseVerificationRequestSchema, opsGetReleaseVerificationResponseSchema, opsRecordRolloutExecutionRequestSchema, opsRecordRolloutExecutionResponseSchema, opsRecordReleaseVerificationRequestSchema, opsRecordReleaseVerificationResponseSchema, opsReconcileBusinessRequestSchema, opsReconcileBusinessResponseSchema, opsRefreshRuntimeProviderRequestSchema, opsRefreshRuntimeProviderResponseSchema, opsRefreshTelegramIntegrationRequestSchema, opsRefreshTelegramIntegrationResponseSchema, opsGetRestoreDrillRequestSchema, opsGetRestoreDrillResponseSchema, opsGetSchemaStatusRequestSchema, opsGetSchemaStatusResponseSchema, opsRunRestoreDrillRequestSchema, opsRunRestoreDrillResponseSchema, legacyReconcileItemSchema, legacyReconcileKindSchema, legacyReconcileResultSchema, legacyReconcileStatusSchema, opsSendOperatorMessageRequestSchema, opsSendOperatorMessageResponseSchema, opsSetOwnershipModeRequestSchema, opsSetOwnershipModeResponseSchema, restoreDrillCheckSchema, restoreDrillRecordSchema, restoreDrillTargetKindSchema, releaseVerificationPhaseRecordSchema, releaseVerificationRecordSchema, releaseVerificationVerdictSchema, rolloutCodeRefSchema, rolloutExecutionRecordSchema, rolloutExecutionStatusSchema, rolloutPhaseRecordSchema, rolloutPhaseStatusSchema, schemaMigrationApplyModeSchema, schemaMigrationChecksumMismatchSchema, schemaMigrationDefinitionSchema, schemaMigrationLedgerEntrySchema, schemaMigrationSourceKindSchema, schemaMigrationStatusSchema, schemaMigrationStorageModeSchema, opsStartHandoffRequestSchema, opsStartHandoffResponseSchema } from './ops';
|
|
3
3
|
export type { BackupArtifactCoverage, BackupArtifactEncryption, BackupArtifactKind, BackupArtifactManifest, BackupArtifactSourceKind, LegacyReconcileItem, LegacyReconcileKind, LegacyReconcileResult, LegacyReconcileStatus, OperationsDriftEntry, OperationsRepairResult, OperationsReadinessResponse, OperationsStatusSnapshot, NotificationRoutingClass, NotificationRoutingRecipient, NotificationRoutingRecipientInput, NotificationRoutingRoute, NotificationRoutingProfile, OpsGetNotificationRoutingInput, OpsGetNotificationRoutingOutput, OpsAddNotificationRoutingRecipientInput, OpsAddNotificationRoutingRecipientOutput, OpsApplyLegacyReconcileInput, OpsApplyLegacyReconcileOutput, OpsRemoveNotificationRoutingRecipientInput, OpsRemoveNotificationRoutingRecipientOutput, OpsApplySchemaMigrationsInput, OpsApplySchemaMigrationsOutput, OpsCreateBackupArtifactInput, OpsCreateBackupArtifactOutput, OpsGetBackupArtifactInput, OpsGetBackupArtifactOutput, OpsGetDiagnosticsInput, OpsGetDiagnosticsOutput, OpsGetLegacyReconcileStatusInput, OpsGetLegacyReconcileStatusOutput, OpsGetReleaseVerificationInput, OpsGetReleaseVerificationOutput, OpsGetReadinessInput, OpsGetReadinessOutput, OpsGetRolloutExecutionInput, OpsGetRolloutExecutionOutput, OpsGetRestoreDrillInput, OpsGetRestoreDrillOutput, OpsGetSchemaStatusInput, OpsGetSchemaStatusOutput, OpsListBackupArtifactsInput, OpsListBackupArtifactsOutput, OpsListReleaseVerificationsInput, OpsListReleaseVerificationsOutput, OpsListRolloutExecutionsInput, OpsListRolloutExecutionsOutput, OpsListRestoreDrillsInput, OpsListRestoreDrillsOutput, OpsRecordRolloutExecutionInput, OpsRecordRolloutExecutionOutput, OpsRecordReleaseVerificationInput, OpsRecordReleaseVerificationOutput, OpsReconcileBusinessInput, OpsReconcileBusinessOutput, OpsRefreshRuntimeProviderInput, OpsRefreshRuntimeProviderOutput, OpsRefreshTelegramIntegrationInput, OpsRefreshTelegramIntegrationOutput, OpsRunRestoreDrillInput, OpsRunRestoreDrillOutput, RestoreDrillCheck, RestoreDrillRecord, RestoreDrillTargetKind, ReleaseVerificationPhaseRecord, ReleaseVerificationRecord, ReleaseVerificationVerdict, RolloutCodeRef, RolloutExecutionRecord, RolloutExecutionStatus, RolloutPhaseRecord, RolloutPhaseStatus, SchemaMigrationChecksumMismatch, SchemaMigrationDefinition, SchemaMigrationLedgerEntry, SchemaMigrationSourceKind, SchemaMigrationStatus } from './ops';
|
|
4
4
|
export { curationAnalysisActorSchema, curationAnalysisExpressionSchema, curationAnalysisFileSchema, curationAnalysisScopeSchema, curationAnalysisSignalDefinitionSchema, curationAnalysisStageDefinitionSchema, curationAnalysisTagDefinitionSchema, curationAnalysisTermMatchModeSchema, curationAdequacyStatusSchema, curationCandidateRecordSchema, curationCandidateStateSchema, curationEngineSchema, curationEvaluationRunSchema, curationFastFitProfileSchema, curationGetLatestSlotAdequacySnapshotRequestSchema, curationGetLatestSlotAdequacySnapshotResponseSchema, curationGetRuleEvalCacheRequestSchema, curationGetRuleEvalCacheResponseSchema, curationListFitCandidatesRequestSchema, curationListFitCandidatesResponseSchema, curationListHistoryRequestSchema, curationListHistoryResponseSchema, curationListRotationCandidatesRequestSchema, curationListRotationCandidatesResponseSchema, curationRecommendedStateSchema, curationRecordEvaluationRunRequestSchema, curationRecordEvaluationRunResponseSchema, curationRecordFastFitRequestSchema, curationRecordFastFitResponseSchema, curationRecordFullFitRequestSchema, curationRecordFullFitResponseSchema, curationRecordRotationDecisionRequestSchema, curationRecordRotationDecisionResponseSchema, curationRecordRuleEvalCacheEntryRequestSchema, curationRecordRuleEvalCacheEntryResponseSchema, curationRecordSlotAdequacySnapshotRequestSchema, curationRecordSlotAdequacySnapshotResponseSchema, curationRotationDecisionRecordSchema, curationRotationDecisionSchema, curationRuleEvalCacheEntrySchema, curationRunKindSchema, curationSignalSchema, curationSlotAdequacySnapshotSchema, curationSlotDefinitionSchema, curationSlotEvaluationSchema, curationSlotEvaluationStageSchema, curationSlotsFileSchema, curationSlotStatusSchema, curationTranscriptRecordSchema, curationTranscriptRecordMapSchema, curationTranscriptSummarySourceSchema, curationTriggerSourceSchema, curatedRegistryCaseSchema, curatedRegistryFileSchema, curatedRegistrySlotSchema, curationUpsertTranscriptRecordRequestSchema, curationUpsertTranscriptRecordResponseSchema } from './curation';
|
|
5
|
+
export { evaluationsGetCaseRunRequestSchema, evaluationsGetCaseRunResponseSchema, evaluationsGetSuiteRunRequestSchema, evaluationsGetSuiteRunResponseSchema, evaluationsListCaseRunsRequestSchema, evaluationsListCaseRunsResponseSchema, evaluationsListCheckResultsRequestSchema, evaluationsListCheckResultsResponseSchema, evaluationsListSuiteRunsRequestSchema, evaluationsListSuiteRunsResponseSchema, evaluationsReplaceCheckResultsRequestSchema, evaluationsReplaceCheckResultsResponseSchema, evaluationsUpsertCaseRunRequestSchema, evaluationsUpsertCaseRunResponseSchema, evaluationsUpsertSuiteRunRequestSchema, evaluationsUpsertSuiteRunResponseSchema } from './evaluations';
|
|
5
6
|
export { followUpActorSchema, followUpActorTypeSchema, followUpCompletionOutcomeSchema, followUpEvaluationSchema, followUpGhostedClassSchema, followUpPolicyActionSchema, followUpTaskKindSchema, followUpTaskSchema, followUpTaskStatusSchema, followUpsCompleteTaskRequestSchema, followUpsCompleteTaskResponseSchema, followUpsEvaluateConversationRequestSchema, followUpsEvaluateConversationResponseSchema, followUpsListTasksRequestSchema, followUpsListTasksResponseSchema } from './followups';
|
|
6
7
|
export { assistArtifactKindSchema, assistArtifactSchema, assistArtifactStatusSchema, assistModeSchema, attachmentInputSchema, attachmentKindSchema, attachmentSchema, conversationBusinessConnectionSchema, conversationChannelKindSchema, conversationContextSchema, conversationEventSchema, conversationReplyBurstRecordSchema, conversationReplyBurstStatusSchema, conversationReplyBurstSummarySchema, conversationReplyJobErrorSchema, conversationReplyJobRecordSchema, conversationReplyJobStatusSchema, conversationReplyJobSummarySchema, conversationReplayJobErrorSchema, conversationReplayJobRecordSchema, conversationReplayJobStatusSchema, conversationReplayJobSummarySchema, conversationSchema, inboundEventKindSchema, messageSchema, ownershipModeSchema, sendModeSchema, conversationStatusSchema, conversationsGetContextRequestSchema, conversationsGetContextResponseSchema, conversationsGetReplyJobRequestSchema, conversationsGetReplyJobResponseSchema, conversationsGetReplayJobRequestSchema, conversationsGetReplayJobResponseSchema, conversationsListTimelineRequestSchema, conversationsListTimelineResponseSchema, conversationsProcessInboundEventRequestSchema, conversationsProcessInboundEventResponseSchema, conversationsReplayTranscriptRequestSchema, conversationsReplayTranscriptResponseSchema, messageAuthorKindSchema, messageDeliveryKindSchema, outboundDispatchSchema, timelineEntryKindSchema, timelineEntrySchema } from './conversations';
|
|
7
|
-
export { canonicalConversationContextSchema, canonicalConversationHeaderSchema, canonicalConversationParticipantSchema, canonicalConversationSourceSchema, canonicalConversationCoverageSchema, canonicalConversationFocusSchema, canonicalConversationLineageSchema, canonicalConversationImportProvenanceSchema, canonicalConversationProfileProvenanceSchema, canonicalConversationRuntimeProvenanceSchema, canonicalConversationSummarySchema, canonicalConversationTraceRefSchema, canonicalConversationTranscriptSchema, canonicalConversationTurnAttachmentKindSchema, canonicalConversationTurnAttachmentSchema, canonicalConversationTurnSchema, canonicalJudgeCompareReportSchema, canonicalJudgeCompareRuleDeltaSchema, canonicalJudgeCompareSideSchema, canonicalJudgeRuleRunSchema, canonicalJudgeScorecardReportSchema, canonicalJudgeTranscriptFamilyMemberSchema, canonicalJudgeTranscriptFamilyReportSchema, judgeFileSchemaVersionSchema, judgeCompareDeltaKindSchema, judgeRuleAcceptanceFileSchema, judgeRuleApplyToSchema, judgeRuleClauseFileSchema, judgeRuleEpisodeHintActorSchema, judgeRuleEpisodeHintSchema, judgeRuleEpisodeSelectionSchema, judgeRuleEpisodeSelectionStrategySchema, judgeRuleFileSchema, judgeRuntimeEngineSchema, judgeScorecardFileSchema, judgeScorecardModeSchema, judgeScorecardPolicySchema, judgeScorecardRuleEntrySchema, judgeScorecardRuntimeSchema, judgeSeveritySchema } from './judge-files';
|
|
8
|
+
export { canonicalConversationContextSchema, canonicalConversationHeaderSchema, canonicalConversationParticipantSchema, canonicalConversationSourceSchema, canonicalConversationCoverageSchema, canonicalConversationFocusSchema, canonicalConversationLineageSchema, canonicalConversationImportProvenanceSchema, canonicalConversationProfileProvenanceSchema, canonicalConversationRuntimeProvenanceSchema, canonicalConversationSummarySchema, canonicalConversationTraceRefSchema, canonicalConversationTranscriptSchema, canonicalConversationTurnAttachmentKindSchema, canonicalConversationTurnAttachmentSchema, canonicalConversationTurnSchema, canonicalJudgeCompareReportSchema, canonicalJudgeCompareRuleDeltaSchema, canonicalJudgeCompareSideSchema, canonicalJudgeRuleRunSchema, canonicalJudgeScorecardReportSchema, canonicalJudgeTranscriptFamilyMemberSchema, canonicalJudgeTranscriptFamilyReportSchema, evaluationCaseRunRecordSchema, evaluationCaseRunStatusSchema, evaluationCaseVerdictSchema, evaluationCheckResultSchema, evaluationCompareStatusSchema, evaluationSuiteRunRecordSchema, evaluationSuiteRunStatusSchema, judgeFileSchemaVersionSchema, judgeAuthoringTranscriptFileSchema, judgeAuthoringTranscriptTurnSchema, judgeCaseCompareModeSchema, judgeCaseFileSchema, judgeCompareDeltaKindSchema, judgeRuleAcceptanceFileSchema, judgeRuleApplyToSchema, judgeRuleClauseFileSchema, judgeRuleEpisodeHintActorSchema, judgeRuleEpisodeHintSchema, judgeRuleEpisodeSelectionSchema, judgeRuleEpisodeSelectionStrategySchema, judgeRuleFileSchema, judgeRuntimeEngineSchema, judgeScorecardCheckFileSchema, judgeScorecardFileSchema, judgeScorecardModeSchema, judgeScorecardPolicySchema, judgeScorecardRuleEntrySchema, judgeScorecardRuntimeSchema, judgeSeveritySchema } from './judge-files';
|
|
8
9
|
export { expectationContractSchema, semanticEvalContextLevelSchema, semanticEvalContextPolicySchema, semanticEvalEvidenceIndexEntrySchema, semanticEvalFindingStatusSchema, semanticEvalMessageSchema, semanticEvalTargetKindSchema, semanticEvalVerdictSchema, semanticEvidenceRefSchema, semanticExpectationClauseSchema, semanticJudgeContractErrorSchema, semanticJudgeExecutionEnvelopeSchema, semanticJudgeFindingSchema, semanticJudgeInputFullSchema, semanticJudgeInputMinimalSchema, semanticJudgeInputPacketSchema, semanticJudgeInputWindowedSchema, semanticJudgeResultSchema, semanticJudgeRunMetadataSchema } from './semantic-eval';
|
|
9
10
|
export { cartPatchOperationSchema, cartPatchOperationTypeSchema, decisionActionOutcomeSchema, decisionActionSchema, decisionActionTypeSchema, decisionClassificationSchema, runtimeDecisionExecutionPayloadSchema, decisionEnvelopeSchema, decisionTraceSchema, messageReviewOutputSchema, retrievedDocRefSchema, runtimeVerificationIssueSchema, runtimeVerificationIssueTypeSchema, runtimeVerificationOutputSchema, runtimeDecisionDraftOutboundPlanResponseSchema, runtimeDecisionFinalOutboundPlanResponseSchema, runtimeDecisionRequestMediaFoldersSchema, runtimeDecisionRequestMediaFolderContentsSchema, runtimeExecutionProfileSchema, runtimeGenerationAttemptKindSchema, runtimeGenerationAttemptSchema, runtimeGenerationAttemptStatusSchema, runtimeGenerationStageSchema, runtimeProviderAttemptSchema, runtimeProviderAttemptStatusSchema, runtimeMediaAssetDescriptorSchema, runtimeMediaAssetKindSchema, runtimeChannelSendMessageSchema, runtimeMediaDiscoveryRequestKindSchema, runtimeMediaDiscoveryTraceEntrySchema, runtimeMediaFolderContentsSliceSchema, runtimeMediaFolderDescriptorSchema, runtimeNextStepSchema, runtimeNextStepTypeSchema, runtimeUsageSchema, runtimeDecisionModeSchema, runtimeDecisionStatusSchema, runtimeDocKindSchema, runtimeGenerationModeSchema, runtimeGetPackedContextRequestSchema, runtimeGetPackedContextResponseSchema, runtimeHistoricalSegmentSummarySchema, runtimeHistorySegmentSchema, runtimeHistorySegmentStatusSchema, runtimeListDecisionTracesRequestSchema, runtimeListDecisionTracesResponseSchema, runtimeOutboundPlanKindSchema, runtimeOutboundPlanSchema, runtimeOutboundPlanStepSchema, runtimeOutboundStepTypeSchema, runtimePackedContextSchema, runtimePromptCacheMetadataSchema, runtimePackedTranscriptMessageSchema, runtimePromptMetaSchema, runtimeReadinessSchema, runtimeReplyToneSchema, runtimeStepHistoryEntrySchema, runtimeStructuredDecisionResponseSchema, policyDocumentSchema, strategyCardSchema, strategyDocumentSchema, turnAnalysisSchema } from './runtime';
|
|
10
11
|
export { cartItemInputSchema, cartItemSchema, cartSchema, cartStatusSchema, cartTotalsSchema, catalogProductInputSchema, catalogProductKindSchema, catalogProductSchema, catalogProductStatusSchema, catalogRelationInputSchema, catalogRelationSchema, catalogRelationTypeSchema, commerceContextSchema, commerceCreateCartRequestSchema, commerceCreateCartResponseSchema, commerceCreateOrderSnapshotRequestSchema, commerceCreateOrderSnapshotResponseSchema, commerceGetCatalogRequestSchema, commerceGetCatalogResponseSchema, commerceGetContextRequestSchema, commerceGetContextResponseSchema, commerceQuoteDealRequestSchema, commerceQuoteDealResponseSchema, commerceReplaceCartItemsRequestSchema, commerceReplaceCartItemsResponseSchema, commerceSeedCatalogRequestSchema, commerceSeedCatalogResponseSchema, dealSchema, dealStatusSchema, orderSnapshotSchema, orderSnapshotStatusSchema, pricingBreakdownSchema, pricingModelSchema, quoteSnapshotSchema, validationIssueCodeSchema, validationIssueSchema } from './commerce';
|
|
@@ -14,8 +15,9 @@ export type { AuthCheckAccessInput, AuthCheckAccessOutput, AuthCompleteMagicLink
|
|
|
14
15
|
export type { AssistArtifact, Attachment, AttachmentInput, Conversation, ConversationBusinessConnection, ConversationContext, ConversationEvent, ConversationReplyBurstRecord, ConversationReplyBurstStatus, ConversationReplyBurstSummary, ConversationReplyJobError, ConversationReplyJobRecord, ConversationReplyJobStatus, ConversationReplyJobSummary, ConversationReplayJobError, ConversationReplayJobRecord, ConversationReplayJobStatus, ConversationReplayJobSummary, ConversationMessage, ConversationsGetContextInput, ConversationsGetContextOutput, ConversationsGetReplyJobInput, ConversationsGetReplyJobOutput, ConversationsGetReplayJobInput, ConversationsGetReplayJobOutput, ConversationsListTimelineInput, ConversationsListTimelineOutput, ConversationsProcessInboundEventInput, ConversationsProcessInboundEventOutput, ConversationsReplayTranscriptInput, ConversationsReplayTranscriptOutput, OutboundDispatch, TimelineEntry } from './conversations';
|
|
15
16
|
export type { ConversationFeedItem, HandoffRecord, LinkedConversationSummary, OutboundPlanDiagnostics, OutboundPlanMediaDiscoveryRecord, OutboundPlanSelectedAsset, OutboundPlanStepDiagnostics, OperatorActor, OperatorNote, OpsAddOperatorNoteInput, OpsAddOperatorNoteOutput, OpsGetConversationWorkspaceInput, OpsGetConversationWorkspaceOutput, OpsListConversationFeedInput, OpsListConversationFeedOutput, OpsSendOperatorMessageInput, OpsSendOperatorMessageOutput, OpsSetOwnershipModeInput, OpsSetOwnershipModeOutput, OpsStartHandoffInput, OpsStartHandoffOutput } from './ops';
|
|
16
17
|
export type { CurationAdequacyStatus, CurationCandidateRecord, CurationCandidateState, CurationEngine, CurationEvaluationRun, CurationGetLatestSlotAdequacySnapshotInput, CurationGetLatestSlotAdequacySnapshotOutput, CurationGetRuleEvalCacheInput, CurationGetRuleEvalCacheOutput, CurationAnalysisFile, CurationAnalysisSignalDefinition, CurationAnalysisStageDefinition, CurationAnalysisTagDefinition, CurationListFitCandidatesInput, CurationListFitCandidatesOutput, CurationListHistoryInput, CurationListHistoryOutput, CurationListRotationCandidatesInput, CurationListRotationCandidatesOutput, CurationRecordEvaluationRunInput, CurationRecordEvaluationRunOutput, CurationRecordFastFitInput, CurationRecordFastFitOutput, CurationRecordFullFitInput, CurationRecordFullFitOutput, CurationRecordRotationDecisionInput, CurationRecordRotationDecisionOutput, CurationRecordRuleEvalCacheEntryInput, CurationRecordRuleEvalCacheEntryOutput, CurationRecordSlotAdequacySnapshotInput, CurationRecordSlotAdequacySnapshotOutput, CurationRecommendedState, CurationRotationDecision, CurationRotationDecisionRecord, CurationRuleEvalCacheEntry, CurationRunKind, CurationSignal, CurationSlotAdequacySnapshot, CurationSlotDefinition, CurationSlotEvaluation, CurationSlotEvaluationStage, CurationSlotsFile, CurationSlotStatus, CurationTranscriptRecord, CurationTranscriptRecordMap, CurationTranscriptSummarySource, CuratedRegistryCase, CuratedRegistryFile, CuratedRegistrySlot, } from './curation';
|
|
18
|
+
export type { EvaluationsGetCaseRunInput, EvaluationsGetCaseRunOutput, EvaluationsGetSuiteRunInput, EvaluationsGetSuiteRunOutput, EvaluationsListCaseRunsInput, EvaluationsListCaseRunsOutput, EvaluationsListCheckResultsInput, EvaluationsListCheckResultsOutput, EvaluationsListSuiteRunsInput, EvaluationsListSuiteRunsOutput, EvaluationsReplaceCheckResultsInput, EvaluationsReplaceCheckResultsOutput, EvaluationsUpsertCaseRunInput, EvaluationsUpsertCaseRunOutput, EvaluationsUpsertSuiteRunInput, EvaluationsUpsertSuiteRunOutput } from './evaluations';
|
|
17
19
|
export type { FollowUpActor, FollowUpActorType, FollowUpCompletionOutcome, FollowUpEvaluation, FollowUpGhostedClass, FollowUpPolicyAction, FollowUpTask, FollowUpTaskKind, FollowUpTaskStatus, FollowUpsCompleteTaskInput, FollowUpsCompleteTaskOutput, FollowUpsEvaluateConversationInput, FollowUpsEvaluateConversationOutput, FollowUpsListTasksInput, FollowUpsListTasksOutput } from './followups';
|
|
18
|
-
export type { CanonicalConversationContext, CanonicalConversationHeader, CanonicalConversationParticipant, CanonicalConversationSource, CanonicalConversationCoverage, CanonicalConversationFocus, CanonicalConversationLineage, CanonicalConversationImportProvenance, CanonicalConversationProfileProvenance, CanonicalConversationRuntimeProvenance, CanonicalConversationSummary, CanonicalConversationTraceRef, CanonicalConversationTranscript, CanonicalConversationTurnAttachment, CanonicalConversationTurnAttachmentKind, CanonicalConversationTurn, CanonicalJudgeCompareReport, CanonicalJudgeCompareRuleDelta, CanonicalJudgeCompareSide, CanonicalJudgeRuleRun, CanonicalJudgeScorecardReport, CanonicalJudgeTranscriptFamilyMember, CanonicalJudgeTranscriptFamilyReport, JudgeCompareDeltaKind, JudgeRuleAcceptanceFile, JudgeRuleClauseFile, JudgeRuleEpisodeHint, JudgeRuleEpisodeSelection, JudgeRuleFile, JudgeScorecardFile, JudgeScorecardPolicy, JudgeScorecardRuleEntry, JudgeScorecardRuntime } from './judge-files';
|
|
20
|
+
export type { CanonicalConversationContext, CanonicalConversationHeader, CanonicalConversationParticipant, CanonicalConversationSource, CanonicalConversationCoverage, CanonicalConversationFocus, CanonicalConversationLineage, CanonicalConversationImportProvenance, CanonicalConversationProfileProvenance, CanonicalConversationRuntimeProvenance, CanonicalConversationSummary, CanonicalConversationTraceRef, CanonicalConversationTranscript, CanonicalConversationTurnAttachment, CanonicalConversationTurnAttachmentKind, CanonicalConversationTurn, CanonicalJudgeCompareReport, CanonicalJudgeCompareRuleDelta, CanonicalJudgeCompareSide, CanonicalJudgeRuleRun, CanonicalJudgeScorecardReport, CanonicalJudgeTranscriptFamilyMember, CanonicalJudgeTranscriptFamilyReport, EvaluationCaseRunRecord, EvaluationCaseRunStatus, EvaluationCaseVerdict, EvaluationCheckResult, EvaluationCompareStatus, EvaluationSuiteRunRecord, EvaluationSuiteRunStatus, JudgeAuthoringTranscriptFile, JudgeAuthoringTranscriptTurn, JudgeCaseCompareMode, JudgeCaseFile, JudgeCompareDeltaKind, JudgeRuleAcceptanceFile, JudgeRuleClauseFile, JudgeRuleEpisodeHint, JudgeRuleEpisodeSelection, JudgeRuleFile, JudgeScorecardCheckFile, JudgeScorecardFile, JudgeScorecardPolicy, JudgeScorecardRuleEntry, JudgeScorecardRuntime } from './judge-files';
|
|
19
21
|
export type { ExpectationContract, SemanticEvalEvidenceIndexEntry, SemanticEvalMessage, SemanticEvidenceRef, SemanticExpectationClause, SemanticJudgeContractError, SemanticJudgeExecutionEnvelope, SemanticJudgeFinding, SemanticJudgeInputPacket, SemanticJudgeResult, SemanticJudgeRunMetadata } from './semantic-eval';
|
|
20
22
|
export type { CartPatchOperation, DecisionAction, DecisionActionOutcome, DecisionClassification, DecisionEnvelope, DecisionTrace, MessageReviewOutput, RuntimeVerificationIssue, RuntimeVerificationIssueType, RuntimeVerificationOutput, RuntimeDecisionExecutionPayload, RuntimeExecutionProfile, RuntimeMediaAssetDescriptor, RuntimeMediaDiscoveryTraceEntry, RuntimeMediaFolderContentsSlice, RuntimeMediaFolderDescriptor, RuntimeGenerationAttempt, RuntimeGetPackedContextInput, RuntimeGetPackedContextOutput, RuntimeHistoricalSegmentSummary, RuntimeHistorySegment, RuntimeNextStep, RuntimeOutboundPlan, RuntimeOutboundPlanStep, RuntimePackedContext, RuntimePackedTranscriptMessage, RuntimePromptCacheMetadata, RuntimePromptDebugPayload, RuntimePromptMeta, RuntimeProviderAttempt, RuntimeChannelSendMessage, RuntimeStepHistoryEntry, RuntimeStructuredDecisionResponse, RuntimeUsage, RetrievedDocRef, RuntimeListDecisionTracesInput, RuntimeListDecisionTracesOutput, StrategyCard, StrategyDocument, TurnAnalysis } from './runtime';
|
|
21
23
|
export type { PolicyDocument, } from './runtime';
|