@orq-ai/node 3.4.0-rc.29 → 3.4.0-rc.31
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 +72 -82
- package/bin/mcp-server.js.map +27 -27
- package/docs/sdks/knowledge/README.md +22 -0
- 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/bulkcreatedatapoints.js +2 -2
- package/models/operations/createchunk.d.ts +15 -43
- package/models/operations/createchunk.d.ts.map +1 -1
- package/models/operations/createchunk.js +18 -46
- package/models/operations/createchunk.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createtool.js +6 -6
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +6 -6
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updatetool.js +6 -6
- package/package.json +1 -1
- 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/bulkcreatedatapoints.ts +2 -2
- package/src/models/operations/createchunk.ts +31 -89
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updatetool.ts +6 -6
|
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-04-
|
|
199
|
+
"2025-04-16T14:25:22.177Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
230
230
|
bytes: z.number(),
|
|
231
231
|
fileName: z.string(),
|
|
232
232
|
workspaceId: z.string(),
|
|
233
|
-
created: z.date().default(() => new Date("2025-04-
|
|
233
|
+
created: z.date().default(() => new Date("2025-04-16T14:25:22.177Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -247,7 +247,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
247
247
|
file_name: z.string(),
|
|
248
248
|
workspace_id: z.string(),
|
|
249
249
|
created: z.string().datetime({ offset: true }).default(
|
|
250
|
-
"2025-04-
|
|
250
|
+
"2025-04-16T14:25:22.177Z",
|
|
251
251
|
).transform(v => new Date(v)),
|
|
252
252
|
}).transform((v) => {
|
|
253
253
|
return remap$(v, {
|
|
@@ -281,7 +281,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
281
281
|
bytes: z.number(),
|
|
282
282
|
fileName: z.string(),
|
|
283
283
|
workspaceId: z.string(),
|
|
284
|
-
created: z.date().default(() => new Date("2025-04-
|
|
284
|
+
created: z.date().default(() => new Date("2025-04-16T14:25:22.177Z"))
|
|
285
285
|
.transform(v => v.toISOString()),
|
|
286
286
|
}).transform((v) => {
|
|
287
287
|
return remap$(v, {
|
|
@@ -735,7 +735,7 @@ export function dataHttpFromJSON(
|
|
|
735
735
|
/** @internal */
|
|
736
736
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
737
737
|
.object({
|
|
738
|
-
_id: z.string().default("
|
|
738
|
+
_id: z.string().default("tool_01JRZFV2WZGP3FGE7B1FYM1X0A"),
|
|
739
739
|
path: z.string(),
|
|
740
740
|
key: z.string(),
|
|
741
741
|
description: z.string(),
|
|
@@ -784,7 +784,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
784
784
|
z.ZodTypeDef,
|
|
785
785
|
Data3
|
|
786
786
|
> = z.object({
|
|
787
|
-
id: z.string().default("
|
|
787
|
+
id: z.string().default("tool_01JRZFV2WZGP3FGE7B1FYM1X0A"),
|
|
788
788
|
path: z.string(),
|
|
789
789
|
key: z.string(),
|
|
790
790
|
description: z.string(),
|
|
@@ -938,7 +938,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
938
938
|
/** @internal */
|
|
939
939
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
940
940
|
.object({
|
|
941
|
-
_id: z.string().default("
|
|
941
|
+
_id: z.string().default("tool_01JRZFV2WZGX91P8SV0Q34ZTHS"),
|
|
942
942
|
path: z.string(),
|
|
943
943
|
key: z.string(),
|
|
944
944
|
description: z.string(),
|
|
@@ -988,7 +988,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
988
988
|
z.ZodTypeDef,
|
|
989
989
|
Data2
|
|
990
990
|
> = z.object({
|
|
991
|
-
id: z.string().default("
|
|
991
|
+
id: z.string().default("tool_01JRZFV2WZGX91P8SV0Q34ZTHS"),
|
|
992
992
|
path: z.string(),
|
|
993
993
|
key: z.string(),
|
|
994
994
|
description: z.string(),
|
|
@@ -1143,7 +1143,7 @@ export function dataFunctionFromJSON(
|
|
|
1143
1143
|
/** @internal */
|
|
1144
1144
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
1145
1145
|
.object({
|
|
1146
|
-
_id: z.string().default("
|
|
1146
|
+
_id: z.string().default("tool_01JRZFV2WYMXX19BZDCJWYMR2H"),
|
|
1147
1147
|
path: z.string(),
|
|
1148
1148
|
key: z.string(),
|
|
1149
1149
|
description: z.string(),
|
|
@@ -1192,7 +1192,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
1192
1192
|
z.ZodTypeDef,
|
|
1193
1193
|
Data1
|
|
1194
1194
|
> = z.object({
|
|
1195
|
-
id: z.string().default("
|
|
1195
|
+
id: z.string().default("tool_01JRZFV2WYMXX19BZDCJWYMR2H"),
|
|
1196
1196
|
path: z.string(),
|
|
1197
1197
|
key: z.string(),
|
|
1198
1198
|
description: z.string(),
|
|
@@ -912,7 +912,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
912
912
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
913
913
|
.optional(),
|
|
914
914
|
updated: z.string().datetime({ offset: true }).default(
|
|
915
|
-
"2025-04-
|
|
915
|
+
"2025-04-16T14:25:19.566Z",
|
|
916
916
|
).transform(v => new Date(v)),
|
|
917
917
|
}).transform((v) => {
|
|
918
918
|
return remap$(v, {
|
|
@@ -955,7 +955,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
955
955
|
createdById: z.string().optional(),
|
|
956
956
|
updatedById: z.string().optional(),
|
|
957
957
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
958
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
958
|
+
updated: z.date().default(() => new Date("2025-04-16T14:25:19.566Z"))
|
|
959
959
|
.transform(v => v.toISOString()),
|
|
960
960
|
}).transform((v) => {
|
|
961
961
|
return remap$(v, {
|
|
@@ -253,7 +253,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
253
253
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
254
254
|
.optional(),
|
|
255
255
|
updated: z.string().datetime({ offset: true }).default(
|
|
256
|
-
"2025-04-
|
|
256
|
+
"2025-04-16T14:25:19.566Z",
|
|
257
257
|
).transform(v => new Date(v)),
|
|
258
258
|
}).transform((v) => {
|
|
259
259
|
return remap$(v, {
|
|
@@ -293,7 +293,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
|
|
|
293
293
|
updatedById: z.string().optional(),
|
|
294
294
|
metadata: z.lazy(() => ListDatasetsMetadata$outboundSchema),
|
|
295
295
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
296
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-04-16T14:25:19.566Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
unknown
|
|
280
280
|
> = z.object({
|
|
281
|
-
_id: z.string().default("
|
|
281
|
+
_id: z.string().default("01JRZFV2YEE0ESTEBENQ58CMCE"),
|
|
282
282
|
display_name: z.string(),
|
|
283
283
|
description: z.string().optional(),
|
|
284
284
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -322,7 +322,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
322
322
|
z.ZodTypeDef,
|
|
323
323
|
ListDatasourcesData
|
|
324
324
|
> = z.object({
|
|
325
|
-
id: z.string().default("
|
|
325
|
+
id: z.string().default("01JRZFV2YEE0ESTEBENQ58CMCE"),
|
|
326
326
|
displayName: z.string(),
|
|
327
327
|
description: z.string().optional(),
|
|
328
328
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -834,7 +834,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
834
834
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
835
835
|
.optional(),
|
|
836
836
|
updated: z.string().datetime({ offset: true }).default(
|
|
837
|
-
"2025-04-
|
|
837
|
+
"2025-04-16T14:25:19.566Z",
|
|
838
838
|
).transform(v => new Date(v)),
|
|
839
839
|
}).transform((v) => {
|
|
840
840
|
return remap$(v, {
|
|
@@ -877,7 +877,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
877
877
|
createdById: z.string().optional(),
|
|
878
878
|
updatedById: z.string().optional(),
|
|
879
879
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
880
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
880
|
+
updated: z.date().default(() => new Date("2025-04-16T14:25:19.566Z"))
|
|
881
881
|
.transform(v => v.toISOString()),
|
|
882
882
|
}).transform((v) => {
|
|
883
883
|
return remap$(v, {
|
|
@@ -201,7 +201,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
201
201
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
202
202
|
.optional(),
|
|
203
203
|
updated: z.string().datetime({ offset: true }).default(
|
|
204
|
-
"2025-04-
|
|
204
|
+
"2025-04-16T14:25:19.566Z",
|
|
205
205
|
).transform(v => new Date(v)),
|
|
206
206
|
}).transform((v) => {
|
|
207
207
|
return remap$(v, {
|
|
@@ -241,7 +241,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
241
241
|
updatedById: z.string().optional(),
|
|
242
242
|
metadata: z.lazy(() => RetrieveDatasetMetadata$outboundSchema),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-04-16T14:25:19.566Z"))
|
|
245
245
|
.transform(v => v.toISOString()),
|
|
246
246
|
}).transform((v) => {
|
|
247
247
|
return remap$(v, {
|
|
@@ -172,7 +172,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
172
172
|
z.ZodTypeDef,
|
|
173
173
|
unknown
|
|
174
174
|
> = z.object({
|
|
175
|
-
_id: z.string().default("
|
|
175
|
+
_id: z.string().default("01JRZFV2YFAZ05WXAA9JQBSD3T"),
|
|
176
176
|
display_name: z.string(),
|
|
177
177
|
description: z.string().optional(),
|
|
178
178
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -216,7 +216,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
216
216
|
z.ZodTypeDef,
|
|
217
217
|
RetrieveDatasourceResponseBody
|
|
218
218
|
> = z.object({
|
|
219
|
-
id: z.string().default("
|
|
219
|
+
id: z.string().default("01JRZFV2YFAZ05WXAA9JQBSD3T"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -742,7 +742,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
742
742
|
z.ZodTypeDef,
|
|
743
743
|
unknown
|
|
744
744
|
> = z.object({
|
|
745
|
-
_id: z.string().default("
|
|
745
|
+
_id: z.string().default("tool_01JRZFV2X8ZHJJK1YYC2FBR99S"),
|
|
746
746
|
path: z.string(),
|
|
747
747
|
key: z.string(),
|
|
748
748
|
description: z.string(),
|
|
@@ -791,7 +791,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
791
791
|
z.ZodTypeDef,
|
|
792
792
|
RetrieveToolResponseBody3
|
|
793
793
|
> = z.object({
|
|
794
|
-
id: z.string().default("
|
|
794
|
+
id: z.string().default("tool_01JRZFV2X8ZHJJK1YYC2FBR99S"),
|
|
795
795
|
path: z.string(),
|
|
796
796
|
key: z.string(),
|
|
797
797
|
description: z.string(),
|
|
@@ -965,7 +965,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
965
965
|
z.ZodTypeDef,
|
|
966
966
|
unknown
|
|
967
967
|
> = z.object({
|
|
968
|
-
_id: z.string().default("
|
|
968
|
+
_id: z.string().default("tool_01JRZFV2X7KCEE5EKP8FKKDJCA"),
|
|
969
969
|
path: z.string(),
|
|
970
970
|
key: z.string(),
|
|
971
971
|
description: z.string(),
|
|
@@ -1015,7 +1015,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1015
1015
|
z.ZodTypeDef,
|
|
1016
1016
|
RetrieveToolResponseBody2
|
|
1017
1017
|
> = z.object({
|
|
1018
|
-
id: z.string().default("
|
|
1018
|
+
id: z.string().default("tool_01JRZFV2X7KCEE5EKP8FKKDJCA"),
|
|
1019
1019
|
path: z.string(),
|
|
1020
1020
|
key: z.string(),
|
|
1021
1021
|
description: z.string(),
|
|
@@ -1185,7 +1185,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1185
1185
|
z.ZodTypeDef,
|
|
1186
1186
|
unknown
|
|
1187
1187
|
> = z.object({
|
|
1188
|
-
_id: z.string().default("
|
|
1188
|
+
_id: z.string().default("tool_01JRZFV2X7WXPGF4SFZC6NP1XX"),
|
|
1189
1189
|
path: z.string(),
|
|
1190
1190
|
key: z.string(),
|
|
1191
1191
|
description: z.string(),
|
|
@@ -1234,7 +1234,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1234
1234
|
z.ZodTypeDef,
|
|
1235
1235
|
RetrieveToolResponseBody1
|
|
1236
1236
|
> = z.object({
|
|
1237
|
-
id: z.string().default("
|
|
1237
|
+
id: z.string().default("tool_01JRZFV2X7WXPGF4SFZC6NP1XX"),
|
|
1238
1238
|
path: z.string(),
|
|
1239
1239
|
key: z.string(),
|
|
1240
1240
|
description: z.string(),
|
|
@@ -1638,7 +1638,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
1638
1638
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1639
1639
|
.optional(),
|
|
1640
1640
|
updated: z.string().datetime({ offset: true }).default(
|
|
1641
|
-
"2025-04-
|
|
1641
|
+
"2025-04-16T14:25:19.566Z",
|
|
1642
1642
|
).transform(v => new Date(v)),
|
|
1643
1643
|
}).transform((v) => {
|
|
1644
1644
|
return remap$(v, {
|
|
@@ -1682,7 +1682,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
1682
1682
|
createdById: z.string().optional(),
|
|
1683
1683
|
updatedById: z.string().optional(),
|
|
1684
1684
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1685
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
1685
|
+
updated: z.date().default(() => new Date("2025-04-16T14:25:19.566Z"))
|
|
1686
1686
|
.transform(v => v.toISOString()),
|
|
1687
1687
|
}).transform((v) => {
|
|
1688
1688
|
return remap$(v, {
|
|
@@ -302,7 +302,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
302
302
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
303
303
|
.optional(),
|
|
304
304
|
updated: z.string().datetime({ offset: true }).default(
|
|
305
|
-
"2025-04-
|
|
305
|
+
"2025-04-16T14:25:19.566Z",
|
|
306
306
|
).transform(v => new Date(v)),
|
|
307
307
|
}).transform((v) => {
|
|
308
308
|
return remap$(v, {
|
|
@@ -347,7 +347,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
347
347
|
parentId: z.string().optional(),
|
|
348
348
|
version: z.string().optional(),
|
|
349
349
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
350
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-04-16T14:25:19.566Z"))
|
|
351
351
|
.transform(v => v.toISOString()),
|
|
352
352
|
}).transform((v) => {
|
|
353
353
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("01JRZFV2YHYE4S0Z0NE3DPJ26S"),
|
|
248
248
|
display_name: z.string(),
|
|
249
249
|
description: z.string().optional(),
|
|
250
250
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -288,7 +288,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
288
288
|
z.ZodTypeDef,
|
|
289
289
|
UpdateDatasourceResponseBody
|
|
290
290
|
> = z.object({
|
|
291
|
-
id: z.string().default("
|
|
291
|
+
id: z.string().default("01JRZFV2YHYE4S0Z0NE3DPJ26S"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -1860,7 +1860,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1860
1860
|
z.ZodTypeDef,
|
|
1861
1861
|
unknown
|
|
1862
1862
|
> = z.object({
|
|
1863
|
-
_id: z.string().default("
|
|
1863
|
+
_id: z.string().default("tool_01JRZFV2X5MS3ZAXRJ1C62Q7RK"),
|
|
1864
1864
|
path: z.string(),
|
|
1865
1865
|
key: z.string(),
|
|
1866
1866
|
description: z.string(),
|
|
@@ -1909,7 +1909,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1909
1909
|
z.ZodTypeDef,
|
|
1910
1910
|
UpdateToolResponseBody3
|
|
1911
1911
|
> = z.object({
|
|
1912
|
-
id: z.string().default("
|
|
1912
|
+
id: z.string().default("tool_01JRZFV2X5MS3ZAXRJ1C62Q7RK"),
|
|
1913
1913
|
path: z.string(),
|
|
1914
1914
|
key: z.string(),
|
|
1915
1915
|
description: z.string(),
|
|
@@ -2079,7 +2079,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
2079
2079
|
z.ZodTypeDef,
|
|
2080
2080
|
unknown
|
|
2081
2081
|
> = z.object({
|
|
2082
|
-
_id: z.string().default("
|
|
2082
|
+
_id: z.string().default("tool_01JRZFV2X45750Z5CQ8Y4N720B"),
|
|
2083
2083
|
path: z.string(),
|
|
2084
2084
|
key: z.string(),
|
|
2085
2085
|
description: z.string(),
|
|
@@ -2129,7 +2129,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2129
2129
|
z.ZodTypeDef,
|
|
2130
2130
|
UpdateToolResponseBody2
|
|
2131
2131
|
> = z.object({
|
|
2132
|
-
id: z.string().default("
|
|
2132
|
+
id: z.string().default("tool_01JRZFV2X45750Z5CQ8Y4N720B"),
|
|
2133
2133
|
path: z.string(),
|
|
2134
2134
|
key: z.string(),
|
|
2135
2135
|
description: z.string(),
|
|
@@ -2299,7 +2299,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2299
2299
|
z.ZodTypeDef,
|
|
2300
2300
|
unknown
|
|
2301
2301
|
> = z.object({
|
|
2302
|
-
_id: z.string().default("
|
|
2302
|
+
_id: z.string().default("tool_01JRZFV2X3GQR59WWSFH7XWY7P"),
|
|
2303
2303
|
path: z.string(),
|
|
2304
2304
|
key: z.string(),
|
|
2305
2305
|
description: z.string(),
|
|
@@ -2348,7 +2348,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2348
2348
|
z.ZodTypeDef,
|
|
2349
2349
|
UpdateToolResponseBody1
|
|
2350
2350
|
> = z.object({
|
|
2351
|
-
id: z.string().default("
|
|
2351
|
+
id: z.string().default("tool_01JRZFV2X3GQR59WWSFH7XWY7P"),
|
|
2352
2352
|
path: z.string(),
|
|
2353
2353
|
key: z.string(),
|
|
2354
2354
|
description: z.string(),
|