@orq-ai/node 4.6.8 → 4.6.9
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/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/config.js.map +1 -1
- package/lib/security.d.ts +1 -1
- package/lib/security.d.ts.map +1 -1
- package/lib/security.js +19 -8
- package/lib/security.js.map +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevals.js +6 -6
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/getv2humanevalsid.js +6 -6
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/patchv2humanevalsid.js +12 -12
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevals.js +12 -12
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +2 -11
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/lib/security.ts +14 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +0 -56
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +0 -30
- package/packages/orq-rc/src/models/operations/createagentresponserequest.ts +0 -26
- package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createimage.ts +0 -6
- package/packages/orq-rc/src/models/operations/createimageedit.ts +1 -1
- package/packages/orq-rc/src/models/operations/createimagevariation.ts +1 -1
- package/packages/orq-rc/src/models/operations/createresponse.ts +180 -40
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
- package/packages/orq-rc/src/models/operations/getv2humanevals.ts +6 -6
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsid.ts +6 -6
- package/packages/orq-rc/src/models/operations/invokeagent.ts +0 -24
- package/packages/orq-rc/src/models/operations/listagents.ts +0 -14
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +1 -1
- package/packages/orq-rc/src/models/operations/parse.ts +0 -7
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/patchv2humanevalsid.ts +12 -12
- package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +14 -17
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2humanevals.ts +12 -12
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +0 -16
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +1 -58
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +1 -25
- package/packages/orq-rc/src/models/operations/streamagent.ts +0 -24
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -25
- package/packages/orq-rc/src/models/operations/updateagent.ts +0 -31
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/src/lib/config.ts +3 -3
- package/src/lib/security.ts +14 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevals.ts +6 -6
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/getv2humanevalsid.ts +6 -6
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/patchv2humanevalsid.ts +12 -12
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevals.ts +12 -12
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -2358,7 +2358,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
2358
2358
|
.default("orq"),
|
|
2359
2359
|
reviewed_by_id: z.string(),
|
|
2360
2360
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2361
|
-
"2026-
|
|
2361
|
+
"2026-04-01T06:57:40.327Z",
|
|
2362
2362
|
).transform(v => new Date(v)),
|
|
2363
2363
|
type: z.literal("string_array"),
|
|
2364
2364
|
values: z.array(z.string()),
|
|
@@ -2404,7 +2404,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
2404
2404
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
2405
2405
|
reviewed_by_id: z.string(),
|
|
2406
2406
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2407
|
-
"2026-
|
|
2407
|
+
"2026-04-01T06:57:40.327Z",
|
|
2408
2408
|
).transform(v => new Date(v)),
|
|
2409
2409
|
type: z.literal("number"),
|
|
2410
2410
|
value: z.number(),
|
|
@@ -2449,7 +2449,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
2449
2449
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
2450
2450
|
reviewed_by_id: z.string(),
|
|
2451
2451
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2452
|
-
"2026-
|
|
2452
|
+
"2026-04-01T06:57:40.326Z",
|
|
2453
2453
|
).transform(v => new Date(v)),
|
|
2454
2454
|
type: z.literal("string"),
|
|
2455
2455
|
value: z.string(),
|
|
@@ -2530,7 +2530,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2530
2530
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2531
2531
|
.optional(),
|
|
2532
2532
|
updated: z.string().datetime({ offset: true }).default(
|
|
2533
|
-
"2026-
|
|
2533
|
+
"2026-04-01T06:57:21.910Z",
|
|
2534
2534
|
).transform(v => new Date(v)),
|
|
2535
2535
|
}).transform((v) => {
|
|
2536
2536
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2026-
|
|
185
|
+
"2026-04-01T06:57:21.910Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
152
152
|
z.ZodTypeDef,
|
|
153
153
|
unknown
|
|
154
154
|
> = z.object({
|
|
155
|
-
_id: z.string().default("
|
|
155
|
+
_id: z.string().default("01KN3XARW30F42196K0FHBV5B3"),
|
|
156
156
|
display_name: z.string(),
|
|
157
157
|
description: z.string().optional(),
|
|
158
158
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -1212,8 +1212,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
1212
1212
|
> = z.object({
|
|
1213
1213
|
_id: z.string(),
|
|
1214
1214
|
description: z.string(),
|
|
1215
|
-
created: z.string().default("2026-
|
|
1216
|
-
updated: z.string().default("2026-
|
|
1215
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1216
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1217
1217
|
guardrail_config: z.union([
|
|
1218
1218
|
z.lazy(() =>
|
|
1219
1219
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -1366,8 +1366,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
1366
1366
|
> = z.object({
|
|
1367
1367
|
_id: z.string(),
|
|
1368
1368
|
description: z.string(),
|
|
1369
|
-
created: z.string().default("2026-
|
|
1370
|
-
updated: z.string().default("2026-
|
|
1369
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1370
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1371
1371
|
guardrail_config: z.union([
|
|
1372
1372
|
z.lazy(() =>
|
|
1373
1373
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -2182,8 +2182,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
2182
2182
|
> = z.object({
|
|
2183
2183
|
_id: z.string(),
|
|
2184
2184
|
description: z.string(),
|
|
2185
|
-
created: z.string().default("2026-
|
|
2186
|
-
updated: z.string().default("2026-
|
|
2185
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2186
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2187
2187
|
guardrail_config: z.union([
|
|
2188
2188
|
z.lazy(() =>
|
|
2189
2189
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -2356,8 +2356,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2356
2356
|
> = z.object({
|
|
2357
2357
|
_id: z.string(),
|
|
2358
2358
|
description: z.string(),
|
|
2359
|
-
created: z.string().default("2026-
|
|
2360
|
-
updated: z.string().default("2026-
|
|
2359
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2360
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2361
2361
|
guardrail_config: z.union([
|
|
2362
2362
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2363
2363
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -2485,8 +2485,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2485
2485
|
> = z.object({
|
|
2486
2486
|
_id: z.string(),
|
|
2487
2487
|
description: z.string(),
|
|
2488
|
-
created: z.string().default("2026-
|
|
2489
|
-
updated: z.string().default("2026-
|
|
2488
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2489
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2490
2490
|
guardrail_config: z.union([
|
|
2491
2491
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsBoolean$inboundSchema),
|
|
2492
2492
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -2606,8 +2606,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
2606
2606
|
> = z.object({
|
|
2607
2607
|
_id: z.string(),
|
|
2608
2608
|
description: z.string(),
|
|
2609
|
-
created: z.string().default("2026-
|
|
2610
|
-
updated: z.string().default("2026-
|
|
2609
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2610
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2611
2611
|
guardrail_config: z.union([
|
|
2612
2612
|
z.lazy(() => UpdateEvalGuardrailConfigBoolean$inboundSchema),
|
|
2613
2613
|
z.lazy(() => UpdateEvalGuardrailConfigNumber$inboundSchema),
|
|
@@ -2908,8 +2908,8 @@ export const UpdateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
2908
2908
|
> = z.object({
|
|
2909
2909
|
_id: z.string(),
|
|
2910
2910
|
description: z.string(),
|
|
2911
|
-
created: z.string().default("2026-
|
|
2912
|
-
updated: z.string().default("2026-
|
|
2911
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2912
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2913
2913
|
guardrail_config: z.union([
|
|
2914
2914
|
z.lazy(() =>
|
|
2915
2915
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean$inboundSchema
|
|
@@ -3052,8 +3052,8 @@ export const UpdateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
3052
3052
|
> = z.object({
|
|
3053
3053
|
_id: z.string(),
|
|
3054
3054
|
description: z.string(),
|
|
3055
|
-
created: z.string().default("2026-
|
|
3056
|
-
updated: z.string().default("2026-
|
|
3055
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3056
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3057
3057
|
guardrail_config: z.union([
|
|
3058
3058
|
z.lazy(() =>
|
|
3059
3059
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean$inboundSchema
|
|
@@ -167,7 +167,7 @@ export const UpdateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2026-
|
|
170
|
+
"2026-04-01T06:57:21.910Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -1472,7 +1472,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1472
1472
|
z.ZodTypeDef,
|
|
1473
1473
|
RequestBodyTools
|
|
1474
1474
|
> = z.object({
|
|
1475
|
-
id: z.string().default("
|
|
1475
|
+
id: z.string().default("01KN3XARR2RWE0Q42PTKMQVGY0"),
|
|
1476
1476
|
name: z.string(),
|
|
1477
1477
|
description: z.string().optional(),
|
|
1478
1478
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2190,7 +2190,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2190
2190
|
z.ZodTypeDef,
|
|
2191
2191
|
unknown
|
|
2192
2192
|
> = z.object({
|
|
2193
|
-
_id: z.string().default("
|
|
2193
|
+
_id: z.string().default("tool_01KN3XARQWVNGQP868Q4V5CBDZ"),
|
|
2194
2194
|
path: z.string(),
|
|
2195
2195
|
key: z.string(),
|
|
2196
2196
|
display_name: z.string().optional(),
|
|
@@ -2295,7 +2295,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2295
2295
|
z.ZodTypeDef,
|
|
2296
2296
|
unknown
|
|
2297
2297
|
> = z.object({
|
|
2298
|
-
id: z.string().default("
|
|
2298
|
+
id: z.string().default("01KN3XARQV3G0RZJHMDRT449G7"),
|
|
2299
2299
|
name: z.string(),
|
|
2300
2300
|
description: z.string().optional(),
|
|
2301
2301
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2351,7 +2351,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2351
2351
|
z.ZodTypeDef,
|
|
2352
2352
|
unknown
|
|
2353
2353
|
> = z.object({
|
|
2354
|
-
_id: z.string().default("
|
|
2354
|
+
_id: z.string().default("tool_01KN3XARQTVG7RKXTY2YJH3HXE"),
|
|
2355
2355
|
path: z.string(),
|
|
2356
2356
|
key: z.string(),
|
|
2357
2357
|
display_name: z.string().optional(),
|
|
@@ -2542,7 +2542,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2542
2542
|
z.ZodTypeDef,
|
|
2543
2543
|
unknown
|
|
2544
2544
|
> = z.object({
|
|
2545
|
-
_id: z.string().default("
|
|
2545
|
+
_id: z.string().default("tool_01KN3XARQRMJE4VEPB8SKW4TSG"),
|
|
2546
2546
|
path: z.string(),
|
|
2547
2547
|
key: z.string(),
|
|
2548
2548
|
display_name: z.string().optional(),
|
|
@@ -2639,7 +2639,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2639
2639
|
z.ZodTypeDef,
|
|
2640
2640
|
unknown
|
|
2641
2641
|
> = z.object({
|
|
2642
|
-
_id: z.string().default("
|
|
2642
|
+
_id: z.string().default("tool_01KN3XARQPJWFZCZMB3RBT507D"),
|
|
2643
2643
|
path: z.string(),
|
|
2644
2644
|
key: z.string(),
|
|
2645
2645
|
display_name: z.string().optional(),
|
|
@@ -2744,7 +2744,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2744
2744
|
z.ZodTypeDef,
|
|
2745
2745
|
unknown
|
|
2746
2746
|
> = z.object({
|
|
2747
|
-
_id: z.string().default("
|
|
2747
|
+
_id: z.string().default("tool_01KN3XARQNC26B6TTPN9AAWN6H"),
|
|
2748
2748
|
path: z.string(),
|
|
2749
2749
|
key: z.string(),
|
|
2750
2750
|
display_name: z.string().optional(),
|
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "4.6.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.6.
|
|
71
|
+
sdkVersion: "4.6.9",
|
|
72
|
+
genVersion: "2.879.1",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.6.9 2.879.1 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/lib/security.ts
CHANGED
|
@@ -240,8 +240,9 @@ function applyBearer(
|
|
|
240
240
|
|
|
241
241
|
export function resolveGlobalSecurity(
|
|
242
242
|
security: Partial<components.Security> | null | undefined,
|
|
243
|
+
allowedFields?: number[],
|
|
243
244
|
): SecurityState | null {
|
|
244
|
-
|
|
245
|
+
let inputs: SecurityInput[][] = [
|
|
245
246
|
[
|
|
246
247
|
{
|
|
247
248
|
fieldName: "Authorization",
|
|
@@ -249,7 +250,18 @@ export function resolveGlobalSecurity(
|
|
|
249
250
|
value: security?.apiKey ?? env().ORQ_API_KEY,
|
|
250
251
|
},
|
|
251
252
|
],
|
|
252
|
-
|
|
253
|
+
];
|
|
254
|
+
|
|
255
|
+
if (allowedFields) {
|
|
256
|
+
inputs = allowedFields.map((i) => {
|
|
257
|
+
if (i < 0 || i >= inputs.length) {
|
|
258
|
+
throw new RangeError(`invalid allowedFields index ${i}`);
|
|
259
|
+
}
|
|
260
|
+
return inputs[i]!;
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
return resolveSecurity(...inputs);
|
|
253
265
|
}
|
|
254
266
|
|
|
255
267
|
export async function extractSecurity<
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01kn3xar7m3e5sq5meprkm7ec6"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -134,7 +134,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
134
134
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
135
135
|
.optional(),
|
|
136
136
|
updated: z.string().datetime({ offset: true }).default(
|
|
137
|
-
"2026-
|
|
137
|
+
"2026-04-01T06:57:21.910Z",
|
|
138
138
|
).transform(v => new Date(v)),
|
|
139
139
|
}).transform((v) => {
|
|
140
140
|
return remap$(v, {
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-
|
|
141
|
+
"2026-04-01T06:57:21.910Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2355
2355
|
),
|
|
2356
2356
|
reviewed_by_id: z.string(),
|
|
2357
2357
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2358
|
-
"2026-
|
|
2358
|
+
"2026-04-01T06:57:40.300Z",
|
|
2359
2359
|
).transform(v => new Date(v)),
|
|
2360
2360
|
type: z.literal("string_array"),
|
|
2361
2361
|
values: z.array(z.string()),
|
|
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2400
2400
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2401
2401
|
reviewed_by_id: z.string(),
|
|
2402
2402
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2403
|
-
"2026-
|
|
2403
|
+
"2026-04-01T06:57:40.299Z",
|
|
2404
2404
|
).transform(v => new Date(v)),
|
|
2405
2405
|
type: z.literal("number"),
|
|
2406
2406
|
value: z.number(),
|
|
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2446
2446
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2447
2447
|
reviewed_by_id: z.string(),
|
|
2448
2448
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2449
|
-
"2026-
|
|
2449
|
+
"2026-04-01T06:57:40.299Z",
|
|
2450
2450
|
).transform(v => new Date(v)),
|
|
2451
2451
|
type: z.literal("string"),
|
|
2452
2452
|
value: z.string(),
|
|
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2530
2530
|
.optional(),
|
|
2531
2531
|
updated: z.string().datetime({ offset: true }).default(
|
|
2532
|
-
"2026-
|
|
2532
|
+
"2026-04-01T06:57:21.910Z",
|
|
2533
2533
|
).transform(v => new Date(v)),
|
|
2534
2534
|
}).transform((v) => {
|
|
2535
2535
|
return remap$(v, {
|
|
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
403
403
|
z.ZodTypeDef,
|
|
404
404
|
unknown
|
|
405
405
|
> = z.object({
|
|
406
|
-
_id: z.string().default("
|
|
406
|
+
_id: z.string().default("01KN3XARW1XTDGZRK9F7JFAYJE"),
|
|
407
407
|
display_name: z.string(),
|
|
408
408
|
description: z.string().optional(),
|
|
409
409
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -2245,8 +2245,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2245
2245
|
> = z.object({
|
|
2246
2246
|
_id: z.string(),
|
|
2247
2247
|
description: z.string(),
|
|
2248
|
-
created: z.string().default("2026-
|
|
2249
|
-
updated: z.string().default("2026-
|
|
2248
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2249
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2250
2250
|
guardrail_config: z.union([
|
|
2251
2251
|
z.lazy(() =>
|
|
2252
2252
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2394,8 +2394,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2394
2394
|
.object({
|
|
2395
2395
|
_id: z.string(),
|
|
2396
2396
|
description: z.string(),
|
|
2397
|
-
created: z.string().default("2026-
|
|
2398
|
-
updated: z.string().default("2026-
|
|
2397
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2398
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2399
2399
|
guardrail_config: z.union([
|
|
2400
2400
|
z.lazy(() =>
|
|
2401
2401
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -3184,8 +3184,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3184
3184
|
> = z.object({
|
|
3185
3185
|
_id: z.string(),
|
|
3186
3186
|
description: z.string(),
|
|
3187
|
-
created: z.string().default("2026-
|
|
3188
|
-
updated: z.string().default("2026-
|
|
3187
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3188
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3189
3189
|
guardrail_config: z.union([
|
|
3190
3190
|
z.lazy(() =>
|
|
3191
3191
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -3363,8 +3363,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
3363
3363
|
> = z.object({
|
|
3364
3364
|
_id: z.string(),
|
|
3365
3365
|
description: z.string(),
|
|
3366
|
-
created: z.string().default("2026-
|
|
3367
|
-
updated: z.string().default("2026-
|
|
3366
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3367
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3368
3368
|
guardrail_config: z.union([
|
|
3369
3369
|
z.lazy(() =>
|
|
3370
3370
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -3504,8 +3504,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3504
3504
|
> = z.object({
|
|
3505
3505
|
_id: z.string(),
|
|
3506
3506
|
description: z.string(),
|
|
3507
|
-
created: z.string().default("2026-
|
|
3508
|
-
updated: z.string().default("2026-
|
|
3507
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3508
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3509
3509
|
guardrail_config: z.union([
|
|
3510
3510
|
z.lazy(() =>
|
|
3511
3511
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -3641,8 +3641,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3641
3641
|
> = z.object({
|
|
3642
3642
|
_id: z.string(),
|
|
3643
3643
|
description: z.string(),
|
|
3644
|
-
created: z.string().default("2026-
|
|
3645
|
-
updated: z.string().default("2026-
|
|
3644
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3645
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3646
3646
|
guardrail_config: z.union([
|
|
3647
3647
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
3648
3648
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -3952,8 +3952,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
3952
3952
|
> = z.object({
|
|
3953
3953
|
_id: z.string(),
|
|
3954
3954
|
description: z.string(),
|
|
3955
|
-
created: z.string().default("2026-
|
|
3956
|
-
updated: z.string().default("2026-
|
|
3955
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3956
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
3957
3957
|
guardrail_config: z.union([
|
|
3958
3958
|
z.lazy(() =>
|
|
3959
3959
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean$inboundSchema
|
|
@@ -4096,8 +4096,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4096
4096
|
> = z.object({
|
|
4097
4097
|
_id: z.string(),
|
|
4098
4098
|
description: z.string(),
|
|
4099
|
-
created: z.string().default("2026-
|
|
4100
|
-
updated: z.string().default("2026-
|
|
4099
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
4100
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
4101
4101
|
guardrail_config: z.union([
|
|
4102
4102
|
z.lazy(() =>
|
|
4103
4103
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean$inboundSchema
|
|
@@ -139,7 +139,7 @@ export const CreateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
139
139
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
140
140
|
.optional(),
|
|
141
141
|
updated: z.string().datetime({ offset: true }).default(
|
|
142
|
-
"2026-
|
|
142
|
+
"2026-04-01T06:57:21.910Z",
|
|
143
143
|
).transform(v => new Date(v)),
|
|
144
144
|
}).transform((v) => {
|
|
145
145
|
return remap$(v, {
|
|
@@ -1899,7 +1899,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1899
1899
|
z.ZodTypeDef,
|
|
1900
1900
|
unknown
|
|
1901
1901
|
> = z.object({
|
|
1902
|
-
_id: z.string().default("
|
|
1902
|
+
_id: z.string().default("tool_01KN3XARQF6J3THTWNC8MD55BN"),
|
|
1903
1903
|
path: z.string(),
|
|
1904
1904
|
key: z.string(),
|
|
1905
1905
|
display_name: z.string().optional(),
|
|
@@ -1998,7 +1998,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1998
1998
|
z.ZodTypeDef,
|
|
1999
1999
|
unknown
|
|
2000
2000
|
> = z.object({
|
|
2001
|
-
id: z.string().default("
|
|
2001
|
+
id: z.string().default("01KN3XARQEAQ2ANXM5P76BD6ZT"),
|
|
2002
2002
|
name: z.string(),
|
|
2003
2003
|
description: z.string().optional(),
|
|
2004
2004
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2052,7 +2052,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2052
2052
|
z.ZodTypeDef,
|
|
2053
2053
|
unknown
|
|
2054
2054
|
> = z.object({
|
|
2055
|
-
_id: z.string().default("
|
|
2055
|
+
_id: z.string().default("tool_01KN3XARQD35NGYHYPVJRW2Z61"),
|
|
2056
2056
|
path: z.string(),
|
|
2057
2057
|
key: z.string(),
|
|
2058
2058
|
display_name: z.string().optional(),
|
|
@@ -2240,7 +2240,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2240
2240
|
z.ZodTypeDef,
|
|
2241
2241
|
unknown
|
|
2242
2242
|
> = z.object({
|
|
2243
|
-
_id: z.string().default("
|
|
2243
|
+
_id: z.string().default("tool_01KN3XARQB89Y0R45B64B4V8JX"),
|
|
2244
2244
|
path: z.string(),
|
|
2245
2245
|
key: z.string(),
|
|
2246
2246
|
display_name: z.string().optional(),
|
|
@@ -2335,7 +2335,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2335
2335
|
z.ZodTypeDef,
|
|
2336
2336
|
unknown
|
|
2337
2337
|
> = z.object({
|
|
2338
|
-
_id: z.string().default("
|
|
2338
|
+
_id: z.string().default("tool_01KN3XARQ9Q1863DJT5FYZZZVN"),
|
|
2339
2339
|
path: z.string(),
|
|
2340
2340
|
key: z.string(),
|
|
2341
2341
|
display_name: z.string().optional(),
|
|
@@ -2438,7 +2438,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2438
2438
|
z.ZodTypeDef,
|
|
2439
2439
|
unknown
|
|
2440
2440
|
> = z.object({
|
|
2441
|
-
_id: z.string().default("
|
|
2441
|
+
_id: z.string().default("tool_01KN3XARQ84FH58E3KRXECE291"),
|
|
2442
2442
|
path: z.string(),
|
|
2443
2443
|
key: z.string(),
|
|
2444
2444
|
display_name: z.string().optional(),
|
|
@@ -768,7 +768,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
768
768
|
z.ZodTypeDef,
|
|
769
769
|
unknown
|
|
770
770
|
> = z.object({
|
|
771
|
-
_id: z.string().default("
|
|
771
|
+
_id: z.string().default("tool_01KN3XARPPETQV8SNEW2ZBP624"),
|
|
772
772
|
path: z.string(),
|
|
773
773
|
key: z.string(),
|
|
774
774
|
display_name: z.string().optional(),
|
|
@@ -867,7 +867,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
867
867
|
z.ZodTypeDef,
|
|
868
868
|
unknown
|
|
869
869
|
> = z.object({
|
|
870
|
-
id: z.string().default("
|
|
870
|
+
id: z.string().default("01KN3XARPN30P3FZ88VZ51Q8TN"),
|
|
871
871
|
name: z.string(),
|
|
872
872
|
description: z.string().optional(),
|
|
873
873
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -918,7 +918,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
918
918
|
z.ZodTypeDef,
|
|
919
919
|
unknown
|
|
920
920
|
> = z.object({
|
|
921
|
-
_id: z.string().default("
|
|
921
|
+
_id: z.string().default("tool_01KN3XARPM3VSQ48YTTSBKCAGJ"),
|
|
922
922
|
path: z.string(),
|
|
923
923
|
key: z.string(),
|
|
924
924
|
display_name: z.string().optional(),
|
|
@@ -1105,7 +1105,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1105
1105
|
z.ZodTypeDef,
|
|
1106
1106
|
unknown
|
|
1107
1107
|
> = z.object({
|
|
1108
|
-
_id: z.string().default("
|
|
1108
|
+
_id: z.string().default("tool_01KN3XARPJE2GWBBAZF611VPE2"),
|
|
1109
1109
|
path: z.string(),
|
|
1110
1110
|
key: z.string(),
|
|
1111
1111
|
display_name: z.string().optional(),
|
|
@@ -1200,7 +1200,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1200
1200
|
z.ZodTypeDef,
|
|
1201
1201
|
unknown
|
|
1202
1202
|
> = z.object({
|
|
1203
|
-
_id: z.string().default("
|
|
1203
|
+
_id: z.string().default("tool_01KN3XARPG64J3CNASZAYWRPAD"),
|
|
1204
1204
|
path: z.string(),
|
|
1205
1205
|
key: z.string(),
|
|
1206
1206
|
display_name: z.string().optional(),
|
|
@@ -1304,7 +1304,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1304
1304
|
z.ZodTypeDef,
|
|
1305
1305
|
unknown
|
|
1306
1306
|
> = z.object({
|
|
1307
|
-
_id: z.string().default("
|
|
1307
|
+
_id: z.string().default("tool_01KN3XARPEJG2CV8N2GM1ED3J4"),
|
|
1308
1308
|
path: z.string(),
|
|
1309
1309
|
key: z.string(),
|
|
1310
1310
|
display_name: z.string().optional(),
|
|
@@ -906,8 +906,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
906
906
|
> = z.object({
|
|
907
907
|
_id: z.string(),
|
|
908
908
|
description: z.string(),
|
|
909
|
-
created: z.string().default("2026-
|
|
910
|
-
updated: z.string().default("2026-
|
|
909
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
910
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
911
911
|
guardrail_config: z.union([
|
|
912
912
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
913
913
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1045,8 +1045,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1045
1045
|
> = z.object({
|
|
1046
1046
|
_id: z.string(),
|
|
1047
1047
|
description: z.string(),
|
|
1048
|
-
created: z.string().default("2026-
|
|
1049
|
-
updated: z.string().default("2026-
|
|
1048
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1049
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1050
1050
|
guardrail_config: z.union([
|
|
1051
1051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1052
1052
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1837,8 +1837,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
1837
1837
|
> = z.object({
|
|
1838
1838
|
_id: z.string(),
|
|
1839
1839
|
description: z.string(),
|
|
1840
|
-
created: z.string().default("2026-
|
|
1841
|
-
updated: z.string().default("2026-
|
|
1840
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1841
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1842
1842
|
guardrail_config: z.union([
|
|
1843
1843
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1844
1844
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -1988,8 +1988,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
1988
1988
|
> = z.object({
|
|
1989
1989
|
_id: z.string(),
|
|
1990
1990
|
description: z.string(),
|
|
1991
|
-
created: z.string().default("2026-
|
|
1992
|
-
updated: z.string().default("2026-
|
|
1991
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1992
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
1993
1993
|
guardrail_config: z.union([
|
|
1994
1994
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
1995
1995
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -2128,8 +2128,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2128
2128
|
> = z.object({
|
|
2129
2129
|
_id: z.string(),
|
|
2130
2130
|
description: z.string(),
|
|
2131
|
-
created: z.string().default("2026-
|
|
2132
|
-
updated: z.string().default("2026-
|
|
2131
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2132
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2133
2133
|
guardrail_config: z.union([
|
|
2134
2134
|
z.lazy(() =>
|
|
2135
2135
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -2278,8 +2278,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2278
2278
|
> = z.object({
|
|
2279
2279
|
_id: z.string(),
|
|
2280
2280
|
description: z.string(),
|
|
2281
|
-
created: z.string().default("2026-
|
|
2282
|
-
updated: z.string().default("2026-
|
|
2281
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2282
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2283
2283
|
guardrail_config: z.union([
|
|
2284
2284
|
z.lazy(() =>
|
|
2285
2285
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -2584,8 +2584,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
2584
2584
|
> = z.object({
|
|
2585
2585
|
_id: z.string(),
|
|
2586
2586
|
description: z.string(),
|
|
2587
|
-
created: z.string().default("2026-
|
|
2588
|
-
updated: z.string().default("2026-
|
|
2587
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2588
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2589
2589
|
guardrail_config: z.union([
|
|
2590
2590
|
z.lazy(() =>
|
|
2591
2591
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyData1Boolean$inboundSchema
|
|
@@ -2728,8 +2728,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
2728
2728
|
> = z.object({
|
|
2729
2729
|
_id: z.string(),
|
|
2730
2730
|
description: z.string(),
|
|
2731
|
-
created: z.string().default("2026-
|
|
2732
|
-
updated: z.string().default("2026-
|
|
2731
|
+
created: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2732
|
+
updated: z.string().default("2026-04-01T06:57:24.533Z"),
|
|
2733
2733
|
guardrail_config: z.union([
|
|
2734
2734
|
z.lazy(() =>
|
|
2735
2735
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|