@orq-ai/node 4.1.11 → 4.1.14
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 +220 -220
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +2 -2
- 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/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.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.js +28 -28
- 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/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- 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/retrieveconversation.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/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/updatetool.js +14 -14
- package/package.json +2 -2
- package/packages/orq-rc/examples/feedbackCreate.example.ts +32 -0
- package/packages/orq-rc/examples/package-lock.json +2 -2
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +6 -6
- package/packages/orq-rc/package.json +2 -2
- package/packages/orq-rc/src/funcs/contactsCreate.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsDelete.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsList.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsRetrieve.ts +2 -0
- package/packages/orq-rc/src/funcs/contactsUpdate.ts +2 -0
- package/packages/orq-rc/src/funcs/identitiesCreate.ts +165 -0
- package/packages/orq-rc/src/funcs/identitiesDelete.ts +176 -0
- package/packages/orq-rc/src/funcs/identitiesList.ts +170 -0
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +175 -0
- package/packages/orq-rc/src/funcs/identitiesUpdate.ts +176 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +11 -1
- package/packages/orq-rc/src/mcp-server/tools/identitiesCreate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/identitiesUpdate.ts +37 -0
- package/packages/orq-rc/src/models/components/conversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/errors/deleteidentity.ts +78 -0
- package/packages/orq-rc/src/models/errors/index.ts +3 -0
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +78 -0
- package/packages/orq-rc/src/models/errors/updateidentity.ts +70 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +132 -15
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createidentity.ts +237 -0
- package/packages/orq-rc/src/models/operations/createtool.ts +33 -29
- package/packages/orq-rc/src/models/operations/deleteidentity.ts +54 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/generateconversationname.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +5 -0
- package/packages/orq-rc/src/models/operations/listcontacts.ts +24 -20
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listidentities.ts +432 -0
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +9 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +180 -0
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +280 -36
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +323 -46
- package/packages/orq-rc/src/models/operations/updateagent.ts +138 -15
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updateidentity.ts +281 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/contacts.ts +10 -0
- package/packages/orq-rc/src/sdk/identities.ts +99 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- 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/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.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 +28 -28
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- 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/retrieveconversation.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/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/updatetool.ts +14 -14
- package/packages/orq-rc/examples/contactsCreate.example.ts +0 -42
|
@@ -839,16 +839,16 @@ export type UpdateAgentToolApprovalRequired = ClosedEnum<
|
|
|
839
839
|
/**
|
|
840
840
|
* MCP tool type
|
|
841
841
|
*/
|
|
842
|
-
export const
|
|
842
|
+
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type =
|
|
843
843
|
{
|
|
844
844
|
Mcp: "mcp",
|
|
845
845
|
} as const;
|
|
846
846
|
/**
|
|
847
847
|
* MCP tool type
|
|
848
848
|
*/
|
|
849
|
-
export type
|
|
849
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type =
|
|
850
850
|
ClosedEnum<
|
|
851
|
-
typeof
|
|
851
|
+
typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type
|
|
852
852
|
>;
|
|
853
853
|
|
|
854
854
|
/**
|
|
@@ -859,7 +859,7 @@ export type AgentToolInputCRUDMCPTool = {
|
|
|
859
859
|
* MCP tool type
|
|
860
860
|
*/
|
|
861
861
|
type?:
|
|
862
|
-
|
|
|
862
|
+
| UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type
|
|
863
863
|
| undefined;
|
|
864
864
|
/**
|
|
865
865
|
* The key of the parent MCP tool
|
|
@@ -879,6 +879,45 @@ export type AgentToolInputCRUDMCPTool = {
|
|
|
879
879
|
requiresApproval?: boolean | undefined;
|
|
880
880
|
};
|
|
881
881
|
|
|
882
|
+
/**
|
|
883
|
+
* JSON Schema tool type
|
|
884
|
+
*/
|
|
885
|
+
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type =
|
|
886
|
+
{
|
|
887
|
+
JsonSchema: "json_schema",
|
|
888
|
+
} as const;
|
|
889
|
+
/**
|
|
890
|
+
* JSON Schema tool type
|
|
891
|
+
*/
|
|
892
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type =
|
|
893
|
+
ClosedEnum<
|
|
894
|
+
typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type
|
|
895
|
+
>;
|
|
896
|
+
|
|
897
|
+
/**
|
|
898
|
+
* Enforces structured output format using JSON Schema. Must reference a pre-created JSON Schema tool by key or id.
|
|
899
|
+
*/
|
|
900
|
+
export type AgentToolInputCRUDJSONSchemaTool = {
|
|
901
|
+
/**
|
|
902
|
+
* JSON Schema tool type
|
|
903
|
+
*/
|
|
904
|
+
type?:
|
|
905
|
+
| UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type
|
|
906
|
+
| undefined;
|
|
907
|
+
/**
|
|
908
|
+
* The key of the pre-created JSON Schema tool
|
|
909
|
+
*/
|
|
910
|
+
key?: string | undefined;
|
|
911
|
+
/**
|
|
912
|
+
* The ID of the pre-created JSON Schema tool
|
|
913
|
+
*/
|
|
914
|
+
id?: string | undefined;
|
|
915
|
+
/**
|
|
916
|
+
* Whether this tool requires approval before execution
|
|
917
|
+
*/
|
|
918
|
+
requiresApproval?: boolean | undefined;
|
|
919
|
+
};
|
|
920
|
+
|
|
882
921
|
/**
|
|
883
922
|
* Function tool type
|
|
884
923
|
*/
|
|
@@ -1210,7 +1249,7 @@ export type AgentToolInputCRUDGoogleSearchTool = {
|
|
|
1210
1249
|
};
|
|
1211
1250
|
|
|
1212
1251
|
/**
|
|
1213
|
-
* Tool configuration for agent create/update operations. Built-in tools only require a type, while custom tools (HTTP, Code, Function, MCP) must reference pre-created tools by key or id.
|
|
1252
|
+
* Tool configuration for agent create/update operations. Built-in tools only require a type, while custom tools (HTTP, Code, Function, JSON Schema, MCP) must reference pre-created tools by key or id.
|
|
1214
1253
|
*/
|
|
1215
1254
|
export type UpdateAgentAgentToolInputCRUD =
|
|
1216
1255
|
| AgentToolInputCRUDGoogleSearchTool
|
|
@@ -1227,7 +1266,8 @@ export type UpdateAgentAgentToolInputCRUD =
|
|
|
1227
1266
|
| AgentToolInputCRUDMCPTool
|
|
1228
1267
|
| AgentToolInputCRUDHTTPTool
|
|
1229
1268
|
| AgentToolInputCRUDCodeExecutionTool
|
|
1230
|
-
| AgentToolInputCRUDFunctionTool
|
|
1269
|
+
| AgentToolInputCRUDFunctionTool
|
|
1270
|
+
| AgentToolInputCRUDJSONSchemaTool;
|
|
1231
1271
|
|
|
1232
1272
|
/**
|
|
1233
1273
|
* Determines whether the evaluator runs on the agent input (user message) or output (agent response).
|
|
@@ -1318,6 +1358,7 @@ export type UpdateAgentSettings = {
|
|
|
1318
1358
|
| AgentToolInputCRUDHTTPTool
|
|
1319
1359
|
| AgentToolInputCRUDCodeExecutionTool
|
|
1320
1360
|
| AgentToolInputCRUDFunctionTool
|
|
1361
|
+
| AgentToolInputCRUDJSONSchemaTool
|
|
1321
1362
|
>
|
|
1322
1363
|
| undefined;
|
|
1323
1364
|
/**
|
|
@@ -4648,18 +4689,18 @@ export const UpdateAgentToolApprovalRequired$outboundSchema: z.ZodNativeEnum<
|
|
|
4648
4689
|
> = UpdateAgentToolApprovalRequired$inboundSchema;
|
|
4649
4690
|
|
|
4650
4691
|
/** @internal */
|
|
4651
|
-
export const
|
|
4692
|
+
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema:
|
|
4652
4693
|
z.ZodNativeEnum<
|
|
4653
|
-
typeof
|
|
4694
|
+
typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type
|
|
4654
4695
|
> = z.nativeEnum(
|
|
4655
|
-
|
|
4696
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type,
|
|
4656
4697
|
);
|
|
4657
4698
|
/** @internal */
|
|
4658
|
-
export const
|
|
4699
|
+
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema:
|
|
4659
4700
|
z.ZodNativeEnum<
|
|
4660
|
-
typeof
|
|
4701
|
+
typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type
|
|
4661
4702
|
> =
|
|
4662
|
-
|
|
4703
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema;
|
|
4663
4704
|
|
|
4664
4705
|
/** @internal */
|
|
4665
4706
|
export const AgentToolInputCRUDMCPTool$inboundSchema: z.ZodType<
|
|
@@ -4668,7 +4709,7 @@ export const AgentToolInputCRUDMCPTool$inboundSchema: z.ZodType<
|
|
|
4668
4709
|
unknown
|
|
4669
4710
|
> = z.object({
|
|
4670
4711
|
type:
|
|
4671
|
-
|
|
4712
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema
|
|
4672
4713
|
.default("mcp"),
|
|
4673
4714
|
key: z.string().optional(),
|
|
4674
4715
|
id: z.string().optional(),
|
|
@@ -4696,7 +4737,7 @@ export const AgentToolInputCRUDMCPTool$outboundSchema: z.ZodType<
|
|
|
4696
4737
|
AgentToolInputCRUDMCPTool
|
|
4697
4738
|
> = z.object({
|
|
4698
4739
|
type:
|
|
4699
|
-
|
|
4740
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema
|
|
4700
4741
|
.default("mcp"),
|
|
4701
4742
|
key: z.string().optional(),
|
|
4702
4743
|
id: z.string().optional(),
|
|
@@ -4726,6 +4767,82 @@ export function agentToolInputCRUDMCPToolFromJSON(
|
|
|
4726
4767
|
);
|
|
4727
4768
|
}
|
|
4728
4769
|
|
|
4770
|
+
/** @internal */
|
|
4771
|
+
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema:
|
|
4772
|
+
z.ZodNativeEnum<
|
|
4773
|
+
typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type
|
|
4774
|
+
> = z.nativeEnum(
|
|
4775
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type,
|
|
4776
|
+
);
|
|
4777
|
+
/** @internal */
|
|
4778
|
+
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema:
|
|
4779
|
+
z.ZodNativeEnum<
|
|
4780
|
+
typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type
|
|
4781
|
+
> =
|
|
4782
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema;
|
|
4783
|
+
|
|
4784
|
+
/** @internal */
|
|
4785
|
+
export const AgentToolInputCRUDJSONSchemaTool$inboundSchema: z.ZodType<
|
|
4786
|
+
AgentToolInputCRUDJSONSchemaTool,
|
|
4787
|
+
z.ZodTypeDef,
|
|
4788
|
+
unknown
|
|
4789
|
+
> = z.object({
|
|
4790
|
+
type:
|
|
4791
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema
|
|
4792
|
+
.default("json_schema"),
|
|
4793
|
+
key: z.string().optional(),
|
|
4794
|
+
id: z.string().optional(),
|
|
4795
|
+
requires_approval: z.boolean().default(false),
|
|
4796
|
+
}).transform((v) => {
|
|
4797
|
+
return remap$(v, {
|
|
4798
|
+
"requires_approval": "requiresApproval",
|
|
4799
|
+
});
|
|
4800
|
+
});
|
|
4801
|
+
/** @internal */
|
|
4802
|
+
export type AgentToolInputCRUDJSONSchemaTool$Outbound = {
|
|
4803
|
+
type: string;
|
|
4804
|
+
key?: string | undefined;
|
|
4805
|
+
id?: string | undefined;
|
|
4806
|
+
requires_approval: boolean;
|
|
4807
|
+
};
|
|
4808
|
+
|
|
4809
|
+
/** @internal */
|
|
4810
|
+
export const AgentToolInputCRUDJSONSchemaTool$outboundSchema: z.ZodType<
|
|
4811
|
+
AgentToolInputCRUDJSONSchemaTool$Outbound,
|
|
4812
|
+
z.ZodTypeDef,
|
|
4813
|
+
AgentToolInputCRUDJSONSchemaTool
|
|
4814
|
+
> = z.object({
|
|
4815
|
+
type:
|
|
4816
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema
|
|
4817
|
+
.default("json_schema"),
|
|
4818
|
+
key: z.string().optional(),
|
|
4819
|
+
id: z.string().optional(),
|
|
4820
|
+
requiresApproval: z.boolean().default(false),
|
|
4821
|
+
}).transform((v) => {
|
|
4822
|
+
return remap$(v, {
|
|
4823
|
+
requiresApproval: "requires_approval",
|
|
4824
|
+
});
|
|
4825
|
+
});
|
|
4826
|
+
|
|
4827
|
+
export function agentToolInputCRUDJSONSchemaToolToJSON(
|
|
4828
|
+
agentToolInputCRUDJSONSchemaTool: AgentToolInputCRUDJSONSchemaTool,
|
|
4829
|
+
): string {
|
|
4830
|
+
return JSON.stringify(
|
|
4831
|
+
AgentToolInputCRUDJSONSchemaTool$outboundSchema.parse(
|
|
4832
|
+
agentToolInputCRUDJSONSchemaTool,
|
|
4833
|
+
),
|
|
4834
|
+
);
|
|
4835
|
+
}
|
|
4836
|
+
export function agentToolInputCRUDJSONSchemaToolFromJSON(
|
|
4837
|
+
jsonString: string,
|
|
4838
|
+
): SafeParseResult<AgentToolInputCRUDJSONSchemaTool, SDKValidationError> {
|
|
4839
|
+
return safeParse(
|
|
4840
|
+
jsonString,
|
|
4841
|
+
(x) => AgentToolInputCRUDJSONSchemaTool$inboundSchema.parse(JSON.parse(x)),
|
|
4842
|
+
`Failed to parse 'AgentToolInputCRUDJSONSchemaTool' from JSON`,
|
|
4843
|
+
);
|
|
4844
|
+
}
|
|
4845
|
+
|
|
4729
4846
|
/** @internal */
|
|
4730
4847
|
export const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema:
|
|
4731
4848
|
z.ZodNativeEnum<
|
|
@@ -5732,6 +5849,7 @@ export const UpdateAgentAgentToolInputCRUD$inboundSchema: z.ZodType<
|
|
|
5732
5849
|
z.lazy(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
5733
5850
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
5734
5851
|
z.lazy(() => AgentToolInputCRUDFunctionTool$inboundSchema),
|
|
5852
|
+
z.lazy(() => AgentToolInputCRUDJSONSchemaTool$inboundSchema),
|
|
5735
5853
|
]);
|
|
5736
5854
|
/** @internal */
|
|
5737
5855
|
export type UpdateAgentAgentToolInputCRUD$Outbound =
|
|
@@ -5749,7 +5867,8 @@ export type UpdateAgentAgentToolInputCRUD$Outbound =
|
|
|
5749
5867
|
| AgentToolInputCRUDMCPTool$Outbound
|
|
5750
5868
|
| AgentToolInputCRUDHTTPTool$Outbound
|
|
5751
5869
|
| AgentToolInputCRUDCodeExecutionTool$Outbound
|
|
5752
|
-
| AgentToolInputCRUDFunctionTool$Outbound
|
|
5870
|
+
| AgentToolInputCRUDFunctionTool$Outbound
|
|
5871
|
+
| AgentToolInputCRUDJSONSchemaTool$Outbound;
|
|
5753
5872
|
|
|
5754
5873
|
/** @internal */
|
|
5755
5874
|
export const UpdateAgentAgentToolInputCRUD$outboundSchema: z.ZodType<
|
|
@@ -5772,6 +5891,7 @@ export const UpdateAgentAgentToolInputCRUD$outboundSchema: z.ZodType<
|
|
|
5772
5891
|
z.lazy(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
5773
5892
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
5774
5893
|
z.lazy(() => AgentToolInputCRUDFunctionTool$outboundSchema),
|
|
5894
|
+
z.lazy(() => AgentToolInputCRUDJSONSchemaTool$outboundSchema),
|
|
5775
5895
|
]);
|
|
5776
5896
|
|
|
5777
5897
|
export function updateAgentAgentToolInputCRUDToJSON(
|
|
@@ -5949,6 +6069,7 @@ export const UpdateAgentSettings$inboundSchema: z.ZodType<
|
|
|
5949
6069
|
z.lazy(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
5950
6070
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
5951
6071
|
z.lazy(() => AgentToolInputCRUDFunctionTool$inboundSchema),
|
|
6072
|
+
z.lazy(() => AgentToolInputCRUDJSONSchemaTool$inboundSchema),
|
|
5952
6073
|
]),
|
|
5953
6074
|
).optional(),
|
|
5954
6075
|
evaluators: z.array(z.lazy(() => UpdateAgentEvaluators$inboundSchema))
|
|
@@ -5984,6 +6105,7 @@ export type UpdateAgentSettings$Outbound = {
|
|
|
5984
6105
|
| AgentToolInputCRUDHTTPTool$Outbound
|
|
5985
6106
|
| AgentToolInputCRUDCodeExecutionTool$Outbound
|
|
5986
6107
|
| AgentToolInputCRUDFunctionTool$Outbound
|
|
6108
|
+
| AgentToolInputCRUDJSONSchemaTool$Outbound
|
|
5987
6109
|
>
|
|
5988
6110
|
| undefined;
|
|
5989
6111
|
evaluators?: Array<UpdateAgentEvaluators$Outbound> | undefined;
|
|
@@ -6018,6 +6140,7 @@ export const UpdateAgentSettings$outboundSchema: z.ZodType<
|
|
|
6018
6140
|
z.lazy(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
6019
6141
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
6020
6142
|
z.lazy(() => AgentToolInputCRUDFunctionTool$outboundSchema),
|
|
6143
|
+
z.lazy(() => AgentToolInputCRUDJSONSchemaTool$outboundSchema),
|
|
6021
6144
|
]),
|
|
6022
6145
|
).optional(),
|
|
6023
6146
|
evaluators: z.array(z.lazy(() => UpdateAgentEvaluators$outboundSchema))
|
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2026-01-
|
|
217
|
+
"2026-01-19T13:14:11.941Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
254
|
+
updated: z.date().default(() => new Date("2026-01-19T13:14:11.941Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -316,7 +316,7 @@ export const UpdateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
316
316
|
z.ZodTypeDef,
|
|
317
317
|
unknown
|
|
318
318
|
> = z.object({
|
|
319
|
-
_id: z.string().default("
|
|
319
|
+
_id: z.string().default("conv_01kfb68tcbpv2tew7tspv2tave"),
|
|
320
320
|
kind: UpdateConversationKind$inboundSchema,
|
|
321
321
|
displayName: z.string(),
|
|
322
322
|
createdAt: z.number(),
|
|
@@ -348,7 +348,7 @@ export const UpdateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
348
348
|
z.ZodTypeDef,
|
|
349
349
|
UpdateConversationResponseBody
|
|
350
350
|
> = z.object({
|
|
351
|
-
id: z.string().default("
|
|
351
|
+
id: z.string().default("conv_01kfb68tcbpv2tew7tspv2tave"),
|
|
352
352
|
kind: UpdateConversationKind$outboundSchema,
|
|
353
353
|
displayName: z.string(),
|
|
354
354
|
createdAt: z.number(),
|
|
@@ -3598,7 +3598,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3598
3598
|
.default("orq"),
|
|
3599
3599
|
reviewed_by_id: z.string(),
|
|
3600
3600
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3601
|
-
"2026-01-
|
|
3601
|
+
"2026-01-19T13:14:24.372Z",
|
|
3602
3602
|
).transform(v => new Date(v)),
|
|
3603
3603
|
type: z.literal("string_array"),
|
|
3604
3604
|
values: z.array(z.string()),
|
|
@@ -3635,7 +3635,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3635
3635
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3636
3636
|
.default("orq"),
|
|
3637
3637
|
reviewedById: z.string(),
|
|
3638
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3638
|
+
reviewedAt: z.date().default(() => new Date("2026-01-19T13:14:24.372Z"))
|
|
3639
3639
|
.transform(v => v.toISOString()),
|
|
3640
3640
|
type: z.literal("string_array"),
|
|
3641
3641
|
values: z.array(z.string()),
|
|
@@ -3698,7 +3698,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3698
3698
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
3699
3699
|
reviewed_by_id: z.string(),
|
|
3700
3700
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3701
|
-
"2026-01-
|
|
3701
|
+
"2026-01-19T13:14:24.371Z",
|
|
3702
3702
|
).transform(v => new Date(v)),
|
|
3703
3703
|
type: z.literal("number"),
|
|
3704
3704
|
value: z.number(),
|
|
@@ -3736,7 +3736,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3736
3736
|
"orq",
|
|
3737
3737
|
),
|
|
3738
3738
|
reviewedById: z.string(),
|
|
3739
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3739
|
+
reviewedAt: z.date().default(() => new Date("2026-01-19T13:14:24.371Z"))
|
|
3740
3740
|
.transform(v => v.toISOString()),
|
|
3741
3741
|
type: z.literal("number"),
|
|
3742
3742
|
value: z.number(),
|
|
@@ -3798,7 +3798,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3798
3798
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3799
3799
|
reviewed_by_id: z.string(),
|
|
3800
3800
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3801
|
-
"2026-01-
|
|
3801
|
+
"2026-01-19T13:14:24.370Z",
|
|
3802
3802
|
).transform(v => new Date(v)),
|
|
3803
3803
|
type: z.literal("string"),
|
|
3804
3804
|
value: z.string(),
|
|
@@ -3833,7 +3833,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3833
3833
|
humanReviewId: z.string(),
|
|
3834
3834
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3835
3835
|
reviewedById: z.string(),
|
|
3836
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3836
|
+
reviewedAt: z.date().default(() => new Date("2026-01-19T13:14:24.370Z"))
|
|
3837
3837
|
.transform(v => v.toISOString()),
|
|
3838
3838
|
type: z.literal("string"),
|
|
3839
3839
|
value: z.string(),
|
|
@@ -3946,7 +3946,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3946
3946
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3947
3947
|
.optional(),
|
|
3948
3948
|
updated: z.string().datetime({ offset: true }).default(
|
|
3949
|
-
"2026-01-
|
|
3949
|
+
"2026-01-19T13:14:11.941Z",
|
|
3950
3950
|
).transform(v => new Date(v)),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
return remap$(v, {
|
|
@@ -4024,7 +4024,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
4024
4024
|
createdById: z.string().optional(),
|
|
4025
4025
|
updatedById: z.string().optional(),
|
|
4026
4026
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4027
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4027
|
+
updated: z.date().default(() => new Date("2026-01-19T13:14:11.941Z"))
|
|
4028
4028
|
.transform(v => v.toISOString()),
|
|
4029
4029
|
}).transform((v) => {
|
|
4030
4030
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2026-01-
|
|
259
|
+
"2026-01-19T13:14:11.941Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
298
|
+
updated: z.date().default(() => new Date("2026-01-19T13:14:11.941Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01KFB68V48TJTT2BVYH1K282FB"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01KFB68V48TJTT2BVYH1K282FB"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2345,8 +2345,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2345
2345
|
> = z.object({
|
|
2346
2346
|
_id: z.string(),
|
|
2347
2347
|
description: z.string(),
|
|
2348
|
-
created: z.string().default("2026-01-
|
|
2349
|
-
updated: z.string().default("2026-01-
|
|
2348
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2349
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2350
2350
|
guardrail_config: z.union([
|
|
2351
2351
|
z.lazy(() =>
|
|
2352
2352
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2387,8 +2387,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
2387
2387
|
> = z.object({
|
|
2388
2388
|
id: z.string(),
|
|
2389
2389
|
description: z.string(),
|
|
2390
|
-
created: z.string().default("2026-01-
|
|
2391
|
-
updated: z.string().default("2026-01-
|
|
2390
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2391
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2392
2392
|
guardrailConfig: z.union([
|
|
2393
2393
|
z.lazy(() =>
|
|
2394
2394
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2656,8 +2656,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
2656
2656
|
> = z.object({
|
|
2657
2657
|
_id: z.string(),
|
|
2658
2658
|
description: z.string(),
|
|
2659
|
-
created: z.string().default("2026-01-
|
|
2660
|
-
updated: z.string().default("2026-01-
|
|
2659
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2660
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2661
2661
|
guardrail_config: z.union([
|
|
2662
2662
|
z.lazy(() =>
|
|
2663
2663
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2701,8 +2701,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
2701
2701
|
> = z.object({
|
|
2702
2702
|
id: z.string(),
|
|
2703
2703
|
description: z.string(),
|
|
2704
|
-
created: z.string().default("2026-01-
|
|
2705
|
-
updated: z.string().default("2026-01-
|
|
2704
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2705
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
2706
2706
|
guardrailConfig: z.union([
|
|
2707
2707
|
z.lazy(() =>
|
|
2708
2708
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4360,8 +4360,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4360
4360
|
> = z.object({
|
|
4361
4361
|
_id: z.string(),
|
|
4362
4362
|
description: z.string(),
|
|
4363
|
-
created: z.string().default("2026-01-
|
|
4364
|
-
updated: z.string().default("2026-01-
|
|
4363
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4364
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4365
4365
|
guardrail_config: z.union([
|
|
4366
4366
|
z.lazy(() =>
|
|
4367
4367
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4468,8 +4468,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4468
4468
|
> = z.object({
|
|
4469
4469
|
id: z.string(),
|
|
4470
4470
|
description: z.string(),
|
|
4471
|
-
created: z.string().default("2026-01-
|
|
4472
|
-
updated: z.string().default("2026-01-
|
|
4471
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4472
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4473
4473
|
guardrailConfig: z.union([
|
|
4474
4474
|
z.lazy(() =>
|
|
4475
4475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4762,8 +4762,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4762
4762
|
> = z.object({
|
|
4763
4763
|
_id: z.string(),
|
|
4764
4764
|
description: z.string(),
|
|
4765
|
-
created: z.string().default("2026-01-
|
|
4766
|
-
updated: z.string().default("2026-01-
|
|
4765
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4766
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4767
4767
|
guardrail_config: z.union([
|
|
4768
4768
|
z.lazy(() =>
|
|
4769
4769
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4804,8 +4804,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4804
4804
|
> = z.object({
|
|
4805
4805
|
id: z.string(),
|
|
4806
4806
|
description: z.string(),
|
|
4807
|
-
created: z.string().default("2026-01-
|
|
4808
|
-
updated: z.string().default("2026-01-
|
|
4807
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4808
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
4809
4809
|
guardrailConfig: z.union([
|
|
4810
4810
|
z.lazy(() =>
|
|
4811
4811
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -5071,8 +5071,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
5071
5071
|
> = z.object({
|
|
5072
5072
|
_id: z.string(),
|
|
5073
5073
|
description: z.string(),
|
|
5074
|
-
created: z.string().default("2026-01-
|
|
5075
|
-
updated: z.string().default("2026-01-
|
|
5074
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5075
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5076
5076
|
guardrail_config: z.union([
|
|
5077
5077
|
z.lazy(() =>
|
|
5078
5078
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -5119,8 +5119,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
5119
5119
|
> = z.object({
|
|
5120
5120
|
id: z.string(),
|
|
5121
5121
|
description: z.string(),
|
|
5122
|
-
created: z.string().default("2026-01-
|
|
5123
|
-
updated: z.string().default("2026-01-
|
|
5122
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5123
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5124
5124
|
guardrailConfig: z.union([
|
|
5125
5125
|
z.lazy(() =>
|
|
5126
5126
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -5370,8 +5370,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
5370
5370
|
> = z.object({
|
|
5371
5371
|
_id: z.string(),
|
|
5372
5372
|
description: z.string(),
|
|
5373
|
-
created: z.string().default("2026-01-
|
|
5374
|
-
updated: z.string().default("2026-01-
|
|
5373
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5374
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5375
5375
|
guardrail_config: z.union([
|
|
5376
5376
|
z.lazy(() =>
|
|
5377
5377
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5410,8 +5410,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5410
5410
|
> = z.object({
|
|
5411
5411
|
id: z.string(),
|
|
5412
5412
|
description: z.string(),
|
|
5413
|
-
created: z.string().default("2026-01-
|
|
5414
|
-
updated: z.string().default("2026-01-
|
|
5413
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5414
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5415
5415
|
guardrailConfig: z.union([
|
|
5416
5416
|
z.lazy(() =>
|
|
5417
5417
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5645,8 +5645,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5645
5645
|
> = z.object({
|
|
5646
5646
|
_id: z.string(),
|
|
5647
5647
|
description: z.string(),
|
|
5648
|
-
created: z.string().default("2026-01-
|
|
5649
|
-
updated: z.string().default("2026-01-
|
|
5648
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5649
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5650
5650
|
guardrail_config: z.union([
|
|
5651
5651
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5652
5652
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5685,8 +5685,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5685
5685
|
> = z.object({
|
|
5686
5686
|
id: z.string(),
|
|
5687
5687
|
description: z.string(),
|
|
5688
|
-
created: z.string().default("2026-01-
|
|
5689
|
-
updated: z.string().default("2026-01-
|
|
5688
|
+
created: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5689
|
+
updated: z.string().default("2026-01-19T13:14:14.192Z"),
|
|
5690
5690
|
guardrailConfig: z.union([
|
|
5691
5691
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5692
5692
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|