@meridianlabs/inspect-scout-viewer 0.4.6 → 0.4.8
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/lib/App.d.ts +1 -0
- package/lib/AppRouter.d.ts +2 -0
- package/lib/api/api.d.ts +13 -1
- package/lib/app/components/ActivityBarLayout.d.ts +2 -0
- package/lib/app/components/Chip.d.ts +12 -0
- package/lib/app/components/ChipGroup.d.ts +7 -0
- package/lib/app/components/NextPreviousNav.d.ts +11 -0
- package/lib/app/components/ProjectBar.d.ts +7 -0
- package/lib/app/components/ScansNavbar.d.ts +1 -1
- package/lib/app/components/ScoreValue.d.ts +9 -0
- package/lib/app/components/ValidationResult.d.ts +3 -0
- package/lib/app/hooks/useFilterConditions.d.ts +6 -0
- package/lib/app/project/ProjectPanel.d.ts +7 -0
- package/lib/app/project/SettingsContent.d.ts +7 -0
- package/lib/app/project/components/FormFields.d.ts +67 -0
- package/lib/app/project/configUtils.d.ts +30 -0
- package/lib/app/project/hooks/useNestedConfig.d.ts +28 -0
- package/lib/app/runScan/ActiveScanView.d.ts +6 -0
- package/lib/app/runScan/DefineScannerSection.d.ts +6 -0
- package/lib/app/runScan/RunScanPanel.d.ts +2 -0
- package/lib/app/scan/scanners/dataframe/DataframeGridApiContext.d.ts +7 -0
- package/lib/app/scan/scanners/dataframe/ScannerDataframeCSVButtons.d.ts +9 -0
- package/lib/app/scannerResult/result/ResultBody.d.ts +2 -2
- package/lib/app/scannerResult/result/ResultPanel.d.ts +3 -2
- package/lib/app/scans/ScansGrid.d.ts +2 -2
- package/lib/app/server/useActiveScan.d.ts +3 -0
- package/lib/app/server/useActiveScans.d.ts +3 -0
- package/lib/app/server/useAdjacentTranscriptIds.d.ts +10 -0
- package/lib/app/server/useCode.d.ts +4 -0
- package/lib/app/server/useConfig.d.ts +1 -0
- package/lib/app/server/useProjectConfig.d.ts +30 -0
- package/lib/app/server/useScan.d.ts +4 -0
- package/lib/app/server/useScanDataframe.d.ts +9 -0
- package/lib/app/server/useScanDataframeInput.d.ts +10 -0
- package/lib/app/server/useScans.d.ts +3 -0
- package/lib/app/server/{useServerScansInfinite.d.ts → useScansInfinite.d.ts} +1 -1
- package/lib/app/server/useServerTranscriptsInfinite.d.ts +9 -2
- package/lib/app/server/useStartScan.d.ts +3 -0
- package/lib/app/server/useTranscript.d.ts +9 -0
- package/lib/app/server/useTranscriptsColumnValues.d.ts +11 -0
- package/lib/app/transcript/TranscriptBody.d.ts +6 -1
- package/lib/app/transcript/TranscriptFilterPopover.d.ts +7 -0
- package/lib/app/transcript/TranscriptNav.d.ts +10 -0
- package/lib/app/transcript/hooks/useTranscriptColumnFilter.d.ts +11 -0
- package/lib/app/transcript/hooks/useTranscriptNavigation.d.ts +12 -0
- package/lib/app/transcripts/TranscriptColumnsButton.d.ts +6 -0
- package/lib/app/transcripts/TranscriptColumnsPopover.d.ts +7 -0
- package/lib/app/transcripts/TranscriptFilterBar.d.ts +7 -0
- package/lib/app/transcripts/TranscriptsGrid.d.ts +5 -0
- package/lib/app/transcripts/columnFilter/ColumnFilterButton.d.ts +6 -0
- package/lib/app/transcripts/columnFilter/ColumnFilterControl.d.ts +16 -0
- package/lib/app/transcripts/columnFilter/ColumnFilterEditor.d.ts +31 -0
- package/lib/app/transcripts/columnFilter/DurationInput.d.ts +9 -0
- package/lib/app/transcripts/columnFilter/index.d.ts +7 -0
- package/lib/app/transcripts/columnFilter/useAddFilterPopover.d.ts +34 -0
- package/lib/app/transcripts/columnFilter/useColumnFilter.d.ts +27 -0
- package/lib/app/transcripts/columnFilter/useColumnFilterPopover.d.ts +25 -0
- package/lib/app/transcripts/columnSizing/defaultStrategy.d.ts +2 -0
- package/lib/app/transcripts/columnSizing/fitContentStrategy.d.ts +2 -0
- package/lib/app/transcripts/columnSizing/index.d.ts +4 -0
- package/lib/app/transcripts/columnSizing/strategies.d.ts +10 -0
- package/lib/app/transcripts/columnSizing/types.d.ts +47 -0
- package/lib/app/transcripts/columnSizing/useColumnSizing.d.ts +34 -0
- package/lib/app/transcripts/columnSizing/utils.d.ts +14 -0
- package/lib/app/transcripts/columns.d.ts +37 -0
- package/lib/app/transcripts/constants.d.ts +35 -0
- package/lib/app/types.d.ts +1 -0
- package/lib/components/AutocompleteInput.d.ts +19 -0
- package/lib/components/FindBand.d.ts +6 -0
- package/lib/components/Modal.d.ts +10 -0
- package/lib/components/ToolButton.d.ts +2 -1
- package/lib/components/ToolDropdownButton.d.ts +3 -0
- package/lib/components/content/DisplayModeContext.d.ts +9 -0
- package/lib/components/icons.d.ts +4 -0
- package/lib/components/transcript/ScoreEventView.d.ts +0 -1
- package/lib/components/transcript/TranscriptViewNodes.d.ts +13 -0
- package/lib/components/transcript/outline/OutlineRow.d.ts +1 -0
- package/lib/components/transcript/types.d.ts +2 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +30097 -12545
- package/lib/index.js.map +1 -1
- package/lib/query/transcriptColumns.d.ts +1 -0
- package/lib/router/url.d.ts +3 -0
- package/lib/state/store.d.ts +23 -5
- package/lib/styles/index.css +1432 -267
- package/lib/types/api-types.d.ts +10 -1
- package/lib/types/generated.d.ts +1140 -37
- package/lib/utils/react-query.d.ts +1 -0
- package/package.json +2 -1
- package/lib/app/components/ToolButton.d.ts +0 -8
- package/lib/app/server/useServerScan.d.ts +0 -3
- package/lib/app/server/useServerScanDataframe.d.ts +0 -3
- package/lib/app/server/useServerScanDataframeInput.d.ts +0 -3
- package/lib/app/server/useServerScans.d.ts +0 -3
- package/lib/app/server/useServerTranscript.d.ts +0 -3
- package/lib/app/transcripts/ColumnFilterControl.d.ts +0 -11
package/lib/types/generated.d.ts
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
import { JsonValue } from './json-value';
|
|
2
2
|
export interface paths {
|
|
3
|
+
"/code": {
|
|
4
|
+
parameters: {
|
|
5
|
+
query?: never;
|
|
6
|
+
header?: never;
|
|
7
|
+
path?: never;
|
|
8
|
+
cookie?: never;
|
|
9
|
+
};
|
|
10
|
+
get?: never;
|
|
11
|
+
put?: never;
|
|
12
|
+
/**
|
|
13
|
+
* Code endpoint
|
|
14
|
+
* @description Process condition.
|
|
15
|
+
*/
|
|
16
|
+
post: operations["code_code_post"];
|
|
17
|
+
delete?: never;
|
|
18
|
+
options?: never;
|
|
19
|
+
head?: never;
|
|
20
|
+
patch?: never;
|
|
21
|
+
trace?: never;
|
|
22
|
+
};
|
|
3
23
|
"/config": {
|
|
4
24
|
parameters: {
|
|
5
25
|
query?: never;
|
|
@@ -20,6 +40,50 @@ export interface paths {
|
|
|
20
40
|
patch?: never;
|
|
21
41
|
trace?: never;
|
|
22
42
|
};
|
|
43
|
+
"/project/config": {
|
|
44
|
+
parameters: {
|
|
45
|
+
query?: never;
|
|
46
|
+
header?: never;
|
|
47
|
+
path?: never;
|
|
48
|
+
cookie?: never;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Get project configuration
|
|
52
|
+
* @description Returns the project configuration from scout.yaml. The ETag header contains a hash of the file for conditional updates.
|
|
53
|
+
*/
|
|
54
|
+
get: operations["get_project_config_project_config_get"];
|
|
55
|
+
/**
|
|
56
|
+
* Update project configuration
|
|
57
|
+
* @description Updates the project configuration in scout.yaml while preserving comments and formatting. Optionally include If-Match header with current ETag for optimistic concurrency control. Omit If-Match to force save.
|
|
58
|
+
*/
|
|
59
|
+
put: operations["put_project_config_project_config_put"];
|
|
60
|
+
post?: never;
|
|
61
|
+
delete?: never;
|
|
62
|
+
options?: never;
|
|
63
|
+
head?: never;
|
|
64
|
+
patch?: never;
|
|
65
|
+
trace?: never;
|
|
66
|
+
};
|
|
67
|
+
"/runllmscanner": {
|
|
68
|
+
parameters: {
|
|
69
|
+
query?: never;
|
|
70
|
+
header?: never;
|
|
71
|
+
path?: never;
|
|
72
|
+
cookie?: never;
|
|
73
|
+
};
|
|
74
|
+
get?: never;
|
|
75
|
+
put?: never;
|
|
76
|
+
/**
|
|
77
|
+
* Run llm_scanner
|
|
78
|
+
* @description Runs a scan using llm_scanner with the provided ScanJobConfig.
|
|
79
|
+
*/
|
|
80
|
+
post: operations["run_llm_scanner_runllmscanner_post"];
|
|
81
|
+
delete?: never;
|
|
82
|
+
options?: never;
|
|
83
|
+
head?: never;
|
|
84
|
+
patch?: never;
|
|
85
|
+
trace?: never;
|
|
86
|
+
};
|
|
23
87
|
"/scans": {
|
|
24
88
|
parameters: {
|
|
25
89
|
query?: never;
|
|
@@ -40,6 +104,26 @@ export interface paths {
|
|
|
40
104
|
patch?: never;
|
|
41
105
|
trace?: never;
|
|
42
106
|
};
|
|
107
|
+
"/scans/active": {
|
|
108
|
+
parameters: {
|
|
109
|
+
query?: never;
|
|
110
|
+
header?: never;
|
|
111
|
+
path?: never;
|
|
112
|
+
cookie?: never;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Get active scans
|
|
116
|
+
* @description Returns info on all currently running scans.
|
|
117
|
+
*/
|
|
118
|
+
get: operations["active_scans_scans_active_get"];
|
|
119
|
+
put?: never;
|
|
120
|
+
post?: never;
|
|
121
|
+
delete?: never;
|
|
122
|
+
options?: never;
|
|
123
|
+
head?: never;
|
|
124
|
+
patch?: never;
|
|
125
|
+
trace?: never;
|
|
126
|
+
};
|
|
43
127
|
"/scans/{scan}": {
|
|
44
128
|
parameters: {
|
|
45
129
|
query?: never;
|
|
@@ -120,6 +204,26 @@ export interface paths {
|
|
|
120
204
|
patch?: never;
|
|
121
205
|
trace?: never;
|
|
122
206
|
};
|
|
207
|
+
"/transcripts/{dir}/distinct": {
|
|
208
|
+
parameters: {
|
|
209
|
+
query?: never;
|
|
210
|
+
header?: never;
|
|
211
|
+
path?: never;
|
|
212
|
+
cookie?: never;
|
|
213
|
+
};
|
|
214
|
+
get?: never;
|
|
215
|
+
put?: never;
|
|
216
|
+
/**
|
|
217
|
+
* Get distinct column values
|
|
218
|
+
* @description Returns distinct values for a column, optionally filtered.
|
|
219
|
+
*/
|
|
220
|
+
post: operations["transcripts_distinct_transcripts__dir__distinct_post"];
|
|
221
|
+
delete?: never;
|
|
222
|
+
options?: never;
|
|
223
|
+
head?: never;
|
|
224
|
+
patch?: never;
|
|
225
|
+
trace?: never;
|
|
226
|
+
};
|
|
123
227
|
"/transcripts/{dir}/{id}": {
|
|
124
228
|
parameters: {
|
|
125
229
|
query?: never;
|
|
@@ -140,12 +244,118 @@ export interface paths {
|
|
|
140
244
|
patch?: never;
|
|
141
245
|
trace?: never;
|
|
142
246
|
};
|
|
247
|
+
"/validations": {
|
|
248
|
+
parameters: {
|
|
249
|
+
query?: never;
|
|
250
|
+
header?: never;
|
|
251
|
+
path?: never;
|
|
252
|
+
cookie?: never;
|
|
253
|
+
};
|
|
254
|
+
/**
|
|
255
|
+
* List validation files
|
|
256
|
+
* @description Scans the project directory for validation files (.csv, .yaml, .json, .jsonl) and returns their URIs.
|
|
257
|
+
*/
|
|
258
|
+
get: operations["list_validations_validations_get"];
|
|
259
|
+
put?: never;
|
|
260
|
+
/**
|
|
261
|
+
* Create a validation file
|
|
262
|
+
* @description Creates a new validation file at the specified path with optional initial cases. Returns the URI of the created file.
|
|
263
|
+
*/
|
|
264
|
+
post: operations["create_validation_validations_post"];
|
|
265
|
+
delete?: never;
|
|
266
|
+
options?: never;
|
|
267
|
+
head?: never;
|
|
268
|
+
patch?: never;
|
|
269
|
+
trace?: never;
|
|
270
|
+
};
|
|
271
|
+
"/validations/{uri}": {
|
|
272
|
+
parameters: {
|
|
273
|
+
query?: never;
|
|
274
|
+
header?: never;
|
|
275
|
+
path?: never;
|
|
276
|
+
cookie?: never;
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* Get validation cases
|
|
280
|
+
* @description Returns all cases from a validation file.
|
|
281
|
+
*/
|
|
282
|
+
get: operations["get_validation_cases_validations__uri__get"];
|
|
283
|
+
put?: never;
|
|
284
|
+
post?: never;
|
|
285
|
+
/**
|
|
286
|
+
* Delete a validation file
|
|
287
|
+
* @description Deletes a validation file from the project.
|
|
288
|
+
*/
|
|
289
|
+
delete: operations["delete_validation_validations__uri__delete"];
|
|
290
|
+
options?: never;
|
|
291
|
+
head?: never;
|
|
292
|
+
patch?: never;
|
|
293
|
+
trace?: never;
|
|
294
|
+
};
|
|
295
|
+
"/validations/{uri}/{case_id}": {
|
|
296
|
+
parameters: {
|
|
297
|
+
query?: never;
|
|
298
|
+
header?: never;
|
|
299
|
+
path?: never;
|
|
300
|
+
cookie?: never;
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* Get a specific case
|
|
304
|
+
* @description Returns a specific case from a validation file by ID.
|
|
305
|
+
*/
|
|
306
|
+
get: operations["get_validation_case_validations__uri___case_id__get"];
|
|
307
|
+
put?: never;
|
|
308
|
+
/**
|
|
309
|
+
* Create or update a case
|
|
310
|
+
* @description Creates or updates a case in a validation file. If the case ID exists, it will be updated; otherwise, a new case will be created.
|
|
311
|
+
*/
|
|
312
|
+
post: operations["upsert_validation_case_validations__uri___case_id__post"];
|
|
313
|
+
/**
|
|
314
|
+
* Delete a case
|
|
315
|
+
* @description Deletes a case from a validation file.
|
|
316
|
+
*/
|
|
317
|
+
delete: operations["delete_validation_case_validations__uri___case_id__delete"];
|
|
318
|
+
options?: never;
|
|
319
|
+
head?: never;
|
|
320
|
+
patch?: never;
|
|
321
|
+
trace?: never;
|
|
322
|
+
};
|
|
143
323
|
}
|
|
144
324
|
export type webhooks = Record<string, never>;
|
|
145
325
|
export interface components {
|
|
146
326
|
schemas: {
|
|
327
|
+
/** ActiveScanInfo */
|
|
328
|
+
ActiveScanInfo: {
|
|
329
|
+
/** Config */
|
|
330
|
+
config: string;
|
|
331
|
+
/** Last Updated */
|
|
332
|
+
last_updated: number;
|
|
333
|
+
metrics: components["schemas"]["ScanMetrics"];
|
|
334
|
+
/** Scan Id */
|
|
335
|
+
scan_id: string;
|
|
336
|
+
/** Scanner Names */
|
|
337
|
+
scanner_names: string[];
|
|
338
|
+
/** Start Time */
|
|
339
|
+
start_time: number;
|
|
340
|
+
summary: components["schemas"]["Summary"];
|
|
341
|
+
/** Title */
|
|
342
|
+
title: string;
|
|
343
|
+
/** Total Scans */
|
|
344
|
+
total_scans: number;
|
|
345
|
+
};
|
|
346
|
+
/** ActiveScansResponse */
|
|
347
|
+
ActiveScansResponse: {
|
|
348
|
+
/** Items */
|
|
349
|
+
items: {
|
|
350
|
+
[key: string]: components["schemas"]["ActiveScanInfo"];
|
|
351
|
+
};
|
|
352
|
+
};
|
|
147
353
|
/** AppConfig */
|
|
148
354
|
AppConfig: {
|
|
355
|
+
/** Home Dir */
|
|
356
|
+
home_dir: string;
|
|
357
|
+
/** Project Dir */
|
|
358
|
+
project_dir: string;
|
|
149
359
|
/** Scans Dir */
|
|
150
360
|
scans_dir: string;
|
|
151
361
|
/** Transcripts Dir */
|
|
@@ -680,6 +890,19 @@ export interface components {
|
|
|
680
890
|
/** Video */
|
|
681
891
|
video: string;
|
|
682
892
|
};
|
|
893
|
+
/** CreateValidationSetRequest */
|
|
894
|
+
CreateValidationSetRequest: {
|
|
895
|
+
/** Cases */
|
|
896
|
+
cases: components["schemas"]["ValidationCaseRequest"][];
|
|
897
|
+
/** Path */
|
|
898
|
+
path: string;
|
|
899
|
+
};
|
|
900
|
+
/** DistinctRequest */
|
|
901
|
+
DistinctRequest: {
|
|
902
|
+
/** Column */
|
|
903
|
+
column: string;
|
|
904
|
+
filter?: components["schemas"]["Condition"] | null;
|
|
905
|
+
};
|
|
683
906
|
/**
|
|
684
907
|
* DocumentCitation
|
|
685
908
|
* @description A citation that refers to a page range in a document.
|
|
@@ -963,6 +1186,152 @@ export interface components {
|
|
|
963
1186
|
*/
|
|
964
1187
|
verbosity: ("low" | "medium" | "high") | null;
|
|
965
1188
|
};
|
|
1189
|
+
/**
|
|
1190
|
+
* GenerateConfig
|
|
1191
|
+
* @description Model generation options.
|
|
1192
|
+
*/
|
|
1193
|
+
"GenerateConfig-Input": {
|
|
1194
|
+
/** Attempt Timeout */
|
|
1195
|
+
attempt_timeout?: number | null;
|
|
1196
|
+
/** Batch */
|
|
1197
|
+
batch?: boolean | number | components["schemas"]["BatchConfig"] | null;
|
|
1198
|
+
/** Best Of */
|
|
1199
|
+
best_of?: number | null;
|
|
1200
|
+
/** Cache */
|
|
1201
|
+
cache?: boolean | components["schemas"]["CachePolicy"] | null;
|
|
1202
|
+
/** Cache Prompt */
|
|
1203
|
+
cache_prompt?: "auto" | boolean | null;
|
|
1204
|
+
/** Effort */
|
|
1205
|
+
effort?: ("low" | "medium" | "high") | null;
|
|
1206
|
+
/** Extra Body */
|
|
1207
|
+
extra_body?: {
|
|
1208
|
+
[key: string]: unknown;
|
|
1209
|
+
} | null;
|
|
1210
|
+
/** Frequency Penalty */
|
|
1211
|
+
frequency_penalty?: number | null;
|
|
1212
|
+
/** Internal Tools */
|
|
1213
|
+
internal_tools?: boolean | null;
|
|
1214
|
+
/** Logit Bias */
|
|
1215
|
+
logit_bias?: {
|
|
1216
|
+
[key: string]: number;
|
|
1217
|
+
} | null;
|
|
1218
|
+
/** Logprobs */
|
|
1219
|
+
logprobs?: boolean | null;
|
|
1220
|
+
/** Max Connections */
|
|
1221
|
+
max_connections?: number | null;
|
|
1222
|
+
/** Max Retries */
|
|
1223
|
+
max_retries?: number | null;
|
|
1224
|
+
/** Max Tokens */
|
|
1225
|
+
max_tokens?: number | null;
|
|
1226
|
+
/** Max Tool Output */
|
|
1227
|
+
max_tool_output?: number | null;
|
|
1228
|
+
/** Num Choices */
|
|
1229
|
+
num_choices?: number | null;
|
|
1230
|
+
/** Parallel Tool Calls */
|
|
1231
|
+
parallel_tool_calls?: boolean | null;
|
|
1232
|
+
/** Presence Penalty */
|
|
1233
|
+
presence_penalty?: number | null;
|
|
1234
|
+
/** Reasoning Effort */
|
|
1235
|
+
reasoning_effort?: ("none" | "minimal" | "low" | "medium" | "high" | "xhigh") | null;
|
|
1236
|
+
/** Reasoning History */
|
|
1237
|
+
reasoning_history?: ("none" | "all" | "last" | "auto") | null;
|
|
1238
|
+
/** Reasoning Summary */
|
|
1239
|
+
reasoning_summary?: ("none" | "concise" | "detailed" | "auto") | null;
|
|
1240
|
+
/** Reasoning Tokens */
|
|
1241
|
+
reasoning_tokens?: number | null;
|
|
1242
|
+
response_schema?: components["schemas"]["ResponseSchema-Input"] | null;
|
|
1243
|
+
/** Seed */
|
|
1244
|
+
seed?: number | null;
|
|
1245
|
+
/** Stop Seqs */
|
|
1246
|
+
stop_seqs?: string[] | null;
|
|
1247
|
+
/** System Message */
|
|
1248
|
+
system_message?: string | null;
|
|
1249
|
+
/** Temperature */
|
|
1250
|
+
temperature?: number | null;
|
|
1251
|
+
/** Timeout */
|
|
1252
|
+
timeout?: number | null;
|
|
1253
|
+
/** Top K */
|
|
1254
|
+
top_k?: number | null;
|
|
1255
|
+
/** Top Logprobs */
|
|
1256
|
+
top_logprobs?: number | null;
|
|
1257
|
+
/** Top P */
|
|
1258
|
+
top_p?: number | null;
|
|
1259
|
+
/** Verbosity */
|
|
1260
|
+
verbosity?: ("low" | "medium" | "high") | null;
|
|
1261
|
+
};
|
|
1262
|
+
/**
|
|
1263
|
+
* GenerateConfig
|
|
1264
|
+
* @description Model generation options.
|
|
1265
|
+
*/
|
|
1266
|
+
"GenerateConfig-Output": {
|
|
1267
|
+
/** Attempt Timeout */
|
|
1268
|
+
attempt_timeout?: number | null;
|
|
1269
|
+
/** Batch */
|
|
1270
|
+
batch?: boolean | number | components["schemas"]["BatchConfig"] | null;
|
|
1271
|
+
/** Best Of */
|
|
1272
|
+
best_of?: number | null;
|
|
1273
|
+
/** Cache */
|
|
1274
|
+
cache?: boolean | components["schemas"]["CachePolicy"] | null;
|
|
1275
|
+
/** Cache Prompt */
|
|
1276
|
+
cache_prompt?: "auto" | boolean | null;
|
|
1277
|
+
/** Effort */
|
|
1278
|
+
effort?: ("low" | "medium" | "high") | null;
|
|
1279
|
+
/** Extra Body */
|
|
1280
|
+
extra_body?: {
|
|
1281
|
+
[key: string]: unknown;
|
|
1282
|
+
} | null;
|
|
1283
|
+
/** Frequency Penalty */
|
|
1284
|
+
frequency_penalty?: number | null;
|
|
1285
|
+
/** Internal Tools */
|
|
1286
|
+
internal_tools?: boolean | null;
|
|
1287
|
+
/** Logit Bias */
|
|
1288
|
+
logit_bias?: {
|
|
1289
|
+
[key: string]: number;
|
|
1290
|
+
} | null;
|
|
1291
|
+
/** Logprobs */
|
|
1292
|
+
logprobs?: boolean | null;
|
|
1293
|
+
/** Max Connections */
|
|
1294
|
+
max_connections?: number | null;
|
|
1295
|
+
/** Max Retries */
|
|
1296
|
+
max_retries?: number | null;
|
|
1297
|
+
/** Max Tokens */
|
|
1298
|
+
max_tokens?: number | null;
|
|
1299
|
+
/** Max Tool Output */
|
|
1300
|
+
max_tool_output?: number | null;
|
|
1301
|
+
/** Num Choices */
|
|
1302
|
+
num_choices?: number | null;
|
|
1303
|
+
/** Parallel Tool Calls */
|
|
1304
|
+
parallel_tool_calls?: boolean | null;
|
|
1305
|
+
/** Presence Penalty */
|
|
1306
|
+
presence_penalty?: number | null;
|
|
1307
|
+
/** Reasoning Effort */
|
|
1308
|
+
reasoning_effort?: ("none" | "minimal" | "low" | "medium" | "high" | "xhigh") | null;
|
|
1309
|
+
/** Reasoning History */
|
|
1310
|
+
reasoning_history?: ("none" | "all" | "last" | "auto") | null;
|
|
1311
|
+
/** Reasoning Summary */
|
|
1312
|
+
reasoning_summary?: ("none" | "concise" | "detailed" | "auto") | null;
|
|
1313
|
+
/** Reasoning Tokens */
|
|
1314
|
+
reasoning_tokens?: number | null;
|
|
1315
|
+
response_schema?: components["schemas"]["ResponseSchema-Output"] | null;
|
|
1316
|
+
/** Seed */
|
|
1317
|
+
seed?: number | null;
|
|
1318
|
+
/** Stop Seqs */
|
|
1319
|
+
stop_seqs?: string[] | null;
|
|
1320
|
+
/** System Message */
|
|
1321
|
+
system_message?: string | null;
|
|
1322
|
+
/** Temperature */
|
|
1323
|
+
temperature?: number | null;
|
|
1324
|
+
/** Timeout */
|
|
1325
|
+
timeout?: number | null;
|
|
1326
|
+
/** Top K */
|
|
1327
|
+
top_k?: number | null;
|
|
1328
|
+
/** Top Logprobs */
|
|
1329
|
+
top_logprobs?: number | null;
|
|
1330
|
+
/** Top P */
|
|
1331
|
+
top_p?: number | null;
|
|
1332
|
+
/** Verbosity */
|
|
1333
|
+
verbosity?: ("low" | "medium" | "high") | null;
|
|
1334
|
+
};
|
|
966
1335
|
/** HTTPValidationError */
|
|
967
1336
|
HTTPValidationError: {
|
|
968
1337
|
/** Detail */
|
|
@@ -1115,6 +1484,60 @@ export interface components {
|
|
|
1115
1484
|
*/
|
|
1116
1485
|
type: ("string" | "integer" | "number" | "boolean" | "array" | "object" | "null") | ("string" | "integer" | "number" | "boolean" | "array" | "object" | "null")[] | null;
|
|
1117
1486
|
};
|
|
1487
|
+
/**
|
|
1488
|
+
* JSONSchema
|
|
1489
|
+
* @description JSON Schema for type.
|
|
1490
|
+
*/
|
|
1491
|
+
"JSONSchema-Input": {
|
|
1492
|
+
/** Additionalproperties */
|
|
1493
|
+
additionalProperties?: components["schemas"]["JSONSchema-Input"] | boolean | null;
|
|
1494
|
+
/** Anyof */
|
|
1495
|
+
anyOf?: components["schemas"]["JSONSchema-Input"][] | null;
|
|
1496
|
+
/** Default */
|
|
1497
|
+
default: unknown;
|
|
1498
|
+
/** Description */
|
|
1499
|
+
description?: string | null;
|
|
1500
|
+
/** Enum */
|
|
1501
|
+
enum?: unknown[] | null;
|
|
1502
|
+
/** Format */
|
|
1503
|
+
format?: string | null;
|
|
1504
|
+
items?: components["schemas"]["JSONSchema-Input"] | null;
|
|
1505
|
+
/** Properties */
|
|
1506
|
+
properties?: {
|
|
1507
|
+
[key: string]: components["schemas"]["JSONSchema-Input"];
|
|
1508
|
+
} | null;
|
|
1509
|
+
/** Required */
|
|
1510
|
+
required?: string[] | null;
|
|
1511
|
+
/** Type */
|
|
1512
|
+
type?: ("string" | "integer" | "number" | "boolean" | "array" | "object" | "null") | ("string" | "integer" | "number" | "boolean" | "array" | "object" | "null")[] | null;
|
|
1513
|
+
};
|
|
1514
|
+
/**
|
|
1515
|
+
* JSONSchema
|
|
1516
|
+
* @description JSON Schema for type.
|
|
1517
|
+
*/
|
|
1518
|
+
"JSONSchema-Output": {
|
|
1519
|
+
/** Additionalproperties */
|
|
1520
|
+
additionalProperties?: components["schemas"]["JSONSchema-Output"] | boolean | null;
|
|
1521
|
+
/** Anyof */
|
|
1522
|
+
anyOf?: components["schemas"]["JSONSchema-Output"][] | null;
|
|
1523
|
+
/** Default */
|
|
1524
|
+
default: unknown;
|
|
1525
|
+
/** Description */
|
|
1526
|
+
description?: string | null;
|
|
1527
|
+
/** Enum */
|
|
1528
|
+
enum?: unknown[] | null;
|
|
1529
|
+
/** Format */
|
|
1530
|
+
format?: string | null;
|
|
1531
|
+
items?: components["schemas"]["JSONSchema-Output"] | null;
|
|
1532
|
+
/** Properties */
|
|
1533
|
+
properties?: {
|
|
1534
|
+
[key: string]: components["schemas"]["JSONSchema-Output"];
|
|
1535
|
+
} | null;
|
|
1536
|
+
/** Required */
|
|
1537
|
+
required?: string[] | null;
|
|
1538
|
+
/** Type */
|
|
1539
|
+
type?: ("string" | "integer" | "number" | "boolean" | "array" | "object" | "null") | ("string" | "integer" | "number" | "boolean" | "array" | "object" | "null")[] | null;
|
|
1540
|
+
};
|
|
1118
1541
|
/**
|
|
1119
1542
|
* JsonChange
|
|
1120
1543
|
* @description Describes a change to data using JSON Patch format.
|
|
@@ -1138,6 +1561,21 @@ export interface components {
|
|
|
1138
1561
|
value: components["schemas"]["JsonValue"];
|
|
1139
1562
|
};
|
|
1140
1563
|
JsonValue: JsonValue;
|
|
1564
|
+
/**
|
|
1565
|
+
* LlmScannerParams
|
|
1566
|
+
* @description Parameters for llm_scanner.
|
|
1567
|
+
*/
|
|
1568
|
+
LlmScannerParams: {
|
|
1569
|
+
/**
|
|
1570
|
+
* Answer
|
|
1571
|
+
* @enum {string}
|
|
1572
|
+
*/
|
|
1573
|
+
answer: "boolean" | "numeric" | "string";
|
|
1574
|
+
/** @default null */
|
|
1575
|
+
preprocessor: components["schemas"]["MessageFormatOptions"] | null;
|
|
1576
|
+
/** Question */
|
|
1577
|
+
question: string;
|
|
1578
|
+
};
|
|
1141
1579
|
/**
|
|
1142
1580
|
* LoggerEvent
|
|
1143
1581
|
* @description Log message recorded with Python logger.
|
|
@@ -1249,6 +1687,24 @@ export interface components {
|
|
|
1249
1687
|
/** Content */
|
|
1250
1688
|
content: components["schemas"]["Logprob"][];
|
|
1251
1689
|
};
|
|
1690
|
+
/** MessageFormatOptions */
|
|
1691
|
+
MessageFormatOptions: {
|
|
1692
|
+
/**
|
|
1693
|
+
* Exclude Reasoning
|
|
1694
|
+
* @default false
|
|
1695
|
+
*/
|
|
1696
|
+
exclude_reasoning: boolean;
|
|
1697
|
+
/**
|
|
1698
|
+
* Exclude System
|
|
1699
|
+
* @default true
|
|
1700
|
+
*/
|
|
1701
|
+
exclude_system: boolean;
|
|
1702
|
+
/**
|
|
1703
|
+
* Exclude Tool Usage
|
|
1704
|
+
* @default false
|
|
1705
|
+
*/
|
|
1706
|
+
exclude_tool_usage: boolean;
|
|
1707
|
+
};
|
|
1252
1708
|
/**
|
|
1253
1709
|
* ModelCall
|
|
1254
1710
|
* @description Model call (raw request/response data).
|
|
@@ -1272,14 +1728,29 @@ export interface components {
|
|
|
1272
1728
|
* ModelConfig
|
|
1273
1729
|
* @description Model config.
|
|
1274
1730
|
*/
|
|
1275
|
-
ModelConfig: {
|
|
1731
|
+
"ModelConfig-Input": {
|
|
1276
1732
|
/** Args */
|
|
1277
1733
|
args: {
|
|
1278
1734
|
[key: string]: unknown;
|
|
1279
1735
|
};
|
|
1280
1736
|
/** Base Url */
|
|
1281
1737
|
base_url?: string | null;
|
|
1282
|
-
config: components["schemas"]["GenerateConfig"];
|
|
1738
|
+
config: components["schemas"]["GenerateConfig-Input"];
|
|
1739
|
+
/** Model */
|
|
1740
|
+
model: string;
|
|
1741
|
+
};
|
|
1742
|
+
/**
|
|
1743
|
+
* ModelConfig
|
|
1744
|
+
* @description Model config.
|
|
1745
|
+
*/
|
|
1746
|
+
"ModelConfig-Output": {
|
|
1747
|
+
/** Args */
|
|
1748
|
+
args: {
|
|
1749
|
+
[key: string]: unknown;
|
|
1750
|
+
};
|
|
1751
|
+
/** Base Url */
|
|
1752
|
+
base_url?: string | null;
|
|
1753
|
+
config: components["schemas"]["GenerateConfig-Output"];
|
|
1283
1754
|
/** Model */
|
|
1284
1755
|
model: string;
|
|
1285
1756
|
};
|
|
@@ -1470,38 +1941,154 @@ export interface components {
|
|
|
1470
1941
|
limit: number;
|
|
1471
1942
|
};
|
|
1472
1943
|
/**
|
|
1473
|
-
*
|
|
1474
|
-
* @description
|
|
1944
|
+
* ProjectConfig
|
|
1945
|
+
* @description Scout project configuration from scout.yaml.
|
|
1946
|
+
*
|
|
1947
|
+
* Extends ScanJobConfig to represent project-level defaults. All fields
|
|
1948
|
+
* from ScanJobConfig are available as project defaults.
|
|
1475
1949
|
*/
|
|
1476
|
-
|
|
1477
|
-
/**
|
|
1478
|
-
|
|
1950
|
+
"ProjectConfig-Input": {
|
|
1951
|
+
/** Filter */
|
|
1952
|
+
filter: string | string[];
|
|
1953
|
+
generate_config?: components["schemas"]["GenerateConfig-Input"] | null;
|
|
1954
|
+
/** Limit */
|
|
1955
|
+
limit?: number | null;
|
|
1956
|
+
/** Log Level */
|
|
1957
|
+
log_level?: ("debug" | "http" | "sandbox" | "info" | "warning" | "error" | "critical" | "notset") | null;
|
|
1958
|
+
/** Max Processes */
|
|
1959
|
+
max_processes?: number | null;
|
|
1960
|
+
/** Max Transcripts */
|
|
1961
|
+
max_transcripts?: number | null;
|
|
1479
1962
|
/** Metadata */
|
|
1480
|
-
metadata
|
|
1963
|
+
metadata?: {
|
|
1481
1964
|
[key: string]: unknown;
|
|
1482
|
-
};
|
|
1483
|
-
/**
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
/**
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1965
|
+
} | null;
|
|
1966
|
+
/** Model */
|
|
1967
|
+
model?: string | null;
|
|
1968
|
+
/** Model Args */
|
|
1969
|
+
model_args?: {
|
|
1970
|
+
[key: string]: unknown;
|
|
1971
|
+
} | string | null;
|
|
1972
|
+
/** Model Base Url */
|
|
1973
|
+
model_base_url?: string | null;
|
|
1974
|
+
/** Model Roles */
|
|
1975
|
+
model_roles?: {
|
|
1976
|
+
[key: string]: components["schemas"]["ModelConfig-Input"] | string;
|
|
1977
|
+
} | null;
|
|
1978
|
+
/** Name */
|
|
1979
|
+
name?: string | null;
|
|
1980
|
+
/** Results */
|
|
1981
|
+
results?: string | null;
|
|
1982
|
+
/** Scanners */
|
|
1983
|
+
scanners?: components["schemas"]["ScannerSpec"][] | {
|
|
1984
|
+
[key: string]: components["schemas"]["ScannerSpec"];
|
|
1985
|
+
} | null;
|
|
1986
|
+
/** Scans */
|
|
1987
|
+
scans?: string | null;
|
|
1988
|
+
/** Shuffle */
|
|
1989
|
+
shuffle?: boolean | number | null;
|
|
1990
|
+
/** Tags */
|
|
1991
|
+
tags?: string[] | null;
|
|
1992
|
+
/** Transcripts */
|
|
1993
|
+
transcripts?: string | null;
|
|
1994
|
+
/** Validation */
|
|
1995
|
+
validation?: {
|
|
1996
|
+
[key: string]: string | components["schemas"]["ValidationSet-Input"];
|
|
1997
|
+
} | null;
|
|
1998
|
+
/** Worklist */
|
|
1999
|
+
worklist?: components["schemas"]["Worklist"][] | null;
|
|
2000
|
+
};
|
|
2001
|
+
/**
|
|
2002
|
+
* ProjectConfig
|
|
2003
|
+
* @description Scout project configuration from scout.yaml.
|
|
2004
|
+
*
|
|
2005
|
+
* Extends ScanJobConfig to represent project-level defaults. All fields
|
|
2006
|
+
* from ScanJobConfig are available as project defaults.
|
|
2007
|
+
*/
|
|
2008
|
+
"ProjectConfig-Output": {
|
|
2009
|
+
/** Filter */
|
|
2010
|
+
filter: string | string[];
|
|
2011
|
+
generate_config?: components["schemas"]["GenerateConfig-Output"] | null;
|
|
2012
|
+
/** Limit */
|
|
2013
|
+
limit?: number | null;
|
|
2014
|
+
/** Log Level */
|
|
2015
|
+
log_level?: ("debug" | "http" | "sandbox" | "info" | "warning" | "error" | "critical" | "notset") | null;
|
|
2016
|
+
/** Max Processes */
|
|
2017
|
+
max_processes?: number | null;
|
|
2018
|
+
/** Max Transcripts */
|
|
2019
|
+
max_transcripts?: number | null;
|
|
2020
|
+
/** Metadata */
|
|
2021
|
+
metadata?: {
|
|
2022
|
+
[key: string]: unknown;
|
|
2023
|
+
} | null;
|
|
2024
|
+
/** Model */
|
|
2025
|
+
model?: string | null;
|
|
2026
|
+
/** Model Args */
|
|
2027
|
+
model_args?: {
|
|
2028
|
+
[key: string]: unknown;
|
|
2029
|
+
} | string | null;
|
|
2030
|
+
/** Model Base Url */
|
|
2031
|
+
model_base_url?: string | null;
|
|
2032
|
+
/** Model Roles */
|
|
2033
|
+
model_roles?: {
|
|
2034
|
+
[key: string]: components["schemas"]["ModelConfig-Output"] | string;
|
|
2035
|
+
} | null;
|
|
2036
|
+
/** Name */
|
|
2037
|
+
name?: string | null;
|
|
2038
|
+
/** Results */
|
|
2039
|
+
results?: string | null;
|
|
2040
|
+
/** Scanners */
|
|
2041
|
+
scanners?: components["schemas"]["ScannerSpec"][] | {
|
|
2042
|
+
[key: string]: components["schemas"]["ScannerSpec"];
|
|
2043
|
+
} | null;
|
|
2044
|
+
/** Scans */
|
|
2045
|
+
scans?: string | null;
|
|
2046
|
+
/** Shuffle */
|
|
2047
|
+
shuffle?: boolean | number | null;
|
|
2048
|
+
/** Tags */
|
|
2049
|
+
tags?: string[] | null;
|
|
2050
|
+
/** Transcripts */
|
|
2051
|
+
transcripts?: string | null;
|
|
2052
|
+
/** Validation */
|
|
2053
|
+
validation?: {
|
|
2054
|
+
[key: string]: string | components["schemas"]["ValidationSet-Output"];
|
|
2055
|
+
} | null;
|
|
2056
|
+
/** Worklist */
|
|
2057
|
+
worklist?: components["schemas"]["Worklist"][] | null;
|
|
2058
|
+
};
|
|
2059
|
+
/**
|
|
2060
|
+
* ProvenanceData
|
|
2061
|
+
* @description Metadata about who made an edit and why.
|
|
2062
|
+
*/
|
|
2063
|
+
ProvenanceData: {
|
|
2064
|
+
/** Author */
|
|
2065
|
+
author: string;
|
|
2066
|
+
/** Metadata */
|
|
2067
|
+
metadata: {
|
|
2068
|
+
[key: string]: unknown;
|
|
2069
|
+
};
|
|
2070
|
+
/**
|
|
2071
|
+
* Reason
|
|
2072
|
+
* @default null
|
|
2073
|
+
*/
|
|
2074
|
+
reason: string | null;
|
|
2075
|
+
/**
|
|
2076
|
+
* Timestamp
|
|
2077
|
+
* Format: date-time
|
|
2078
|
+
*/
|
|
2079
|
+
timestamp: string;
|
|
2080
|
+
};
|
|
2081
|
+
/**
|
|
2082
|
+
* ResponseSchema
|
|
2083
|
+
* @description Schema for model response when using Structured Output.
|
|
2084
|
+
*/
|
|
2085
|
+
ResponseSchema: {
|
|
2086
|
+
/**
|
|
2087
|
+
* Description
|
|
2088
|
+
* @default null
|
|
2089
|
+
*/
|
|
2090
|
+
description: string | null;
|
|
2091
|
+
json_schema: components["schemas"]["JSONSchema"];
|
|
1505
2092
|
/** Name */
|
|
1506
2093
|
name: string;
|
|
1507
2094
|
/**
|
|
@@ -1510,6 +2097,32 @@ export interface components {
|
|
|
1510
2097
|
*/
|
|
1511
2098
|
strict: boolean | null;
|
|
1512
2099
|
};
|
|
2100
|
+
/**
|
|
2101
|
+
* ResponseSchema
|
|
2102
|
+
* @description Schema for model response when using Structured Output.
|
|
2103
|
+
*/
|
|
2104
|
+
"ResponseSchema-Input": {
|
|
2105
|
+
/** Description */
|
|
2106
|
+
description?: string | null;
|
|
2107
|
+
json_schema: components["schemas"]["JSONSchema-Input"];
|
|
2108
|
+
/** Name */
|
|
2109
|
+
name: string;
|
|
2110
|
+
/** Strict */
|
|
2111
|
+
strict?: boolean | null;
|
|
2112
|
+
};
|
|
2113
|
+
/**
|
|
2114
|
+
* ResponseSchema
|
|
2115
|
+
* @description Schema for model response when using Structured Output.
|
|
2116
|
+
*/
|
|
2117
|
+
"ResponseSchema-Output": {
|
|
2118
|
+
/** Description */
|
|
2119
|
+
description?: string | null;
|
|
2120
|
+
json_schema: components["schemas"]["JSONSchema-Output"];
|
|
2121
|
+
/** Name */
|
|
2122
|
+
name: string;
|
|
2123
|
+
/** Strict */
|
|
2124
|
+
strict?: boolean | null;
|
|
2125
|
+
};
|
|
1513
2126
|
/**
|
|
1514
2127
|
* Sample
|
|
1515
2128
|
* @description Sample for an evaluation task.
|
|
@@ -1743,6 +2356,116 @@ export interface components {
|
|
|
1743
2356
|
/** Working Start */
|
|
1744
2357
|
working_start: number;
|
|
1745
2358
|
};
|
|
2359
|
+
/**
|
|
2360
|
+
* ScanJobConfig
|
|
2361
|
+
* @description Scan job configuration.
|
|
2362
|
+
*/
|
|
2363
|
+
ScanJobConfig: {
|
|
2364
|
+
/** Filter */
|
|
2365
|
+
filter: string | string[];
|
|
2366
|
+
generate_config?: components["schemas"]["GenerateConfig-Input"] | null;
|
|
2367
|
+
/** Limit */
|
|
2368
|
+
limit?: number | null;
|
|
2369
|
+
/** Log Level */
|
|
2370
|
+
log_level?: ("debug" | "http" | "sandbox" | "info" | "warning" | "error" | "critical" | "notset") | null;
|
|
2371
|
+
/** Max Processes */
|
|
2372
|
+
max_processes?: number | null;
|
|
2373
|
+
/** Max Transcripts */
|
|
2374
|
+
max_transcripts?: number | null;
|
|
2375
|
+
/** Metadata */
|
|
2376
|
+
metadata?: {
|
|
2377
|
+
[key: string]: unknown;
|
|
2378
|
+
} | null;
|
|
2379
|
+
/** Model */
|
|
2380
|
+
model?: string | null;
|
|
2381
|
+
/** Model Args */
|
|
2382
|
+
model_args?: {
|
|
2383
|
+
[key: string]: unknown;
|
|
2384
|
+
} | string | null;
|
|
2385
|
+
/** Model Base Url */
|
|
2386
|
+
model_base_url?: string | null;
|
|
2387
|
+
/** Model Roles */
|
|
2388
|
+
model_roles?: {
|
|
2389
|
+
[key: string]: components["schemas"]["ModelConfig-Input"] | string;
|
|
2390
|
+
} | null;
|
|
2391
|
+
/** Name */
|
|
2392
|
+
name?: string | null;
|
|
2393
|
+
/** Results */
|
|
2394
|
+
results?: string | null;
|
|
2395
|
+
/** Scanners */
|
|
2396
|
+
scanners?: components["schemas"]["ScannerSpec"][] | {
|
|
2397
|
+
[key: string]: components["schemas"]["ScannerSpec"];
|
|
2398
|
+
} | null;
|
|
2399
|
+
/** Scans */
|
|
2400
|
+
scans?: string | null;
|
|
2401
|
+
/** Shuffle */
|
|
2402
|
+
shuffle?: boolean | number | null;
|
|
2403
|
+
/** Tags */
|
|
2404
|
+
tags?: string[] | null;
|
|
2405
|
+
/** Transcripts */
|
|
2406
|
+
transcripts?: string | null;
|
|
2407
|
+
/** Validation */
|
|
2408
|
+
validation?: {
|
|
2409
|
+
[key: string]: string | components["schemas"]["ValidationSet-Input"];
|
|
2410
|
+
} | null;
|
|
2411
|
+
/** Worklist */
|
|
2412
|
+
worklist?: components["schemas"]["Worklist"][] | null;
|
|
2413
|
+
};
|
|
2414
|
+
/** ScanMetrics */
|
|
2415
|
+
ScanMetrics: {
|
|
2416
|
+
/**
|
|
2417
|
+
* Batch Failures
|
|
2418
|
+
* @default 0
|
|
2419
|
+
*/
|
|
2420
|
+
batch_failures: number;
|
|
2421
|
+
/** Batch Oldest Created */
|
|
2422
|
+
batch_oldest_created?: number | null;
|
|
2423
|
+
/**
|
|
2424
|
+
* Batch Pending
|
|
2425
|
+
* @default 0
|
|
2426
|
+
*/
|
|
2427
|
+
batch_pending: number;
|
|
2428
|
+
/**
|
|
2429
|
+
* Buffered Scanner Jobs
|
|
2430
|
+
* @default 0
|
|
2431
|
+
*/
|
|
2432
|
+
buffered_scanner_jobs: number;
|
|
2433
|
+
/**
|
|
2434
|
+
* Completed Scans
|
|
2435
|
+
* @default 0
|
|
2436
|
+
*/
|
|
2437
|
+
completed_scans: number;
|
|
2438
|
+
/**
|
|
2439
|
+
* Memory Usage
|
|
2440
|
+
* @default 0
|
|
2441
|
+
*/
|
|
2442
|
+
memory_usage: number;
|
|
2443
|
+
/**
|
|
2444
|
+
* Process Count
|
|
2445
|
+
* @default 0
|
|
2446
|
+
*/
|
|
2447
|
+
process_count: number;
|
|
2448
|
+
/**
|
|
2449
|
+
* Task Count
|
|
2450
|
+
* @default 0
|
|
2451
|
+
*/
|
|
2452
|
+
task_count: number;
|
|
2453
|
+
/**
|
|
2454
|
+
* Tasks Idle
|
|
2455
|
+
* @default 0
|
|
2456
|
+
*/
|
|
2457
|
+
tasks_idle: number;
|
|
2458
|
+
/**
|
|
2459
|
+
* Tasks Parsing
|
|
2460
|
+
* @default 0
|
|
2461
|
+
*/
|
|
2462
|
+
tasks_parsing: number;
|
|
2463
|
+
/**
|
|
2464
|
+
* Tasks Scanning
|
|
2465
|
+
* @default 0
|
|
2466
|
+
*/
|
|
2467
|
+
tasks_scanning: number;
|
|
2468
|
+
};
|
|
1746
2469
|
/**
|
|
1747
2470
|
* ScanOptions
|
|
1748
2471
|
* @description Options used for scan.
|
|
@@ -1789,10 +2512,10 @@ export interface components {
|
|
|
1789
2512
|
metadata?: {
|
|
1790
2513
|
[key: string]: unknown;
|
|
1791
2514
|
} | null;
|
|
1792
|
-
model?: components["schemas"]["ModelConfig"] | null;
|
|
2515
|
+
model?: components["schemas"]["ModelConfig-Output"] | null;
|
|
1793
2516
|
/** Model Roles */
|
|
1794
2517
|
model_roles?: {
|
|
1795
|
-
[key: string]: components["schemas"]["ModelConfig"];
|
|
2518
|
+
[key: string]: components["schemas"]["ModelConfig-Output"];
|
|
1796
2519
|
} | null;
|
|
1797
2520
|
options: components["schemas"]["ScanOptions"];
|
|
1798
2521
|
/** Packages */
|
|
@@ -1821,11 +2544,23 @@ export interface components {
|
|
|
1821
2544
|
transcripts?: components["schemas"]["ScanTranscripts"] | null;
|
|
1822
2545
|
/** Validation */
|
|
1823
2546
|
validation?: {
|
|
1824
|
-
[key: string]: components["schemas"]["ValidationSet"];
|
|
2547
|
+
[key: string]: components["schemas"]["ValidationSet-Output"];
|
|
1825
2548
|
} | null;
|
|
1826
2549
|
/** Worklist */
|
|
1827
2550
|
worklist?: components["schemas"]["Worklist"][] | null;
|
|
1828
2551
|
};
|
|
2552
|
+
/** ScanStatusWithActiveInfo */
|
|
2553
|
+
ScanStatusWithActiveInfo: {
|
|
2554
|
+
active_scan_info?: components["schemas"]["ActiveScanInfo"] | null;
|
|
2555
|
+
/** Complete */
|
|
2556
|
+
complete: boolean;
|
|
2557
|
+
/** Errors */
|
|
2558
|
+
errors: components["schemas"]["Error"][];
|
|
2559
|
+
/** Location */
|
|
2560
|
+
location: string;
|
|
2561
|
+
spec: components["schemas"]["ScanSpec"];
|
|
2562
|
+
summary: components["schemas"]["Summary"];
|
|
2563
|
+
};
|
|
1829
2564
|
/**
|
|
1830
2565
|
* ScanTranscripts
|
|
1831
2566
|
* @description Transcripts targeted by a scan.
|
|
@@ -1925,7 +2660,7 @@ export interface components {
|
|
|
1925
2660
|
/** ScansResponse */
|
|
1926
2661
|
ScansResponse: {
|
|
1927
2662
|
/** Items */
|
|
1928
|
-
items: components["schemas"]["
|
|
2663
|
+
items: components["schemas"]["ScanStatusWithActiveInfo"][];
|
|
1929
2664
|
/** Next Cursor */
|
|
1930
2665
|
next_cursor?: {
|
|
1931
2666
|
[key: string]: unknown;
|
|
@@ -2641,7 +3376,7 @@ export interface components {
|
|
|
2641
3376
|
* Additionalproperties
|
|
2642
3377
|
* @default false
|
|
2643
3378
|
*/
|
|
2644
|
-
additionalProperties: boolean;
|
|
3379
|
+
additionalProperties: components["schemas"]["JSONSchema"] | boolean | null;
|
|
2645
3380
|
/** Properties */
|
|
2646
3381
|
properties: {
|
|
2647
3382
|
[key: string]: components["schemas"]["JSONSchema"];
|
|
@@ -2689,6 +3424,8 @@ export interface components {
|
|
|
2689
3424
|
events: (components["schemas"]["SampleInitEvent"] | components["schemas"]["SampleLimitEvent"] | components["schemas"]["SandboxEvent"] | components["schemas"]["StateEvent"] | components["schemas"]["StoreEvent"] | components["schemas"]["ModelEvent"] | components["schemas"]["ToolEvent"] | components["schemas"]["ApprovalEvent"] | components["schemas"]["InputEvent"] | components["schemas"]["ScoreEvent"] | components["schemas"]["ScoreEditEvent"] | components["schemas"]["ErrorEvent"] | components["schemas"]["LoggerEvent"] | components["schemas"]["InfoEvent"] | components["schemas"]["SpanBeginEvent"] | components["schemas"]["SpanEndEvent"] | components["schemas"]["StepEvent"] | components["schemas"]["SubtaskEvent"])[];
|
|
2690
3425
|
/** Limit */
|
|
2691
3426
|
limit?: string | null;
|
|
3427
|
+
/** Message Count */
|
|
3428
|
+
message_count?: number | null;
|
|
2692
3429
|
/** Messages */
|
|
2693
3430
|
messages: (components["schemas"]["ChatMessageSystem"] | components["schemas"]["ChatMessageUser"] | components["schemas"]["ChatMessageAssistant"] | components["schemas"]["ChatMessageTool"])[];
|
|
2694
3431
|
/** Metadata */
|
|
@@ -2752,6 +3489,8 @@ export interface components {
|
|
|
2752
3489
|
error?: string | null;
|
|
2753
3490
|
/** Limit */
|
|
2754
3491
|
limit?: string | null;
|
|
3492
|
+
/** Message Count */
|
|
3493
|
+
message_count?: number | null;
|
|
2755
3494
|
/** Metadata */
|
|
2756
3495
|
metadata: {
|
|
2757
3496
|
[key: string]: unknown;
|
|
@@ -2851,9 +3590,33 @@ export interface components {
|
|
|
2851
3590
|
labels: {
|
|
2852
3591
|
[key: string]: components["schemas"]["JsonValue"];
|
|
2853
3592
|
} | null;
|
|
3593
|
+
/**
|
|
3594
|
+
* Predicate
|
|
3595
|
+
* @default null
|
|
3596
|
+
*/
|
|
3597
|
+
predicate: ("gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "startswith" | "endswith" | "icontains" | "iequals") | null;
|
|
3598
|
+
/**
|
|
3599
|
+
* Split
|
|
3600
|
+
* @default null
|
|
3601
|
+
*/
|
|
3602
|
+
split: string | null;
|
|
2854
3603
|
/** @default null */
|
|
2855
3604
|
target: components["schemas"]["JsonValue"] | null;
|
|
2856
3605
|
};
|
|
3606
|
+
/** ValidationCaseRequest */
|
|
3607
|
+
ValidationCaseRequest: {
|
|
3608
|
+
/** Id */
|
|
3609
|
+
id?: string | string[] | null;
|
|
3610
|
+
/** Labels */
|
|
3611
|
+
labels?: {
|
|
3612
|
+
[key: string]: components["schemas"]["JsonValue"];
|
|
3613
|
+
} | null;
|
|
3614
|
+
/** Predicate */
|
|
3615
|
+
predicate?: string | null;
|
|
3616
|
+
/** Split */
|
|
3617
|
+
split?: string | null;
|
|
3618
|
+
target?: components["schemas"]["JsonValue"] | null;
|
|
3619
|
+
};
|
|
2857
3620
|
/** ValidationError */
|
|
2858
3621
|
ValidationError: {
|
|
2859
3622
|
/** Location */
|
|
@@ -2867,11 +3630,28 @@ export interface components {
|
|
|
2867
3630
|
* ValidationSet
|
|
2868
3631
|
* @description Validation set for a scanner.
|
|
2869
3632
|
*/
|
|
2870
|
-
ValidationSet: {
|
|
3633
|
+
"ValidationSet-Input": {
|
|
3634
|
+
/** Cases */
|
|
3635
|
+
cases: components["schemas"]["ValidationCase"][];
|
|
3636
|
+
/**
|
|
3637
|
+
* Predicate
|
|
3638
|
+
* @default eq
|
|
3639
|
+
*/
|
|
3640
|
+
predicate: ("gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "startswith" | "endswith" | "icontains" | "iequals") | null;
|
|
3641
|
+
/** Split */
|
|
3642
|
+
split?: string | string[] | null;
|
|
3643
|
+
};
|
|
3644
|
+
/**
|
|
3645
|
+
* ValidationSet
|
|
3646
|
+
* @description Validation set for a scanner.
|
|
3647
|
+
*/
|
|
3648
|
+
"ValidationSet-Output": {
|
|
2871
3649
|
/** Cases */
|
|
2872
3650
|
cases: components["schemas"]["ValidationCase"][];
|
|
2873
3651
|
/** Predicate */
|
|
2874
3652
|
predicate: string | null;
|
|
3653
|
+
/** Split */
|
|
3654
|
+
split?: string | string[] | null;
|
|
2875
3655
|
};
|
|
2876
3656
|
/**
|
|
2877
3657
|
* Worklist
|
|
@@ -2892,6 +3672,32 @@ export interface components {
|
|
|
2892
3672
|
}
|
|
2893
3673
|
export type $defs = Record<string, never>;
|
|
2894
3674
|
export interface operations {
|
|
3675
|
+
code_code_post: {
|
|
3676
|
+
parameters: {
|
|
3677
|
+
query?: never;
|
|
3678
|
+
header?: never;
|
|
3679
|
+
path?: never;
|
|
3680
|
+
cookie?: never;
|
|
3681
|
+
};
|
|
3682
|
+
requestBody: {
|
|
3683
|
+
content: {
|
|
3684
|
+
"application/json": components["schemas"]["Condition"] | components["schemas"]["Condition"][];
|
|
3685
|
+
};
|
|
3686
|
+
};
|
|
3687
|
+
responses: {
|
|
3688
|
+
/** @description Successful Response */
|
|
3689
|
+
200: {
|
|
3690
|
+
headers: {
|
|
3691
|
+
[name: string]: unknown;
|
|
3692
|
+
};
|
|
3693
|
+
content: {
|
|
3694
|
+
"application/json": {
|
|
3695
|
+
[key: string]: string;
|
|
3696
|
+
};
|
|
3697
|
+
};
|
|
3698
|
+
};
|
|
3699
|
+
};
|
|
3700
|
+
};
|
|
2895
3701
|
config_config_get: {
|
|
2896
3702
|
parameters: {
|
|
2897
3703
|
query?: never;
|
|
@@ -2912,6 +3718,77 @@ export interface operations {
|
|
|
2912
3718
|
};
|
|
2913
3719
|
};
|
|
2914
3720
|
};
|
|
3721
|
+
get_project_config_project_config_get: {
|
|
3722
|
+
parameters: {
|
|
3723
|
+
query?: never;
|
|
3724
|
+
header?: never;
|
|
3725
|
+
path?: never;
|
|
3726
|
+
cookie?: never;
|
|
3727
|
+
};
|
|
3728
|
+
requestBody?: never;
|
|
3729
|
+
responses: {
|
|
3730
|
+
/** @description Successful Response */
|
|
3731
|
+
200: {
|
|
3732
|
+
headers: {
|
|
3733
|
+
[name: string]: unknown;
|
|
3734
|
+
};
|
|
3735
|
+
content: {
|
|
3736
|
+
"application/json": components["schemas"]["ProjectConfig-Output"];
|
|
3737
|
+
};
|
|
3738
|
+
};
|
|
3739
|
+
};
|
|
3740
|
+
};
|
|
3741
|
+
put_project_config_project_config_put: {
|
|
3742
|
+
parameters: {
|
|
3743
|
+
query?: never;
|
|
3744
|
+
header?: {
|
|
3745
|
+
/** @description ETag from GET request (optional, omit to force save) */
|
|
3746
|
+
"if-match"?: string | null;
|
|
3747
|
+
};
|
|
3748
|
+
path?: never;
|
|
3749
|
+
cookie?: never;
|
|
3750
|
+
};
|
|
3751
|
+
requestBody: {
|
|
3752
|
+
content: {
|
|
3753
|
+
"application/json": components["schemas"]["ProjectConfig-Input"];
|
|
3754
|
+
};
|
|
3755
|
+
};
|
|
3756
|
+
responses: {
|
|
3757
|
+
/** @description Successful Response */
|
|
3758
|
+
200: {
|
|
3759
|
+
headers: {
|
|
3760
|
+
[name: string]: unknown;
|
|
3761
|
+
};
|
|
3762
|
+
content: {
|
|
3763
|
+
"application/json": components["schemas"]["ProjectConfig-Output"];
|
|
3764
|
+
};
|
|
3765
|
+
};
|
|
3766
|
+
};
|
|
3767
|
+
};
|
|
3768
|
+
run_llm_scanner_runllmscanner_post: {
|
|
3769
|
+
parameters: {
|
|
3770
|
+
query?: never;
|
|
3771
|
+
header?: never;
|
|
3772
|
+
path?: never;
|
|
3773
|
+
cookie?: never;
|
|
3774
|
+
};
|
|
3775
|
+
requestBody: {
|
|
3776
|
+
content: {
|
|
3777
|
+
"application/json": components["schemas"]["ScanJobConfig"];
|
|
3778
|
+
};
|
|
3779
|
+
};
|
|
3780
|
+
responses: {
|
|
3781
|
+
/** @description Successful Response */
|
|
3782
|
+
200: {
|
|
3783
|
+
headers: {
|
|
3784
|
+
[name: string]: unknown;
|
|
3785
|
+
};
|
|
3786
|
+
content: {
|
|
3787
|
+
"application/json": components["schemas"]["Status"];
|
|
3788
|
+
};
|
|
3789
|
+
};
|
|
3790
|
+
};
|
|
3791
|
+
};
|
|
2915
3792
|
scans_scans_post: {
|
|
2916
3793
|
parameters: {
|
|
2917
3794
|
query?: never;
|
|
@@ -2936,6 +3813,26 @@ export interface operations {
|
|
|
2936
3813
|
};
|
|
2937
3814
|
};
|
|
2938
3815
|
};
|
|
3816
|
+
active_scans_scans_active_get: {
|
|
3817
|
+
parameters: {
|
|
3818
|
+
query?: never;
|
|
3819
|
+
header?: never;
|
|
3820
|
+
path?: never;
|
|
3821
|
+
cookie?: never;
|
|
3822
|
+
};
|
|
3823
|
+
requestBody?: never;
|
|
3824
|
+
responses: {
|
|
3825
|
+
/** @description Successful Response */
|
|
3826
|
+
200: {
|
|
3827
|
+
headers: {
|
|
3828
|
+
[name: string]: unknown;
|
|
3829
|
+
};
|
|
3830
|
+
content: {
|
|
3831
|
+
"application/json": components["schemas"]["ActiveScansResponse"];
|
|
3832
|
+
};
|
|
3833
|
+
};
|
|
3834
|
+
};
|
|
3835
|
+
};
|
|
2939
3836
|
scan_scans__scan__get: {
|
|
2940
3837
|
parameters: {
|
|
2941
3838
|
query?: never;
|
|
@@ -3038,6 +3935,33 @@ export interface operations {
|
|
|
3038
3935
|
};
|
|
3039
3936
|
};
|
|
3040
3937
|
};
|
|
3938
|
+
transcripts_distinct_transcripts__dir__distinct_post: {
|
|
3939
|
+
parameters: {
|
|
3940
|
+
query?: never;
|
|
3941
|
+
header?: never;
|
|
3942
|
+
path: {
|
|
3943
|
+
/** @description Transcripts directory (base64url-encoded) */
|
|
3944
|
+
dir: string;
|
|
3945
|
+
};
|
|
3946
|
+
cookie?: never;
|
|
3947
|
+
};
|
|
3948
|
+
requestBody?: {
|
|
3949
|
+
content: {
|
|
3950
|
+
"application/json": components["schemas"]["DistinctRequest"] | null;
|
|
3951
|
+
};
|
|
3952
|
+
};
|
|
3953
|
+
responses: {
|
|
3954
|
+
/** @description Successful Response */
|
|
3955
|
+
200: {
|
|
3956
|
+
headers: {
|
|
3957
|
+
[name: string]: unknown;
|
|
3958
|
+
};
|
|
3959
|
+
content: {
|
|
3960
|
+
"application/json": (string | number | boolean | null)[];
|
|
3961
|
+
};
|
|
3962
|
+
};
|
|
3963
|
+
};
|
|
3964
|
+
};
|
|
3041
3965
|
transcript_transcripts__dir___id__get: {
|
|
3042
3966
|
parameters: {
|
|
3043
3967
|
query?: never;
|
|
@@ -3063,4 +3987,183 @@ export interface operations {
|
|
|
3063
3987
|
};
|
|
3064
3988
|
};
|
|
3065
3989
|
};
|
|
3990
|
+
list_validations_validations_get: {
|
|
3991
|
+
parameters: {
|
|
3992
|
+
query?: never;
|
|
3993
|
+
header?: never;
|
|
3994
|
+
path?: never;
|
|
3995
|
+
cookie?: never;
|
|
3996
|
+
};
|
|
3997
|
+
requestBody?: never;
|
|
3998
|
+
responses: {
|
|
3999
|
+
/** @description Successful Response */
|
|
4000
|
+
200: {
|
|
4001
|
+
headers: {
|
|
4002
|
+
[name: string]: unknown;
|
|
4003
|
+
};
|
|
4004
|
+
content: {
|
|
4005
|
+
"application/json": string[];
|
|
4006
|
+
};
|
|
4007
|
+
};
|
|
4008
|
+
};
|
|
4009
|
+
};
|
|
4010
|
+
create_validation_validations_post: {
|
|
4011
|
+
parameters: {
|
|
4012
|
+
query?: never;
|
|
4013
|
+
header?: never;
|
|
4014
|
+
path?: never;
|
|
4015
|
+
cookie?: never;
|
|
4016
|
+
};
|
|
4017
|
+
requestBody: {
|
|
4018
|
+
content: {
|
|
4019
|
+
"application/json": components["schemas"]["CreateValidationSetRequest"];
|
|
4020
|
+
};
|
|
4021
|
+
};
|
|
4022
|
+
responses: {
|
|
4023
|
+
/** @description Successful Response */
|
|
4024
|
+
200: {
|
|
4025
|
+
headers: {
|
|
4026
|
+
[name: string]: unknown;
|
|
4027
|
+
};
|
|
4028
|
+
content: {
|
|
4029
|
+
"application/json": string;
|
|
4030
|
+
};
|
|
4031
|
+
};
|
|
4032
|
+
};
|
|
4033
|
+
};
|
|
4034
|
+
get_validation_cases_validations__uri__get: {
|
|
4035
|
+
parameters: {
|
|
4036
|
+
query?: never;
|
|
4037
|
+
header?: never;
|
|
4038
|
+
path: {
|
|
4039
|
+
/** @description Validation file URI (base64url-encoded) */
|
|
4040
|
+
uri: string;
|
|
4041
|
+
};
|
|
4042
|
+
cookie?: never;
|
|
4043
|
+
};
|
|
4044
|
+
requestBody?: never;
|
|
4045
|
+
responses: {
|
|
4046
|
+
/** @description Successful Response */
|
|
4047
|
+
200: {
|
|
4048
|
+
headers: {
|
|
4049
|
+
[name: string]: unknown;
|
|
4050
|
+
};
|
|
4051
|
+
content: {
|
|
4052
|
+
"application/json": {
|
|
4053
|
+
[key: string]: unknown;
|
|
4054
|
+
}[];
|
|
4055
|
+
};
|
|
4056
|
+
};
|
|
4057
|
+
};
|
|
4058
|
+
};
|
|
4059
|
+
delete_validation_validations__uri__delete: {
|
|
4060
|
+
parameters: {
|
|
4061
|
+
query?: never;
|
|
4062
|
+
header?: never;
|
|
4063
|
+
path: {
|
|
4064
|
+
/** @description Validation file URI (base64url-encoded) */
|
|
4065
|
+
uri: string;
|
|
4066
|
+
};
|
|
4067
|
+
cookie?: never;
|
|
4068
|
+
};
|
|
4069
|
+
requestBody?: never;
|
|
4070
|
+
responses: {
|
|
4071
|
+
/** @description Successful Response */
|
|
4072
|
+
200: {
|
|
4073
|
+
headers: {
|
|
4074
|
+
[name: string]: unknown;
|
|
4075
|
+
};
|
|
4076
|
+
content: {
|
|
4077
|
+
"application/json": {
|
|
4078
|
+
[key: string]: boolean;
|
|
4079
|
+
};
|
|
4080
|
+
};
|
|
4081
|
+
};
|
|
4082
|
+
};
|
|
4083
|
+
};
|
|
4084
|
+
get_validation_case_validations__uri___case_id__get: {
|
|
4085
|
+
parameters: {
|
|
4086
|
+
query?: never;
|
|
4087
|
+
header?: never;
|
|
4088
|
+
path: {
|
|
4089
|
+
/** @description Validation file URI (base64url-encoded) */
|
|
4090
|
+
uri: string;
|
|
4091
|
+
/** @description Case ID (base64url-encoded) */
|
|
4092
|
+
case_id: string;
|
|
4093
|
+
};
|
|
4094
|
+
cookie?: never;
|
|
4095
|
+
};
|
|
4096
|
+
requestBody?: never;
|
|
4097
|
+
responses: {
|
|
4098
|
+
/** @description Successful Response */
|
|
4099
|
+
200: {
|
|
4100
|
+
headers: {
|
|
4101
|
+
[name: string]: unknown;
|
|
4102
|
+
};
|
|
4103
|
+
content: {
|
|
4104
|
+
"application/json": {
|
|
4105
|
+
[key: string]: unknown;
|
|
4106
|
+
};
|
|
4107
|
+
};
|
|
4108
|
+
};
|
|
4109
|
+
};
|
|
4110
|
+
};
|
|
4111
|
+
upsert_validation_case_validations__uri___case_id__post: {
|
|
4112
|
+
parameters: {
|
|
4113
|
+
query?: never;
|
|
4114
|
+
header?: never;
|
|
4115
|
+
path: {
|
|
4116
|
+
/** @description Validation file URI (base64url-encoded) */
|
|
4117
|
+
uri: string;
|
|
4118
|
+
/** @description Case ID (base64url-encoded) */
|
|
4119
|
+
case_id: string;
|
|
4120
|
+
};
|
|
4121
|
+
cookie?: never;
|
|
4122
|
+
};
|
|
4123
|
+
requestBody: {
|
|
4124
|
+
content: {
|
|
4125
|
+
"application/json": components["schemas"]["ValidationCaseRequest"];
|
|
4126
|
+
};
|
|
4127
|
+
};
|
|
4128
|
+
responses: {
|
|
4129
|
+
/** @description Successful Response */
|
|
4130
|
+
200: {
|
|
4131
|
+
headers: {
|
|
4132
|
+
[name: string]: unknown;
|
|
4133
|
+
};
|
|
4134
|
+
content: {
|
|
4135
|
+
"application/json": {
|
|
4136
|
+
[key: string]: unknown;
|
|
4137
|
+
};
|
|
4138
|
+
};
|
|
4139
|
+
};
|
|
4140
|
+
};
|
|
4141
|
+
};
|
|
4142
|
+
delete_validation_case_validations__uri___case_id__delete: {
|
|
4143
|
+
parameters: {
|
|
4144
|
+
query?: never;
|
|
4145
|
+
header?: never;
|
|
4146
|
+
path: {
|
|
4147
|
+
/** @description Validation file URI (base64url-encoded) */
|
|
4148
|
+
uri: string;
|
|
4149
|
+
/** @description Case ID (base64url-encoded) */
|
|
4150
|
+
case_id: string;
|
|
4151
|
+
};
|
|
4152
|
+
cookie?: never;
|
|
4153
|
+
};
|
|
4154
|
+
requestBody?: never;
|
|
4155
|
+
responses: {
|
|
4156
|
+
/** @description Successful Response */
|
|
4157
|
+
200: {
|
|
4158
|
+
headers: {
|
|
4159
|
+
[name: string]: unknown;
|
|
4160
|
+
};
|
|
4161
|
+
content: {
|
|
4162
|
+
"application/json": {
|
|
4163
|
+
[key: string]: boolean;
|
|
4164
|
+
};
|
|
4165
|
+
};
|
|
4166
|
+
};
|
|
4167
|
+
};
|
|
4168
|
+
};
|
|
3066
4169
|
}
|