@orq-ai/node 4.0.0-rc.52 → 4.0.0-rc.53
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/bin/mcp-server.js +5274 -1578
- package/bin/mcp-server.js.map +44 -44
- package/docs/sdks/agents/README.md +40 -2
- package/examples/package-lock.json +1 -1
- package/funcs/agentsStream.js +2 -0
- package/funcs/agentsStream.js.map +1 -1
- package/funcs/agentsStreamRun.js +2 -0
- package/funcs/agentsStreamRun.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +17 -7
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +12 -4
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +70 -70
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +162 -169
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.d.ts +5 -0
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +4 -0
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.d.ts +34 -34
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +74 -79
- package/models/operations/getalltools.js.map +1 -1
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +5 -0
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +4 -0
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamagent.d.ts +2658 -106
- package/models/operations/streamagent.d.ts.map +1 -1
- package/models/operations/streamagent.js +2936 -5
- package/models/operations/streamagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +3268 -716
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +2936 -12
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +17 -7
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +12 -4
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/funcs/agentsStream.ts +1 -0
- package/src/funcs/agentsStreamRun.ts +1 -0
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +31 -13
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +368 -294
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +9 -0
- package/src/models/operations/getalltools.ts +277 -231
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +9 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamagent.ts +7595 -380
- package/src/models/operations/streamrunagent.ts +10703 -3540
- package/src/models/operations/updateagent.ts +31 -13
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -839,7 +839,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
839
839
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type
|
|
840
840
|
>;
|
|
841
841
|
|
|
842
|
-
export type
|
|
842
|
+
export type CreateEvalFunctionParams17 = {
|
|
843
843
|
type:
|
|
844
844
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type;
|
|
845
845
|
};
|
|
@@ -853,7 +853,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
853
853
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type
|
|
854
854
|
>;
|
|
855
855
|
|
|
856
|
-
export type
|
|
856
|
+
export type CreateEvalFunctionParams16 = {
|
|
857
857
|
type:
|
|
858
858
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type;
|
|
859
859
|
};
|
|
@@ -867,7 +867,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
867
867
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type
|
|
868
868
|
>;
|
|
869
869
|
|
|
870
|
-
export type
|
|
870
|
+
export type CreateEvalFunctionParams15 = {
|
|
871
871
|
type:
|
|
872
872
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type;
|
|
873
873
|
pattern: string;
|
|
@@ -882,7 +882,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
882
882
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type
|
|
883
883
|
>;
|
|
884
884
|
|
|
885
|
-
export type
|
|
885
|
+
export type CreateEvalFunctionParams14 = {
|
|
886
886
|
type:
|
|
887
887
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type;
|
|
888
888
|
};
|
|
@@ -896,7 +896,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
896
896
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type
|
|
897
897
|
>;
|
|
898
898
|
|
|
899
|
-
export type
|
|
899
|
+
export type CreateEvalFunctionParams13 = {
|
|
900
900
|
type:
|
|
901
901
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type;
|
|
902
902
|
value: number;
|
|
@@ -911,7 +911,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
911
911
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type
|
|
912
912
|
>;
|
|
913
913
|
|
|
914
|
-
export type
|
|
914
|
+
export type CreateEvalFunctionParams12 = {
|
|
915
915
|
type:
|
|
916
916
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type;
|
|
917
917
|
min: number;
|
|
@@ -927,7 +927,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
927
927
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type
|
|
928
928
|
>;
|
|
929
929
|
|
|
930
|
-
export type
|
|
930
|
+
export type CreateEvalFunctionParams11 = {
|
|
931
931
|
type:
|
|
932
932
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type;
|
|
933
933
|
value: number;
|
|
@@ -942,7 +942,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
942
942
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type
|
|
943
943
|
>;
|
|
944
944
|
|
|
945
|
-
export type
|
|
945
|
+
export type CreateEvalFunctionParams10 = {
|
|
946
946
|
type:
|
|
947
947
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type;
|
|
948
948
|
};
|
|
@@ -956,7 +956,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
956
956
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type
|
|
957
957
|
>;
|
|
958
958
|
|
|
959
|
-
export type
|
|
959
|
+
export type CreateEvalFunctionParams9 = {
|
|
960
960
|
type:
|
|
961
961
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type;
|
|
962
962
|
value: string;
|
|
@@ -971,7 +971,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
971
971
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type
|
|
972
972
|
>;
|
|
973
973
|
|
|
974
|
-
export type
|
|
974
|
+
export type CreateEvalFunctionParams8 = {
|
|
975
975
|
type:
|
|
976
976
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type;
|
|
977
977
|
value: string;
|
|
@@ -986,7 +986,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyT
|
|
|
986
986
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType
|
|
987
987
|
>;
|
|
988
988
|
|
|
989
|
-
export type
|
|
989
|
+
export type CreateEvalFunctionParams7 = {
|
|
990
990
|
type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType;
|
|
991
991
|
};
|
|
992
992
|
|
|
@@ -1060,25 +1060,25 @@ export type CreateEvalFunctionParams1 = {
|
|
|
1060
1060
|
};
|
|
1061
1061
|
|
|
1062
1062
|
export type FunctionParams =
|
|
1063
|
-
|
|
|
1063
|
+
| CreateEvalFunctionParams12
|
|
1064
1064
|
| CreateEvalFunctionParams1
|
|
1065
1065
|
| CreateEvalFunctionParams2
|
|
1066
1066
|
| CreateEvalFunctionParams3
|
|
1067
1067
|
| CreateEvalFunctionParams4
|
|
1068
|
-
|
|
|
1069
|
-
|
|
|
1070
|
-
|
|
|
1071
|
-
|
|
|
1072
|
-
|
|
|
1068
|
+
| CreateEvalFunctionParams8
|
|
1069
|
+
| CreateEvalFunctionParams9
|
|
1070
|
+
| CreateEvalFunctionParams11
|
|
1071
|
+
| CreateEvalFunctionParams13
|
|
1072
|
+
| CreateEvalFunctionParams15
|
|
1073
1073
|
| TwentyFive
|
|
1074
1074
|
| TwentySix
|
|
1075
1075
|
| CreateEvalFunctionParams5
|
|
1076
1076
|
| CreateEvalFunctionParams6
|
|
1077
|
-
|
|
|
1078
|
-
|
|
|
1079
|
-
|
|
|
1080
|
-
|
|
|
1081
|
-
|
|
|
1077
|
+
| CreateEvalFunctionParams7
|
|
1078
|
+
| CreateEvalFunctionParams10
|
|
1079
|
+
| CreateEvalFunctionParams14
|
|
1080
|
+
| CreateEvalFunctionParams16
|
|
1081
|
+
| CreateEvalFunctionParams17
|
|
1082
1082
|
| Eighteen
|
|
1083
1083
|
| Nineteen
|
|
1084
1084
|
| Twenty
|
|
@@ -1107,25 +1107,25 @@ export type CreateEvalResponseBodyFunction = {
|
|
|
1107
1107
|
| undefined;
|
|
1108
1108
|
type: CreateEvalResponseBodyEvalsResponse200Type;
|
|
1109
1109
|
functionParams:
|
|
1110
|
-
|
|
|
1110
|
+
| CreateEvalFunctionParams12
|
|
1111
1111
|
| CreateEvalFunctionParams1
|
|
1112
1112
|
| CreateEvalFunctionParams2
|
|
1113
1113
|
| CreateEvalFunctionParams3
|
|
1114
1114
|
| CreateEvalFunctionParams4
|
|
1115
|
-
|
|
|
1116
|
-
|
|
|
1117
|
-
|
|
|
1118
|
-
|
|
|
1119
|
-
|
|
|
1115
|
+
| CreateEvalFunctionParams8
|
|
1116
|
+
| CreateEvalFunctionParams9
|
|
1117
|
+
| CreateEvalFunctionParams11
|
|
1118
|
+
| CreateEvalFunctionParams13
|
|
1119
|
+
| CreateEvalFunctionParams15
|
|
1120
1120
|
| TwentyFive
|
|
1121
1121
|
| TwentySix
|
|
1122
1122
|
| CreateEvalFunctionParams5
|
|
1123
1123
|
| CreateEvalFunctionParams6
|
|
1124
|
-
|
|
|
1125
|
-
|
|
|
1126
|
-
|
|
|
1127
|
-
|
|
|
1128
|
-
|
|
|
1124
|
+
| CreateEvalFunctionParams7
|
|
1125
|
+
| CreateEvalFunctionParams10
|
|
1126
|
+
| CreateEvalFunctionParams14
|
|
1127
|
+
| CreateEvalFunctionParams16
|
|
1128
|
+
| CreateEvalFunctionParams17
|
|
1129
1129
|
| Eighteen
|
|
1130
1130
|
| Nineteen
|
|
1131
1131
|
| Twenty
|
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2759
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2802
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3084
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3130
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -4330,8 +4330,8 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4330
4330
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$inboundSchema;
|
|
4331
4331
|
|
|
4332
4332
|
/** @internal */
|
|
4333
|
-
export const
|
|
4334
|
-
|
|
4333
|
+
export const CreateEvalFunctionParams17$inboundSchema: z.ZodType<
|
|
4334
|
+
CreateEvalFunctionParams17,
|
|
4335
4335
|
z.ZodTypeDef,
|
|
4336
4336
|
unknown
|
|
4337
4337
|
> = z.object({
|
|
@@ -4339,30 +4339,34 @@ export const Seventeen$inboundSchema: z.ZodType<
|
|
|
4339
4339
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$inboundSchema,
|
|
4340
4340
|
});
|
|
4341
4341
|
/** @internal */
|
|
4342
|
-
export type
|
|
4342
|
+
export type CreateEvalFunctionParams17$Outbound = {
|
|
4343
4343
|
type: string;
|
|
4344
4344
|
};
|
|
4345
4345
|
|
|
4346
4346
|
/** @internal */
|
|
4347
|
-
export const
|
|
4348
|
-
|
|
4347
|
+
export const CreateEvalFunctionParams17$outboundSchema: z.ZodType<
|
|
4348
|
+
CreateEvalFunctionParams17$Outbound,
|
|
4349
4349
|
z.ZodTypeDef,
|
|
4350
|
-
|
|
4350
|
+
CreateEvalFunctionParams17
|
|
4351
4351
|
> = z.object({
|
|
4352
4352
|
type:
|
|
4353
4353
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$outboundSchema,
|
|
4354
4354
|
});
|
|
4355
4355
|
|
|
4356
|
-
export function
|
|
4357
|
-
|
|
4356
|
+
export function createEvalFunctionParams17ToJSON(
|
|
4357
|
+
createEvalFunctionParams17: CreateEvalFunctionParams17,
|
|
4358
|
+
): string {
|
|
4359
|
+
return JSON.stringify(
|
|
4360
|
+
CreateEvalFunctionParams17$outboundSchema.parse(createEvalFunctionParams17),
|
|
4361
|
+
);
|
|
4358
4362
|
}
|
|
4359
|
-
export function
|
|
4363
|
+
export function createEvalFunctionParams17FromJSON(
|
|
4360
4364
|
jsonString: string,
|
|
4361
|
-
): SafeParseResult<
|
|
4365
|
+
): SafeParseResult<CreateEvalFunctionParams17, SDKValidationError> {
|
|
4362
4366
|
return safeParse(
|
|
4363
4367
|
jsonString,
|
|
4364
|
-
(x) =>
|
|
4365
|
-
`Failed to parse '
|
|
4368
|
+
(x) => CreateEvalFunctionParams17$inboundSchema.parse(JSON.parse(x)),
|
|
4369
|
+
`Failed to parse 'CreateEvalFunctionParams17' from JSON`,
|
|
4366
4370
|
);
|
|
4367
4371
|
}
|
|
4368
4372
|
|
|
@@ -4381,36 +4385,43 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4381
4385
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema;
|
|
4382
4386
|
|
|
4383
4387
|
/** @internal */
|
|
4384
|
-
export const
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4388
|
+
export const CreateEvalFunctionParams16$inboundSchema: z.ZodType<
|
|
4389
|
+
CreateEvalFunctionParams16,
|
|
4390
|
+
z.ZodTypeDef,
|
|
4391
|
+
unknown
|
|
4392
|
+
> = z.object({
|
|
4393
|
+
type:
|
|
4394
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema,
|
|
4395
|
+
});
|
|
4389
4396
|
/** @internal */
|
|
4390
|
-
export type
|
|
4397
|
+
export type CreateEvalFunctionParams16$Outbound = {
|
|
4391
4398
|
type: string;
|
|
4392
4399
|
};
|
|
4393
4400
|
|
|
4394
4401
|
/** @internal */
|
|
4395
|
-
export const
|
|
4396
|
-
|
|
4402
|
+
export const CreateEvalFunctionParams16$outboundSchema: z.ZodType<
|
|
4403
|
+
CreateEvalFunctionParams16$Outbound,
|
|
4397
4404
|
z.ZodTypeDef,
|
|
4398
|
-
|
|
4405
|
+
CreateEvalFunctionParams16
|
|
4399
4406
|
> = z.object({
|
|
4400
4407
|
type:
|
|
4401
4408
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$outboundSchema,
|
|
4402
4409
|
});
|
|
4403
4410
|
|
|
4404
|
-
export function
|
|
4405
|
-
|
|
4411
|
+
export function createEvalFunctionParams16ToJSON(
|
|
4412
|
+
createEvalFunctionParams16: CreateEvalFunctionParams16,
|
|
4413
|
+
): string {
|
|
4414
|
+
return JSON.stringify(
|
|
4415
|
+
CreateEvalFunctionParams16$outboundSchema.parse(createEvalFunctionParams16),
|
|
4416
|
+
);
|
|
4406
4417
|
}
|
|
4407
|
-
export function
|
|
4418
|
+
export function createEvalFunctionParams16FromJSON(
|
|
4408
4419
|
jsonString: string,
|
|
4409
|
-
): SafeParseResult<
|
|
4420
|
+
): SafeParseResult<CreateEvalFunctionParams16, SDKValidationError> {
|
|
4410
4421
|
return safeParse(
|
|
4411
4422
|
jsonString,
|
|
4412
|
-
(x) =>
|
|
4413
|
-
`Failed to parse '
|
|
4423
|
+
(x) => CreateEvalFunctionParams16$inboundSchema.parse(JSON.parse(x)),
|
|
4424
|
+
`Failed to parse 'CreateEvalFunctionParams16' from JSON`,
|
|
4414
4425
|
);
|
|
4415
4426
|
}
|
|
4416
4427
|
|
|
@@ -4429,39 +4440,46 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4429
4440
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema;
|
|
4430
4441
|
|
|
4431
4442
|
/** @internal */
|
|
4432
|
-
export const
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
|
|
4443
|
+
export const CreateEvalFunctionParams15$inboundSchema: z.ZodType<
|
|
4444
|
+
CreateEvalFunctionParams15,
|
|
4445
|
+
z.ZodTypeDef,
|
|
4446
|
+
unknown
|
|
4447
|
+
> = z.object({
|
|
4448
|
+
type:
|
|
4449
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema,
|
|
4450
|
+
pattern: z.string(),
|
|
4451
|
+
});
|
|
4438
4452
|
/** @internal */
|
|
4439
|
-
export type
|
|
4453
|
+
export type CreateEvalFunctionParams15$Outbound = {
|
|
4440
4454
|
type: string;
|
|
4441
4455
|
pattern: string;
|
|
4442
4456
|
};
|
|
4443
4457
|
|
|
4444
4458
|
/** @internal */
|
|
4445
|
-
export const
|
|
4446
|
-
|
|
4459
|
+
export const CreateEvalFunctionParams15$outboundSchema: z.ZodType<
|
|
4460
|
+
CreateEvalFunctionParams15$Outbound,
|
|
4447
4461
|
z.ZodTypeDef,
|
|
4448
|
-
|
|
4462
|
+
CreateEvalFunctionParams15
|
|
4449
4463
|
> = z.object({
|
|
4450
4464
|
type:
|
|
4451
4465
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$outboundSchema,
|
|
4452
4466
|
pattern: z.string(),
|
|
4453
4467
|
});
|
|
4454
4468
|
|
|
4455
|
-
export function
|
|
4456
|
-
|
|
4469
|
+
export function createEvalFunctionParams15ToJSON(
|
|
4470
|
+
createEvalFunctionParams15: CreateEvalFunctionParams15,
|
|
4471
|
+
): string {
|
|
4472
|
+
return JSON.stringify(
|
|
4473
|
+
CreateEvalFunctionParams15$outboundSchema.parse(createEvalFunctionParams15),
|
|
4474
|
+
);
|
|
4457
4475
|
}
|
|
4458
|
-
export function
|
|
4476
|
+
export function createEvalFunctionParams15FromJSON(
|
|
4459
4477
|
jsonString: string,
|
|
4460
|
-
): SafeParseResult<
|
|
4478
|
+
): SafeParseResult<CreateEvalFunctionParams15, SDKValidationError> {
|
|
4461
4479
|
return safeParse(
|
|
4462
4480
|
jsonString,
|
|
4463
|
-
(x) =>
|
|
4464
|
-
`Failed to parse '
|
|
4481
|
+
(x) => CreateEvalFunctionParams15$inboundSchema.parse(JSON.parse(x)),
|
|
4482
|
+
`Failed to parse 'CreateEvalFunctionParams15' from JSON`,
|
|
4465
4483
|
);
|
|
4466
4484
|
}
|
|
4467
4485
|
|
|
@@ -4480,8 +4498,8 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4480
4498
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema;
|
|
4481
4499
|
|
|
4482
4500
|
/** @internal */
|
|
4483
|
-
export const
|
|
4484
|
-
|
|
4501
|
+
export const CreateEvalFunctionParams14$inboundSchema: z.ZodType<
|
|
4502
|
+
CreateEvalFunctionParams14,
|
|
4485
4503
|
z.ZodTypeDef,
|
|
4486
4504
|
unknown
|
|
4487
4505
|
> = z.object({
|
|
@@ -4489,30 +4507,34 @@ export const Fourteen$inboundSchema: z.ZodType<
|
|
|
4489
4507
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema,
|
|
4490
4508
|
});
|
|
4491
4509
|
/** @internal */
|
|
4492
|
-
export type
|
|
4510
|
+
export type CreateEvalFunctionParams14$Outbound = {
|
|
4493
4511
|
type: string;
|
|
4494
4512
|
};
|
|
4495
4513
|
|
|
4496
4514
|
/** @internal */
|
|
4497
|
-
export const
|
|
4498
|
-
|
|
4515
|
+
export const CreateEvalFunctionParams14$outboundSchema: z.ZodType<
|
|
4516
|
+
CreateEvalFunctionParams14$Outbound,
|
|
4499
4517
|
z.ZodTypeDef,
|
|
4500
|
-
|
|
4518
|
+
CreateEvalFunctionParams14
|
|
4501
4519
|
> = z.object({
|
|
4502
4520
|
type:
|
|
4503
4521
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$outboundSchema,
|
|
4504
4522
|
});
|
|
4505
4523
|
|
|
4506
|
-
export function
|
|
4507
|
-
|
|
4524
|
+
export function createEvalFunctionParams14ToJSON(
|
|
4525
|
+
createEvalFunctionParams14: CreateEvalFunctionParams14,
|
|
4526
|
+
): string {
|
|
4527
|
+
return JSON.stringify(
|
|
4528
|
+
CreateEvalFunctionParams14$outboundSchema.parse(createEvalFunctionParams14),
|
|
4529
|
+
);
|
|
4508
4530
|
}
|
|
4509
|
-
export function
|
|
4531
|
+
export function createEvalFunctionParams14FromJSON(
|
|
4510
4532
|
jsonString: string,
|
|
4511
|
-
): SafeParseResult<
|
|
4533
|
+
): SafeParseResult<CreateEvalFunctionParams14, SDKValidationError> {
|
|
4512
4534
|
return safeParse(
|
|
4513
4535
|
jsonString,
|
|
4514
|
-
(x) =>
|
|
4515
|
-
`Failed to parse '
|
|
4536
|
+
(x) => CreateEvalFunctionParams14$inboundSchema.parse(JSON.parse(x)),
|
|
4537
|
+
`Failed to parse 'CreateEvalFunctionParams14' from JSON`,
|
|
4516
4538
|
);
|
|
4517
4539
|
}
|
|
4518
4540
|
|
|
@@ -4531,8 +4553,8 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4531
4553
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema;
|
|
4532
4554
|
|
|
4533
4555
|
/** @internal */
|
|
4534
|
-
export const
|
|
4535
|
-
|
|
4556
|
+
export const CreateEvalFunctionParams13$inboundSchema: z.ZodType<
|
|
4557
|
+
CreateEvalFunctionParams13,
|
|
4536
4558
|
z.ZodTypeDef,
|
|
4537
4559
|
unknown
|
|
4538
4560
|
> = z.object({
|
|
@@ -4541,32 +4563,36 @@ export const Thirteen$inboundSchema: z.ZodType<
|
|
|
4541
4563
|
value: z.number(),
|
|
4542
4564
|
});
|
|
4543
4565
|
/** @internal */
|
|
4544
|
-
export type
|
|
4566
|
+
export type CreateEvalFunctionParams13$Outbound = {
|
|
4545
4567
|
type: string;
|
|
4546
4568
|
value: number;
|
|
4547
4569
|
};
|
|
4548
4570
|
|
|
4549
4571
|
/** @internal */
|
|
4550
|
-
export const
|
|
4551
|
-
|
|
4572
|
+
export const CreateEvalFunctionParams13$outboundSchema: z.ZodType<
|
|
4573
|
+
CreateEvalFunctionParams13$Outbound,
|
|
4552
4574
|
z.ZodTypeDef,
|
|
4553
|
-
|
|
4575
|
+
CreateEvalFunctionParams13
|
|
4554
4576
|
> = z.object({
|
|
4555
4577
|
type:
|
|
4556
4578
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$outboundSchema,
|
|
4557
4579
|
value: z.number(),
|
|
4558
4580
|
});
|
|
4559
4581
|
|
|
4560
|
-
export function
|
|
4561
|
-
|
|
4582
|
+
export function createEvalFunctionParams13ToJSON(
|
|
4583
|
+
createEvalFunctionParams13: CreateEvalFunctionParams13,
|
|
4584
|
+
): string {
|
|
4585
|
+
return JSON.stringify(
|
|
4586
|
+
CreateEvalFunctionParams13$outboundSchema.parse(createEvalFunctionParams13),
|
|
4587
|
+
);
|
|
4562
4588
|
}
|
|
4563
|
-
export function
|
|
4589
|
+
export function createEvalFunctionParams13FromJSON(
|
|
4564
4590
|
jsonString: string,
|
|
4565
|
-
): SafeParseResult<
|
|
4591
|
+
): SafeParseResult<CreateEvalFunctionParams13, SDKValidationError> {
|
|
4566
4592
|
return safeParse(
|
|
4567
4593
|
jsonString,
|
|
4568
|
-
(x) =>
|
|
4569
|
-
`Failed to parse '
|
|
4594
|
+
(x) => CreateEvalFunctionParams13$inboundSchema.parse(JSON.parse(x)),
|
|
4595
|
+
`Failed to parse 'CreateEvalFunctionParams13' from JSON`,
|
|
4570
4596
|
);
|
|
4571
4597
|
}
|
|
4572
4598
|
|
|
@@ -4585,25 +4611,28 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4585
4611
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema;
|
|
4586
4612
|
|
|
4587
4613
|
/** @internal */
|
|
4588
|
-
export const
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4614
|
+
export const CreateEvalFunctionParams12$inboundSchema: z.ZodType<
|
|
4615
|
+
CreateEvalFunctionParams12,
|
|
4616
|
+
z.ZodTypeDef,
|
|
4617
|
+
unknown
|
|
4618
|
+
> = z.object({
|
|
4619
|
+
type:
|
|
4620
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema,
|
|
4621
|
+
min: z.number(),
|
|
4622
|
+
max: z.number(),
|
|
4623
|
+
});
|
|
4595
4624
|
/** @internal */
|
|
4596
|
-
export type
|
|
4625
|
+
export type CreateEvalFunctionParams12$Outbound = {
|
|
4597
4626
|
type: string;
|
|
4598
4627
|
min: number;
|
|
4599
4628
|
max: number;
|
|
4600
4629
|
};
|
|
4601
4630
|
|
|
4602
4631
|
/** @internal */
|
|
4603
|
-
export const
|
|
4604
|
-
|
|
4632
|
+
export const CreateEvalFunctionParams12$outboundSchema: z.ZodType<
|
|
4633
|
+
CreateEvalFunctionParams12$Outbound,
|
|
4605
4634
|
z.ZodTypeDef,
|
|
4606
|
-
|
|
4635
|
+
CreateEvalFunctionParams12
|
|
4607
4636
|
> = z.object({
|
|
4608
4637
|
type:
|
|
4609
4638
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$outboundSchema,
|
|
@@ -4611,16 +4640,20 @@ export const Twelve$outboundSchema: z.ZodType<
|
|
|
4611
4640
|
max: z.number(),
|
|
4612
4641
|
});
|
|
4613
4642
|
|
|
4614
|
-
export function
|
|
4615
|
-
|
|
4643
|
+
export function createEvalFunctionParams12ToJSON(
|
|
4644
|
+
createEvalFunctionParams12: CreateEvalFunctionParams12,
|
|
4645
|
+
): string {
|
|
4646
|
+
return JSON.stringify(
|
|
4647
|
+
CreateEvalFunctionParams12$outboundSchema.parse(createEvalFunctionParams12),
|
|
4648
|
+
);
|
|
4616
4649
|
}
|
|
4617
|
-
export function
|
|
4650
|
+
export function createEvalFunctionParams12FromJSON(
|
|
4618
4651
|
jsonString: string,
|
|
4619
|
-
): SafeParseResult<
|
|
4652
|
+
): SafeParseResult<CreateEvalFunctionParams12, SDKValidationError> {
|
|
4620
4653
|
return safeParse(
|
|
4621
4654
|
jsonString,
|
|
4622
|
-
(x) =>
|
|
4623
|
-
`Failed to parse '
|
|
4655
|
+
(x) => CreateEvalFunctionParams12$inboundSchema.parse(JSON.parse(x)),
|
|
4656
|
+
`Failed to parse 'CreateEvalFunctionParams12' from JSON`,
|
|
4624
4657
|
);
|
|
4625
4658
|
}
|
|
4626
4659
|
|
|
@@ -4639,39 +4672,46 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4639
4672
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema;
|
|
4640
4673
|
|
|
4641
4674
|
/** @internal */
|
|
4642
|
-
export const
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4675
|
+
export const CreateEvalFunctionParams11$inboundSchema: z.ZodType<
|
|
4676
|
+
CreateEvalFunctionParams11,
|
|
4677
|
+
z.ZodTypeDef,
|
|
4678
|
+
unknown
|
|
4679
|
+
> = z.object({
|
|
4680
|
+
type:
|
|
4681
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema,
|
|
4682
|
+
value: z.number(),
|
|
4683
|
+
});
|
|
4648
4684
|
/** @internal */
|
|
4649
|
-
export type
|
|
4685
|
+
export type CreateEvalFunctionParams11$Outbound = {
|
|
4650
4686
|
type: string;
|
|
4651
4687
|
value: number;
|
|
4652
4688
|
};
|
|
4653
4689
|
|
|
4654
4690
|
/** @internal */
|
|
4655
|
-
export const
|
|
4656
|
-
|
|
4691
|
+
export const CreateEvalFunctionParams11$outboundSchema: z.ZodType<
|
|
4692
|
+
CreateEvalFunctionParams11$Outbound,
|
|
4657
4693
|
z.ZodTypeDef,
|
|
4658
|
-
|
|
4694
|
+
CreateEvalFunctionParams11
|
|
4659
4695
|
> = z.object({
|
|
4660
4696
|
type:
|
|
4661
4697
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$outboundSchema,
|
|
4662
4698
|
value: z.number(),
|
|
4663
4699
|
});
|
|
4664
4700
|
|
|
4665
|
-
export function
|
|
4666
|
-
|
|
4701
|
+
export function createEvalFunctionParams11ToJSON(
|
|
4702
|
+
createEvalFunctionParams11: CreateEvalFunctionParams11,
|
|
4703
|
+
): string {
|
|
4704
|
+
return JSON.stringify(
|
|
4705
|
+
CreateEvalFunctionParams11$outboundSchema.parse(createEvalFunctionParams11),
|
|
4706
|
+
);
|
|
4667
4707
|
}
|
|
4668
|
-
export function
|
|
4708
|
+
export function createEvalFunctionParams11FromJSON(
|
|
4669
4709
|
jsonString: string,
|
|
4670
|
-
): SafeParseResult<
|
|
4710
|
+
): SafeParseResult<CreateEvalFunctionParams11, SDKValidationError> {
|
|
4671
4711
|
return safeParse(
|
|
4672
4712
|
jsonString,
|
|
4673
|
-
(x) =>
|
|
4674
|
-
`Failed to parse '
|
|
4713
|
+
(x) => CreateEvalFunctionParams11$inboundSchema.parse(JSON.parse(x)),
|
|
4714
|
+
`Failed to parse 'CreateEvalFunctionParams11' from JSON`,
|
|
4675
4715
|
);
|
|
4676
4716
|
}
|
|
4677
4717
|
|
|
@@ -4690,33 +4730,43 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4690
4730
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema;
|
|
4691
4731
|
|
|
4692
4732
|
/** @internal */
|
|
4693
|
-
export const
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4733
|
+
export const CreateEvalFunctionParams10$inboundSchema: z.ZodType<
|
|
4734
|
+
CreateEvalFunctionParams10,
|
|
4735
|
+
z.ZodTypeDef,
|
|
4736
|
+
unknown
|
|
4737
|
+
> = z.object({
|
|
4738
|
+
type:
|
|
4739
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema,
|
|
4740
|
+
});
|
|
4698
4741
|
/** @internal */
|
|
4699
|
-
export type
|
|
4742
|
+
export type CreateEvalFunctionParams10$Outbound = {
|
|
4700
4743
|
type: string;
|
|
4701
4744
|
};
|
|
4702
4745
|
|
|
4703
4746
|
/** @internal */
|
|
4704
|
-
export const
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4747
|
+
export const CreateEvalFunctionParams10$outboundSchema: z.ZodType<
|
|
4748
|
+
CreateEvalFunctionParams10$Outbound,
|
|
4749
|
+
z.ZodTypeDef,
|
|
4750
|
+
CreateEvalFunctionParams10
|
|
4751
|
+
> = z.object({
|
|
4752
|
+
type:
|
|
4753
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$outboundSchema,
|
|
4754
|
+
});
|
|
4709
4755
|
|
|
4710
|
-
export function
|
|
4711
|
-
|
|
4756
|
+
export function createEvalFunctionParams10ToJSON(
|
|
4757
|
+
createEvalFunctionParams10: CreateEvalFunctionParams10,
|
|
4758
|
+
): string {
|
|
4759
|
+
return JSON.stringify(
|
|
4760
|
+
CreateEvalFunctionParams10$outboundSchema.parse(createEvalFunctionParams10),
|
|
4761
|
+
);
|
|
4712
4762
|
}
|
|
4713
|
-
export function
|
|
4763
|
+
export function createEvalFunctionParams10FromJSON(
|
|
4714
4764
|
jsonString: string,
|
|
4715
|
-
): SafeParseResult<
|
|
4765
|
+
): SafeParseResult<CreateEvalFunctionParams10, SDKValidationError> {
|
|
4716
4766
|
return safeParse(
|
|
4717
4767
|
jsonString,
|
|
4718
|
-
(x) =>
|
|
4719
|
-
`Failed to parse '
|
|
4768
|
+
(x) => CreateEvalFunctionParams10$inboundSchema.parse(JSON.parse(x)),
|
|
4769
|
+
`Failed to parse 'CreateEvalFunctionParams10' from JSON`,
|
|
4720
4770
|
);
|
|
4721
4771
|
}
|
|
4722
4772
|
|
|
@@ -4735,36 +4785,46 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4735
4785
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema;
|
|
4736
4786
|
|
|
4737
4787
|
/** @internal */
|
|
4738
|
-
export const
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4788
|
+
export const CreateEvalFunctionParams9$inboundSchema: z.ZodType<
|
|
4789
|
+
CreateEvalFunctionParams9,
|
|
4790
|
+
z.ZodTypeDef,
|
|
4791
|
+
unknown
|
|
4792
|
+
> = z.object({
|
|
4793
|
+
type:
|
|
4794
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema,
|
|
4795
|
+
value: z.string(),
|
|
4796
|
+
});
|
|
4744
4797
|
/** @internal */
|
|
4745
|
-
export type
|
|
4798
|
+
export type CreateEvalFunctionParams9$Outbound = {
|
|
4746
4799
|
type: string;
|
|
4747
4800
|
value: string;
|
|
4748
4801
|
};
|
|
4749
4802
|
|
|
4750
4803
|
/** @internal */
|
|
4751
|
-
export const
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4804
|
+
export const CreateEvalFunctionParams9$outboundSchema: z.ZodType<
|
|
4805
|
+
CreateEvalFunctionParams9$Outbound,
|
|
4806
|
+
z.ZodTypeDef,
|
|
4807
|
+
CreateEvalFunctionParams9
|
|
4808
|
+
> = z.object({
|
|
4809
|
+
type:
|
|
4810
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$outboundSchema,
|
|
4811
|
+
value: z.string(),
|
|
4812
|
+
});
|
|
4757
4813
|
|
|
4758
|
-
export function
|
|
4759
|
-
|
|
4814
|
+
export function createEvalFunctionParams9ToJSON(
|
|
4815
|
+
createEvalFunctionParams9: CreateEvalFunctionParams9,
|
|
4816
|
+
): string {
|
|
4817
|
+
return JSON.stringify(
|
|
4818
|
+
CreateEvalFunctionParams9$outboundSchema.parse(createEvalFunctionParams9),
|
|
4819
|
+
);
|
|
4760
4820
|
}
|
|
4761
|
-
export function
|
|
4821
|
+
export function createEvalFunctionParams9FromJSON(
|
|
4762
4822
|
jsonString: string,
|
|
4763
|
-
): SafeParseResult<
|
|
4823
|
+
): SafeParseResult<CreateEvalFunctionParams9, SDKValidationError> {
|
|
4764
4824
|
return safeParse(
|
|
4765
4825
|
jsonString,
|
|
4766
|
-
(x) =>
|
|
4767
|
-
`Failed to parse '
|
|
4826
|
+
(x) => CreateEvalFunctionParams9$inboundSchema.parse(JSON.parse(x)),
|
|
4827
|
+
`Failed to parse 'CreateEvalFunctionParams9' from JSON`,
|
|
4768
4828
|
);
|
|
4769
4829
|
}
|
|
4770
4830
|
|
|
@@ -4783,39 +4843,46 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4783
4843
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema;
|
|
4784
4844
|
|
|
4785
4845
|
/** @internal */
|
|
4786
|
-
export const
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4846
|
+
export const CreateEvalFunctionParams8$inboundSchema: z.ZodType<
|
|
4847
|
+
CreateEvalFunctionParams8,
|
|
4848
|
+
z.ZodTypeDef,
|
|
4849
|
+
unknown
|
|
4850
|
+
> = z.object({
|
|
4851
|
+
type:
|
|
4852
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema,
|
|
4853
|
+
value: z.string(),
|
|
4854
|
+
});
|
|
4792
4855
|
/** @internal */
|
|
4793
|
-
export type
|
|
4856
|
+
export type CreateEvalFunctionParams8$Outbound = {
|
|
4794
4857
|
type: string;
|
|
4795
4858
|
value: string;
|
|
4796
4859
|
};
|
|
4797
4860
|
|
|
4798
4861
|
/** @internal */
|
|
4799
|
-
export const
|
|
4800
|
-
|
|
4862
|
+
export const CreateEvalFunctionParams8$outboundSchema: z.ZodType<
|
|
4863
|
+
CreateEvalFunctionParams8$Outbound,
|
|
4801
4864
|
z.ZodTypeDef,
|
|
4802
|
-
|
|
4865
|
+
CreateEvalFunctionParams8
|
|
4803
4866
|
> = z.object({
|
|
4804
4867
|
type:
|
|
4805
4868
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema,
|
|
4806
4869
|
value: z.string(),
|
|
4807
4870
|
});
|
|
4808
4871
|
|
|
4809
|
-
export function
|
|
4810
|
-
|
|
4872
|
+
export function createEvalFunctionParams8ToJSON(
|
|
4873
|
+
createEvalFunctionParams8: CreateEvalFunctionParams8,
|
|
4874
|
+
): string {
|
|
4875
|
+
return JSON.stringify(
|
|
4876
|
+
CreateEvalFunctionParams8$outboundSchema.parse(createEvalFunctionParams8),
|
|
4877
|
+
);
|
|
4811
4878
|
}
|
|
4812
|
-
export function
|
|
4879
|
+
export function createEvalFunctionParams8FromJSON(
|
|
4813
4880
|
jsonString: string,
|
|
4814
|
-
): SafeParseResult<
|
|
4881
|
+
): SafeParseResult<CreateEvalFunctionParams8, SDKValidationError> {
|
|
4815
4882
|
return safeParse(
|
|
4816
4883
|
jsonString,
|
|
4817
|
-
(x) =>
|
|
4818
|
-
`Failed to parse '
|
|
4884
|
+
(x) => CreateEvalFunctionParams8$inboundSchema.parse(JSON.parse(x)),
|
|
4885
|
+
`Failed to parse 'CreateEvalFunctionParams8' from JSON`,
|
|
4819
4886
|
);
|
|
4820
4887
|
}
|
|
4821
4888
|
|
|
@@ -4834,36 +4901,43 @@ export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody
|
|
|
4834
4901
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema;
|
|
4835
4902
|
|
|
4836
4903
|
/** @internal */
|
|
4837
|
-
export const
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4904
|
+
export const CreateEvalFunctionParams7$inboundSchema: z.ZodType<
|
|
4905
|
+
CreateEvalFunctionParams7,
|
|
4906
|
+
z.ZodTypeDef,
|
|
4907
|
+
unknown
|
|
4908
|
+
> = z.object({
|
|
4909
|
+
type:
|
|
4910
|
+
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
4911
|
+
});
|
|
4842
4912
|
/** @internal */
|
|
4843
|
-
export type
|
|
4913
|
+
export type CreateEvalFunctionParams7$Outbound = {
|
|
4844
4914
|
type: string;
|
|
4845
4915
|
};
|
|
4846
4916
|
|
|
4847
4917
|
/** @internal */
|
|
4848
|
-
export const
|
|
4849
|
-
|
|
4918
|
+
export const CreateEvalFunctionParams7$outboundSchema: z.ZodType<
|
|
4919
|
+
CreateEvalFunctionParams7$Outbound,
|
|
4850
4920
|
z.ZodTypeDef,
|
|
4851
|
-
|
|
4921
|
+
CreateEvalFunctionParams7
|
|
4852
4922
|
> = z.object({
|
|
4853
4923
|
type:
|
|
4854
4924
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
4855
4925
|
});
|
|
4856
4926
|
|
|
4857
|
-
export function
|
|
4858
|
-
|
|
4927
|
+
export function createEvalFunctionParams7ToJSON(
|
|
4928
|
+
createEvalFunctionParams7: CreateEvalFunctionParams7,
|
|
4929
|
+
): string {
|
|
4930
|
+
return JSON.stringify(
|
|
4931
|
+
CreateEvalFunctionParams7$outboundSchema.parse(createEvalFunctionParams7),
|
|
4932
|
+
);
|
|
4859
4933
|
}
|
|
4860
|
-
export function
|
|
4934
|
+
export function createEvalFunctionParams7FromJSON(
|
|
4861
4935
|
jsonString: string,
|
|
4862
|
-
): SafeParseResult<
|
|
4936
|
+
): SafeParseResult<CreateEvalFunctionParams7, SDKValidationError> {
|
|
4863
4937
|
return safeParse(
|
|
4864
4938
|
jsonString,
|
|
4865
|
-
(x) =>
|
|
4866
|
-
`Failed to parse '
|
|
4939
|
+
(x) => CreateEvalFunctionParams7$inboundSchema.parse(JSON.parse(x)),
|
|
4940
|
+
`Failed to parse 'CreateEvalFunctionParams7' from JSON`,
|
|
4867
4941
|
);
|
|
4868
4942
|
}
|
|
4869
4943
|
|
|
@@ -5177,25 +5251,25 @@ export const FunctionParams$inboundSchema: z.ZodType<
|
|
|
5177
5251
|
z.ZodTypeDef,
|
|
5178
5252
|
unknown
|
|
5179
5253
|
> = z.union([
|
|
5180
|
-
z.lazy(() =>
|
|
5254
|
+
z.lazy(() => CreateEvalFunctionParams12$inboundSchema),
|
|
5181
5255
|
z.lazy(() => CreateEvalFunctionParams1$inboundSchema),
|
|
5182
5256
|
z.lazy(() => CreateEvalFunctionParams2$inboundSchema),
|
|
5183
5257
|
z.lazy(() => CreateEvalFunctionParams3$inboundSchema),
|
|
5184
5258
|
z.lazy(() => CreateEvalFunctionParams4$inboundSchema),
|
|
5185
|
-
z.lazy(() =>
|
|
5186
|
-
z.lazy(() =>
|
|
5187
|
-
z.lazy(() =>
|
|
5188
|
-
z.lazy(() =>
|
|
5189
|
-
z.lazy(() =>
|
|
5259
|
+
z.lazy(() => CreateEvalFunctionParams8$inboundSchema),
|
|
5260
|
+
z.lazy(() => CreateEvalFunctionParams9$inboundSchema),
|
|
5261
|
+
z.lazy(() => CreateEvalFunctionParams11$inboundSchema),
|
|
5262
|
+
z.lazy(() => CreateEvalFunctionParams13$inboundSchema),
|
|
5263
|
+
z.lazy(() => CreateEvalFunctionParams15$inboundSchema),
|
|
5190
5264
|
z.lazy(() => TwentyFive$inboundSchema),
|
|
5191
5265
|
z.lazy(() => TwentySix$inboundSchema),
|
|
5192
5266
|
z.lazy(() => CreateEvalFunctionParams5$inboundSchema),
|
|
5193
5267
|
z.lazy(() => CreateEvalFunctionParams6$inboundSchema),
|
|
5194
|
-
z.lazy(() =>
|
|
5195
|
-
z.lazy(() =>
|
|
5196
|
-
z.lazy(() =>
|
|
5197
|
-
z.lazy(() =>
|
|
5198
|
-
z.lazy(() =>
|
|
5268
|
+
z.lazy(() => CreateEvalFunctionParams7$inboundSchema),
|
|
5269
|
+
z.lazy(() => CreateEvalFunctionParams10$inboundSchema),
|
|
5270
|
+
z.lazy(() => CreateEvalFunctionParams14$inboundSchema),
|
|
5271
|
+
z.lazy(() => CreateEvalFunctionParams16$inboundSchema),
|
|
5272
|
+
z.lazy(() => CreateEvalFunctionParams17$inboundSchema),
|
|
5199
5273
|
z.lazy(() => Eighteen$inboundSchema),
|
|
5200
5274
|
z.lazy(() => Nineteen$inboundSchema),
|
|
5201
5275
|
z.lazy(() => Twenty$inboundSchema),
|
|
@@ -5215,25 +5289,25 @@ export const FunctionParams$inboundSchema: z.ZodType<
|
|
|
5215
5289
|
]);
|
|
5216
5290
|
/** @internal */
|
|
5217
5291
|
export type FunctionParams$Outbound =
|
|
5218
|
-
|
|
|
5292
|
+
| CreateEvalFunctionParams12$Outbound
|
|
5219
5293
|
| CreateEvalFunctionParams1$Outbound
|
|
5220
5294
|
| CreateEvalFunctionParams2$Outbound
|
|
5221
5295
|
| CreateEvalFunctionParams3$Outbound
|
|
5222
5296
|
| CreateEvalFunctionParams4$Outbound
|
|
5223
|
-
|
|
|
5224
|
-
|
|
|
5225
|
-
|
|
|
5226
|
-
|
|
|
5227
|
-
|
|
|
5297
|
+
| CreateEvalFunctionParams8$Outbound
|
|
5298
|
+
| CreateEvalFunctionParams9$Outbound
|
|
5299
|
+
| CreateEvalFunctionParams11$Outbound
|
|
5300
|
+
| CreateEvalFunctionParams13$Outbound
|
|
5301
|
+
| CreateEvalFunctionParams15$Outbound
|
|
5228
5302
|
| TwentyFive$Outbound
|
|
5229
5303
|
| TwentySix$Outbound
|
|
5230
5304
|
| CreateEvalFunctionParams5$Outbound
|
|
5231
5305
|
| CreateEvalFunctionParams6$Outbound
|
|
5232
|
-
|
|
|
5233
|
-
|
|
|
5234
|
-
|
|
|
5235
|
-
|
|
|
5236
|
-
|
|
|
5306
|
+
| CreateEvalFunctionParams7$Outbound
|
|
5307
|
+
| CreateEvalFunctionParams10$Outbound
|
|
5308
|
+
| CreateEvalFunctionParams14$Outbound
|
|
5309
|
+
| CreateEvalFunctionParams16$Outbound
|
|
5310
|
+
| CreateEvalFunctionParams17$Outbound
|
|
5237
5311
|
| Eighteen$Outbound
|
|
5238
5312
|
| Nineteen$Outbound
|
|
5239
5313
|
| Twenty$Outbound
|
|
@@ -5257,25 +5331,25 @@ export const FunctionParams$outboundSchema: z.ZodType<
|
|
|
5257
5331
|
z.ZodTypeDef,
|
|
5258
5332
|
FunctionParams
|
|
5259
5333
|
> = z.union([
|
|
5260
|
-
z.lazy(() =>
|
|
5334
|
+
z.lazy(() => CreateEvalFunctionParams12$outboundSchema),
|
|
5261
5335
|
z.lazy(() => CreateEvalFunctionParams1$outboundSchema),
|
|
5262
5336
|
z.lazy(() => CreateEvalFunctionParams2$outboundSchema),
|
|
5263
5337
|
z.lazy(() => CreateEvalFunctionParams3$outboundSchema),
|
|
5264
5338
|
z.lazy(() => CreateEvalFunctionParams4$outboundSchema),
|
|
5265
|
-
z.lazy(() =>
|
|
5266
|
-
z.lazy(() =>
|
|
5267
|
-
z.lazy(() =>
|
|
5268
|
-
z.lazy(() =>
|
|
5269
|
-
z.lazy(() =>
|
|
5339
|
+
z.lazy(() => CreateEvalFunctionParams8$outboundSchema),
|
|
5340
|
+
z.lazy(() => CreateEvalFunctionParams9$outboundSchema),
|
|
5341
|
+
z.lazy(() => CreateEvalFunctionParams11$outboundSchema),
|
|
5342
|
+
z.lazy(() => CreateEvalFunctionParams13$outboundSchema),
|
|
5343
|
+
z.lazy(() => CreateEvalFunctionParams15$outboundSchema),
|
|
5270
5344
|
z.lazy(() => TwentyFive$outboundSchema),
|
|
5271
5345
|
z.lazy(() => TwentySix$outboundSchema),
|
|
5272
5346
|
z.lazy(() => CreateEvalFunctionParams5$outboundSchema),
|
|
5273
5347
|
z.lazy(() => CreateEvalFunctionParams6$outboundSchema),
|
|
5274
|
-
z.lazy(() =>
|
|
5275
|
-
z.lazy(() =>
|
|
5276
|
-
z.lazy(() =>
|
|
5277
|
-
z.lazy(() =>
|
|
5278
|
-
z.lazy(() =>
|
|
5348
|
+
z.lazy(() => CreateEvalFunctionParams7$outboundSchema),
|
|
5349
|
+
z.lazy(() => CreateEvalFunctionParams10$outboundSchema),
|
|
5350
|
+
z.lazy(() => CreateEvalFunctionParams14$outboundSchema),
|
|
5351
|
+
z.lazy(() => CreateEvalFunctionParams16$outboundSchema),
|
|
5352
|
+
z.lazy(() => CreateEvalFunctionParams17$outboundSchema),
|
|
5279
5353
|
z.lazy(() => Eighteen$outboundSchema),
|
|
5280
5354
|
z.lazy(() => Nineteen$outboundSchema),
|
|
5281
5355
|
z.lazy(() => Twenty$outboundSchema),
|
|
@@ -5315,8 +5389,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5315
5389
|
> = z.object({
|
|
5316
5390
|
_id: z.string(),
|
|
5317
5391
|
description: z.string(),
|
|
5318
|
-
created: z.string().default("2025-11-
|
|
5319
|
-
updated: z.string().default("2025-11-
|
|
5392
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5393
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5320
5394
|
guardrail_config: z.union([
|
|
5321
5395
|
z.lazy(() =>
|
|
5322
5396
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5327,25 +5401,25 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5327
5401
|
]).optional(),
|
|
5328
5402
|
type: CreateEvalResponseBodyEvalsResponse200Type$inboundSchema,
|
|
5329
5403
|
function_params: z.union([
|
|
5330
|
-
z.lazy(() =>
|
|
5404
|
+
z.lazy(() => CreateEvalFunctionParams12$inboundSchema),
|
|
5331
5405
|
z.lazy(() => CreateEvalFunctionParams1$inboundSchema),
|
|
5332
5406
|
z.lazy(() => CreateEvalFunctionParams2$inboundSchema),
|
|
5333
5407
|
z.lazy(() => CreateEvalFunctionParams3$inboundSchema),
|
|
5334
5408
|
z.lazy(() => CreateEvalFunctionParams4$inboundSchema),
|
|
5335
|
-
z.lazy(() =>
|
|
5336
|
-
z.lazy(() =>
|
|
5337
|
-
z.lazy(() =>
|
|
5338
|
-
z.lazy(() =>
|
|
5339
|
-
z.lazy(() =>
|
|
5409
|
+
z.lazy(() => CreateEvalFunctionParams8$inboundSchema),
|
|
5410
|
+
z.lazy(() => CreateEvalFunctionParams9$inboundSchema),
|
|
5411
|
+
z.lazy(() => CreateEvalFunctionParams11$inboundSchema),
|
|
5412
|
+
z.lazy(() => CreateEvalFunctionParams13$inboundSchema),
|
|
5413
|
+
z.lazy(() => CreateEvalFunctionParams15$inboundSchema),
|
|
5340
5414
|
z.lazy(() => TwentyFive$inboundSchema),
|
|
5341
5415
|
z.lazy(() => TwentySix$inboundSchema),
|
|
5342
5416
|
z.lazy(() => CreateEvalFunctionParams5$inboundSchema),
|
|
5343
5417
|
z.lazy(() => CreateEvalFunctionParams6$inboundSchema),
|
|
5344
|
-
z.lazy(() =>
|
|
5345
|
-
z.lazy(() =>
|
|
5346
|
-
z.lazy(() =>
|
|
5347
|
-
z.lazy(() =>
|
|
5348
|
-
z.lazy(() =>
|
|
5418
|
+
z.lazy(() => CreateEvalFunctionParams7$inboundSchema),
|
|
5419
|
+
z.lazy(() => CreateEvalFunctionParams10$inboundSchema),
|
|
5420
|
+
z.lazy(() => CreateEvalFunctionParams14$inboundSchema),
|
|
5421
|
+
z.lazy(() => CreateEvalFunctionParams16$inboundSchema),
|
|
5422
|
+
z.lazy(() => CreateEvalFunctionParams17$inboundSchema),
|
|
5349
5423
|
z.lazy(() => Eighteen$inboundSchema),
|
|
5350
5424
|
z.lazy(() => Nineteen$inboundSchema),
|
|
5351
5425
|
z.lazy(() => Twenty$inboundSchema),
|
|
@@ -5383,25 +5457,25 @@ export type CreateEvalResponseBodyFunction$Outbound = {
|
|
|
5383
5457
|
| undefined;
|
|
5384
5458
|
type: string;
|
|
5385
5459
|
function_params:
|
|
5386
|
-
|
|
|
5460
|
+
| CreateEvalFunctionParams12$Outbound
|
|
5387
5461
|
| CreateEvalFunctionParams1$Outbound
|
|
5388
5462
|
| CreateEvalFunctionParams2$Outbound
|
|
5389
5463
|
| CreateEvalFunctionParams3$Outbound
|
|
5390
5464
|
| CreateEvalFunctionParams4$Outbound
|
|
5391
|
-
|
|
|
5392
|
-
|
|
|
5393
|
-
|
|
|
5394
|
-
|
|
|
5395
|
-
|
|
|
5465
|
+
| CreateEvalFunctionParams8$Outbound
|
|
5466
|
+
| CreateEvalFunctionParams9$Outbound
|
|
5467
|
+
| CreateEvalFunctionParams11$Outbound
|
|
5468
|
+
| CreateEvalFunctionParams13$Outbound
|
|
5469
|
+
| CreateEvalFunctionParams15$Outbound
|
|
5396
5470
|
| TwentyFive$Outbound
|
|
5397
5471
|
| TwentySix$Outbound
|
|
5398
5472
|
| CreateEvalFunctionParams5$Outbound
|
|
5399
5473
|
| CreateEvalFunctionParams6$Outbound
|
|
5400
|
-
|
|
|
5401
|
-
|
|
|
5402
|
-
|
|
|
5403
|
-
|
|
|
5404
|
-
|
|
|
5474
|
+
| CreateEvalFunctionParams7$Outbound
|
|
5475
|
+
| CreateEvalFunctionParams10$Outbound
|
|
5476
|
+
| CreateEvalFunctionParams14$Outbound
|
|
5477
|
+
| CreateEvalFunctionParams16$Outbound
|
|
5478
|
+
| CreateEvalFunctionParams17$Outbound
|
|
5405
5479
|
| Eighteen$Outbound
|
|
5406
5480
|
| Nineteen$Outbound
|
|
5407
5481
|
| Twenty$Outbound
|
|
@@ -5429,8 +5503,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5429
5503
|
> = z.object({
|
|
5430
5504
|
id: z.string(),
|
|
5431
5505
|
description: z.string(),
|
|
5432
|
-
created: z.string().default("2025-11-
|
|
5433
|
-
updated: z.string().default("2025-11-
|
|
5506
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5507
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5434
5508
|
guardrailConfig: z.union([
|
|
5435
5509
|
z.lazy(() =>
|
|
5436
5510
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5441,25 +5515,25 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5441
5515
|
]).optional(),
|
|
5442
5516
|
type: CreateEvalResponseBodyEvalsResponse200Type$outboundSchema,
|
|
5443
5517
|
functionParams: z.union([
|
|
5444
|
-
z.lazy(() =>
|
|
5518
|
+
z.lazy(() => CreateEvalFunctionParams12$outboundSchema),
|
|
5445
5519
|
z.lazy(() => CreateEvalFunctionParams1$outboundSchema),
|
|
5446
5520
|
z.lazy(() => CreateEvalFunctionParams2$outboundSchema),
|
|
5447
5521
|
z.lazy(() => CreateEvalFunctionParams3$outboundSchema),
|
|
5448
5522
|
z.lazy(() => CreateEvalFunctionParams4$outboundSchema),
|
|
5449
|
-
z.lazy(() =>
|
|
5450
|
-
z.lazy(() =>
|
|
5451
|
-
z.lazy(() =>
|
|
5452
|
-
z.lazy(() =>
|
|
5453
|
-
z.lazy(() =>
|
|
5523
|
+
z.lazy(() => CreateEvalFunctionParams8$outboundSchema),
|
|
5524
|
+
z.lazy(() => CreateEvalFunctionParams9$outboundSchema),
|
|
5525
|
+
z.lazy(() => CreateEvalFunctionParams11$outboundSchema),
|
|
5526
|
+
z.lazy(() => CreateEvalFunctionParams13$outboundSchema),
|
|
5527
|
+
z.lazy(() => CreateEvalFunctionParams15$outboundSchema),
|
|
5454
5528
|
z.lazy(() => TwentyFive$outboundSchema),
|
|
5455
5529
|
z.lazy(() => TwentySix$outboundSchema),
|
|
5456
5530
|
z.lazy(() => CreateEvalFunctionParams5$outboundSchema),
|
|
5457
5531
|
z.lazy(() => CreateEvalFunctionParams6$outboundSchema),
|
|
5458
|
-
z.lazy(() =>
|
|
5459
|
-
z.lazy(() =>
|
|
5460
|
-
z.lazy(() =>
|
|
5461
|
-
z.lazy(() =>
|
|
5462
|
-
z.lazy(() =>
|
|
5532
|
+
z.lazy(() => CreateEvalFunctionParams7$outboundSchema),
|
|
5533
|
+
z.lazy(() => CreateEvalFunctionParams10$outboundSchema),
|
|
5534
|
+
z.lazy(() => CreateEvalFunctionParams14$outboundSchema),
|
|
5535
|
+
z.lazy(() => CreateEvalFunctionParams16$outboundSchema),
|
|
5536
|
+
z.lazy(() => CreateEvalFunctionParams17$outboundSchema),
|
|
5463
5537
|
z.lazy(() => Eighteen$outboundSchema),
|
|
5464
5538
|
z.lazy(() => Nineteen$outboundSchema),
|
|
5465
5539
|
z.lazy(() => Twenty$outboundSchema),
|
|
@@ -5747,8 +5821,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5747
5821
|
> = z.object({
|
|
5748
5822
|
_id: z.string(),
|
|
5749
5823
|
description: z.string(),
|
|
5750
|
-
created: z.string().default("2025-11-
|
|
5751
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5752
5826
|
guardrail_config: z.union([
|
|
5753
5827
|
z.lazy(() =>
|
|
5754
5828
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5789,8 +5863,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5789
5863
|
> = z.object({
|
|
5790
5864
|
id: z.string(),
|
|
5791
5865
|
description: z.string(),
|
|
5792
|
-
created: z.string().default("2025-11-
|
|
5793
|
-
updated: z.string().default("2025-11-
|
|
5866
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5867
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
5794
5868
|
guardrailConfig: z.union([
|
|
5795
5869
|
z.lazy(() =>
|
|
5796
5870
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6070,8 +6144,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6070
6144
|
> = z.object({
|
|
6071
6145
|
_id: z.string(),
|
|
6072
6146
|
description: z.string(),
|
|
6073
|
-
created: z.string().default("2025-11-
|
|
6074
|
-
updated: z.string().default("2025-11-
|
|
6147
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6148
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6075
6149
|
guardrail_config: z.union([
|
|
6076
6150
|
z.lazy(() =>
|
|
6077
6151
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6118,8 +6192,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6118
6192
|
> = z.object({
|
|
6119
6193
|
id: z.string(),
|
|
6120
6194
|
description: z.string(),
|
|
6121
|
-
created: z.string().default("2025-11-
|
|
6122
|
-
updated: z.string().default("2025-11-
|
|
6195
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6196
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6123
6197
|
guardrailConfig: z.union([
|
|
6124
6198
|
z.lazy(() =>
|
|
6125
6199
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6375,8 +6449,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6375
6449
|
> = z.object({
|
|
6376
6450
|
_id: z.string(),
|
|
6377
6451
|
description: z.string(),
|
|
6378
|
-
created: z.string().default("2025-11-
|
|
6379
|
-
updated: z.string().default("2025-11-
|
|
6452
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6453
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6380
6454
|
guardrail_config: z.union([
|
|
6381
6455
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6382
6456
|
z.lazy(() =>
|
|
@@ -6415,8 +6489,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6415
6489
|
> = z.object({
|
|
6416
6490
|
id: z.string(),
|
|
6417
6491
|
description: z.string(),
|
|
6418
|
-
created: z.string().default("2025-11-
|
|
6419
|
-
updated: z.string().default("2025-11-
|
|
6492
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6493
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6420
6494
|
guardrailConfig: z.union([
|
|
6421
6495
|
z.lazy(() =>
|
|
6422
6496
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6654,8 +6728,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6654
6728
|
> = z.object({
|
|
6655
6729
|
_id: z.string(),
|
|
6656
6730
|
description: z.string(),
|
|
6657
|
-
created: z.string().default("2025-11-
|
|
6658
|
-
updated: z.string().default("2025-11-
|
|
6731
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6732
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6659
6733
|
guardrail_config: z.union([
|
|
6660
6734
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6661
6735
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6694,8 +6768,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6694
6768
|
> = z.object({
|
|
6695
6769
|
id: z.string(),
|
|
6696
6770
|
description: z.string(),
|
|
6697
|
-
created: z.string().default("2025-11-
|
|
6698
|
-
updated: z.string().default("2025-11-
|
|
6771
|
+
created: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6772
|
+
updated: z.string().default("2025-11-20T08:19:19.500Z"),
|
|
6699
6773
|
guardrailConfig: z.union([
|
|
6700
6774
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6701
6775
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|