@orq-ai/node 4.0.0-rc.36 → 4.0.0-rc.38
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 +256 -222
- package/bin/mcp-server.js.map +44 -44
- 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 +5 -0
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +2 -0
- 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.d.ts +2 -0
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +12 -10
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/duplicateagent.d.ts +5 -0
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +2 -0
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +13 -1
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +16 -10
- package/models/operations/duplicatetool.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.d.ts +5 -0
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +2 -0
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.d.ts +2 -0
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +12 -10
- 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 +2 -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.d.ts +2 -0
- package/models/operations/retrievetool.d.ts.map +1 -1
- package/models/operations/retrievetool.js +12 -10
- package/models/operations/retrievetool.js.map +1 -1
- package/models/operations/runagent.d.ts +2 -0
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +2 -0
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +2 -0
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +2 -0
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/syncmcptool.d.ts +2 -0
- package/models/operations/syncmcptool.d.ts.map +1 -1
- package/models/operations/syncmcptool.js +12 -10
- package/models/operations/syncmcptool.js.map +1 -1
- package/models/operations/updateagent.d.ts +5 -0
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +2 -0
- 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.d.ts +9 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +16 -10
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- 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 +7 -0
- 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 +14 -10
- package/src/models/operations/duplicateagent.ts +7 -0
- package/src/models/operations/duplicatetool.ts +29 -11
- 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 +7 -0
- package/src/models/operations/getalltools.ts +14 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +7 -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 +14 -10
- package/src/models/operations/runagent.ts +4 -0
- package/src/models/operations/streamrunagent.ts +4 -0
- package/src/models/operations/syncmcptool.ts +14 -10
- package/src/models/operations/updateagent.ts +7 -0
- 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 +25 -10
|
@@ -976,6 +976,7 @@ export type AgentToolInputRunSchema = {
|
|
|
976
976
|
};
|
|
977
977
|
|
|
978
978
|
export type AgentToolInputRunTools = {
|
|
979
|
+
id?: string | undefined;
|
|
979
980
|
name: string;
|
|
980
981
|
description?: string | undefined;
|
|
981
982
|
schema: AgentToolInputRunSchema;
|
|
@@ -4709,12 +4710,14 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
4709
4710
|
z.ZodTypeDef,
|
|
4710
4711
|
unknown
|
|
4711
4712
|
> = z.object({
|
|
4713
|
+
id: z.string().default("01KA8BQB34S5PHCGP8ZVJBPDZA"),
|
|
4712
4714
|
name: z.string(),
|
|
4713
4715
|
description: z.string().optional(),
|
|
4714
4716
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
4715
4717
|
});
|
|
4716
4718
|
/** @internal */
|
|
4717
4719
|
export type AgentToolInputRunTools$Outbound = {
|
|
4720
|
+
id: string;
|
|
4718
4721
|
name: string;
|
|
4719
4722
|
description?: string | undefined;
|
|
4720
4723
|
schema: AgentToolInputRunSchema$Outbound;
|
|
@@ -4726,6 +4729,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4726
4729
|
z.ZodTypeDef,
|
|
4727
4730
|
AgentToolInputRunTools
|
|
4728
4731
|
> = z.object({
|
|
4732
|
+
id: z.string().default("01KA8BQB34S5PHCGP8ZVJBPDZA"),
|
|
4729
4733
|
name: z.string(),
|
|
4730
4734
|
description: z.string().optional(),
|
|
4731
4735
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -192,6 +192,7 @@ export type SyncMcpToolResponseBodyToolsSchema = {
|
|
|
192
192
|
};
|
|
193
193
|
|
|
194
194
|
export type SyncMcpToolResponseBodyTools = {
|
|
195
|
+
id?: string | undefined;
|
|
195
196
|
name: string;
|
|
196
197
|
description?: string | undefined;
|
|
197
198
|
schema: SyncMcpToolResponseBodyToolsSchema;
|
|
@@ -978,7 +979,7 @@ export const SyncMcpToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
978
979
|
z.ZodTypeDef,
|
|
979
980
|
unknown
|
|
980
981
|
> = z.object({
|
|
981
|
-
_id: z.string().default("
|
|
982
|
+
_id: z.string().default("tool_01KA8BQBD8FT6KZ2HXPZBPB518"),
|
|
982
983
|
path: z.string(),
|
|
983
984
|
key: z.string(),
|
|
984
985
|
display_name: z.string().optional(),
|
|
@@ -1037,7 +1038,7 @@ export const SyncMcpToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
1037
1038
|
z.ZodTypeDef,
|
|
1038
1039
|
SyncMcpToolResponseBody5
|
|
1039
1040
|
> = z.object({
|
|
1040
|
-
id: z.string().default("
|
|
1041
|
+
id: z.string().default("tool_01KA8BQBD8FT6KZ2HXPZBPB518"),
|
|
1041
1042
|
path: z.string(),
|
|
1042
1043
|
key: z.string(),
|
|
1043
1044
|
displayName: z.string().optional(),
|
|
@@ -1217,12 +1218,14 @@ export const SyncMcpToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1217
1218
|
z.ZodTypeDef,
|
|
1218
1219
|
unknown
|
|
1219
1220
|
> = z.object({
|
|
1221
|
+
id: z.string().default("01KA8BQBD70F4RBYVH0P6SRFYQ"),
|
|
1220
1222
|
name: z.string(),
|
|
1221
1223
|
description: z.string().optional(),
|
|
1222
1224
|
schema: z.lazy(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema),
|
|
1223
1225
|
});
|
|
1224
1226
|
/** @internal */
|
|
1225
1227
|
export type SyncMcpToolResponseBodyTools$Outbound = {
|
|
1228
|
+
id: string;
|
|
1226
1229
|
name: string;
|
|
1227
1230
|
description?: string | undefined;
|
|
1228
1231
|
schema: SyncMcpToolResponseBodyToolsSchema$Outbound;
|
|
@@ -1234,6 +1237,7 @@ export const SyncMcpToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1234
1237
|
z.ZodTypeDef,
|
|
1235
1238
|
SyncMcpToolResponseBodyTools
|
|
1236
1239
|
> = z.object({
|
|
1240
|
+
id: z.string().default("01KA8BQBD70F4RBYVH0P6SRFYQ"),
|
|
1237
1241
|
name: z.string(),
|
|
1238
1242
|
description: z.string().optional(),
|
|
1239
1243
|
schema: z.lazy(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1388,7 +1392,7 @@ export const SyncMcpToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1388
1392
|
z.ZodTypeDef,
|
|
1389
1393
|
unknown
|
|
1390
1394
|
> = z.object({
|
|
1391
|
-
_id: z.string().default("
|
|
1395
|
+
_id: z.string().default("tool_01KA8BQBD6C5KW43B2PN4D5XT6"),
|
|
1392
1396
|
path: z.string(),
|
|
1393
1397
|
key: z.string(),
|
|
1394
1398
|
display_name: z.string().optional(),
|
|
@@ -1445,7 +1449,7 @@ export const SyncMcpToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1445
1449
|
z.ZodTypeDef,
|
|
1446
1450
|
SyncMcpToolResponseBody4
|
|
1447
1451
|
> = z.object({
|
|
1448
|
-
id: z.string().default("
|
|
1452
|
+
id: z.string().default("tool_01KA8BQBD6C5KW43B2PN4D5XT6"),
|
|
1449
1453
|
path: z.string(),
|
|
1450
1454
|
key: z.string(),
|
|
1451
1455
|
displayName: z.string().optional(),
|
|
@@ -1873,7 +1877,7 @@ export const SyncMcpToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1873
1877
|
z.ZodTypeDef,
|
|
1874
1878
|
unknown
|
|
1875
1879
|
> = z.object({
|
|
1876
|
-
_id: z.string().default("
|
|
1880
|
+
_id: z.string().default("tool_01KA8BQBD33A8RNFKK0VPRS3BG"),
|
|
1877
1881
|
path: z.string(),
|
|
1878
1882
|
key: z.string(),
|
|
1879
1883
|
display_name: z.string().optional(),
|
|
@@ -1928,7 +1932,7 @@ export const SyncMcpToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1928
1932
|
z.ZodTypeDef,
|
|
1929
1933
|
SyncMcpToolResponseBody3
|
|
1930
1934
|
> = z.object({
|
|
1931
|
-
id: z.string().default("
|
|
1935
|
+
id: z.string().default("tool_01KA8BQBD33A8RNFKK0VPRS3BG"),
|
|
1932
1936
|
path: z.string(),
|
|
1933
1937
|
key: z.string(),
|
|
1934
1938
|
displayName: z.string().optional(),
|
|
@@ -2157,7 +2161,7 @@ export const SyncMcpToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
2157
2161
|
z.ZodTypeDef,
|
|
2158
2162
|
unknown
|
|
2159
2163
|
> = z.object({
|
|
2160
|
-
_id: z.string().default("
|
|
2164
|
+
_id: z.string().default("tool_01KA8BQBD0FY8N6B6H0GXMERCM"),
|
|
2161
2165
|
path: z.string(),
|
|
2162
2166
|
key: z.string(),
|
|
2163
2167
|
display_name: z.string().optional(),
|
|
@@ -2211,7 +2215,7 @@ export const SyncMcpToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2211
2215
|
z.ZodTypeDef,
|
|
2212
2216
|
SyncMcpToolResponseBody2
|
|
2213
2217
|
> = z.object({
|
|
2214
|
-
id: z.string().default("
|
|
2218
|
+
id: z.string().default("tool_01KA8BQBD0FY8N6B6H0GXMERCM"),
|
|
2215
2219
|
path: z.string(),
|
|
2216
2220
|
key: z.string(),
|
|
2217
2221
|
displayName: z.string().optional(),
|
|
@@ -2450,7 +2454,7 @@ export const SyncMcpToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2450
2454
|
z.ZodTypeDef,
|
|
2451
2455
|
unknown
|
|
2452
2456
|
> = z.object({
|
|
2453
|
-
_id: z.string().default("
|
|
2457
|
+
_id: z.string().default("tool_01KA8BQBCYGQX90ZBY1JX2HM6F"),
|
|
2454
2458
|
path: z.string(),
|
|
2455
2459
|
key: z.string(),
|
|
2456
2460
|
display_name: z.string().optional(),
|
|
@@ -2503,7 +2507,7 @@ export const SyncMcpToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2503
2507
|
z.ZodTypeDef,
|
|
2504
2508
|
SyncMcpToolResponseBody1
|
|
2505
2509
|
> = z.object({
|
|
2506
|
-
id: z.string().default("
|
|
2510
|
+
id: z.string().default("tool_01KA8BQBCYGQX90ZBY1JX2HM6F"),
|
|
2507
2511
|
path: z.string(),
|
|
2508
2512
|
key: z.string(),
|
|
2509
2513
|
displayName: z.string().optional(),
|
|
@@ -1335,6 +1335,10 @@ export type UpdateAgentTools = {
|
|
|
1335
1335
|
key?: string | undefined;
|
|
1336
1336
|
actionType: string;
|
|
1337
1337
|
displayName?: string | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* Optional tool description
|
|
1340
|
+
*/
|
|
1341
|
+
description?: string | undefined;
|
|
1338
1342
|
requiresApproval?: boolean | undefined;
|
|
1339
1343
|
conditions?: Array<UpdateAgentConditions> | undefined;
|
|
1340
1344
|
/**
|
|
@@ -5878,6 +5882,7 @@ export const UpdateAgentTools$inboundSchema: z.ZodType<
|
|
|
5878
5882
|
key: z.string().optional(),
|
|
5879
5883
|
action_type: z.string(),
|
|
5880
5884
|
display_name: z.string().optional(),
|
|
5885
|
+
description: z.string().optional(),
|
|
5881
5886
|
requires_approval: z.boolean().default(false),
|
|
5882
5887
|
conditions: z.array(z.lazy(() => UpdateAgentConditions$inboundSchema))
|
|
5883
5888
|
.optional(),
|
|
@@ -5896,6 +5901,7 @@ export type UpdateAgentTools$Outbound = {
|
|
|
5896
5901
|
key?: string | undefined;
|
|
5897
5902
|
action_type: string;
|
|
5898
5903
|
display_name?: string | undefined;
|
|
5904
|
+
description?: string | undefined;
|
|
5899
5905
|
requires_approval: boolean;
|
|
5900
5906
|
conditions?: Array<UpdateAgentConditions$Outbound> | undefined;
|
|
5901
5907
|
mcpServer?: string | undefined;
|
|
@@ -5912,6 +5918,7 @@ export const UpdateAgentTools$outboundSchema: z.ZodType<
|
|
|
5912
5918
|
key: z.string().optional(),
|
|
5913
5919
|
actionType: z.string(),
|
|
5914
5920
|
displayName: z.string().optional(),
|
|
5921
|
+
description: z.string().optional(),
|
|
5915
5922
|
requiresApproval: z.boolean().default(false),
|
|
5916
5923
|
conditions: z.array(z.lazy(() => UpdateAgentConditions$outboundSchema))
|
|
5917
5924
|
.optional(),
|
|
@@ -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-17T07:33:20.076Z",
|
|
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-17T07:33:20.076Z"))
|
|
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-17T07:33:19.763Z",
|
|
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-17T07:33:19.763Z"))
|
|
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-17T07:33:30.370Z",
|
|
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-17T07:33:30.370Z"))
|
|
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-17T07:33:30.369Z",
|
|
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-17T07:33:30.369Z"))
|
|
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-17T07:33:30.368Z",
|
|
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-17T07:33:30.368Z"))
|
|
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-17T07:33:19.763Z",
|
|
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-17T07:33:19.763Z"))
|
|
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-17T07:33:19.763Z",
|
|
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-17T07:33:19.763Z"))
|
|
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("01KA8BQBG8QA51F3HVPN9GJKJC"),
|
|
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("01KA8BQBG8QA51F3HVPN9GJKJC"),
|
|
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-17T07:33:21.657Z"),
|
|
2994
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
3037
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
3328
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
3374
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
5713
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
5827
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6144
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6186
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6472
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6790
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6830
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
7070
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
7110
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
7111
7111
|
guardrailConfig: z.union([
|
|
7112
7112
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7113
7113
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -100,6 +100,10 @@ export type UpdateCodeExecutionTool = {
|
|
|
100
100
|
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
101
101
|
*/
|
|
102
102
|
path?: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* Unique key of the tool as it will be displayed in the UI
|
|
105
|
+
*/
|
|
106
|
+
key?: string | undefined;
|
|
103
107
|
/**
|
|
104
108
|
* The name of the tool as it will be displayed in the UI. This is optional and if not provided, the `key` will be used.
|
|
105
109
|
*/
|
|
@@ -158,6 +162,7 @@ export type UpdateToolRequestBodyToolsSchema = {
|
|
|
158
162
|
};
|
|
159
163
|
|
|
160
164
|
export type RequestBodyTools = {
|
|
165
|
+
id?: string | undefined;
|
|
161
166
|
name: string;
|
|
162
167
|
description?: string | undefined;
|
|
163
168
|
schema: UpdateToolRequestBodyToolsSchema;
|
|
@@ -770,6 +775,7 @@ export type UpdateToolResponseBodyToolsSchema = {
|
|
|
770
775
|
};
|
|
771
776
|
|
|
772
777
|
export type UpdateToolResponseBodyTools = {
|
|
778
|
+
id?: string | undefined;
|
|
773
779
|
name: string;
|
|
774
780
|
description?: string | undefined;
|
|
775
781
|
schema: UpdateToolResponseBodyToolsSchema;
|
|
@@ -1405,6 +1411,7 @@ export const UpdateCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1405
1411
|
unknown
|
|
1406
1412
|
> = z.object({
|
|
1407
1413
|
path: z.string().optional(),
|
|
1414
|
+
key: z.string().optional(),
|
|
1408
1415
|
display_name: z.string().optional(),
|
|
1409
1416
|
description: z.string().optional(),
|
|
1410
1417
|
status: UpdateToolRequestBodyToolsRequest5Status$inboundSchema.default(
|
|
@@ -1422,6 +1429,7 @@ export const UpdateCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1422
1429
|
/** @internal */
|
|
1423
1430
|
export type UpdateCodeExecutionTool$Outbound = {
|
|
1424
1431
|
path?: string | undefined;
|
|
1432
|
+
key?: string | undefined;
|
|
1425
1433
|
display_name?: string | undefined;
|
|
1426
1434
|
description?: string | undefined;
|
|
1427
1435
|
status: string;
|
|
@@ -1436,6 +1444,7 @@ export const UpdateCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
1436
1444
|
UpdateCodeExecutionTool
|
|
1437
1445
|
> = z.object({
|
|
1438
1446
|
path: z.string().optional(),
|
|
1447
|
+
key: z.string().optional(),
|
|
1439
1448
|
displayName: z.string().optional(),
|
|
1440
1449
|
description: z.string().optional(),
|
|
1441
1450
|
status: UpdateToolRequestBodyToolsRequest5Status$outboundSchema.default(
|
|
@@ -1593,12 +1602,14 @@ export const RequestBodyTools$inboundSchema: z.ZodType<
|
|
|
1593
1602
|
z.ZodTypeDef,
|
|
1594
1603
|
unknown
|
|
1595
1604
|
> = z.object({
|
|
1605
|
+
id: z.string().default("01KA8BQBC3GV8SQQ4HVPEFN10A"),
|
|
1596
1606
|
name: z.string(),
|
|
1597
1607
|
description: z.string().optional(),
|
|
1598
1608
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
1599
1609
|
});
|
|
1600
1610
|
/** @internal */
|
|
1601
1611
|
export type RequestBodyTools$Outbound = {
|
|
1612
|
+
id: string;
|
|
1602
1613
|
name: string;
|
|
1603
1614
|
description?: string | undefined;
|
|
1604
1615
|
schema: UpdateToolRequestBodyToolsSchema$Outbound;
|
|
@@ -1610,6 +1621,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1610
1621
|
z.ZodTypeDef,
|
|
1611
1622
|
RequestBodyTools
|
|
1612
1623
|
> = z.object({
|
|
1624
|
+
id: z.string().default("01KA8BQBC3GV8SQQ4HVPEFN10A"),
|
|
1613
1625
|
name: z.string(),
|
|
1614
1626
|
description: z.string().optional(),
|
|
1615
1627
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2830,7 +2842,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2830
2842
|
z.ZodTypeDef,
|
|
2831
2843
|
unknown
|
|
2832
2844
|
> = z.object({
|
|
2833
|
-
_id: z.string().default("
|
|
2845
|
+
_id: z.string().default("tool_01KA8BQBBT8DJ8VJK6H2TA1C41"),
|
|
2834
2846
|
path: z.string(),
|
|
2835
2847
|
key: z.string(),
|
|
2836
2848
|
display_name: z.string().optional(),
|
|
@@ -2884,7 +2896,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2884
2896
|
z.ZodTypeDef,
|
|
2885
2897
|
UpdateToolResponseBody5
|
|
2886
2898
|
> = z.object({
|
|
2887
|
-
id: z.string().default("
|
|
2899
|
+
id: z.string().default("tool_01KA8BQBBT8DJ8VJK6H2TA1C41"),
|
|
2888
2900
|
path: z.string(),
|
|
2889
2901
|
key: z.string(),
|
|
2890
2902
|
displayName: z.string().optional(),
|
|
@@ -3060,12 +3072,14 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
3060
3072
|
z.ZodTypeDef,
|
|
3061
3073
|
unknown
|
|
3062
3074
|
> = z.object({
|
|
3075
|
+
id: z.string().default("01KA8BQBBSTFCHF79QPY7E4V0T"),
|
|
3063
3076
|
name: z.string(),
|
|
3064
3077
|
description: z.string().optional(),
|
|
3065
3078
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
3066
3079
|
});
|
|
3067
3080
|
/** @internal */
|
|
3068
3081
|
export type UpdateToolResponseBodyTools$Outbound = {
|
|
3082
|
+
id: string;
|
|
3069
3083
|
name: string;
|
|
3070
3084
|
description?: string | undefined;
|
|
3071
3085
|
schema: UpdateToolResponseBodyToolsSchema$Outbound;
|
|
@@ -3077,6 +3091,7 @@ export const UpdateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
3077
3091
|
z.ZodTypeDef,
|
|
3078
3092
|
UpdateToolResponseBodyTools
|
|
3079
3093
|
> = z.object({
|
|
3094
|
+
id: z.string().default("01KA8BQBBSTFCHF79QPY7E4V0T"),
|
|
3080
3095
|
name: z.string(),
|
|
3081
3096
|
description: z.string().optional(),
|
|
3082
3097
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -3177,7 +3192,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3177
3192
|
z.ZodTypeDef,
|
|
3178
3193
|
unknown
|
|
3179
3194
|
> = z.object({
|
|
3180
|
-
_id: z.string().default("
|
|
3195
|
+
_id: z.string().default("tool_01KA8BQBBR2QGS0PVGME58F31R"),
|
|
3181
3196
|
path: z.string(),
|
|
3182
3197
|
key: z.string(),
|
|
3183
3198
|
display_name: z.string().optional(),
|
|
@@ -3230,7 +3245,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3230
3245
|
z.ZodTypeDef,
|
|
3231
3246
|
UpdateToolResponseBody4
|
|
3232
3247
|
> = z.object({
|
|
3233
|
-
id: z.string().default("
|
|
3248
|
+
id: z.string().default("tool_01KA8BQBBR2QGS0PVGME58F31R"),
|
|
3234
3249
|
path: z.string(),
|
|
3235
3250
|
key: z.string(),
|
|
3236
3251
|
displayName: z.string().optional(),
|
|
@@ -3605,7 +3620,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3605
3620
|
z.ZodTypeDef,
|
|
3606
3621
|
unknown
|
|
3607
3622
|
> = z.object({
|
|
3608
|
-
_id: z.string().default("
|
|
3623
|
+
_id: z.string().default("tool_01KA8BQBBPEGMX9NEV8DEEWTW0"),
|
|
3609
3624
|
path: z.string(),
|
|
3610
3625
|
key: z.string(),
|
|
3611
3626
|
display_name: z.string().optional(),
|
|
@@ -3658,7 +3673,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3658
3673
|
z.ZodTypeDef,
|
|
3659
3674
|
UpdateToolResponseBody3
|
|
3660
3675
|
> = z.object({
|
|
3661
|
-
id: z.string().default("
|
|
3676
|
+
id: z.string().default("tool_01KA8BQBBPEGMX9NEV8DEEWTW0"),
|
|
3662
3677
|
path: z.string(),
|
|
3663
3678
|
key: z.string(),
|
|
3664
3679
|
displayName: z.string().optional(),
|
|
@@ -3838,7 +3853,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3838
3853
|
z.ZodTypeDef,
|
|
3839
3854
|
unknown
|
|
3840
3855
|
> = z.object({
|
|
3841
|
-
_id: z.string().default("
|
|
3856
|
+
_id: z.string().default("tool_01KA8BQBBN46BDDP9THCNVB2NS"),
|
|
3842
3857
|
path: z.string(),
|
|
3843
3858
|
key: z.string(),
|
|
3844
3859
|
display_name: z.string().optional(),
|
|
@@ -3890,7 +3905,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3890
3905
|
z.ZodTypeDef,
|
|
3891
3906
|
UpdateToolResponseBody2
|
|
3892
3907
|
> = z.object({
|
|
3893
|
-
id: z.string().default("
|
|
3908
|
+
id: z.string().default("tool_01KA8BQBBN46BDDP9THCNVB2NS"),
|
|
3894
3909
|
path: z.string(),
|
|
3895
3910
|
key: z.string(),
|
|
3896
3911
|
displayName: z.string().optional(),
|
|
@@ -4084,7 +4099,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4084
4099
|
z.ZodTypeDef,
|
|
4085
4100
|
unknown
|
|
4086
4101
|
> = z.object({
|
|
4087
|
-
_id: z.string().default("
|
|
4102
|
+
_id: z.string().default("tool_01KA8BQBBKR63J31241PDKQA7V"),
|
|
4088
4103
|
path: z.string(),
|
|
4089
4104
|
key: z.string(),
|
|
4090
4105
|
display_name: z.string().optional(),
|
|
@@ -4135,7 +4150,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4135
4150
|
z.ZodTypeDef,
|
|
4136
4151
|
UpdateToolResponseBody1
|
|
4137
4152
|
> = z.object({
|
|
4138
|
-
id: z.string().default("
|
|
4153
|
+
id: z.string().default("tool_01KA8BQBBKR63J31241PDKQA7V"),
|
|
4139
4154
|
path: z.string(),
|
|
4140
4155
|
key: z.string(),
|
|
4141
4156
|
displayName: z.string().optional(),
|