@orq-ai/node 4.5.0-rc.21 → 4.5.0-rc.22
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/funcs/agentsStream.js +4 -2
- package/funcs/agentsStream.js.map +1 -1
- package/funcs/agentsStreamRun.js +4 -2
- package/funcs/agentsStreamRun.js.map +1 -1
- package/funcs/deploymentsStream.js +4 -2
- package/funcs/deploymentsStream.js.map +1 -1
- package/funcs/filesCreate.js +7 -0
- package/funcs/filesCreate.js.map +1 -1
- package/funcs/routerAudioTranscriptionsCreate.js +7 -0
- package/funcs/routerAudioTranscriptionsCreate.js.map +1 -1
- package/funcs/routerAudioTranslationsCreate.js +7 -0
- package/funcs/routerAudioTranslationsCreate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/config.js.map +1 -1
- package/lib/event-streams.d.ts +5 -0
- package/lib/event-streams.d.ts.map +1 -1
- package/lib/event-streams.js.map +1 -1
- package/lib/matchers.d.ts.map +1 -1
- package/lib/matchers.js +0 -1
- package/lib/matchers.js.map +1 -1
- package/lib/security.d.ts.map +1 -1
- package/lib/security.js +1 -2
- package/lib/security.js.map +1 -1
- package/models/components/partdoneevent.js +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createagentresponserequest.d.ts.map +1 -1
- package/models/operations/createagentresponserequest.js +2 -1
- package/models/operations/createagentresponserequest.js.map +1 -1
- package/models/operations/createchatcompletion.d.ts +15 -2
- package/models/operations/createchatcompletion.d.ts.map +1 -1
- package/models/operations/createchatcompletion.js +3 -1
- package/models/operations/createchatcompletion.js.map +1 -1
- package/models/operations/createcompletion.d.ts +6 -2
- package/models/operations/createcompletion.d.ts.map +1 -1
- package/models/operations/createcompletion.js +2 -1
- package/models/operations/createcompletion.js.map +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createresponse.d.ts.map +1 -1
- package/models/operations/createresponse.js +2 -1
- package/models/operations/createresponse.js.map +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/fileget.js +1 -1
- package/models/operations/filelist.js +1 -1
- package/models/operations/fileupload.js +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatememorystore.d.ts +2 -44
- package/models/operations/updatememorystore.d.ts.map +1 -1
- package/models/operations/updatememorystore.js +2 -46
- package/models/operations/updatememorystore.js.map +1 -1
- package/models/operations/updatetool.d.ts +50 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +54 -9
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- package/src/funcs/agentsStream.ts +4 -1
- package/src/funcs/agentsStreamRun.ts +4 -1
- package/src/funcs/deploymentsStream.ts +4 -1
- package/src/funcs/filesCreate.ts +11 -0
- package/src/funcs/routerAudioTranscriptionsCreate.ts +11 -0
- package/src/funcs/routerAudioTranslationsCreate.ts +11 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/event-streams.ts +10 -1
- package/src/lib/matchers.ts +3 -2
- package/src/lib/security.ts +1 -2
- package/src/models/components/partdoneevent.ts +1 -1
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createagentresponserequest.ts +2 -1
- package/src/models/operations/createchatcompletion.ts +14 -3
- package/src/models/operations/createcompletion.ts +8 -3
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createresponse.ts +2 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/fileget.ts +1 -1
- package/src/models/operations/filelist.ts +1 -1
- package/src/models/operations/fileupload.ts +1 -1
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatememorystore.ts +3 -62
- package/src/models/operations/updatetool.ts +96 -7
|
@@ -79,6 +79,15 @@ export type UpdateToolRequestBodyCodeTool = {
|
|
|
79
79
|
code: string;
|
|
80
80
|
};
|
|
81
81
|
|
|
82
|
+
export const UpdateToolRequestBodyToolsRequestVersionIncrement = {
|
|
83
|
+
Major: "major",
|
|
84
|
+
Minor: "minor",
|
|
85
|
+
Patch: "patch",
|
|
86
|
+
} as const;
|
|
87
|
+
export type UpdateToolRequestBodyToolsRequestVersionIncrement = ClosedEnum<
|
|
88
|
+
typeof UpdateToolRequestBodyToolsRequestVersionIncrement
|
|
89
|
+
>;
|
|
90
|
+
|
|
82
91
|
/**
|
|
83
92
|
* Updates an existing code execution tool configuration.
|
|
84
93
|
*/
|
|
@@ -111,6 +120,9 @@ export type UpdateCodeExecutionTool = {
|
|
|
111
120
|
status?: UpdateToolRequestBodyToolsRequest5Status | undefined;
|
|
112
121
|
type: "code";
|
|
113
122
|
codeTool?: UpdateToolRequestBodyCodeTool | undefined;
|
|
123
|
+
versionIncrement?:
|
|
124
|
+
| UpdateToolRequestBodyToolsRequestVersionIncrement
|
|
125
|
+
| undefined;
|
|
114
126
|
};
|
|
115
127
|
|
|
116
128
|
/**
|
|
@@ -187,6 +199,15 @@ export type UpdateToolRequestBodyMcp = {
|
|
|
187
199
|
connectionType?: UpdateToolRequestBodyConnectionType | undefined;
|
|
188
200
|
};
|
|
189
201
|
|
|
202
|
+
export const UpdateToolRequestBodyToolsVersionIncrement = {
|
|
203
|
+
Major: "major",
|
|
204
|
+
Minor: "minor",
|
|
205
|
+
Patch: "patch",
|
|
206
|
+
} as const;
|
|
207
|
+
export type UpdateToolRequestBodyToolsVersionIncrement = ClosedEnum<
|
|
208
|
+
typeof UpdateToolRequestBodyToolsVersionIncrement
|
|
209
|
+
>;
|
|
210
|
+
|
|
190
211
|
/**
|
|
191
212
|
* Updates an existing MCP tool configuration.
|
|
192
213
|
*/
|
|
@@ -219,6 +240,7 @@ export type UpdateMCPTool = {
|
|
|
219
240
|
status?: UpdateToolRequestBodyToolsRequest4Status | undefined;
|
|
220
241
|
type: "mcp";
|
|
221
242
|
mcp?: UpdateToolRequestBodyMcp | undefined;
|
|
243
|
+
versionIncrement?: UpdateToolRequestBodyToolsVersionIncrement | undefined;
|
|
222
244
|
};
|
|
223
245
|
|
|
224
246
|
/**
|
|
@@ -332,6 +354,15 @@ export type UpdateToolRequestBodyHttp = {
|
|
|
332
354
|
arguments?: { [k: string]: UpdateToolRequestBodyArguments } | undefined;
|
|
333
355
|
};
|
|
334
356
|
|
|
357
|
+
export const UpdateToolRequestBodyVersionIncrement = {
|
|
358
|
+
Major: "major",
|
|
359
|
+
Minor: "minor",
|
|
360
|
+
Patch: "patch",
|
|
361
|
+
} as const;
|
|
362
|
+
export type UpdateToolRequestBodyVersionIncrement = ClosedEnum<
|
|
363
|
+
typeof UpdateToolRequestBodyVersionIncrement
|
|
364
|
+
>;
|
|
365
|
+
|
|
335
366
|
/**
|
|
336
367
|
* Updates an existing HTTP tool configuration.
|
|
337
368
|
*/
|
|
@@ -364,6 +395,7 @@ export type UpdateHTTPTool = {
|
|
|
364
395
|
status?: UpdateToolRequestBodyToolsRequestStatus | undefined;
|
|
365
396
|
type: "http";
|
|
366
397
|
http?: UpdateToolRequestBodyHttp | undefined;
|
|
398
|
+
versionIncrement?: UpdateToolRequestBodyVersionIncrement | undefined;
|
|
367
399
|
};
|
|
368
400
|
|
|
369
401
|
/**
|
|
@@ -420,6 +452,15 @@ export type UpdateToolRequestBodyJsonSchema = {
|
|
|
420
452
|
strict?: boolean | undefined;
|
|
421
453
|
};
|
|
422
454
|
|
|
455
|
+
export const RequestBodyVersionIncrement = {
|
|
456
|
+
Major: "major",
|
|
457
|
+
Minor: "minor",
|
|
458
|
+
Patch: "patch",
|
|
459
|
+
} as const;
|
|
460
|
+
export type RequestBodyVersionIncrement = ClosedEnum<
|
|
461
|
+
typeof RequestBodyVersionIncrement
|
|
462
|
+
>;
|
|
463
|
+
|
|
423
464
|
/**
|
|
424
465
|
* Updates an existing JSON Schema tool configuration.
|
|
425
466
|
*/
|
|
@@ -452,6 +493,7 @@ export type UpdateJSONSchemaTool = {
|
|
|
452
493
|
status?: UpdateToolRequestBodyToolsStatus | undefined;
|
|
453
494
|
type: "json_schema";
|
|
454
495
|
jsonSchema?: UpdateToolRequestBodyJsonSchema | undefined;
|
|
496
|
+
versionIncrement?: RequestBodyVersionIncrement | undefined;
|
|
455
497
|
};
|
|
456
498
|
|
|
457
499
|
/**
|
|
@@ -521,6 +563,13 @@ export type UpdateToolRequestBodyFunction = {
|
|
|
521
563
|
parameters?: UpdateToolRequestBodyParameters | undefined;
|
|
522
564
|
};
|
|
523
565
|
|
|
566
|
+
export const VersionIncrement = {
|
|
567
|
+
Major: "major",
|
|
568
|
+
Minor: "minor",
|
|
569
|
+
Patch: "patch",
|
|
570
|
+
} as const;
|
|
571
|
+
export type VersionIncrement = ClosedEnum<typeof VersionIncrement>;
|
|
572
|
+
|
|
524
573
|
/**
|
|
525
574
|
* Updates an existing function tool configuration.
|
|
526
575
|
*/
|
|
@@ -553,6 +602,7 @@ export type UpdateFunctionTool = {
|
|
|
553
602
|
status?: UpdateToolRequestBodyStatus | undefined;
|
|
554
603
|
type: "function";
|
|
555
604
|
function?: UpdateToolRequestBodyFunction | undefined;
|
|
605
|
+
versionIncrement?: VersionIncrement | undefined;
|
|
556
606
|
};
|
|
557
607
|
|
|
558
608
|
/**
|
|
@@ -1282,6 +1332,11 @@ export function updateToolRequestBodyCodeToolToJSON(
|
|
|
1282
1332
|
);
|
|
1283
1333
|
}
|
|
1284
1334
|
|
|
1335
|
+
/** @internal */
|
|
1336
|
+
export const UpdateToolRequestBodyToolsRequestVersionIncrement$outboundSchema:
|
|
1337
|
+
z.ZodNativeEnum<typeof UpdateToolRequestBodyToolsRequestVersionIncrement> = z
|
|
1338
|
+
.nativeEnum(UpdateToolRequestBodyToolsRequestVersionIncrement);
|
|
1339
|
+
|
|
1285
1340
|
/** @internal */
|
|
1286
1341
|
export type UpdateCodeExecutionTool$Outbound = {
|
|
1287
1342
|
path?: string | undefined;
|
|
@@ -1291,6 +1346,7 @@ export type UpdateCodeExecutionTool$Outbound = {
|
|
|
1291
1346
|
status: string;
|
|
1292
1347
|
type: "code";
|
|
1293
1348
|
code_tool?: UpdateToolRequestBodyCodeTool$Outbound | undefined;
|
|
1349
|
+
versionIncrement?: string | undefined;
|
|
1294
1350
|
};
|
|
1295
1351
|
|
|
1296
1352
|
/** @internal */
|
|
@@ -1309,6 +1365,8 @@ export const UpdateCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
1309
1365
|
type: z.literal("code"),
|
|
1310
1366
|
codeTool: z.lazy(() => UpdateToolRequestBodyCodeTool$outboundSchema)
|
|
1311
1367
|
.optional(),
|
|
1368
|
+
versionIncrement:
|
|
1369
|
+
UpdateToolRequestBodyToolsRequestVersionIncrement$outboundSchema.optional(),
|
|
1312
1370
|
}).transform((v) => {
|
|
1313
1371
|
return remap$(v, {
|
|
1314
1372
|
displayName: "display_name",
|
|
@@ -1402,7 +1460,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1402
1460
|
z.ZodTypeDef,
|
|
1403
1461
|
RequestBodyTools
|
|
1404
1462
|
> = z.object({
|
|
1405
|
-
id: z.string().default("
|
|
1463
|
+
id: z.string().default("01KJSC9RYSR0ZJHYT2FP76FQFC"),
|
|
1406
1464
|
name: z.string(),
|
|
1407
1465
|
description: z.string().optional(),
|
|
1408
1466
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -1456,6 +1514,11 @@ export function updateToolRequestBodyMcpToJSON(
|
|
|
1456
1514
|
);
|
|
1457
1515
|
}
|
|
1458
1516
|
|
|
1517
|
+
/** @internal */
|
|
1518
|
+
export const UpdateToolRequestBodyToolsVersionIncrement$outboundSchema:
|
|
1519
|
+
z.ZodNativeEnum<typeof UpdateToolRequestBodyToolsVersionIncrement> = z
|
|
1520
|
+
.nativeEnum(UpdateToolRequestBodyToolsVersionIncrement);
|
|
1521
|
+
|
|
1459
1522
|
/** @internal */
|
|
1460
1523
|
export type UpdateMCPTool$Outbound = {
|
|
1461
1524
|
path?: string | undefined;
|
|
@@ -1465,6 +1528,7 @@ export type UpdateMCPTool$Outbound = {
|
|
|
1465
1528
|
status: string;
|
|
1466
1529
|
type: "mcp";
|
|
1467
1530
|
mcp?: UpdateToolRequestBodyMcp$Outbound | undefined;
|
|
1531
|
+
versionIncrement?: string | undefined;
|
|
1468
1532
|
};
|
|
1469
1533
|
|
|
1470
1534
|
/** @internal */
|
|
@@ -1482,6 +1546,8 @@ export const UpdateMCPTool$outboundSchema: z.ZodType<
|
|
|
1482
1546
|
),
|
|
1483
1547
|
type: z.literal("mcp"),
|
|
1484
1548
|
mcp: z.lazy(() => UpdateToolRequestBodyMcp$outboundSchema).optional(),
|
|
1549
|
+
versionIncrement: UpdateToolRequestBodyToolsVersionIncrement$outboundSchema
|
|
1550
|
+
.optional(),
|
|
1485
1551
|
}).transform((v) => {
|
|
1486
1552
|
return remap$(v, {
|
|
1487
1553
|
displayName: "display_name",
|
|
@@ -1672,6 +1738,12 @@ export function updateToolRequestBodyHttpToJSON(
|
|
|
1672
1738
|
);
|
|
1673
1739
|
}
|
|
1674
1740
|
|
|
1741
|
+
/** @internal */
|
|
1742
|
+
export const UpdateToolRequestBodyVersionIncrement$outboundSchema:
|
|
1743
|
+
z.ZodNativeEnum<typeof UpdateToolRequestBodyVersionIncrement> = z.nativeEnum(
|
|
1744
|
+
UpdateToolRequestBodyVersionIncrement,
|
|
1745
|
+
);
|
|
1746
|
+
|
|
1675
1747
|
/** @internal */
|
|
1676
1748
|
export type UpdateHTTPTool$Outbound = {
|
|
1677
1749
|
path?: string | undefined;
|
|
@@ -1681,6 +1753,7 @@ export type UpdateHTTPTool$Outbound = {
|
|
|
1681
1753
|
status: string;
|
|
1682
1754
|
type: "http";
|
|
1683
1755
|
http?: UpdateToolRequestBodyHttp$Outbound | undefined;
|
|
1756
|
+
versionIncrement?: string | undefined;
|
|
1684
1757
|
};
|
|
1685
1758
|
|
|
1686
1759
|
/** @internal */
|
|
@@ -1698,6 +1771,8 @@ export const UpdateHTTPTool$outboundSchema: z.ZodType<
|
|
|
1698
1771
|
),
|
|
1699
1772
|
type: z.literal("http"),
|
|
1700
1773
|
http: z.lazy(() => UpdateToolRequestBodyHttp$outboundSchema).optional(),
|
|
1774
|
+
versionIncrement: UpdateToolRequestBodyVersionIncrement$outboundSchema
|
|
1775
|
+
.optional(),
|
|
1701
1776
|
}).transform((v) => {
|
|
1702
1777
|
return remap$(v, {
|
|
1703
1778
|
displayName: "display_name",
|
|
@@ -1780,6 +1855,11 @@ export function updateToolRequestBodyJsonSchemaToJSON(
|
|
|
1780
1855
|
);
|
|
1781
1856
|
}
|
|
1782
1857
|
|
|
1858
|
+
/** @internal */
|
|
1859
|
+
export const RequestBodyVersionIncrement$outboundSchema: z.ZodNativeEnum<
|
|
1860
|
+
typeof RequestBodyVersionIncrement
|
|
1861
|
+
> = z.nativeEnum(RequestBodyVersionIncrement);
|
|
1862
|
+
|
|
1783
1863
|
/** @internal */
|
|
1784
1864
|
export type UpdateJSONSchemaTool$Outbound = {
|
|
1785
1865
|
path?: string | undefined;
|
|
@@ -1789,6 +1869,7 @@ export type UpdateJSONSchemaTool$Outbound = {
|
|
|
1789
1869
|
status: string;
|
|
1790
1870
|
type: "json_schema";
|
|
1791
1871
|
json_schema?: UpdateToolRequestBodyJsonSchema$Outbound | undefined;
|
|
1872
|
+
versionIncrement?: string | undefined;
|
|
1792
1873
|
};
|
|
1793
1874
|
|
|
1794
1875
|
/** @internal */
|
|
@@ -1805,6 +1886,7 @@ export const UpdateJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1805
1886
|
type: z.literal("json_schema"),
|
|
1806
1887
|
jsonSchema: z.lazy(() => UpdateToolRequestBodyJsonSchema$outboundSchema)
|
|
1807
1888
|
.optional(),
|
|
1889
|
+
versionIncrement: RequestBodyVersionIncrement$outboundSchema.optional(),
|
|
1808
1890
|
}).transform((v) => {
|
|
1809
1891
|
return remap$(v, {
|
|
1810
1892
|
displayName: "display_name",
|
|
@@ -1899,6 +1981,11 @@ export function updateToolRequestBodyFunctionToJSON(
|
|
|
1899
1981
|
);
|
|
1900
1982
|
}
|
|
1901
1983
|
|
|
1984
|
+
/** @internal */
|
|
1985
|
+
export const VersionIncrement$outboundSchema: z.ZodNativeEnum<
|
|
1986
|
+
typeof VersionIncrement
|
|
1987
|
+
> = z.nativeEnum(VersionIncrement);
|
|
1988
|
+
|
|
1902
1989
|
/** @internal */
|
|
1903
1990
|
export type UpdateFunctionTool$Outbound = {
|
|
1904
1991
|
path?: string | undefined;
|
|
@@ -1908,6 +1995,7 @@ export type UpdateFunctionTool$Outbound = {
|
|
|
1908
1995
|
status: string;
|
|
1909
1996
|
type: "function";
|
|
1910
1997
|
function?: UpdateToolRequestBodyFunction$Outbound | undefined;
|
|
1998
|
+
versionIncrement?: string | undefined;
|
|
1911
1999
|
};
|
|
1912
2000
|
|
|
1913
2001
|
/** @internal */
|
|
@@ -1924,6 +2012,7 @@ export const UpdateFunctionTool$outboundSchema: z.ZodType<
|
|
|
1924
2012
|
type: z.literal("function"),
|
|
1925
2013
|
function: z.lazy(() => UpdateToolRequestBodyFunction$outboundSchema)
|
|
1926
2014
|
.optional(),
|
|
2015
|
+
versionIncrement: VersionIncrement$outboundSchema.optional(),
|
|
1927
2016
|
}).transform((v) => {
|
|
1928
2017
|
return remap$(v, {
|
|
1929
2018
|
displayName: "display_name",
|
|
@@ -2080,7 +2169,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2080
2169
|
z.ZodTypeDef,
|
|
2081
2170
|
unknown
|
|
2082
2171
|
> = z.object({
|
|
2083
|
-
_id: z.string().default("
|
|
2172
|
+
_id: z.string().default("tool_01KJSC9RY7PMPW6WHW6EX2W1SA"),
|
|
2084
2173
|
path: z.string(),
|
|
2085
2174
|
key: z.string(),
|
|
2086
2175
|
display_name: z.string().optional(),
|
|
@@ -2185,7 +2274,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2185
2274
|
z.ZodTypeDef,
|
|
2186
2275
|
unknown
|
|
2187
2276
|
> = z.object({
|
|
2188
|
-
id: z.string().default("
|
|
2277
|
+
id: z.string().default("01KJSC9RY6NPCJ9BKD1ZJR9R93"),
|
|
2189
2278
|
name: z.string(),
|
|
2190
2279
|
description: z.string().optional(),
|
|
2191
2280
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2241,7 +2330,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2241
2330
|
z.ZodTypeDef,
|
|
2242
2331
|
unknown
|
|
2243
2332
|
> = z.object({
|
|
2244
|
-
_id: z.string().default("
|
|
2333
|
+
_id: z.string().default("tool_01KJSC9RY4E9WNECBCH3S67Q53"),
|
|
2245
2334
|
path: z.string(),
|
|
2246
2335
|
key: z.string(),
|
|
2247
2336
|
display_name: z.string().optional(),
|
|
@@ -2432,7 +2521,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2432
2521
|
z.ZodTypeDef,
|
|
2433
2522
|
unknown
|
|
2434
2523
|
> = z.object({
|
|
2435
|
-
_id: z.string().default("
|
|
2524
|
+
_id: z.string().default("tool_01KJSC9RY27FAEE4M10597RMBC"),
|
|
2436
2525
|
path: z.string(),
|
|
2437
2526
|
key: z.string(),
|
|
2438
2527
|
display_name: z.string().optional(),
|
|
@@ -2529,7 +2618,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2529
2618
|
z.ZodTypeDef,
|
|
2530
2619
|
unknown
|
|
2531
2620
|
> = z.object({
|
|
2532
|
-
_id: z.string().default("
|
|
2621
|
+
_id: z.string().default("tool_01KJSC9RY0K1GNQ8HMH1FFFGHM"),
|
|
2533
2622
|
path: z.string(),
|
|
2534
2623
|
key: z.string(),
|
|
2535
2624
|
display_name: z.string().optional(),
|
|
@@ -2634,7 +2723,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2634
2723
|
z.ZodTypeDef,
|
|
2635
2724
|
unknown
|
|
2636
2725
|
> = z.object({
|
|
2637
|
-
_id: z.string().default("
|
|
2726
|
+
_id: z.string().default("tool_01KJSC9RXXA4YRSHDJXFE7M5MY"),
|
|
2638
2727
|
path: z.string(),
|
|
2639
2728
|
key: z.string(),
|
|
2640
2729
|
display_name: z.string().optional(),
|