@orq-ai/node 4.0.0-rc.52 → 4.0.0-rc.54
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 +1 -1
- package/bin/mcp-server.js +5278 -1586
- package/bin/mcp-server.js.map +45 -45
- package/docs/sdks/agents/README.md +40 -2
- package/docs/sdks/memorystores/README.md +3 -4
- package/examples/package-lock.json +1 -1
- package/funcs/agentsStream.js +2 -0
- package/funcs/agentsStream.js.map +1 -1
- package/funcs/agentsStreamRun.js +2 -0
- package/funcs/agentsStreamRun.js.map +1 -1
- package/funcs/memoryStoresCreate.d.ts +1 -2
- package/funcs/memoryStoresCreate.d.ts.map +1 -1
- package/funcs/memoryStoresCreate.js +2 -6
- package/funcs/memoryStoresCreate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +17 -7
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +12 -4
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +70 -70
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +162 -169
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.d.ts +5 -0
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +4 -0
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.d.ts +34 -34
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +74 -79
- package/models/operations/getalltools.js.map +1 -1
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +5 -0
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +4 -0
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamagent.d.ts +2658 -106
- package/models/operations/streamagent.d.ts.map +1 -1
- package/models/operations/streamagent.js +2936 -5
- package/models/operations/streamagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +3268 -716
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +2936 -12
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +17 -7
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +12 -4
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/funcs/agentsStream.ts +1 -0
- package/src/funcs/agentsStreamRun.ts +1 -0
- package/src/funcs/memoryStoresCreate.ts +2 -11
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +31 -13
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +368 -294
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +9 -0
- package/src/models/operations/getalltools.ts +277 -231
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +9 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamagent.ts +7595 -380
- package/src/models/operations/streamrunagent.ts +10703 -3540
- package/src/models/operations/updateagent.ts +31 -13
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -776,7 +776,7 @@ export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15
|
|
|
776
776
|
>;
|
|
777
777
|
|
|
778
778
|
/**
|
|
779
|
-
* Executes tools from Model Context Protocol (MCP) servers.
|
|
779
|
+
* Executes tools from Model Context Protocol (MCP) servers. Specify the parent MCP tool using "key" or "id", and the specific nested tool using "tool_id".
|
|
780
780
|
*/
|
|
781
781
|
export type AgentToolInputCRUDMCPTool = {
|
|
782
782
|
/**
|
|
@@ -785,13 +785,17 @@ export type AgentToolInputCRUDMCPTool = {
|
|
|
785
785
|
type:
|
|
786
786
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type;
|
|
787
787
|
/**
|
|
788
|
-
* The key of the
|
|
788
|
+
* The key of the parent MCP tool
|
|
789
789
|
*/
|
|
790
790
|
key?: string | undefined;
|
|
791
791
|
/**
|
|
792
|
-
* The ID of the
|
|
792
|
+
* The ID of the parent MCP tool
|
|
793
793
|
*/
|
|
794
794
|
id?: string | undefined;
|
|
795
|
+
/**
|
|
796
|
+
* The ID of the specific nested tool within the MCP server
|
|
797
|
+
*/
|
|
798
|
+
toolId: string;
|
|
795
799
|
/**
|
|
796
800
|
* Whether this tool requires approval before execution
|
|
797
801
|
*/
|
|
@@ -1129,6 +1133,7 @@ export type AgentToolInputCRUDGoogleSearchTool = {
|
|
|
1129
1133
|
* 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.
|
|
1130
1134
|
*/
|
|
1131
1135
|
export type UpdateAgentAgentToolInputCRUD =
|
|
1136
|
+
| AgentToolInputCRUDMCPTool
|
|
1132
1137
|
| AgentToolInputCRUDGoogleSearchTool
|
|
1133
1138
|
| AgentToolInputCRUDWebScraperTool
|
|
1134
1139
|
| AgentToolInputCRUDCallSubAgentTool
|
|
@@ -1142,8 +1147,7 @@ export type UpdateAgentAgentToolInputCRUD =
|
|
|
1142
1147
|
| AgentToolInputCRUDCurrentDateTool
|
|
1143
1148
|
| AgentToolInputCRUDHTTPTool
|
|
1144
1149
|
| AgentToolInputCRUDCodeExecutionTool
|
|
1145
|
-
| AgentToolInputCRUDFunctionTool
|
|
1146
|
-
| AgentToolInputCRUDMCPTool;
|
|
1150
|
+
| AgentToolInputCRUDFunctionTool;
|
|
1147
1151
|
|
|
1148
1152
|
/**
|
|
1149
1153
|
* Determines whether the evaluator runs on the agent input (user message) or output (agent response).
|
|
@@ -1219,6 +1223,7 @@ export type UpdateAgentSettings = {
|
|
|
1219
1223
|
*/
|
|
1220
1224
|
tools?:
|
|
1221
1225
|
| Array<
|
|
1226
|
+
| AgentToolInputCRUDMCPTool
|
|
1222
1227
|
| AgentToolInputCRUDGoogleSearchTool
|
|
1223
1228
|
| AgentToolInputCRUDWebScraperTool
|
|
1224
1229
|
| AgentToolInputCRUDCallSubAgentTool
|
|
@@ -1233,7 +1238,6 @@ export type UpdateAgentSettings = {
|
|
|
1233
1238
|
| AgentToolInputCRUDHTTPTool
|
|
1234
1239
|
| AgentToolInputCRUDCodeExecutionTool
|
|
1235
1240
|
| AgentToolInputCRUDFunctionTool
|
|
1236
|
-
| AgentToolInputCRUDMCPTool
|
|
1237
1241
|
>
|
|
1238
1242
|
| undefined;
|
|
1239
1243
|
/**
|
|
@@ -1382,6 +1386,10 @@ export type UpdateAgentTools = {
|
|
|
1382
1386
|
*/
|
|
1383
1387
|
description?: string | undefined;
|
|
1384
1388
|
requiresApproval?: boolean | undefined;
|
|
1389
|
+
/**
|
|
1390
|
+
* Nested tool ID for MCP tools (identifies specific tool within MCP server)
|
|
1391
|
+
*/
|
|
1392
|
+
toolId?: string | undefined;
|
|
1385
1393
|
conditions?: Array<UpdateAgentConditions> | undefined;
|
|
1386
1394
|
/**
|
|
1387
1395
|
* Tool execution timeout in seconds (default: 2 minutes, max: 10 minutes)
|
|
@@ -4290,9 +4298,11 @@ export const AgentToolInputCRUDMCPTool$inboundSchema: z.ZodType<
|
|
|
4290
4298
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema,
|
|
4291
4299
|
key: z.string().optional(),
|
|
4292
4300
|
id: z.string().optional(),
|
|
4301
|
+
tool_id: z.string(),
|
|
4293
4302
|
requires_approval: z.boolean().default(false),
|
|
4294
4303
|
}).transform((v) => {
|
|
4295
4304
|
return remap$(v, {
|
|
4305
|
+
"tool_id": "toolId",
|
|
4296
4306
|
"requires_approval": "requiresApproval",
|
|
4297
4307
|
});
|
|
4298
4308
|
});
|
|
@@ -4301,6 +4311,7 @@ export type AgentToolInputCRUDMCPTool$Outbound = {
|
|
|
4301
4311
|
type: string;
|
|
4302
4312
|
key?: string | undefined;
|
|
4303
4313
|
id?: string | undefined;
|
|
4314
|
+
tool_id: string;
|
|
4304
4315
|
requires_approval: boolean;
|
|
4305
4316
|
};
|
|
4306
4317
|
|
|
@@ -4314,9 +4325,11 @@ export const AgentToolInputCRUDMCPTool$outboundSchema: z.ZodType<
|
|
|
4314
4325
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema,
|
|
4315
4326
|
key: z.string().optional(),
|
|
4316
4327
|
id: z.string().optional(),
|
|
4328
|
+
toolId: z.string(),
|
|
4317
4329
|
requiresApproval: z.boolean().default(false),
|
|
4318
4330
|
}).transform((v) => {
|
|
4319
4331
|
return remap$(v, {
|
|
4332
|
+
toolId: "tool_id",
|
|
4320
4333
|
requiresApproval: "requires_approval",
|
|
4321
4334
|
});
|
|
4322
4335
|
});
|
|
@@ -5323,6 +5336,7 @@ export const UpdateAgentAgentToolInputCRUD$inboundSchema: z.ZodType<
|
|
|
5323
5336
|
z.ZodTypeDef,
|
|
5324
5337
|
unknown
|
|
5325
5338
|
> = z.union([
|
|
5339
|
+
z.lazy(() => AgentToolInputCRUDMCPTool$inboundSchema),
|
|
5326
5340
|
z.lazy(() => AgentToolInputCRUDGoogleSearchTool$inboundSchema),
|
|
5327
5341
|
z.lazy(() => AgentToolInputCRUDWebScraperTool$inboundSchema),
|
|
5328
5342
|
z.lazy(() => AgentToolInputCRUDCallSubAgentTool$inboundSchema),
|
|
@@ -5337,10 +5351,10 @@ export const UpdateAgentAgentToolInputCRUD$inboundSchema: z.ZodType<
|
|
|
5337
5351
|
z.lazy(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
5338
5352
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
5339
5353
|
z.lazy(() => AgentToolInputCRUDFunctionTool$inboundSchema),
|
|
5340
|
-
z.lazy(() => AgentToolInputCRUDMCPTool$inboundSchema),
|
|
5341
5354
|
]);
|
|
5342
5355
|
/** @internal */
|
|
5343
5356
|
export type UpdateAgentAgentToolInputCRUD$Outbound =
|
|
5357
|
+
| AgentToolInputCRUDMCPTool$Outbound
|
|
5344
5358
|
| AgentToolInputCRUDGoogleSearchTool$Outbound
|
|
5345
5359
|
| AgentToolInputCRUDWebScraperTool$Outbound
|
|
5346
5360
|
| AgentToolInputCRUDCallSubAgentTool$Outbound
|
|
@@ -5354,8 +5368,7 @@ export type UpdateAgentAgentToolInputCRUD$Outbound =
|
|
|
5354
5368
|
| AgentToolInputCRUDCurrentDateTool$Outbound
|
|
5355
5369
|
| AgentToolInputCRUDHTTPTool$Outbound
|
|
5356
5370
|
| AgentToolInputCRUDCodeExecutionTool$Outbound
|
|
5357
|
-
| AgentToolInputCRUDFunctionTool$Outbound
|
|
5358
|
-
| AgentToolInputCRUDMCPTool$Outbound;
|
|
5371
|
+
| AgentToolInputCRUDFunctionTool$Outbound;
|
|
5359
5372
|
|
|
5360
5373
|
/** @internal */
|
|
5361
5374
|
export const UpdateAgentAgentToolInputCRUD$outboundSchema: z.ZodType<
|
|
@@ -5363,6 +5376,7 @@ export const UpdateAgentAgentToolInputCRUD$outboundSchema: z.ZodType<
|
|
|
5363
5376
|
z.ZodTypeDef,
|
|
5364
5377
|
UpdateAgentAgentToolInputCRUD
|
|
5365
5378
|
> = z.union([
|
|
5379
|
+
z.lazy(() => AgentToolInputCRUDMCPTool$outboundSchema),
|
|
5366
5380
|
z.lazy(() => AgentToolInputCRUDGoogleSearchTool$outboundSchema),
|
|
5367
5381
|
z.lazy(() => AgentToolInputCRUDWebScraperTool$outboundSchema),
|
|
5368
5382
|
z.lazy(() => AgentToolInputCRUDCallSubAgentTool$outboundSchema),
|
|
@@ -5377,7 +5391,6 @@ export const UpdateAgentAgentToolInputCRUD$outboundSchema: z.ZodType<
|
|
|
5377
5391
|
z.lazy(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
5378
5392
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
5379
5393
|
z.lazy(() => AgentToolInputCRUDFunctionTool$outboundSchema),
|
|
5380
|
-
z.lazy(() => AgentToolInputCRUDMCPTool$outboundSchema),
|
|
5381
5394
|
]);
|
|
5382
5395
|
|
|
5383
5396
|
export function updateAgentAgentToolInputCRUDToJSON(
|
|
@@ -5540,6 +5553,7 @@ export const UpdateAgentSettings$inboundSchema: z.ZodType<
|
|
|
5540
5553
|
),
|
|
5541
5554
|
tools: z.array(
|
|
5542
5555
|
z.union([
|
|
5556
|
+
z.lazy(() => AgentToolInputCRUDMCPTool$inboundSchema),
|
|
5543
5557
|
z.lazy(() => AgentToolInputCRUDGoogleSearchTool$inboundSchema),
|
|
5544
5558
|
z.lazy(() => AgentToolInputCRUDWebScraperTool$inboundSchema),
|
|
5545
5559
|
z.lazy(() => AgentToolInputCRUDCallSubAgentTool$inboundSchema),
|
|
@@ -5554,7 +5568,6 @@ export const UpdateAgentSettings$inboundSchema: z.ZodType<
|
|
|
5554
5568
|
z.lazy(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
5555
5569
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
5556
5570
|
z.lazy(() => AgentToolInputCRUDFunctionTool$inboundSchema),
|
|
5557
|
-
z.lazy(() => AgentToolInputCRUDMCPTool$inboundSchema),
|
|
5558
5571
|
]),
|
|
5559
5572
|
).optional(),
|
|
5560
5573
|
evaluators: z.array(z.lazy(() => UpdateAgentEvaluators$inboundSchema))
|
|
@@ -5575,6 +5588,7 @@ export type UpdateAgentSettings$Outbound = {
|
|
|
5575
5588
|
tool_approval_required: string;
|
|
5576
5589
|
tools?:
|
|
5577
5590
|
| Array<
|
|
5591
|
+
| AgentToolInputCRUDMCPTool$Outbound
|
|
5578
5592
|
| AgentToolInputCRUDGoogleSearchTool$Outbound
|
|
5579
5593
|
| AgentToolInputCRUDWebScraperTool$Outbound
|
|
5580
5594
|
| AgentToolInputCRUDCallSubAgentTool$Outbound
|
|
@@ -5589,7 +5603,6 @@ export type UpdateAgentSettings$Outbound = {
|
|
|
5589
5603
|
| AgentToolInputCRUDHTTPTool$Outbound
|
|
5590
5604
|
| AgentToolInputCRUDCodeExecutionTool$Outbound
|
|
5591
5605
|
| AgentToolInputCRUDFunctionTool$Outbound
|
|
5592
|
-
| AgentToolInputCRUDMCPTool$Outbound
|
|
5593
5606
|
>
|
|
5594
5607
|
| undefined;
|
|
5595
5608
|
evaluators?: Array<UpdateAgentEvaluators$Outbound> | undefined;
|
|
@@ -5609,6 +5622,7 @@ export const UpdateAgentSettings$outboundSchema: z.ZodType<
|
|
|
5609
5622
|
),
|
|
5610
5623
|
tools: z.array(
|
|
5611
5624
|
z.union([
|
|
5625
|
+
z.lazy(() => AgentToolInputCRUDMCPTool$outboundSchema),
|
|
5612
5626
|
z.lazy(() => AgentToolInputCRUDGoogleSearchTool$outboundSchema),
|
|
5613
5627
|
z.lazy(() => AgentToolInputCRUDWebScraperTool$outboundSchema),
|
|
5614
5628
|
z.lazy(() => AgentToolInputCRUDCallSubAgentTool$outboundSchema),
|
|
@@ -5623,7 +5637,6 @@ export const UpdateAgentSettings$outboundSchema: z.ZodType<
|
|
|
5623
5637
|
z.lazy(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
5624
5638
|
z.lazy(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
5625
5639
|
z.lazy(() => AgentToolInputCRUDFunctionTool$outboundSchema),
|
|
5626
|
-
z.lazy(() => AgentToolInputCRUDMCPTool$outboundSchema),
|
|
5627
5640
|
]),
|
|
5628
5641
|
).optional(),
|
|
5629
5642
|
evaluators: z.array(z.lazy(() => UpdateAgentEvaluators$outboundSchema))
|
|
@@ -6001,6 +6014,7 @@ export const UpdateAgentTools$inboundSchema: z.ZodType<
|
|
|
6001
6014
|
display_name: z.string().optional(),
|
|
6002
6015
|
description: z.string().optional(),
|
|
6003
6016
|
requires_approval: z.boolean().default(false),
|
|
6017
|
+
tool_id: z.string().optional(),
|
|
6004
6018
|
conditions: z.array(z.lazy(() => UpdateAgentConditions$inboundSchema))
|
|
6005
6019
|
.optional(),
|
|
6006
6020
|
timeout: z.number().default(120),
|
|
@@ -6009,6 +6023,7 @@ export const UpdateAgentTools$inboundSchema: z.ZodType<
|
|
|
6009
6023
|
"action_type": "actionType",
|
|
6010
6024
|
"display_name": "displayName",
|
|
6011
6025
|
"requires_approval": "requiresApproval",
|
|
6026
|
+
"tool_id": "toolId",
|
|
6012
6027
|
});
|
|
6013
6028
|
});
|
|
6014
6029
|
/** @internal */
|
|
@@ -6019,6 +6034,7 @@ export type UpdateAgentTools$Outbound = {
|
|
|
6019
6034
|
display_name?: string | undefined;
|
|
6020
6035
|
description?: string | undefined;
|
|
6021
6036
|
requires_approval: boolean;
|
|
6037
|
+
tool_id?: string | undefined;
|
|
6022
6038
|
conditions?: Array<UpdateAgentConditions$Outbound> | undefined;
|
|
6023
6039
|
timeout: number;
|
|
6024
6040
|
};
|
|
@@ -6035,6 +6051,7 @@ export const UpdateAgentTools$outboundSchema: z.ZodType<
|
|
|
6035
6051
|
displayName: z.string().optional(),
|
|
6036
6052
|
description: z.string().optional(),
|
|
6037
6053
|
requiresApproval: z.boolean().default(false),
|
|
6054
|
+
toolId: z.string().optional(),
|
|
6038
6055
|
conditions: z.array(z.lazy(() => UpdateAgentConditions$outboundSchema))
|
|
6039
6056
|
.optional(),
|
|
6040
6057
|
timeout: z.number().default(120),
|
|
@@ -6043,6 +6060,7 @@ export const UpdateAgentTools$outboundSchema: z.ZodType<
|
|
|
6043
6060
|
actionType: "action_type",
|
|
6044
6061
|
displayName: "display_name",
|
|
6045
6062
|
requiresApproval: "requires_approval",
|
|
6063
|
+
toolId: "tool_id",
|
|
6046
6064
|
});
|
|
6047
6065
|
});
|
|
6048
6066
|
|
|
@@ -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-20T08:47:59.142Z",
|
|
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-20T08:47:59.142Z"))
|
|
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-20T08:47:58.743Z",
|
|
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-20T08:47:58.743Z"))
|
|
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-20T08:48:12.632Z",
|
|
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-20T08:48:12.632Z"))
|
|
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-20T08:48:12.632Z",
|
|
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-20T08:48:12.632Z"))
|
|
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-20T08:48:12.631Z",
|
|
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-20T08:48:12.631Z"))
|
|
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-20T08:47:58.743Z",
|
|
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-20T08:47:58.743Z"))
|
|
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-20T08:47:58.743Z",
|
|
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-20T08:47:58.743Z"))
|
|
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("01KAG769Q76RQMT9MVANEZE9H2"),
|
|
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("01KAG769Q76RQMT9MVANEZE9H2"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2990,8 +2990,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2990
2990
|
> = z.object({
|
|
2991
2991
|
_id: z.string(),
|
|
2992
2992
|
description: z.string(),
|
|
2993
|
-
created: z.string().default("2025-11-
|
|
2994
|
-
updated: z.string().default("2025-11-
|
|
2993
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
2994
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
2995
2995
|
guardrail_config: z.union([
|
|
2996
2996
|
z.lazy(() =>
|
|
2997
2997
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3033,8 +3033,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3033
3033
|
> = z.object({
|
|
3034
3034
|
id: z.string(),
|
|
3035
3035
|
description: z.string(),
|
|
3036
|
-
created: z.string().default("2025-11-
|
|
3037
|
-
updated: z.string().default("2025-11-
|
|
3036
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3037
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3038
3038
|
guardrailConfig: z.union([
|
|
3039
3039
|
z.lazy(() =>
|
|
3040
3040
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
_id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-11-
|
|
3328
|
-
updated: z.string().default("2025-11-
|
|
3327
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3328
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3329
3329
|
guardrail_config: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3370,8 +3370,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3370
3370
|
> = z.object({
|
|
3371
3371
|
id: z.string(),
|
|
3372
3372
|
description: z.string(),
|
|
3373
|
-
created: z.string().default("2025-11-
|
|
3374
|
-
updated: z.string().default("2025-11-
|
|
3373
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3374
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3375
3375
|
guardrailConfig: z.union([
|
|
3376
3376
|
z.lazy(() =>
|
|
3377
3377
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5709,8 +5709,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5709
5709
|
> = z.object({
|
|
5710
5710
|
_id: z.string(),
|
|
5711
5711
|
description: z.string(),
|
|
5712
|
-
created: z.string().default("2025-11-
|
|
5713
|
-
updated: z.string().default("2025-11-
|
|
5712
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5713
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5714
5714
|
guardrail_config: z.union([
|
|
5715
5715
|
z.lazy(() =>
|
|
5716
5716
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5823,8 +5823,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5823
5823
|
> = z.object({
|
|
5824
5824
|
id: z.string(),
|
|
5825
5825
|
description: z.string(),
|
|
5826
|
-
created: z.string().default("2025-11-
|
|
5827
|
-
updated: z.string().default("2025-11-
|
|
5826
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5827
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5828
5828
|
guardrailConfig: z.union([
|
|
5829
5829
|
z.lazy(() =>
|
|
5830
5830
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6140,8 +6140,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6140
6140
|
> = z.object({
|
|
6141
6141
|
_id: z.string(),
|
|
6142
6142
|
description: z.string(),
|
|
6143
|
-
created: z.string().default("2025-11-
|
|
6144
|
-
updated: z.string().default("2025-11-
|
|
6143
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6144
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6145
6145
|
guardrail_config: z.union([
|
|
6146
6146
|
z.lazy(() =>
|
|
6147
6147
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6182,8 +6182,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6182
6182
|
> = z.object({
|
|
6183
6183
|
id: z.string(),
|
|
6184
6184
|
description: z.string(),
|
|
6185
|
-
created: z.string().default("2025-11-
|
|
6186
|
-
updated: z.string().default("2025-11-
|
|
6185
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6186
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6187
6187
|
guardrailConfig: z.union([
|
|
6188
6188
|
z.lazy(() =>
|
|
6189
6189
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6468,8 +6468,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6468
6468
|
> = z.object({
|
|
6469
6469
|
_id: z.string(),
|
|
6470
6470
|
description: z.string(),
|
|
6471
|
-
created: z.string().default("2025-11-
|
|
6472
|
-
updated: z.string().default("2025-11-
|
|
6471
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6472
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6473
6473
|
guardrail_config: z.union([
|
|
6474
6474
|
z.lazy(() =>
|
|
6475
6475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6516,8 +6516,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6516
6516
|
> = z.object({
|
|
6517
6517
|
id: z.string(),
|
|
6518
6518
|
description: z.string(),
|
|
6519
|
-
created: z.string().default("2025-11-
|
|
6520
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6521
6521
|
guardrailConfig: z.union([
|
|
6522
6522
|
z.lazy(() =>
|
|
6523
6523
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6786,8 +6786,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6786
6786
|
> = z.object({
|
|
6787
6787
|
_id: z.string(),
|
|
6788
6788
|
description: z.string(),
|
|
6789
|
-
created: z.string().default("2025-11-
|
|
6790
|
-
updated: z.string().default("2025-11-
|
|
6789
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6790
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6791
6791
|
guardrail_config: z.union([
|
|
6792
6792
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6793
6793
|
z.lazy(() =>
|
|
@@ -6826,8 +6826,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6826
6826
|
> = z.object({
|
|
6827
6827
|
id: z.string(),
|
|
6828
6828
|
description: z.string(),
|
|
6829
|
-
created: z.string().default("2025-11-
|
|
6830
|
-
updated: z.string().default("2025-11-
|
|
6829
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6830
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6831
6831
|
guardrailConfig: z.union([
|
|
6832
6832
|
z.lazy(() =>
|
|
6833
6833
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7066,8 +7066,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7066
7066
|
> = z.object({
|
|
7067
7067
|
_id: z.string(),
|
|
7068
7068
|
description: z.string(),
|
|
7069
|
-
created: z.string().default("2025-11-
|
|
7070
|
-
updated: z.string().default("2025-11-
|
|
7069
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
7070
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
7071
7071
|
guardrail_config: z.union([
|
|
7072
7072
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7073
7073
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7106,8 +7106,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7106
7106
|
> = z.object({
|
|
7107
7107
|
id: z.string(),
|
|
7108
7108
|
description: z.string(),
|
|
7109
|
-
created: z.string().default("2025-11-
|
|
7110
|
-
updated: z.string().default("2025-11-
|
|
7109
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
7110
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
7111
7111
|
guardrailConfig: z.union([
|
|
7112
7112
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7113
7113
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -1602,7 +1602,7 @@ export const RequestBodyTools$inboundSchema: z.ZodType<
|
|
|
1602
1602
|
z.ZodTypeDef,
|
|
1603
1603
|
unknown
|
|
1604
1604
|
> = z.object({
|
|
1605
|
-
id: z.string().default("
|
|
1605
|
+
id: z.string().default("01KAG769J83567H2AY5RRBBRJV"),
|
|
1606
1606
|
name: z.string(),
|
|
1607
1607
|
description: z.string().optional(),
|
|
1608
1608
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
@@ -1621,7 +1621,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1621
1621
|
z.ZodTypeDef,
|
|
1622
1622
|
RequestBodyTools
|
|
1623
1623
|
> = z.object({
|
|
1624
|
-
id: z.string().default("
|
|
1624
|
+
id: z.string().default("01KAG769J83567H2AY5RRBBRJV"),
|
|
1625
1625
|
name: z.string(),
|
|
1626
1626
|
description: z.string().optional(),
|
|
1627
1627
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2842,7 +2842,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2842
2842
|
z.ZodTypeDef,
|
|
2843
2843
|
unknown
|
|
2844
2844
|
> = z.object({
|
|
2845
|
-
_id: z.string().default("
|
|
2845
|
+
_id: z.string().default("tool_01KAG769J3W9HT09ECJVKNQF42"),
|
|
2846
2846
|
path: z.string(),
|
|
2847
2847
|
key: z.string(),
|
|
2848
2848
|
display_name: z.string().optional(),
|
|
@@ -2896,7 +2896,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2896
2896
|
z.ZodTypeDef,
|
|
2897
2897
|
UpdateToolResponseBody5
|
|
2898
2898
|
> = z.object({
|
|
2899
|
-
id: z.string().default("
|
|
2899
|
+
id: z.string().default("tool_01KAG769J3W9HT09ECJVKNQF42"),
|
|
2900
2900
|
path: z.string(),
|
|
2901
2901
|
key: z.string(),
|
|
2902
2902
|
displayName: z.string().optional(),
|
|
@@ -3072,7 +3072,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
3072
3072
|
z.ZodTypeDef,
|
|
3073
3073
|
unknown
|
|
3074
3074
|
> = z.object({
|
|
3075
|
-
id: z.string().default("
|
|
3075
|
+
id: z.string().default("01KAG769J2C5W9VF0ZHJRN6AZA"),
|
|
3076
3076
|
name: z.string(),
|
|
3077
3077
|
description: z.string().optional(),
|
|
3078
3078
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -3091,7 +3091,7 @@ export const UpdateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
3091
3091
|
z.ZodTypeDef,
|
|
3092
3092
|
UpdateToolResponseBodyTools
|
|
3093
3093
|
> = z.object({
|
|
3094
|
-
id: z.string().default("
|
|
3094
|
+
id: z.string().default("01KAG769J2C5W9VF0ZHJRN6AZA"),
|
|
3095
3095
|
name: z.string(),
|
|
3096
3096
|
description: z.string().optional(),
|
|
3097
3097
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -3192,7 +3192,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3192
3192
|
z.ZodTypeDef,
|
|
3193
3193
|
unknown
|
|
3194
3194
|
> = z.object({
|
|
3195
|
-
_id: z.string().default("
|
|
3195
|
+
_id: z.string().default("tool_01KAG769J1BD84VP6C4TSTPE8V"),
|
|
3196
3196
|
path: z.string(),
|
|
3197
3197
|
key: z.string(),
|
|
3198
3198
|
display_name: z.string().optional(),
|
|
@@ -3245,7 +3245,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3245
3245
|
z.ZodTypeDef,
|
|
3246
3246
|
UpdateToolResponseBody4
|
|
3247
3247
|
> = z.object({
|
|
3248
|
-
id: z.string().default("
|
|
3248
|
+
id: z.string().default("tool_01KAG769J1BD84VP6C4TSTPE8V"),
|
|
3249
3249
|
path: z.string(),
|
|
3250
3250
|
key: z.string(),
|
|
3251
3251
|
displayName: z.string().optional(),
|
|
@@ -3620,7 +3620,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3620
3620
|
z.ZodTypeDef,
|
|
3621
3621
|
unknown
|
|
3622
3622
|
> = z.object({
|
|
3623
|
-
_id: z.string().default("
|
|
3623
|
+
_id: z.string().default("tool_01KAG769HZC2KPWAGZ6YJ43MNQ"),
|
|
3624
3624
|
path: z.string(),
|
|
3625
3625
|
key: z.string(),
|
|
3626
3626
|
display_name: z.string().optional(),
|
|
@@ -3673,7 +3673,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3673
3673
|
z.ZodTypeDef,
|
|
3674
3674
|
UpdateToolResponseBody3
|
|
3675
3675
|
> = z.object({
|
|
3676
|
-
id: z.string().default("
|
|
3676
|
+
id: z.string().default("tool_01KAG769HZC2KPWAGZ6YJ43MNQ"),
|
|
3677
3677
|
path: z.string(),
|
|
3678
3678
|
key: z.string(),
|
|
3679
3679
|
displayName: z.string().optional(),
|
|
@@ -3853,7 +3853,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3853
3853
|
z.ZodTypeDef,
|
|
3854
3854
|
unknown
|
|
3855
3855
|
> = z.object({
|
|
3856
|
-
_id: z.string().default("
|
|
3856
|
+
_id: z.string().default("tool_01KAG769HXYFTXB9MF8VKW5VXC"),
|
|
3857
3857
|
path: z.string(),
|
|
3858
3858
|
key: z.string(),
|
|
3859
3859
|
display_name: z.string().optional(),
|
|
@@ -3905,7 +3905,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3905
3905
|
z.ZodTypeDef,
|
|
3906
3906
|
UpdateToolResponseBody2
|
|
3907
3907
|
> = z.object({
|
|
3908
|
-
id: z.string().default("
|
|
3908
|
+
id: z.string().default("tool_01KAG769HXYFTXB9MF8VKW5VXC"),
|
|
3909
3909
|
path: z.string(),
|
|
3910
3910
|
key: z.string(),
|
|
3911
3911
|
displayName: z.string().optional(),
|
|
@@ -4099,7 +4099,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4099
4099
|
z.ZodTypeDef,
|
|
4100
4100
|
unknown
|
|
4101
4101
|
> = z.object({
|
|
4102
|
-
_id: z.string().default("
|
|
4102
|
+
_id: z.string().default("tool_01KAG769HWYBZCJRXNRMMZ7KKM"),
|
|
4103
4103
|
path: z.string(),
|
|
4104
4104
|
key: z.string(),
|
|
4105
4105
|
display_name: z.string().optional(),
|
|
@@ -4150,7 +4150,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4150
4150
|
z.ZodTypeDef,
|
|
4151
4151
|
UpdateToolResponseBody1
|
|
4152
4152
|
> = z.object({
|
|
4153
|
-
id: z.string().default("
|
|
4153
|
+
id: z.string().default("tool_01KAG769HWYBZCJRXNRMMZ7KKM"),
|
|
4154
4154
|
path: z.string(),
|
|
4155
4155
|
key: z.string(),
|
|
4156
4156
|
displayName: z.string().optional(),
|