@orq-ai/node 3.14.25 → 3.14.28
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 +302 -300
- package/bin/mcp-server.js.map +41 -41
- package/examples/package-lock.json +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/operations/createagent.d.ts +11 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +22 -22
- 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.js +28 -28
- package/models/operations/createtool.js +10 -10
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagenttasks.d.ts +6 -0
- package/models/operations/listagenttasks.d.ts.map +1 -1
- package/models/operations/listagenttasks.js +2 -0
- package/models/operations/listagenttasks.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 +10 -10
- package/models/operations/runagent.d.ts +11 -11
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +22 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +11 -11
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +22 -22
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +11 -11
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +22 -22
- 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 +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- 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 +1 -1
- package/packages/orq-rc/src/models/operations/createagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- 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/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- 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/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +4 -0
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- 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/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/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updateagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.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/updatetool.ts +10 -10
- 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/operations/createagent.ts +33 -33
- 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 +28 -28
- package/src/models/operations/createtool.ts +10 -10
- package/src/models/operations/duplicatetool.ts +10 -10
- 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/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagenttasks.ts +4 -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 +10 -10
- package/src/models/operations/runagent.ts +33 -33
- package/src/models/operations/streamrunagent.ts +33 -33
- package/src/models/operations/updateagent.ts +33 -33
- 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 +10 -10
|
@@ -4057,7 +4057,7 @@ export const AgentToolInputCRUDCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4057
4057
|
> = z.object({
|
|
4058
4058
|
type:
|
|
4059
4059
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
4060
|
-
requires_approval: z.boolean().
|
|
4060
|
+
requires_approval: z.boolean().optional(),
|
|
4061
4061
|
}).transform((v) => {
|
|
4062
4062
|
return remap$(v, {
|
|
4063
4063
|
"requires_approval": "requiresApproval",
|
|
@@ -4066,7 +4066,7 @@ export const AgentToolInputCRUDCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4066
4066
|
/** @internal */
|
|
4067
4067
|
export type AgentToolInputCRUDCurrentDateTool$Outbound = {
|
|
4068
4068
|
type: string;
|
|
4069
|
-
requires_approval
|
|
4069
|
+
requires_approval?: boolean | undefined;
|
|
4070
4070
|
};
|
|
4071
4071
|
|
|
4072
4072
|
/** @internal */
|
|
@@ -4077,7 +4077,7 @@ export const AgentToolInputCRUDCurrentDateTool$outboundSchema: z.ZodType<
|
|
|
4077
4077
|
> = z.object({
|
|
4078
4078
|
type:
|
|
4079
4079
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4080
|
-
requiresApproval: z.boolean().
|
|
4080
|
+
requiresApproval: z.boolean().optional(),
|
|
4081
4081
|
}).transform((v) => {
|
|
4082
4082
|
return remap$(v, {
|
|
4083
4083
|
requiresApproval: "requires_approval",
|
|
@@ -4125,7 +4125,7 @@ export const AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4125
4125
|
> = z.object({
|
|
4126
4126
|
type:
|
|
4127
4127
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
4128
|
-
requires_approval: z.boolean().
|
|
4128
|
+
requires_approval: z.boolean().optional(),
|
|
4129
4129
|
}).transform((v) => {
|
|
4130
4130
|
return remap$(v, {
|
|
4131
4131
|
"requires_approval": "requiresApproval",
|
|
@@ -4134,7 +4134,7 @@ export const AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4134
4134
|
/** @internal */
|
|
4135
4135
|
export type AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound = {
|
|
4136
4136
|
type: string;
|
|
4137
|
-
requires_approval
|
|
4137
|
+
requires_approval?: boolean | undefined;
|
|
4138
4138
|
};
|
|
4139
4139
|
|
|
4140
4140
|
/** @internal */
|
|
@@ -4145,7 +4145,7 @@ export const AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema: z.ZodType<
|
|
|
4145
4145
|
> = z.object({
|
|
4146
4146
|
type:
|
|
4147
4147
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4148
|
-
requiresApproval: z.boolean().
|
|
4148
|
+
requiresApproval: z.boolean().optional(),
|
|
4149
4149
|
}).transform((v) => {
|
|
4150
4150
|
return remap$(v, {
|
|
4151
4151
|
requiresApproval: "requires_approval",
|
|
@@ -4201,7 +4201,7 @@ export const AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4201
4201
|
> = z.object({
|
|
4202
4202
|
type:
|
|
4203
4203
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
4204
|
-
requires_approval: z.boolean().
|
|
4204
|
+
requires_approval: z.boolean().optional(),
|
|
4205
4205
|
}).transform((v) => {
|
|
4206
4206
|
return remap$(v, {
|
|
4207
4207
|
"requires_approval": "requiresApproval",
|
|
@@ -4210,7 +4210,7 @@ export const AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4210
4210
|
/** @internal */
|
|
4211
4211
|
export type AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound = {
|
|
4212
4212
|
type: string;
|
|
4213
|
-
requires_approval
|
|
4213
|
+
requires_approval?: boolean | undefined;
|
|
4214
4214
|
};
|
|
4215
4215
|
|
|
4216
4216
|
/** @internal */
|
|
@@ -4222,7 +4222,7 @@ export const AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema:
|
|
|
4222
4222
|
> = z.object({
|
|
4223
4223
|
type:
|
|
4224
4224
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
4225
|
-
requiresApproval: z.boolean().
|
|
4225
|
+
requiresApproval: z.boolean().optional(),
|
|
4226
4226
|
}).transform((v) => {
|
|
4227
4227
|
return remap$(v, {
|
|
4228
4228
|
requiresApproval: "requires_approval",
|
|
@@ -4275,7 +4275,7 @@ export const AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema:
|
|
|
4275
4275
|
z.object({
|
|
4276
4276
|
type:
|
|
4277
4277
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
4278
|
-
requires_approval: z.boolean().
|
|
4278
|
+
requires_approval: z.boolean().optional(),
|
|
4279
4279
|
}).transform((v) => {
|
|
4280
4280
|
return remap$(v, {
|
|
4281
4281
|
"requires_approval": "requiresApproval",
|
|
@@ -4284,7 +4284,7 @@ export const AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema:
|
|
|
4284
4284
|
/** @internal */
|
|
4285
4285
|
export type AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound = {
|
|
4286
4286
|
type: string;
|
|
4287
|
-
requires_approval
|
|
4287
|
+
requires_approval?: boolean | undefined;
|
|
4288
4288
|
};
|
|
4289
4289
|
|
|
4290
4290
|
/** @internal */
|
|
@@ -4296,7 +4296,7 @@ export const AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema:
|
|
|
4296
4296
|
> = z.object({
|
|
4297
4297
|
type:
|
|
4298
4298
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
4299
|
-
requiresApproval: z.boolean().
|
|
4299
|
+
requiresApproval: z.boolean().optional(),
|
|
4300
4300
|
}).transform((v) => {
|
|
4301
4301
|
return remap$(v, {
|
|
4302
4302
|
requiresApproval: "requires_approval",
|
|
@@ -4349,7 +4349,7 @@ export const AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema:
|
|
|
4349
4349
|
z.object({
|
|
4350
4350
|
type:
|
|
4351
4351
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
4352
|
-
requires_approval: z.boolean().
|
|
4352
|
+
requires_approval: z.boolean().optional(),
|
|
4353
4353
|
}).transform((v) => {
|
|
4354
4354
|
return remap$(v, {
|
|
4355
4355
|
"requires_approval": "requiresApproval",
|
|
@@ -4358,7 +4358,7 @@ export const AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema:
|
|
|
4358
4358
|
/** @internal */
|
|
4359
4359
|
export type AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound = {
|
|
4360
4360
|
type: string;
|
|
4361
|
-
requires_approval
|
|
4361
|
+
requires_approval?: boolean | undefined;
|
|
4362
4362
|
};
|
|
4363
4363
|
|
|
4364
4364
|
/** @internal */
|
|
@@ -4370,7 +4370,7 @@ export const AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema:
|
|
|
4370
4370
|
> = z.object({
|
|
4371
4371
|
type:
|
|
4372
4372
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
4373
|
-
requiresApproval: z.boolean().
|
|
4373
|
+
requiresApproval: z.boolean().optional(),
|
|
4374
4374
|
}).transform((v) => {
|
|
4375
4375
|
return remap$(v, {
|
|
4376
4376
|
requiresApproval: "requires_approval",
|
|
@@ -4425,7 +4425,7 @@ export const AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4425
4425
|
> = z.object({
|
|
4426
4426
|
type:
|
|
4427
4427
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
4428
|
-
requires_approval: z.boolean().
|
|
4428
|
+
requires_approval: z.boolean().optional(),
|
|
4429
4429
|
}).transform((v) => {
|
|
4430
4430
|
return remap$(v, {
|
|
4431
4431
|
"requires_approval": "requiresApproval",
|
|
@@ -4434,7 +4434,7 @@ export const AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4434
4434
|
/** @internal */
|
|
4435
4435
|
export type AgentToolInputCRUDWriteMemoryStoreTool$Outbound = {
|
|
4436
4436
|
type: string;
|
|
4437
|
-
requires_approval
|
|
4437
|
+
requires_approval?: boolean | undefined;
|
|
4438
4438
|
};
|
|
4439
4439
|
|
|
4440
4440
|
/** @internal */
|
|
@@ -4445,7 +4445,7 @@ export const AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
4445
4445
|
> = z.object({
|
|
4446
4446
|
type:
|
|
4447
4447
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
4448
|
-
requiresApproval: z.boolean().
|
|
4448
|
+
requiresApproval: z.boolean().optional(),
|
|
4449
4449
|
}).transform((v) => {
|
|
4450
4450
|
return remap$(v, {
|
|
4451
4451
|
requiresApproval: "requires_approval",
|
|
@@ -4495,7 +4495,7 @@ export const AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4495
4495
|
> = z.object({
|
|
4496
4496
|
type:
|
|
4497
4497
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
4498
|
-
requires_approval: z.boolean().
|
|
4498
|
+
requires_approval: z.boolean().optional(),
|
|
4499
4499
|
}).transform((v) => {
|
|
4500
4500
|
return remap$(v, {
|
|
4501
4501
|
"requires_approval": "requiresApproval",
|
|
@@ -4504,7 +4504,7 @@ export const AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
4504
4504
|
/** @internal */
|
|
4505
4505
|
export type AgentToolInputCRUDQueryMemoryStoreTool$Outbound = {
|
|
4506
4506
|
type: string;
|
|
4507
|
-
requires_approval
|
|
4507
|
+
requires_approval?: boolean | undefined;
|
|
4508
4508
|
};
|
|
4509
4509
|
|
|
4510
4510
|
/** @internal */
|
|
@@ -4515,7 +4515,7 @@ export const AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
4515
4515
|
> = z.object({
|
|
4516
4516
|
type:
|
|
4517
4517
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
4518
|
-
requiresApproval: z.boolean().
|
|
4518
|
+
requiresApproval: z.boolean().optional(),
|
|
4519
4519
|
}).transform((v) => {
|
|
4520
4520
|
return remap$(v, {
|
|
4521
4521
|
requiresApproval: "requires_approval",
|
|
@@ -4561,7 +4561,7 @@ export const AgentToolInputCRUDRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
4561
4561
|
unknown
|
|
4562
4562
|
> = z.object({
|
|
4563
4563
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
|
|
4564
|
-
requires_approval: z.boolean().
|
|
4564
|
+
requires_approval: z.boolean().optional(),
|
|
4565
4565
|
}).transform((v) => {
|
|
4566
4566
|
return remap$(v, {
|
|
4567
4567
|
"requires_approval": "requiresApproval",
|
|
@@ -4570,7 +4570,7 @@ export const AgentToolInputCRUDRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
4570
4570
|
/** @internal */
|
|
4571
4571
|
export type AgentToolInputCRUDRetrieveAgentsTool$Outbound = {
|
|
4572
4572
|
type: string;
|
|
4573
|
-
requires_approval
|
|
4573
|
+
requires_approval?: boolean | undefined;
|
|
4574
4574
|
};
|
|
4575
4575
|
|
|
4576
4576
|
/** @internal */
|
|
@@ -4581,7 +4581,7 @@ export const AgentToolInputCRUDRetrieveAgentsTool$outboundSchema: z.ZodType<
|
|
|
4581
4581
|
> = z.object({
|
|
4582
4582
|
type:
|
|
4583
4583
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
4584
|
-
requiresApproval: z.boolean().
|
|
4584
|
+
requiresApproval: z.boolean().optional(),
|
|
4585
4585
|
}).transform((v) => {
|
|
4586
4586
|
return remap$(v, {
|
|
4587
4587
|
requiresApproval: "requires_approval",
|
|
@@ -4624,7 +4624,7 @@ export const AgentToolInputCRUDCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
4624
4624
|
unknown
|
|
4625
4625
|
> = z.object({
|
|
4626
4626
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
|
|
4627
|
-
requires_approval: z.boolean().
|
|
4627
|
+
requires_approval: z.boolean().optional(),
|
|
4628
4628
|
}).transform((v) => {
|
|
4629
4629
|
return remap$(v, {
|
|
4630
4630
|
"requires_approval": "requiresApproval",
|
|
@@ -4633,7 +4633,7 @@ export const AgentToolInputCRUDCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
4633
4633
|
/** @internal */
|
|
4634
4634
|
export type AgentToolInputCRUDCallSubAgentTool$Outbound = {
|
|
4635
4635
|
type: string;
|
|
4636
|
-
requires_approval
|
|
4636
|
+
requires_approval?: boolean | undefined;
|
|
4637
4637
|
};
|
|
4638
4638
|
|
|
4639
4639
|
/** @internal */
|
|
@@ -4643,7 +4643,7 @@ export const AgentToolInputCRUDCallSubAgentTool$outboundSchema: z.ZodType<
|
|
|
4643
4643
|
AgentToolInputCRUDCallSubAgentTool
|
|
4644
4644
|
> = z.object({
|
|
4645
4645
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
4646
|
-
requiresApproval: z.boolean().
|
|
4646
|
+
requiresApproval: z.boolean().optional(),
|
|
4647
4647
|
}).transform((v) => {
|
|
4648
4648
|
return remap$(v, {
|
|
4649
4649
|
requiresApproval: "requires_approval",
|
|
@@ -4686,7 +4686,7 @@ export const AgentToolInputCRUDWebScraperTool$inboundSchema: z.ZodType<
|
|
|
4686
4686
|
unknown
|
|
4687
4687
|
> = z.object({
|
|
4688
4688
|
type: UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema,
|
|
4689
|
-
requires_approval: z.boolean().
|
|
4689
|
+
requires_approval: z.boolean().optional(),
|
|
4690
4690
|
}).transform((v) => {
|
|
4691
4691
|
return remap$(v, {
|
|
4692
4692
|
"requires_approval": "requiresApproval",
|
|
@@ -4695,7 +4695,7 @@ export const AgentToolInputCRUDWebScraperTool$inboundSchema: z.ZodType<
|
|
|
4695
4695
|
/** @internal */
|
|
4696
4696
|
export type AgentToolInputCRUDWebScraperTool$Outbound = {
|
|
4697
4697
|
type: string;
|
|
4698
|
-
requires_approval
|
|
4698
|
+
requires_approval?: boolean | undefined;
|
|
4699
4699
|
};
|
|
4700
4700
|
|
|
4701
4701
|
/** @internal */
|
|
@@ -4705,7 +4705,7 @@ export const AgentToolInputCRUDWebScraperTool$outboundSchema: z.ZodType<
|
|
|
4705
4705
|
AgentToolInputCRUDWebScraperTool
|
|
4706
4706
|
> = z.object({
|
|
4707
4707
|
type: UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema,
|
|
4708
|
-
requiresApproval: z.boolean().
|
|
4708
|
+
requiresApproval: z.boolean().optional(),
|
|
4709
4709
|
}).transform((v) => {
|
|
4710
4710
|
return remap$(v, {
|
|
4711
4711
|
requiresApproval: "requires_approval",
|
|
@@ -4747,7 +4747,7 @@ export const AgentToolInputCRUDGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
4747
4747
|
unknown
|
|
4748
4748
|
> = z.object({
|
|
4749
4749
|
type: UpdateAgentAgentToolInputCRUDType$inboundSchema,
|
|
4750
|
-
requires_approval: z.boolean().
|
|
4750
|
+
requires_approval: z.boolean().optional(),
|
|
4751
4751
|
}).transform((v) => {
|
|
4752
4752
|
return remap$(v, {
|
|
4753
4753
|
"requires_approval": "requiresApproval",
|
|
@@ -4756,7 +4756,7 @@ export const AgentToolInputCRUDGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
4756
4756
|
/** @internal */
|
|
4757
4757
|
export type AgentToolInputCRUDGoogleSearchTool$Outbound = {
|
|
4758
4758
|
type: string;
|
|
4759
|
-
requires_approval
|
|
4759
|
+
requires_approval?: boolean | undefined;
|
|
4760
4760
|
};
|
|
4761
4761
|
|
|
4762
4762
|
/** @internal */
|
|
@@ -4766,7 +4766,7 @@ export const AgentToolInputCRUDGoogleSearchTool$outboundSchema: z.ZodType<
|
|
|
4766
4766
|
AgentToolInputCRUDGoogleSearchTool
|
|
4767
4767
|
> = z.object({
|
|
4768
4768
|
type: UpdateAgentAgentToolInputCRUDType$outboundSchema,
|
|
4769
|
-
requiresApproval: z.boolean().
|
|
4769
|
+
requiresApproval: z.boolean().optional(),
|
|
4770
4770
|
}).transform((v) => {
|
|
4771
4771
|
return remap$(v, {
|
|
4772
4772
|
requiresApproval: "requires_approval",
|
|
@@ -436,7 +436,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
436
436
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
437
437
|
.optional(),
|
|
438
438
|
updated: z.string().datetime({ offset: true }).default(
|
|
439
|
-
"2025-11-
|
|
439
|
+
"2025-11-08T14:27:45.002Z",
|
|
440
440
|
).transform(v => new Date(v)),
|
|
441
441
|
}).transform((v) => {
|
|
442
442
|
return remap$(v, {
|
|
@@ -473,7 +473,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
473
473
|
isActive: z.boolean(),
|
|
474
474
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
475
475
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
476
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
476
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:45.002Z"))
|
|
477
477
|
.transform(v => v.toISOString()),
|
|
478
478
|
}).transform((v) => {
|
|
479
479
|
return remap$(v, {
|
|
@@ -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
|
-
"2025-11-
|
|
217
|
+
"2025-11-08T14:27:44.679Z",
|
|
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("2025-11-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-08T14:27:55.967Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.967Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-08T14:27:55.966Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.966Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-08T14:27:55.966Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.966Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-08T14:27:44.679Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
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
|
-
"2025-11-
|
|
259
|
+
"2025-11-08T14:27:44.679Z",
|
|
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("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
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("01K9HXVQ90CDR30GH82YSGJM9Z"),
|
|
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("01K9HXVQ90CDR30GH82YSGJM9Z"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2988,8 +2988,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2988
2988
|
> = z.object({
|
|
2989
2989
|
_id: z.string(),
|
|
2990
2990
|
description: z.string(),
|
|
2991
|
-
created: z.string().default("2025-11-
|
|
2992
|
-
updated: z.string().default("2025-11-
|
|
2991
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
2992
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
2993
2993
|
guardrail_config: z.union([
|
|
2994
2994
|
z.lazy(() =>
|
|
2995
2995
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3031,8 +3031,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3031
3031
|
> = z.object({
|
|
3032
3032
|
id: z.string(),
|
|
3033
3033
|
description: z.string(),
|
|
3034
|
-
created: z.string().default("2025-11-
|
|
3035
|
-
updated: z.string().default("2025-11-
|
|
3034
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
3035
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
3036
3036
|
guardrailConfig: z.union([
|
|
3037
3037
|
z.lazy(() =>
|
|
3038
3038
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3322,8 +3322,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3322
3322
|
> = z.object({
|
|
3323
3323
|
_id: z.string(),
|
|
3324
3324
|
description: z.string(),
|
|
3325
|
-
created: z.string().default("2025-11-
|
|
3326
|
-
updated: z.string().default("2025-11-
|
|
3325
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
3326
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
3327
3327
|
guardrail_config: z.union([
|
|
3328
3328
|
z.lazy(() =>
|
|
3329
3329
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3368,8 +3368,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3368
3368
|
> = z.object({
|
|
3369
3369
|
id: z.string(),
|
|
3370
3370
|
description: z.string(),
|
|
3371
|
-
created: z.string().default("2025-11-
|
|
3372
|
-
updated: z.string().default("2025-11-
|
|
3371
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
3372
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
3373
3373
|
guardrailConfig: z.union([
|
|
3374
3374
|
z.lazy(() =>
|
|
3375
3375
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5707,8 +5707,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5707
5707
|
> = z.object({
|
|
5708
5708
|
_id: z.string(),
|
|
5709
5709
|
description: z.string(),
|
|
5710
|
-
created: z.string().default("2025-11-
|
|
5711
|
-
updated: z.string().default("2025-11-
|
|
5710
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
5711
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
5712
5712
|
guardrail_config: z.union([
|
|
5713
5713
|
z.lazy(() =>
|
|
5714
5714
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
5826
5826
|
guardrailConfig: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6138,8 +6138,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6138
6138
|
> = z.object({
|
|
6139
6139
|
_id: z.string(),
|
|
6140
6140
|
description: z.string(),
|
|
6141
|
-
created: z.string().default("2025-11-
|
|
6142
|
-
updated: z.string().default("2025-11-
|
|
6141
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6142
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6143
6143
|
guardrail_config: z.union([
|
|
6144
6144
|
z.lazy(() =>
|
|
6145
6145
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6180,8 +6180,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6180
6180
|
> = z.object({
|
|
6181
6181
|
id: z.string(),
|
|
6182
6182
|
description: z.string(),
|
|
6183
|
-
created: z.string().default("2025-11-
|
|
6184
|
-
updated: z.string().default("2025-11-
|
|
6183
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6184
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6185
6185
|
guardrailConfig: z.union([
|
|
6186
6186
|
z.lazy(() =>
|
|
6187
6187
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6466,8 +6466,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6466
6466
|
> = z.object({
|
|
6467
6467
|
_id: z.string(),
|
|
6468
6468
|
description: z.string(),
|
|
6469
|
-
created: z.string().default("2025-11-
|
|
6470
|
-
updated: z.string().default("2025-11-
|
|
6469
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6470
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6471
6471
|
guardrail_config: z.union([
|
|
6472
6472
|
z.lazy(() =>
|
|
6473
6473
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6514,8 +6514,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6514
6514
|
> = z.object({
|
|
6515
6515
|
id: z.string(),
|
|
6516
6516
|
description: z.string(),
|
|
6517
|
-
created: z.string().default("2025-11-
|
|
6518
|
-
updated: z.string().default("2025-11-
|
|
6517
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6784,8 +6784,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6784
6784
|
> = z.object({
|
|
6785
6785
|
_id: z.string(),
|
|
6786
6786
|
description: z.string(),
|
|
6787
|
-
created: z.string().default("2025-11-
|
|
6788
|
-
updated: z.string().default("2025-11-
|
|
6787
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6788
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6789
6789
|
guardrail_config: z.union([
|
|
6790
6790
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6791
6791
|
z.lazy(() =>
|
|
@@ -6824,8 +6824,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6824
6824
|
> = z.object({
|
|
6825
6825
|
id: z.string(),
|
|
6826
6826
|
description: z.string(),
|
|
6827
|
-
created: z.string().default("2025-11-
|
|
6828
|
-
updated: z.string().default("2025-11-
|
|
6827
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6828
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
6829
6829
|
guardrailConfig: z.union([
|
|
6830
6830
|
z.lazy(() =>
|
|
6831
6831
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7064,8 +7064,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7064
7064
|
> = z.object({
|
|
7065
7065
|
_id: z.string(),
|
|
7066
7066
|
description: z.string(),
|
|
7067
|
-
created: z.string().default("2025-11-
|
|
7068
|
-
updated: z.string().default("2025-11-
|
|
7067
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
7068
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
7069
7069
|
guardrail_config: z.union([
|
|
7070
7070
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7071
7071
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7104,8 +7104,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7104
7104
|
> = z.object({
|
|
7105
7105
|
id: z.string(),
|
|
7106
7106
|
description: z.string(),
|
|
7107
|
-
created: z.string().default("2025-11-
|
|
7108
|
-
updated: z.string().default("2025-11-
|
|
7107
|
+
created: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
7108
|
+
updated: z.string().default("2025-11-08T14:27:47.244Z"),
|
|
7109
7109
|
guardrailConfig: z.union([
|
|
7110
7110
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7111
7111
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|