@orq-ai/node 4.10.0-rc.84 → 4.10.0-rc.86
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 +2 -2
- package/lib/config.js +2 -2
- package/models/components/reasoningpart.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.d.ts +8 -0
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +32 -16
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.d.ts +8 -0
- package/models/operations/getevals.d.ts.map +1 -1
- package/models/operations/getevals.js +32 -16
- package/models/operations/getevals.js.map +1 -1
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- 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/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.d.ts +8 -0
- package/models/operations/updateeval.d.ts.map +1 -1
- package/models/operations/updateeval.js +32 -16
- package/models/operations/updateeval.js.map +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +7 -7
- package/src/lib/config.ts +2 -2
- package/src/models/components/reasoningpart.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 +40 -16
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +40 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- 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/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- 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/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 +40 -16
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -381,6 +381,7 @@ export type Typescript = {
|
|
|
381
381
|
description: string;
|
|
382
382
|
created: string;
|
|
383
383
|
updated: string;
|
|
384
|
+
updatedById?: string | null | undefined;
|
|
384
385
|
guardrailConfig?:
|
|
385
386
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean
|
|
386
387
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Categorical
|
|
@@ -465,6 +466,7 @@ export type Ragas = {
|
|
|
465
466
|
description: string;
|
|
466
467
|
created: string;
|
|
467
468
|
updated: string;
|
|
469
|
+
updatedById?: string | null | undefined;
|
|
468
470
|
guardrailConfig?:
|
|
469
471
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean
|
|
470
472
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyCategorical
|
|
@@ -705,6 +707,7 @@ export type CreateEvalResponseBodyFunction = {
|
|
|
705
707
|
description: string;
|
|
706
708
|
created: string;
|
|
707
709
|
updated: string;
|
|
710
|
+
updatedById?: string | null | undefined;
|
|
708
711
|
guardrailConfig?:
|
|
709
712
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean
|
|
710
713
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONCategorical
|
|
@@ -799,6 +802,7 @@ export type ResponseBodyPython = {
|
|
|
799
802
|
description: string;
|
|
800
803
|
created: string;
|
|
801
804
|
updated: string;
|
|
805
|
+
updatedById?: string | null | undefined;
|
|
802
806
|
guardrailConfig?:
|
|
803
807
|
| CreateEvalGuardrailConfigEvalsResponse200Boolean
|
|
804
808
|
| CreateEvalGuardrailConfigEvalsResponse200Categorical
|
|
@@ -869,6 +873,7 @@ export type CreateEvalResponseBodyHTTP = {
|
|
|
869
873
|
description: string;
|
|
870
874
|
created: string;
|
|
871
875
|
updated: string;
|
|
876
|
+
updatedById?: string | null | undefined;
|
|
872
877
|
guardrailConfig?:
|
|
873
878
|
| CreateEvalGuardrailConfigEvalsResponseBoolean
|
|
874
879
|
| CreateEvalGuardrailConfigEvalsResponseCategorical
|
|
@@ -932,6 +937,7 @@ export type Json = {
|
|
|
932
937
|
description: string;
|
|
933
938
|
created: string;
|
|
934
939
|
updated: string;
|
|
940
|
+
updatedById?: string | null | undefined;
|
|
935
941
|
guardrailConfig?:
|
|
936
942
|
| CreateEvalGuardrailConfigEvalsBoolean
|
|
937
943
|
| CreateEvalGuardrailConfigEvalsCategorical
|
|
@@ -1047,6 +1053,7 @@ export type CreateEvalLlm2 = {
|
|
|
1047
1053
|
description: string;
|
|
1048
1054
|
created: string;
|
|
1049
1055
|
updated: string;
|
|
1056
|
+
updatedById?: string | null | undefined;
|
|
1050
1057
|
guardrailConfig?:
|
|
1051
1058
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean
|
|
1052
1059
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Categorical
|
|
@@ -1124,6 +1131,7 @@ export type CreateEvalLlm1 = {
|
|
|
1124
1131
|
description: string;
|
|
1125
1132
|
created: string;
|
|
1126
1133
|
updated: string;
|
|
1134
|
+
updatedById?: string | null | undefined;
|
|
1127
1135
|
guardrailConfig?:
|
|
1128
1136
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean
|
|
1129
1137
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMCategorical
|
|
@@ -2182,8 +2190,9 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2182
2190
|
> = z.object({
|
|
2183
2191
|
_id: z.string(),
|
|
2184
2192
|
description: z.string(),
|
|
2185
|
-
created: z.string().default("2026-06-
|
|
2186
|
-
updated: z.string().default("2026-06-
|
|
2193
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2194
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2195
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2187
2196
|
guardrail_config: z.nullable(
|
|
2188
2197
|
z.union([
|
|
2189
2198
|
z.lazy(() =>
|
|
@@ -2203,6 +2212,7 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2203
2212
|
}).transform((v) => {
|
|
2204
2213
|
return remap$(v, {
|
|
2205
2214
|
"_id": "id",
|
|
2215
|
+
"updated_by_id": "updatedById",
|
|
2206
2216
|
"guardrail_config": "guardrailConfig",
|
|
2207
2217
|
});
|
|
2208
2218
|
});
|
|
@@ -2371,8 +2381,9 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2371
2381
|
.object({
|
|
2372
2382
|
_id: z.string(),
|
|
2373
2383
|
description: z.string(),
|
|
2374
|
-
created: z.string().default("2026-06-
|
|
2375
|
-
updated: z.string().default("2026-06-
|
|
2384
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2385
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2386
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2376
2387
|
guardrail_config: z.nullable(
|
|
2377
2388
|
z.union([
|
|
2378
2389
|
z.lazy(() =>
|
|
@@ -2393,6 +2404,7 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2393
2404
|
}).transform((v) => {
|
|
2394
2405
|
return remap$(v, {
|
|
2395
2406
|
"_id": "id",
|
|
2407
|
+
"updated_by_id": "updatedById",
|
|
2396
2408
|
"guardrail_config": "guardrailConfig",
|
|
2397
2409
|
"ragas_metric": "ragasMetric",
|
|
2398
2410
|
});
|
|
@@ -3195,8 +3207,9 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3195
3207
|
> = z.object({
|
|
3196
3208
|
_id: z.string(),
|
|
3197
3209
|
description: z.string(),
|
|
3198
|
-
created: z.string().default("2026-06-
|
|
3199
|
-
updated: z.string().default("2026-06-
|
|
3210
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3211
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3212
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
3200
3213
|
guardrail_config: z.nullable(
|
|
3201
3214
|
z.union([
|
|
3202
3215
|
z.lazy(() =>
|
|
@@ -3249,6 +3262,7 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3249
3262
|
}).transform((v) => {
|
|
3250
3263
|
return remap$(v, {
|
|
3251
3264
|
"_id": "id",
|
|
3265
|
+
"updated_by_id": "updatedById",
|
|
3252
3266
|
"guardrail_config": "guardrailConfig",
|
|
3253
3267
|
"function_params": "functionParams",
|
|
3254
3268
|
});
|
|
@@ -3413,8 +3427,9 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
3413
3427
|
> = z.object({
|
|
3414
3428
|
_id: z.string(),
|
|
3415
3429
|
description: z.string(),
|
|
3416
|
-
created: z.string().default("2026-06-
|
|
3417
|
-
updated: z.string().default("2026-06-
|
|
3430
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3431
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3432
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
3418
3433
|
guardrail_config: z.nullable(
|
|
3419
3434
|
z.union([
|
|
3420
3435
|
z.lazy(() =>
|
|
@@ -3434,6 +3449,7 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
3434
3449
|
}).transform((v) => {
|
|
3435
3450
|
return remap$(v, {
|
|
3436
3451
|
"_id": "id",
|
|
3452
|
+
"updated_by_id": "updatedById",
|
|
3437
3453
|
"guardrail_config": "guardrailConfig",
|
|
3438
3454
|
});
|
|
3439
3455
|
});
|
|
@@ -3593,8 +3609,9 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3593
3609
|
> = z.object({
|
|
3594
3610
|
_id: z.string(),
|
|
3595
3611
|
description: z.string(),
|
|
3596
|
-
created: z.string().default("2026-06-
|
|
3597
|
-
updated: z.string().default("2026-06-
|
|
3612
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3613
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3614
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
3598
3615
|
guardrail_config: z.nullable(
|
|
3599
3616
|
z.union([
|
|
3600
3617
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -3613,6 +3630,7 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3613
3630
|
}).transform((v) => {
|
|
3614
3631
|
return remap$(v, {
|
|
3615
3632
|
"_id": "id",
|
|
3633
|
+
"updated_by_id": "updatedById",
|
|
3616
3634
|
"guardrail_config": "guardrailConfig",
|
|
3617
3635
|
});
|
|
3618
3636
|
});
|
|
@@ -3751,8 +3769,9 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
|
|
|
3751
3769
|
.object({
|
|
3752
3770
|
_id: z.string(),
|
|
3753
3771
|
description: z.string(),
|
|
3754
|
-
created: z.string().default("2026-06-
|
|
3755
|
-
updated: z.string().default("2026-06-
|
|
3772
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3773
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3774
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
3756
3775
|
guardrail_config: z.nullable(
|
|
3757
3776
|
z.union([
|
|
3758
3777
|
z.lazy(() => CreateEvalGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -3766,6 +3785,7 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
|
|
|
3766
3785
|
}).transform((v) => {
|
|
3767
3786
|
return remap$(v, {
|
|
3768
3787
|
"_id": "id",
|
|
3788
|
+
"updated_by_id": "updatedById",
|
|
3769
3789
|
"guardrail_config": "guardrailConfig",
|
|
3770
3790
|
});
|
|
3771
3791
|
});
|
|
@@ -4120,8 +4140,9 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4120
4140
|
> = z.object({
|
|
4121
4141
|
_id: z.string(),
|
|
4122
4142
|
description: z.string(),
|
|
4123
|
-
created: z.string().default("2026-06-
|
|
4124
|
-
updated: z.string().default("2026-06-
|
|
4143
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
4144
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
4145
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
4125
4146
|
guardrail_config: z.nullable(
|
|
4126
4147
|
z.union([
|
|
4127
4148
|
z.lazy(() =>
|
|
@@ -4149,6 +4170,7 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4149
4170
|
}).transform((v) => {
|
|
4150
4171
|
return remap$(v, {
|
|
4151
4172
|
"_id": "id",
|
|
4173
|
+
"updated_by_id": "updatedById",
|
|
4152
4174
|
"guardrail_config": "guardrailConfig",
|
|
4153
4175
|
"categorical_labels": "categoricalLabels",
|
|
4154
4176
|
"dataset_id": "datasetId",
|
|
@@ -4338,8 +4360,9 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4338
4360
|
> = z.object({
|
|
4339
4361
|
_id: z.string(),
|
|
4340
4362
|
description: z.string(),
|
|
4341
|
-
created: z.string().default("2026-06-
|
|
4342
|
-
updated: z.string().default("2026-06-
|
|
4363
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
4364
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
4365
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
4343
4366
|
guardrail_config: z.nullable(
|
|
4344
4367
|
z.union([
|
|
4345
4368
|
z.lazy(() =>
|
|
@@ -4367,6 +4390,7 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4367
4390
|
}).transform((v) => {
|
|
4368
4391
|
return remap$(v, {
|
|
4369
4392
|
"_id": "id",
|
|
4393
|
+
"updated_by_id": "updatedById",
|
|
4370
4394
|
"guardrail_config": "guardrailConfig",
|
|
4371
4395
|
"categorical_labels": "categoricalLabels",
|
|
4372
4396
|
"dataset_id": "datasetId",
|
|
@@ -1898,7 +1898,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1898
1898
|
z.ZodTypeDef,
|
|
1899
1899
|
unknown
|
|
1900
1900
|
> = z.object({
|
|
1901
|
-
_id: z.string().default("
|
|
1901
|
+
_id: z.string().default("tool_01KT94XBFBQGRA2D0FK8XN4N9X"),
|
|
1902
1902
|
path: z.string(),
|
|
1903
1903
|
key: z.string(),
|
|
1904
1904
|
display_name: z.string().optional(),
|
|
@@ -1995,7 +1995,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1995
1995
|
z.ZodTypeDef,
|
|
1996
1996
|
unknown
|
|
1997
1997
|
> = z.object({
|
|
1998
|
-
id: z.string().default("
|
|
1998
|
+
id: z.string().default("01KT94XBFBH82DVCB77HV4Z2C8"),
|
|
1999
1999
|
name: z.string(),
|
|
2000
2000
|
description: z.string().optional(),
|
|
2001
2001
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2051,7 +2051,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2051
2051
|
z.ZodTypeDef,
|
|
2052
2052
|
unknown
|
|
2053
2053
|
> = z.object({
|
|
2054
|
-
_id: z.string().default("
|
|
2054
|
+
_id: z.string().default("tool_01KT94XBF9K306Z17V10WX5WE8"),
|
|
2055
2055
|
path: z.string(),
|
|
2056
2056
|
key: z.string(),
|
|
2057
2057
|
display_name: z.string().optional(),
|
|
@@ -2237,7 +2237,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2237
2237
|
z.ZodTypeDef,
|
|
2238
2238
|
unknown
|
|
2239
2239
|
> = z.object({
|
|
2240
|
-
_id: z.string().default("
|
|
2240
|
+
_id: z.string().default("tool_01KT94XBF7NSFC59G3K4H3F7EN"),
|
|
2241
2241
|
path: z.string(),
|
|
2242
2242
|
key: z.string(),
|
|
2243
2243
|
display_name: z.string().optional(),
|
|
@@ -2330,7 +2330,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2330
2330
|
z.ZodTypeDef,
|
|
2331
2331
|
unknown
|
|
2332
2332
|
> = z.object({
|
|
2333
|
-
_id: z.string().default("
|
|
2333
|
+
_id: z.string().default("tool_01KT94XBF55615XW3QC93RNPG3"),
|
|
2334
2334
|
path: z.string(),
|
|
2335
2335
|
key: z.string(),
|
|
2336
2336
|
display_name: z.string().optional(),
|
|
@@ -2431,7 +2431,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2431
2431
|
z.ZodTypeDef,
|
|
2432
2432
|
unknown
|
|
2433
2433
|
> = z.object({
|
|
2434
|
-
_id: z.string().default("
|
|
2434
|
+
_id: z.string().default("tool_01KT94XBF4G5803SH4B1JBAJCJ"),
|
|
2435
2435
|
path: z.string(),
|
|
2436
2436
|
key: z.string(),
|
|
2437
2437
|
display_name: z.string().optional(),
|
|
@@ -767,7 +767,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
767
767
|
z.ZodTypeDef,
|
|
768
768
|
unknown
|
|
769
769
|
> = z.object({
|
|
770
|
-
_id: z.string().default("
|
|
770
|
+
_id: z.string().default("tool_01KT94XBEN402MX281XVJ6RJ6Z"),
|
|
771
771
|
path: z.string(),
|
|
772
772
|
key: z.string(),
|
|
773
773
|
display_name: z.string().optional(),
|
|
@@ -864,7 +864,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
864
864
|
z.ZodTypeDef,
|
|
865
865
|
unknown
|
|
866
866
|
> = z.object({
|
|
867
|
-
id: z.string().default("
|
|
867
|
+
id: z.string().default("01KT94XBEMFBJSVBYA0BBF5C2T"),
|
|
868
868
|
name: z.string(),
|
|
869
869
|
description: z.string().optional(),
|
|
870
870
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -917,7 +917,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
917
917
|
z.ZodTypeDef,
|
|
918
918
|
unknown
|
|
919
919
|
> = z.object({
|
|
920
|
-
_id: z.string().default("
|
|
920
|
+
_id: z.string().default("tool_01KT94XBEKFBAWW7FJ1EQ7E69H"),
|
|
921
921
|
path: z.string(),
|
|
922
922
|
key: z.string(),
|
|
923
923
|
display_name: z.string().optional(),
|
|
@@ -1102,7 +1102,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1102
1102
|
z.ZodTypeDef,
|
|
1103
1103
|
unknown
|
|
1104
1104
|
> = z.object({
|
|
1105
|
-
_id: z.string().default("
|
|
1105
|
+
_id: z.string().default("tool_01KT94XBEHWJR0CX0EXW98EFAQ"),
|
|
1106
1106
|
path: z.string(),
|
|
1107
1107
|
key: z.string(),
|
|
1108
1108
|
display_name: z.string().optional(),
|
|
@@ -1195,7 +1195,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1195
1195
|
z.ZodTypeDef,
|
|
1196
1196
|
unknown
|
|
1197
1197
|
> = z.object({
|
|
1198
|
-
_id: z.string().default("
|
|
1198
|
+
_id: z.string().default("tool_01KT94XBEFZ4N74BTHYAZXR8TT"),
|
|
1199
1199
|
path: z.string(),
|
|
1200
1200
|
key: z.string(),
|
|
1201
1201
|
display_name: z.string().optional(),
|
|
@@ -1297,7 +1297,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1297
1297
|
z.ZodTypeDef,
|
|
1298
1298
|
unknown
|
|
1299
1299
|
> = z.object({
|
|
1300
|
-
_id: z.string().default("
|
|
1300
|
+
_id: z.string().default("tool_01KT94XBEDCSJRBJ31BAY3YRRA"),
|
|
1301
1301
|
path: z.string(),
|
|
1302
1302
|
key: z.string(),
|
|
1303
1303
|
display_name: z.string().optional(),
|
|
@@ -88,6 +88,7 @@ export type DataTypescript = {
|
|
|
88
88
|
description: string;
|
|
89
89
|
created: string;
|
|
90
90
|
updated: string;
|
|
91
|
+
updatedById?: string | null | undefined;
|
|
91
92
|
guardrailConfig?:
|
|
92
93
|
| GetEvalsGuardrailConfigEvalsResponse200Boolean
|
|
93
94
|
| GetEvalsGuardrailConfigEvalsResponse200Categorical
|
|
@@ -166,6 +167,7 @@ export type DataRagas = {
|
|
|
166
167
|
description: string;
|
|
167
168
|
created: string;
|
|
168
169
|
updated: string;
|
|
170
|
+
updatedById?: string | null | undefined;
|
|
169
171
|
guardrailConfig?:
|
|
170
172
|
| GetEvalsGuardrailConfigEvalsResponseBoolean
|
|
171
173
|
| GetEvalsGuardrailConfigEvalsResponseCategorical
|
|
@@ -401,6 +403,7 @@ export type DataFunction = {
|
|
|
401
403
|
description: string;
|
|
402
404
|
created: string;
|
|
403
405
|
updated: string;
|
|
406
|
+
updatedById?: string | null | undefined;
|
|
404
407
|
guardrailConfig?:
|
|
405
408
|
| GetEvalsGuardrailConfigEvalsBoolean
|
|
406
409
|
| GetEvalsGuardrailConfigEvalsCategorical
|
|
@@ -493,6 +496,7 @@ export type DataPython = {
|
|
|
493
496
|
description: string;
|
|
494
497
|
created: string;
|
|
495
498
|
updated: string;
|
|
499
|
+
updatedById?: string | null | undefined;
|
|
496
500
|
guardrailConfig?:
|
|
497
501
|
| GetEvalsGuardrailConfigBoolean
|
|
498
502
|
| GetEvalsGuardrailConfigCategorical
|
|
@@ -565,6 +569,7 @@ export type DataHTTP = {
|
|
|
565
569
|
description: string;
|
|
566
570
|
created: string;
|
|
567
571
|
updated: string;
|
|
572
|
+
updatedById?: string | null | undefined;
|
|
568
573
|
guardrailConfig?:
|
|
569
574
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean
|
|
570
575
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyCategorical
|
|
@@ -632,6 +637,7 @@ export type DataJSON = {
|
|
|
632
637
|
description: string;
|
|
633
638
|
created: string;
|
|
634
639
|
updated: string;
|
|
640
|
+
updatedById?: string | null | undefined;
|
|
635
641
|
guardrailConfig?:
|
|
636
642
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean
|
|
637
643
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONCategorical
|
|
@@ -745,6 +751,7 @@ export type GetEvalsLlm2 = {
|
|
|
745
751
|
description: string;
|
|
746
752
|
created: string;
|
|
747
753
|
updated: string;
|
|
754
|
+
updatedById?: string | null | undefined;
|
|
748
755
|
guardrailConfig?:
|
|
749
756
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyData1Boolean
|
|
750
757
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyData1Categorical
|
|
@@ -822,6 +829,7 @@ export type GetEvalsLlm1 = {
|
|
|
822
829
|
description: string;
|
|
823
830
|
created: string;
|
|
824
831
|
updated: string;
|
|
832
|
+
updatedById?: string | null | undefined;
|
|
825
833
|
guardrailConfig?:
|
|
826
834
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean
|
|
827
835
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataCategorical
|
|
@@ -1059,8 +1067,9 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1059
1067
|
> = z.object({
|
|
1060
1068
|
_id: z.string(),
|
|
1061
1069
|
description: z.string(),
|
|
1062
|
-
created: z.string().default("2026-06-
|
|
1063
|
-
updated: z.string().default("2026-06-
|
|
1070
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
1071
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
1072
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
1064
1073
|
guardrail_config: z.nullable(
|
|
1065
1074
|
z.union([
|
|
1066
1075
|
z.lazy(() =>
|
|
@@ -1078,6 +1087,7 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1078
1087
|
}).transform((v) => {
|
|
1079
1088
|
return remap$(v, {
|
|
1080
1089
|
"_id": "id",
|
|
1090
|
+
"updated_by_id": "updatedById",
|
|
1081
1091
|
"guardrail_config": "guardrailConfig",
|
|
1082
1092
|
});
|
|
1083
1093
|
});
|
|
@@ -1239,8 +1249,9 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1239
1249
|
> = z.object({
|
|
1240
1250
|
_id: z.string(),
|
|
1241
1251
|
description: z.string(),
|
|
1242
|
-
created: z.string().default("2026-06-
|
|
1243
|
-
updated: z.string().default("2026-06-
|
|
1252
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
1253
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
1254
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
1244
1255
|
guardrail_config: z.nullable(
|
|
1245
1256
|
z.union([
|
|
1246
1257
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -1257,6 +1268,7 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1257
1268
|
}).transform((v) => {
|
|
1258
1269
|
return remap$(v, {
|
|
1259
1270
|
"_id": "id",
|
|
1271
|
+
"updated_by_id": "updatedById",
|
|
1260
1272
|
"guardrail_config": "guardrailConfig",
|
|
1261
1273
|
"ragas_metric": "ragasMetric",
|
|
1262
1274
|
});
|
|
@@ -2069,8 +2081,9 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2069
2081
|
> = z.object({
|
|
2070
2082
|
_id: z.string(),
|
|
2071
2083
|
description: z.string(),
|
|
2072
|
-
created: z.string().default("2026-06-
|
|
2073
|
-
updated: z.string().default("2026-06-
|
|
2084
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2085
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2086
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2074
2087
|
guardrail_config: z.nullable(
|
|
2075
2088
|
z.union([
|
|
2076
2089
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -2117,6 +2130,7 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2117
2130
|
}).transform((v) => {
|
|
2118
2131
|
return remap$(v, {
|
|
2119
2132
|
"_id": "id",
|
|
2133
|
+
"updated_by_id": "updatedById",
|
|
2120
2134
|
"guardrail_config": "guardrailConfig",
|
|
2121
2135
|
"function_params": "functionParams",
|
|
2122
2136
|
});
|
|
@@ -2251,8 +2265,9 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
2251
2265
|
> = z.object({
|
|
2252
2266
|
_id: z.string(),
|
|
2253
2267
|
description: z.string(),
|
|
2254
|
-
created: z.string().default("2026-06-
|
|
2255
|
-
updated: z.string().default("2026-06-
|
|
2268
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2269
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2270
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2256
2271
|
guardrail_config: z.nullable(
|
|
2257
2272
|
z.union([
|
|
2258
2273
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -2266,6 +2281,7 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
2266
2281
|
}).transform((v) => {
|
|
2267
2282
|
return remap$(v, {
|
|
2268
2283
|
"_id": "id",
|
|
2284
|
+
"updated_by_id": "updatedById",
|
|
2269
2285
|
"guardrail_config": "guardrailConfig",
|
|
2270
2286
|
});
|
|
2271
2287
|
});
|
|
@@ -2429,8 +2445,9 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2429
2445
|
> = z.object({
|
|
2430
2446
|
_id: z.string(),
|
|
2431
2447
|
description: z.string(),
|
|
2432
|
-
created: z.string().default("2026-06-
|
|
2433
|
-
updated: z.string().default("2026-06-
|
|
2448
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2449
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2450
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2434
2451
|
guardrail_config: z.nullable(
|
|
2435
2452
|
z.union([
|
|
2436
2453
|
z.lazy(() =>
|
|
@@ -2453,6 +2470,7 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2453
2470
|
}).transform((v) => {
|
|
2454
2471
|
return remap$(v, {
|
|
2455
2472
|
"_id": "id",
|
|
2473
|
+
"updated_by_id": "updatedById",
|
|
2456
2474
|
"guardrail_config": "guardrailConfig",
|
|
2457
2475
|
});
|
|
2458
2476
|
});
|
|
@@ -2619,8 +2637,9 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2619
2637
|
> = z.object({
|
|
2620
2638
|
_id: z.string(),
|
|
2621
2639
|
description: z.string(),
|
|
2622
|
-
created: z.string().default("2026-06-
|
|
2623
|
-
updated: z.string().default("2026-06-
|
|
2640
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2641
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
2642
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2624
2643
|
guardrail_config: z.nullable(
|
|
2625
2644
|
z.union([
|
|
2626
2645
|
z.lazy(() =>
|
|
@@ -2640,6 +2659,7 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2640
2659
|
}).transform((v) => {
|
|
2641
2660
|
return remap$(v, {
|
|
2642
2661
|
"_id": "id",
|
|
2662
|
+
"updated_by_id": "updatedById",
|
|
2643
2663
|
"guardrail_config": "guardrailConfig",
|
|
2644
2664
|
});
|
|
2645
2665
|
});
|
|
@@ -2985,8 +3005,9 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
2985
3005
|
> = z.object({
|
|
2986
3006
|
_id: z.string(),
|
|
2987
3007
|
description: z.string(),
|
|
2988
|
-
created: z.string().default("2026-06-
|
|
2989
|
-
updated: z.string().default("2026-06-
|
|
3008
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3009
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3010
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
2990
3011
|
guardrail_config: z.nullable(
|
|
2991
3012
|
z.union([
|
|
2992
3013
|
z.lazy(() =>
|
|
@@ -3014,6 +3035,7 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
3014
3035
|
}).transform((v) => {
|
|
3015
3036
|
return remap$(v, {
|
|
3016
3037
|
"_id": "id",
|
|
3038
|
+
"updated_by_id": "updatedById",
|
|
3017
3039
|
"guardrail_config": "guardrailConfig",
|
|
3018
3040
|
"categorical_labels": "categoricalLabels",
|
|
3019
3041
|
"dataset_id": "datasetId",
|
|
@@ -3196,8 +3218,9 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3196
3218
|
> = z.object({
|
|
3197
3219
|
_id: z.string(),
|
|
3198
3220
|
description: z.string(),
|
|
3199
|
-
created: z.string().default("2026-06-
|
|
3200
|
-
updated: z.string().default("2026-06-
|
|
3221
|
+
created: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3222
|
+
updated: z.string().default("2026-06-04T11:04:29.601Z"),
|
|
3223
|
+
updated_by_id: z.nullable(z.string()).optional(),
|
|
3201
3224
|
guardrail_config: z.nullable(
|
|
3202
3225
|
z.union([
|
|
3203
3226
|
z.lazy(() =>
|
|
@@ -3225,6 +3248,7 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3225
3248
|
}).transform((v) => {
|
|
3226
3249
|
return remap$(v, {
|
|
3227
3250
|
"_id": "id",
|
|
3251
|
+
"updated_by_id": "updatedById",
|
|
3228
3252
|
"guardrail_config": "guardrailConfig",
|
|
3229
3253
|
"categorical_labels": "categoricalLabels",
|
|
3230
3254
|
"dataset_id": "datasetId",
|
|
@@ -140,7 +140,7 @@ export const GetV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
140
140
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
141
141
|
.optional(),
|
|
142
142
|
updated: z.string().datetime({ offset: true }).default(
|
|
143
|
-
"2026-06-
|
|
143
|
+
"2026-06-04T11:04:28.064Z",
|
|
144
144
|
).transform(v => new Date(v)),
|
|
145
145
|
filter_type: z.literal("name"),
|
|
146
146
|
filter_value: z.string(),
|
|
@@ -185,7 +185,7 @@ export const GetV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
185
185
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
186
186
|
.optional(),
|
|
187
187
|
updated: z.string().datetime({ offset: true }).default(
|
|
188
|
-
"2026-06-
|
|
188
|
+
"2026-06-04T11:04:28.064Z",
|
|
189
189
|
).transform(v => new Date(v)),
|
|
190
190
|
filter_type: z.literal("span_type"),
|
|
191
191
|
filter_values: z.array(z.string()),
|
|
@@ -141,7 +141,7 @@ export const GetV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
141
141
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
142
142
|
.optional(),
|
|
143
143
|
updated: z.string().datetime({ offset: true }).default(
|
|
144
|
-
"2026-06-
|
|
144
|
+
"2026-06-04T11:04:28.064Z",
|
|
145
145
|
).transform(v => new Date(v)),
|
|
146
146
|
filter_type: z.literal("name"),
|
|
147
147
|
filter_value: z.string(),
|
|
@@ -186,7 +186,7 @@ export const GetV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
186
186
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
187
187
|
.optional(),
|
|
188
188
|
updated: z.string().datetime({ offset: true }).default(
|
|
189
|
-
"2026-06-
|
|
189
|
+
"2026-06-04T11:04:28.064Z",
|
|
190
190
|
).transform(v => new Date(v)),
|
|
191
191
|
filter_type: z.literal("span_type"),
|
|
192
192
|
filter_values: z.array(z.string()),
|
|
@@ -1270,7 +1270,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
1270
1270
|
),
|
|
1271
1271
|
reviewed_by_id: z.string(),
|
|
1272
1272
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1273
|
-
"2026-06-
|
|
1273
|
+
"2026-06-04T11:04:50.614Z",
|
|
1274
1274
|
).transform(v => new Date(v)),
|
|
1275
1275
|
type: z.literal("string_array"),
|
|
1276
1276
|
values: z.array(z.string()),
|
|
@@ -1320,7 +1320,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
1320
1320
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
1321
1321
|
reviewed_by_id: z.string(),
|
|
1322
1322
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1323
|
-
"2026-06-
|
|
1323
|
+
"2026-06-04T11:04:50.614Z",
|
|
1324
1324
|
).transform(v => new Date(v)),
|
|
1325
1325
|
type: z.literal("number"),
|
|
1326
1326
|
value: z.number(),
|
|
@@ -1369,7 +1369,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
1369
1369
|
.default("orq"),
|
|
1370
1370
|
reviewed_by_id: z.string(),
|
|
1371
1371
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1372
|
-
"2026-06-
|
|
1372
|
+
"2026-06-04T11:04:50.613Z",
|
|
1373
1373
|
).transform(v => new Date(v)),
|
|
1374
1374
|
type: z.literal("string"),
|
|
1375
1375
|
value: z.string(),
|
|
@@ -1448,7 +1448,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
1448
1448
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1449
1449
|
.optional(),
|
|
1450
1450
|
updated: z.string().datetime({ offset: true }).default(
|
|
1451
|
-
"2026-06-
|
|
1451
|
+
"2026-06-04T11:04:28.064Z",
|
|
1452
1452
|
).transform(v => new Date(v)),
|
|
1453
1453
|
}).transform((v) => {
|
|
1454
1454
|
return remap$(v, {
|
|
@@ -156,7 +156,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
156
156
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
157
157
|
.optional(),
|
|
158
158
|
updated: z.string().datetime({ offset: true }).default(
|
|
159
|
-
"2026-06-
|
|
159
|
+
"2026-06-04T11:04:28.064Z",
|
|
160
160
|
).transform(v => new Date(v)),
|
|
161
161
|
}).transform((v) => {
|
|
162
162
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
182
182
|
z.ZodTypeDef,
|
|
183
183
|
unknown
|
|
184
184
|
> = z.object({
|
|
185
|
-
_id: z.string().default("
|
|
185
|
+
_id: z.string().default("01KT94XBKWMHRZNJVJ9ATT0NH5"),
|
|
186
186
|
display_name: z.string(),
|
|
187
187
|
description: z.string().optional(),
|
|
188
188
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -318,7 +318,7 @@ export const PatchV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
318
318
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
319
319
|
.optional(),
|
|
320
320
|
updated: z.string().datetime({ offset: true }).default(
|
|
321
|
-
"2026-06-
|
|
321
|
+
"2026-06-04T11:04:28.064Z",
|
|
322
322
|
).transform(v => new Date(v)),
|
|
323
323
|
filter_type: z.literal("name"),
|
|
324
324
|
filter_value: z.string(),
|
|
@@ -364,7 +364,7 @@ export const PatchV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
364
364
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
365
365
|
.optional(),
|
|
366
366
|
updated: z.string().datetime({ offset: true }).default(
|
|
367
|
-
"2026-06-
|
|
367
|
+
"2026-06-04T11:04:28.064Z",
|
|
368
368
|
).transform(v => new Date(v)),
|
|
369
369
|
filter_type: z.literal("span_type"),
|
|
370
370
|
filter_values: z.array(z.string()),
|