@orq-ai/node 4.2.0-rc.44 → 4.2.0-rc.46
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/README.md +2 -1
- package/bin/mcp-server.js +4770 -1625
- package/bin/mcp-server.js.map +57 -56
- package/examples/package-lock.json +1 -1
- package/funcs/promptsDelete.d.ts +2 -1
- package/funcs/promptsDelete.d.ts.map +1 -1
- package/funcs/promptsDelete.js +7 -3
- package/funcs/promptsDelete.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/errors/deleteprompt.d.ts +29 -0
- package/models/errors/deleteprompt.d.ts.map +1 -0
- package/models/errors/deleteprompt.js +74 -0
- package/models/errors/deleteprompt.js.map +1 -0
- package/models/errors/index.d.ts +1 -0
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +1 -0
- package/models/errors/index.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- 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 +16 -16
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +56 -53
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createidentity.js +2 -2
- package/models/operations/createprompt.d.ts +1746 -976
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +2032 -1282
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/deploymentgetconfig.d.ts +88 -88
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +131 -130
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentinvoke.d.ts +5 -5
- package/models/operations/deploymentinvoke.d.ts.map +1 -1
- package/models/operations/deploymentinvoke.js +7 -6
- package/models/operations/deploymentinvoke.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getallprompts.d.ts +1051 -42
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +1069 -48
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +1051 -42
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +1071 -47
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +1051 -42
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +1070 -48
- package/models/operations/getpromptversion.js.map +1 -1
- 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/listidentities.js +2 -2
- package/models/operations/listpromptversions.d.ts +1051 -42
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +1070 -47
- package/models/operations/listpromptversions.js.map +1 -1
- 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/retrieveidentity.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.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/updateidentity.js +2 -2
- package/models/operations/updateprompt.d.ts +2112 -1413
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +2200 -1525
- package/models/operations/updateprompt.js.map +1 -1
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/funcs/promptsDelete.ts +12 -3
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/errors/deleteprompt.ts +67 -0
- package/src/models/errors/index.ts +1 -0
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- 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 +76 -96
- package/src/models/operations/createidentity.ts +2 -2
- package/src/models/operations/createprompt.ts +5179 -3019
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/deploymentgetconfig.ts +252 -337
- package/src/models/operations/deploymentinvoke.ts +9 -13
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getallprompts.ts +3543 -850
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +3463 -786
- package/src/models/operations/getpromptversion.ts +3579 -835
- 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/listidentities.ts +2 -2
- package/src/models/operations/listpromptversions.ts +3644 -864
- 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/retrieveidentity.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.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/updateidentity.ts +2 -2
- package/src/models/operations/updateprompt.ts +5281 -3301
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -543,11 +543,11 @@ export type Seven = {
|
|
|
543
543
|
type: "contains_valid_link";
|
|
544
544
|
};
|
|
545
545
|
|
|
546
|
-
export type
|
|
546
|
+
export type Six = {
|
|
547
547
|
type: "contains_url";
|
|
548
548
|
};
|
|
549
549
|
|
|
550
|
-
export type
|
|
550
|
+
export type Five = {
|
|
551
551
|
type: "contains_email";
|
|
552
552
|
};
|
|
553
553
|
|
|
@@ -576,8 +576,8 @@ export type FunctionParams =
|
|
|
576
576
|
| CreateEvalFunctionParams2
|
|
577
577
|
| CreateEvalFunctionParams3
|
|
578
578
|
| CreateEvalFunctionParams4
|
|
579
|
-
|
|
|
580
|
-
|
|
|
579
|
+
| Five
|
|
580
|
+
| Six
|
|
581
581
|
| Seven
|
|
582
582
|
| Eight
|
|
583
583
|
| Nine
|
|
@@ -620,8 +620,8 @@ export type CreateEvalResponseBodyFunction = {
|
|
|
620
620
|
| CreateEvalFunctionParams2
|
|
621
621
|
| CreateEvalFunctionParams3
|
|
622
622
|
| CreateEvalFunctionParams4
|
|
623
|
-
|
|
|
624
|
-
|
|
|
623
|
+
| Five
|
|
624
|
+
| Six
|
|
625
625
|
| Seven
|
|
626
626
|
| Eight
|
|
627
627
|
| Nine
|
|
@@ -2124,8 +2124,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2124
2124
|
> = z.object({
|
|
2125
2125
|
_id: z.string(),
|
|
2126
2126
|
description: z.string(),
|
|
2127
|
-
created: z.string().default("2026-01-
|
|
2128
|
-
updated: z.string().default("2026-01-
|
|
2127
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2128
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2129
2129
|
guardrail_config: z.union([
|
|
2130
2130
|
z.lazy(() =>
|
|
2131
2131
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2166,8 +2166,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2166
2166
|
> = z.object({
|
|
2167
2167
|
id: z.string(),
|
|
2168
2168
|
description: z.string(),
|
|
2169
|
-
created: z.string().default("2026-01-
|
|
2170
|
-
updated: z.string().default("2026-01-
|
|
2169
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2170
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2171
2171
|
guardrailConfig: z.union([
|
|
2172
2172
|
z.lazy(() =>
|
|
2173
2173
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2426,8 +2426,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2426
2426
|
.object({
|
|
2427
2427
|
_id: z.string(),
|
|
2428
2428
|
description: z.string(),
|
|
2429
|
-
created: z.string().default("2026-01-
|
|
2430
|
-
updated: z.string().default("2026-01-
|
|
2429
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2430
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2431
2431
|
guardrail_config: z.union([
|
|
2432
2432
|
z.lazy(() =>
|
|
2433
2433
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2471,8 +2471,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2471
2471
|
> = z.object({
|
|
2472
2472
|
id: z.string(),
|
|
2473
2473
|
description: z.string(),
|
|
2474
|
-
created: z.string().default("2026-01-
|
|
2475
|
-
updated: z.string().default("2026-01-
|
|
2474
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2475
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
2476
2476
|
guardrailConfig: z.union([
|
|
2477
2477
|
z.lazy(() =>
|
|
2478
2478
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -3620,80 +3620,60 @@ export function sevenFromJSON(
|
|
|
3620
3620
|
}
|
|
3621
3621
|
|
|
3622
3622
|
/** @internal */
|
|
3623
|
-
export const
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
> = z.object({
|
|
3628
|
-
type: z.literal("contains_url"),
|
|
3629
|
-
});
|
|
3623
|
+
export const Six$inboundSchema: z.ZodType<Six, z.ZodTypeDef, unknown> = z
|
|
3624
|
+
.object({
|
|
3625
|
+
type: z.literal("contains_url"),
|
|
3626
|
+
});
|
|
3630
3627
|
/** @internal */
|
|
3631
|
-
export type
|
|
3628
|
+
export type Six$Outbound = {
|
|
3632
3629
|
type: "contains_url";
|
|
3633
3630
|
};
|
|
3634
3631
|
|
|
3635
3632
|
/** @internal */
|
|
3636
|
-
export const
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
> = z.object({
|
|
3641
|
-
type: z.literal("contains_url"),
|
|
3642
|
-
});
|
|
3633
|
+
export const Six$outboundSchema: z.ZodType<Six$Outbound, z.ZodTypeDef, Six> = z
|
|
3634
|
+
.object({
|
|
3635
|
+
type: z.literal("contains_url"),
|
|
3636
|
+
});
|
|
3643
3637
|
|
|
3644
|
-
export function
|
|
3645
|
-
|
|
3646
|
-
): string {
|
|
3647
|
-
return JSON.stringify(
|
|
3648
|
-
CreateEvalFunctionParams6$outboundSchema.parse(createEvalFunctionParams6),
|
|
3649
|
-
);
|
|
3638
|
+
export function sixToJSON(six: Six): string {
|
|
3639
|
+
return JSON.stringify(Six$outboundSchema.parse(six));
|
|
3650
3640
|
}
|
|
3651
|
-
export function
|
|
3641
|
+
export function sixFromJSON(
|
|
3652
3642
|
jsonString: string,
|
|
3653
|
-
): SafeParseResult<
|
|
3643
|
+
): SafeParseResult<Six, SDKValidationError> {
|
|
3654
3644
|
return safeParse(
|
|
3655
3645
|
jsonString,
|
|
3656
|
-
(x) =>
|
|
3657
|
-
`Failed to parse '
|
|
3646
|
+
(x) => Six$inboundSchema.parse(JSON.parse(x)),
|
|
3647
|
+
`Failed to parse 'Six' from JSON`,
|
|
3658
3648
|
);
|
|
3659
3649
|
}
|
|
3660
3650
|
|
|
3661
3651
|
/** @internal */
|
|
3662
|
-
export const
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
> = z.object({
|
|
3667
|
-
type: z.literal("contains_email"),
|
|
3668
|
-
});
|
|
3652
|
+
export const Five$inboundSchema: z.ZodType<Five, z.ZodTypeDef, unknown> = z
|
|
3653
|
+
.object({
|
|
3654
|
+
type: z.literal("contains_email"),
|
|
3655
|
+
});
|
|
3669
3656
|
/** @internal */
|
|
3670
|
-
export type
|
|
3657
|
+
export type Five$Outbound = {
|
|
3671
3658
|
type: "contains_email";
|
|
3672
3659
|
};
|
|
3673
3660
|
|
|
3674
3661
|
/** @internal */
|
|
3675
|
-
export const
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
> = z.object({
|
|
3680
|
-
type: z.literal("contains_email"),
|
|
3681
|
-
});
|
|
3662
|
+
export const Five$outboundSchema: z.ZodType<Five$Outbound, z.ZodTypeDef, Five> =
|
|
3663
|
+
z.object({
|
|
3664
|
+
type: z.literal("contains_email"),
|
|
3665
|
+
});
|
|
3682
3666
|
|
|
3683
|
-
export function
|
|
3684
|
-
|
|
3685
|
-
): string {
|
|
3686
|
-
return JSON.stringify(
|
|
3687
|
-
CreateEvalFunctionParams5$outboundSchema.parse(createEvalFunctionParams5),
|
|
3688
|
-
);
|
|
3667
|
+
export function fiveToJSON(five: Five): string {
|
|
3668
|
+
return JSON.stringify(Five$outboundSchema.parse(five));
|
|
3689
3669
|
}
|
|
3690
|
-
export function
|
|
3670
|
+
export function fiveFromJSON(
|
|
3691
3671
|
jsonString: string,
|
|
3692
|
-
): SafeParseResult<
|
|
3672
|
+
): SafeParseResult<Five, SDKValidationError> {
|
|
3693
3673
|
return safeParse(
|
|
3694
3674
|
jsonString,
|
|
3695
|
-
(x) =>
|
|
3696
|
-
`Failed to parse '
|
|
3675
|
+
(x) => Five$inboundSchema.parse(JSON.parse(x)),
|
|
3676
|
+
`Failed to parse 'Five' from JSON`,
|
|
3697
3677
|
);
|
|
3698
3678
|
}
|
|
3699
3679
|
|
|
@@ -3875,8 +3855,8 @@ export const FunctionParams$inboundSchema: z.ZodType<
|
|
|
3875
3855
|
z.lazy(() => CreateEvalFunctionParams2$inboundSchema),
|
|
3876
3856
|
z.lazy(() => CreateEvalFunctionParams3$inboundSchema),
|
|
3877
3857
|
z.lazy(() => CreateEvalFunctionParams4$inboundSchema),
|
|
3878
|
-
z.lazy(() =>
|
|
3879
|
-
z.lazy(() =>
|
|
3858
|
+
z.lazy(() => Five$inboundSchema),
|
|
3859
|
+
z.lazy(() => Six$inboundSchema),
|
|
3880
3860
|
z.lazy(() => Seven$inboundSchema),
|
|
3881
3861
|
z.lazy(() => Eight$inboundSchema),
|
|
3882
3862
|
z.lazy(() => Nine$inboundSchema),
|
|
@@ -3910,8 +3890,8 @@ export type FunctionParams$Outbound =
|
|
|
3910
3890
|
| CreateEvalFunctionParams2$Outbound
|
|
3911
3891
|
| CreateEvalFunctionParams3$Outbound
|
|
3912
3892
|
| CreateEvalFunctionParams4$Outbound
|
|
3913
|
-
|
|
|
3914
|
-
|
|
|
3893
|
+
| Five$Outbound
|
|
3894
|
+
| Six$Outbound
|
|
3915
3895
|
| Seven$Outbound
|
|
3916
3896
|
| Eight$Outbound
|
|
3917
3897
|
| Nine$Outbound
|
|
@@ -3949,8 +3929,8 @@ export const FunctionParams$outboundSchema: z.ZodType<
|
|
|
3949
3929
|
z.lazy(() => CreateEvalFunctionParams2$outboundSchema),
|
|
3950
3930
|
z.lazy(() => CreateEvalFunctionParams3$outboundSchema),
|
|
3951
3931
|
z.lazy(() => CreateEvalFunctionParams4$outboundSchema),
|
|
3952
|
-
z.lazy(() =>
|
|
3953
|
-
z.lazy(() =>
|
|
3932
|
+
z.lazy(() => Five$outboundSchema),
|
|
3933
|
+
z.lazy(() => Six$outboundSchema),
|
|
3954
3934
|
z.lazy(() => Seven$outboundSchema),
|
|
3955
3935
|
z.lazy(() => Eight$outboundSchema),
|
|
3956
3936
|
z.lazy(() => Nine$outboundSchema),
|
|
@@ -4000,8 +3980,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4000
3980
|
> = z.object({
|
|
4001
3981
|
_id: z.string(),
|
|
4002
3982
|
description: z.string(),
|
|
4003
|
-
created: z.string().default("2026-01-
|
|
4004
|
-
updated: z.string().default("2026-01-
|
|
3983
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
3984
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4005
3985
|
guardrail_config: z.union([
|
|
4006
3986
|
z.lazy(() =>
|
|
4007
3987
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4016,8 +3996,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4016
3996
|
z.lazy(() => CreateEvalFunctionParams2$inboundSchema),
|
|
4017
3997
|
z.lazy(() => CreateEvalFunctionParams3$inboundSchema),
|
|
4018
3998
|
z.lazy(() => CreateEvalFunctionParams4$inboundSchema),
|
|
4019
|
-
z.lazy(() =>
|
|
4020
|
-
z.lazy(() =>
|
|
3999
|
+
z.lazy(() => Five$inboundSchema),
|
|
4000
|
+
z.lazy(() => Six$inboundSchema),
|
|
4021
4001
|
z.lazy(() => Seven$inboundSchema),
|
|
4022
4002
|
z.lazy(() => Eight$inboundSchema),
|
|
4023
4003
|
z.lazy(() => Nine$inboundSchema),
|
|
@@ -4069,8 +4049,8 @@ export type CreateEvalResponseBodyFunction$Outbound = {
|
|
|
4069
4049
|
| CreateEvalFunctionParams2$Outbound
|
|
4070
4050
|
| CreateEvalFunctionParams3$Outbound
|
|
4071
4051
|
| CreateEvalFunctionParams4$Outbound
|
|
4072
|
-
|
|
|
4073
|
-
|
|
|
4052
|
+
| Five$Outbound
|
|
4053
|
+
| Six$Outbound
|
|
4074
4054
|
| Seven$Outbound
|
|
4075
4055
|
| Eight$Outbound
|
|
4076
4056
|
| Nine$Outbound
|
|
@@ -4108,8 +4088,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4108
4088
|
> = z.object({
|
|
4109
4089
|
id: z.string(),
|
|
4110
4090
|
description: z.string(),
|
|
4111
|
-
created: z.string().default("2026-01-
|
|
4112
|
-
updated: z.string().default("2026-01-
|
|
4091
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4092
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4113
4093
|
guardrailConfig: z.union([
|
|
4114
4094
|
z.lazy(() =>
|
|
4115
4095
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4124,8 +4104,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4124
4104
|
z.lazy(() => CreateEvalFunctionParams2$outboundSchema),
|
|
4125
4105
|
z.lazy(() => CreateEvalFunctionParams3$outboundSchema),
|
|
4126
4106
|
z.lazy(() => CreateEvalFunctionParams4$outboundSchema),
|
|
4127
|
-
z.lazy(() =>
|
|
4128
|
-
z.lazy(() =>
|
|
4107
|
+
z.lazy(() => Five$outboundSchema),
|
|
4108
|
+
z.lazy(() => Six$outboundSchema),
|
|
4129
4109
|
z.lazy(() => Seven$outboundSchema),
|
|
4130
4110
|
z.lazy(() => Eight$outboundSchema),
|
|
4131
4111
|
z.lazy(() => Nine$outboundSchema),
|
|
@@ -4404,8 +4384,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4404
4384
|
> = z.object({
|
|
4405
4385
|
_id: z.string(),
|
|
4406
4386
|
description: z.string(),
|
|
4407
|
-
created: z.string().default("2026-01-
|
|
4408
|
-
updated: z.string().default("2026-01-
|
|
4387
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4388
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4409
4389
|
guardrail_config: z.union([
|
|
4410
4390
|
z.lazy(() =>
|
|
4411
4391
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4446,8 +4426,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4446
4426
|
> = z.object({
|
|
4447
4427
|
id: z.string(),
|
|
4448
4428
|
description: z.string(),
|
|
4449
|
-
created: z.string().default("2026-01-
|
|
4450
|
-
updated: z.string().default("2026-01-
|
|
4429
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4430
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4451
4431
|
guardrailConfig: z.union([
|
|
4452
4432
|
z.lazy(() =>
|
|
4453
4433
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -4708,8 +4688,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4708
4688
|
> = z.object({
|
|
4709
4689
|
_id: z.string(),
|
|
4710
4690
|
description: z.string(),
|
|
4711
|
-
created: z.string().default("2026-01-
|
|
4712
|
-
updated: z.string().default("2026-01-
|
|
4691
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4692
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4713
4693
|
guardrail_config: z.union([
|
|
4714
4694
|
z.lazy(() =>
|
|
4715
4695
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -4756,8 +4736,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
4756
4736
|
> = z.object({
|
|
4757
4737
|
id: z.string(),
|
|
4758
4738
|
description: z.string(),
|
|
4759
|
-
created: z.string().default("2026-01-
|
|
4760
|
-
updated: z.string().default("2026-01-
|
|
4739
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4740
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4761
4741
|
guardrailConfig: z.union([
|
|
4762
4742
|
z.lazy(() =>
|
|
4763
4743
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -4994,8 +4974,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4994
4974
|
> = z.object({
|
|
4995
4975
|
_id: z.string(),
|
|
4996
4976
|
description: z.string(),
|
|
4997
|
-
created: z.string().default("2026-01-
|
|
4998
|
-
updated: z.string().default("2026-01-
|
|
4977
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4978
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
4999
4979
|
guardrail_config: z.union([
|
|
5000
4980
|
z.lazy(() =>
|
|
5001
4981
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5034,8 +5014,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5034
5014
|
> = z.object({
|
|
5035
5015
|
id: z.string(),
|
|
5036
5016
|
description: z.string(),
|
|
5037
|
-
created: z.string().default("2026-01-
|
|
5038
|
-
updated: z.string().default("2026-01-
|
|
5017
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
5018
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
5039
5019
|
guardrailConfig: z.union([
|
|
5040
5020
|
z.lazy(() =>
|
|
5041
5021
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5268,8 +5248,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5268
5248
|
> = z.object({
|
|
5269
5249
|
_id: z.string(),
|
|
5270
5250
|
description: z.string(),
|
|
5271
|
-
created: z.string().default("2026-01-
|
|
5272
|
-
updated: z.string().default("2026-01-
|
|
5251
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
5252
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
5273
5253
|
guardrail_config: z.union([
|
|
5274
5254
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5275
5255
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5308,8 +5288,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5308
5288
|
> = z.object({
|
|
5309
5289
|
id: z.string(),
|
|
5310
5290
|
description: z.string(),
|
|
5311
|
-
created: z.string().default("2026-01-
|
|
5312
|
-
updated: z.string().default("2026-01-
|
|
5291
|
+
created: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
5292
|
+
updated: z.string().default("2026-01-20T09:35:43.430Z"),
|
|
5313
5293
|
guardrailConfig: z.union([
|
|
5314
5294
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5315
5295
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -167,7 +167,7 @@ export const CreateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2026-01-
|
|
170
|
+
"2026-01-20T09:35:41.061Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateIdentityResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
210
|
+
updated: z.date().default(() => new Date("2026-01-20T09:35:41.061Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|