@orq-ai/node 3.13.8 → 3.13.10
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 +215 -229
- 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 +2 -2
- package/lib/config.js +2 -2
- package/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/mcp-server.js.map +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/server.js.map +1 -1
- package/models/components/deployments.d.ts +0 -6
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +0 -2
- package/models/components/deployments.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.d.ts +0 -6
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +2 -4
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/deploymentcreatemetric.d.ts +0 -6
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +0 -2
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +0 -6
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +0 -2
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentstream.d.ts +0 -6
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +0 -2
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.js +2 -2
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.d.ts +0 -3
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +2 -3
- package/models/operations/listdatasetdatapoints.js.map +1 -1
- 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.d.ts +0 -3
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +2 -3
- package/models/operations/retrievedatapoint.js.map +1 -1
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.d.ts +0 -6
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +2 -4
- package/models/operations/updatedatapoint.js.map +1 -1
- 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/packages/orq-rc/docs/sdks/knowledge/README.md +6 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +0 -2
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -10
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +236 -201
- package/packages/orq-rc/src/models/operations/createknowledge.ts +1231 -275
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/createprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +192 -116
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +0 -2
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +9 -3
- package/packages/orq-rc/src/models/operations/getalltools.ts +170 -121
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +157 -143
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +912 -166
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -3
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -9
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +755 -150
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -9
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/runagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +49 -62
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -10
- package/packages/orq-rc/src/models/operations/updatedataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +56 -32
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +1710 -367
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +80 -20
- 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/components/deployments.ts +0 -2
- 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 +2 -4
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/src/models/operations/deploymentgetconfig.ts +0 -2
- package/src/models/operations/deploymentstream.ts +0 -2
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +2 -2
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -3
- 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 +2 -3
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -4
- 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
|
@@ -191,7 +191,6 @@ export type ListDatasetDatapointsMessagesDatasetsContent =
|
|
|
191
191
|
*/
|
|
192
192
|
export const ListDatasetDatapointsMessagesDatasetsResponse200Role = {
|
|
193
193
|
Assistant: "assistant",
|
|
194
|
-
Exception: "exception",
|
|
195
194
|
} as const;
|
|
196
195
|
/**
|
|
197
196
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -3101,7 +3100,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3101
3100
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3102
3101
|
.optional(),
|
|
3103
3102
|
updated: z.string().datetime({ offset: true }).default(
|
|
3104
|
-
"2025-10-
|
|
3103
|
+
"2025-10-15T20:41:18.330Z",
|
|
3105
3104
|
).transform(v => new Date(v)),
|
|
3106
3105
|
}).transform((v) => {
|
|
3107
3106
|
return remap$(v, {
|
|
@@ -3165,7 +3164,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3165
3164
|
createdById: z.string().optional(),
|
|
3166
3165
|
updatedById: z.string().optional(),
|
|
3167
3166
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3168
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3167
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
3169
3168
|
.transform(v => v.toISOString()),
|
|
3170
3169
|
}).transform((v) => {
|
|
3171
3170
|
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-10-
|
|
256
|
+
"2025-10-15T20:41:18.330Z",
|
|
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-10-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -285,7 +285,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
285
285
|
z.ZodTypeDef,
|
|
286
286
|
unknown
|
|
287
287
|
> = z.object({
|
|
288
|
-
_id: z.string().default("
|
|
288
|
+
_id: z.string().default("01K7MSPE4MFGTT285XHWR5QDTF"),
|
|
289
289
|
display_name: z.string(),
|
|
290
290
|
description: z.string().optional(),
|
|
291
291
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -329,7 +329,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
329
329
|
z.ZodTypeDef,
|
|
330
330
|
ListDatasourcesData
|
|
331
331
|
> = z.object({
|
|
332
|
-
id: z.string().default("
|
|
332
|
+
id: z.string().default("01K7MSPE4MFGTT285XHWR5QDTF"),
|
|
333
333
|
displayName: z.string(),
|
|
334
334
|
description: z.string().optional(),
|
|
335
335
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -127,7 +127,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
127
127
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
128
128
|
.optional(),
|
|
129
129
|
updated: z.string().datetime({ offset: true }).default(
|
|
130
|
-
"2025-10-
|
|
130
|
+
"2025-10-15T20:41:18.330Z",
|
|
131
131
|
).transform(v => new Date(v)),
|
|
132
132
|
}).transform((v) => {
|
|
133
133
|
return remap$(v, {
|
|
@@ -165,7 +165,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
165
165
|
tags: z.array(z.string()).optional(),
|
|
166
166
|
metadata: z.record(z.any()).optional(),
|
|
167
167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
168
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -166,7 +166,6 @@ export type RetrieveDatapointMessagesDatasetsContent =
|
|
|
166
166
|
*/
|
|
167
167
|
export const RetrieveDatapointMessagesDatasetsResponse200Role = {
|
|
168
168
|
Assistant: "assistant",
|
|
169
|
-
Exception: "exception",
|
|
170
169
|
} as const;
|
|
171
170
|
/**
|
|
172
171
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -2958,7 +2957,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2958
2957
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2959
2958
|
.optional(),
|
|
2960
2959
|
updated: z.string().datetime({ offset: true }).default(
|
|
2961
|
-
"2025-10-
|
|
2960
|
+
"2025-10-15T20:41:18.330Z",
|
|
2962
2961
|
).transform(v => new Date(v)),
|
|
2963
2962
|
}).transform((v) => {
|
|
2964
2963
|
return remap$(v, {
|
|
@@ -3016,7 +3015,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
3016
3015
|
createdById: z.string().optional(),
|
|
3017
3016
|
updatedById: z.string().optional(),
|
|
3018
3017
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3019
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3018
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
3020
3019
|
.transform(v => v.toISOString()),
|
|
3021
3020
|
}).transform((v) => {
|
|
3022
3021
|
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-10-
|
|
204
|
+
"2025-10-15T20:41:18.330Z",
|
|
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-10-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
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("01K7MSPE4NQ2PBJZDH8ANMW3BV"),
|
|
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("01K7MSPE4NQ2PBJZDH8ANMW3BV"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -750,7 +750,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
750
750
|
z.ZodTypeDef,
|
|
751
751
|
unknown
|
|
752
752
|
> = z.object({
|
|
753
|
-
_id: z.string().default("
|
|
753
|
+
_id: z.string().default("01K7MSPE988FB9BDWS0SJHQ4JV"),
|
|
754
754
|
path: z.string(),
|
|
755
755
|
key: z.string(),
|
|
756
756
|
display_name: z.string(),
|
|
@@ -806,7 +806,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
806
806
|
z.ZodTypeDef,
|
|
807
807
|
RetrieveToolResponseBody5
|
|
808
808
|
> = z.object({
|
|
809
|
-
id: z.string().default("
|
|
809
|
+
id: z.string().default("01K7MSPE988FB9BDWS0SJHQ4JV"),
|
|
810
810
|
path: z.string(),
|
|
811
811
|
key: z.string(),
|
|
812
812
|
displayName: z.string(),
|
|
@@ -1190,7 +1190,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1190
1190
|
z.ZodTypeDef,
|
|
1191
1191
|
unknown
|
|
1192
1192
|
> = z.object({
|
|
1193
|
-
_id: z.string().default("
|
|
1193
|
+
_id: z.string().default("01K7MSPE971FZMN125BD4KWD8S"),
|
|
1194
1194
|
path: z.string(),
|
|
1195
1195
|
key: z.string(),
|
|
1196
1196
|
display_name: z.string(),
|
|
@@ -1244,7 +1244,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1244
1244
|
z.ZodTypeDef,
|
|
1245
1245
|
RetrieveToolResponseBody4
|
|
1246
1246
|
> = z.object({
|
|
1247
|
-
id: z.string().default("
|
|
1247
|
+
id: z.string().default("01K7MSPE971FZMN125BD4KWD8S"),
|
|
1248
1248
|
path: z.string(),
|
|
1249
1249
|
key: z.string(),
|
|
1250
1250
|
displayName: z.string(),
|
|
@@ -1670,7 +1670,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1670
1670
|
z.ZodTypeDef,
|
|
1671
1671
|
unknown
|
|
1672
1672
|
> = z.object({
|
|
1673
|
-
_id: z.string().default("
|
|
1673
|
+
_id: z.string().default("01K7MSPE977XR9H2FTHY4M6H6H"),
|
|
1674
1674
|
path: z.string(),
|
|
1675
1675
|
key: z.string(),
|
|
1676
1676
|
display_name: z.string(),
|
|
@@ -1724,7 +1724,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1724
1724
|
z.ZodTypeDef,
|
|
1725
1725
|
RetrieveToolResponseBody3
|
|
1726
1726
|
> = z.object({
|
|
1727
|
-
id: z.string().default("
|
|
1727
|
+
id: z.string().default("01K7MSPE977XR9H2FTHY4M6H6H"),
|
|
1728
1728
|
path: z.string(),
|
|
1729
1729
|
key: z.string(),
|
|
1730
1730
|
displayName: z.string(),
|
|
@@ -1902,7 +1902,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1902
1902
|
z.ZodTypeDef,
|
|
1903
1903
|
unknown
|
|
1904
1904
|
> = z.object({
|
|
1905
|
-
_id: z.string().default("
|
|
1905
|
+
_id: z.string().default("01K7MSPE97RYN65ZEWRMPMQ8KS"),
|
|
1906
1906
|
path: z.string(),
|
|
1907
1907
|
key: z.string(),
|
|
1908
1908
|
display_name: z.string(),
|
|
@@ -1955,7 +1955,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1955
1955
|
z.ZodTypeDef,
|
|
1956
1956
|
RetrieveToolResponseBody2
|
|
1957
1957
|
> = z.object({
|
|
1958
|
-
id: z.string().default("
|
|
1958
|
+
id: z.string().default("01K7MSPE97RYN65ZEWRMPMQ8KS"),
|
|
1959
1959
|
path: z.string(),
|
|
1960
1960
|
key: z.string(),
|
|
1961
1961
|
displayName: z.string(),
|
|
@@ -2127,7 +2127,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2127
2127
|
z.ZodTypeDef,
|
|
2128
2128
|
unknown
|
|
2129
2129
|
> = z.object({
|
|
2130
|
-
_id: z.string().default("
|
|
2130
|
+
_id: z.string().default("01K7MSPE96NNKCTYDQ72EBA585"),
|
|
2131
2131
|
path: z.string(),
|
|
2132
2132
|
key: z.string(),
|
|
2133
2133
|
display_name: z.string(),
|
|
@@ -2179,7 +2179,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2179
2179
|
z.ZodTypeDef,
|
|
2180
2180
|
RetrieveToolResponseBody1
|
|
2181
2181
|
> = z.object({
|
|
2182
|
-
id: z.string().default("
|
|
2182
|
+
id: z.string().default("01K7MSPE96NNKCTYDQ72EBA585"),
|
|
2183
2183
|
path: z.string(),
|
|
2184
2184
|
key: z.string(),
|
|
2185
2185
|
displayName: z.string(),
|
|
@@ -2669,7 +2669,7 @@ export const HTTPTool$inboundSchema: z.ZodType<
|
|
|
2669
2669
|
z.ZodTypeDef,
|
|
2670
2670
|
unknown
|
|
2671
2671
|
> = z.object({
|
|
2672
|
-
_id: z.string().default("
|
|
2672
|
+
_id: z.string().default("01K7MSPE0T41QSF31KPHCNC7XE"),
|
|
2673
2673
|
key: z.string(),
|
|
2674
2674
|
display_name: z.string(),
|
|
2675
2675
|
description: z.string(),
|
|
@@ -2702,7 +2702,7 @@ export const HTTPTool$outboundSchema: z.ZodType<
|
|
|
2702
2702
|
z.ZodTypeDef,
|
|
2703
2703
|
HTTPTool
|
|
2704
2704
|
> = z.object({
|
|
2705
|
-
id: z.string().default("
|
|
2705
|
+
id: z.string().default("01K7MSPE0T41QSF31KPHCNC7XE"),
|
|
2706
2706
|
key: z.string(),
|
|
2707
2707
|
displayName: z.string(),
|
|
2708
2708
|
description: z.string(),
|
|
@@ -2824,7 +2824,7 @@ export const RunAgentRequestToolHTTPTool$inboundSchema: z.ZodType<
|
|
|
2824
2824
|
z.ZodTypeDef,
|
|
2825
2825
|
unknown
|
|
2826
2826
|
> = z.object({
|
|
2827
|
-
_id: z.string().default("
|
|
2827
|
+
_id: z.string().default("01K7MSPE0Z4J7XQ2KWT5FD6EAF"),
|
|
2828
2828
|
key: z.string(),
|
|
2829
2829
|
display_name: z.string(),
|
|
2830
2830
|
description: z.string(),
|
|
@@ -2857,7 +2857,7 @@ export const RunAgentRequestToolHTTPTool$outboundSchema: z.ZodType<
|
|
|
2857
2857
|
z.ZodTypeDef,
|
|
2858
2858
|
RunAgentRequestToolHTTPTool
|
|
2859
2859
|
> = z.object({
|
|
2860
|
-
id: z.string().default("
|
|
2860
|
+
id: z.string().default("01K7MSPE0Z4J7XQ2KWT5FD6EAF"),
|
|
2861
2861
|
key: z.string(),
|
|
2862
2862
|
displayName: z.string(),
|
|
2863
2863
|
description: z.string(),
|
|
@@ -538,7 +538,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
538
538
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
539
539
|
.optional(),
|
|
540
540
|
updated: z.string().datetime({ offset: true }).default(
|
|
541
|
-
"2025-10-
|
|
541
|
+
"2025-10-15T20:41:18.330Z",
|
|
542
542
|
).transform(v => new Date(v)),
|
|
543
543
|
}).transform((v) => {
|
|
544
544
|
return remap$(v, {
|
|
@@ -573,7 +573,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
573
573
|
isActive: z.boolean(),
|
|
574
574
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
575
575
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
576
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
576
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
577
577
|
.transform(v => v.toISOString()),
|
|
578
578
|
}).transform((v) => {
|
|
579
579
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
245
245
|
.optional(),
|
|
246
246
|
updated: z.string().datetime({ offset: true }).default(
|
|
247
|
-
"2025-10-
|
|
247
|
+
"2025-10-15T20:41:18.330Z",
|
|
248
248
|
).transform(v => new Date(v)),
|
|
249
249
|
}).transform((v) => {
|
|
250
250
|
return remap$(v, {
|
|
@@ -282,7 +282,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
282
282
|
tags: z.array(z.string()).optional(),
|
|
283
283
|
metadata: z.record(z.any()).optional(),
|
|
284
284
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
285
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
285
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
286
286
|
.transform(v => v.toISOString()),
|
|
287
287
|
}).transform((v) => {
|
|
288
288
|
return remap$(v, {
|
|
@@ -156,7 +156,6 @@ export type UpdateDatapointMessagesDatasetsContent =
|
|
|
156
156
|
*/
|
|
157
157
|
export const UpdateDatapointMessagesDatasetsRequestRequestBodyRole = {
|
|
158
158
|
Assistant: "assistant",
|
|
159
|
-
Exception: "exception",
|
|
160
159
|
} as const;
|
|
161
160
|
/**
|
|
162
161
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -674,7 +673,6 @@ export type UpdateDatapointMessagesDatasetsResponse200Content =
|
|
|
674
673
|
export const UpdateDatapointMessagesDatasetsResponse200ApplicationJSONResponseBodyRole =
|
|
675
674
|
{
|
|
676
675
|
Assistant: "assistant",
|
|
677
|
-
Exception: "exception",
|
|
678
676
|
} as const;
|
|
679
677
|
/**
|
|
680
678
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -6020,7 +6018,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
6020
6018
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6021
6019
|
.optional(),
|
|
6022
6020
|
updated: z.string().datetime({ offset: true }).default(
|
|
6023
|
-
"2025-10-
|
|
6021
|
+
"2025-10-15T20:41:18.330Z",
|
|
6024
6022
|
).transform(v => new Date(v)),
|
|
6025
6023
|
}).transform((v) => {
|
|
6026
6024
|
return remap$(v, {
|
|
@@ -6082,7 +6080,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
6082
6080
|
createdById: z.string().optional(),
|
|
6083
6081
|
updatedById: z.string().optional(),
|
|
6084
6082
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6085
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
6083
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
6086
6084
|
.transform(v => v.toISOString()),
|
|
6087
6085
|
}).transform((v) => {
|
|
6088
6086
|
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-10-
|
|
305
|
+
"2025-10-15T20:41:18.330Z",
|
|
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-10-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-10-15T20:41:18.330Z"))
|
|
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("01K7MSPE4QEZKA1PR3VJ3440HP"),
|
|
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("01K7MSPE4QEZKA1PR3VJ3440HP"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -3636,8 +3636,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
3636
3636
|
> = z.object({
|
|
3637
3637
|
_id: z.string(),
|
|
3638
3638
|
description: z.string(),
|
|
3639
|
-
created: z.string().default("2025-10-
|
|
3640
|
-
updated: z.string().default("2025-10-
|
|
3639
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
3640
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
3641
3641
|
guardrail_config: z.union([
|
|
3642
3642
|
z.lazy(() =>
|
|
3643
3643
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3680,8 +3680,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3680
3680
|
> = z.object({
|
|
3681
3681
|
id: z.string(),
|
|
3682
3682
|
description: z.string(),
|
|
3683
|
-
created: z.string().default("2025-10-
|
|
3684
|
-
updated: z.string().default("2025-10-
|
|
3683
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
3684
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
3685
3685
|
guardrailConfig: z.union([
|
|
3686
3686
|
z.lazy(() =>
|
|
3687
3687
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -4107,8 +4107,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
4107
4107
|
> = z.object({
|
|
4108
4108
|
_id: z.string(),
|
|
4109
4109
|
description: z.string(),
|
|
4110
|
-
created: z.string().default("2025-10-
|
|
4111
|
-
updated: z.string().default("2025-10-
|
|
4110
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
4111
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
4112
4112
|
guardrail_config: z.union([
|
|
4113
4113
|
z.lazy(() =>
|
|
4114
4114
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -4154,8 +4154,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
4154
4154
|
> = z.object({
|
|
4155
4155
|
id: z.string(),
|
|
4156
4156
|
description: z.string(),
|
|
4157
|
-
created: z.string().default("2025-10-
|
|
4158
|
-
updated: z.string().default("2025-10-
|
|
4157
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
4158
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
4159
4159
|
guardrailConfig: z.union([
|
|
4160
4160
|
z.lazy(() =>
|
|
4161
4161
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7662,8 +7662,8 @@ export const UpdateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7662
7662
|
> = z.object({
|
|
7663
7663
|
_id: z.string(),
|
|
7664
7664
|
description: z.string(),
|
|
7665
|
-
created: z.string().default("2025-10-
|
|
7666
|
-
updated: z.string().default("2025-10-
|
|
7665
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
7666
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
7667
7667
|
guardrail_config: z.union([
|
|
7668
7668
|
z.lazy(() =>
|
|
7669
7669
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7777,8 +7777,8 @@ export const UpdateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7777
7777
|
> = z.object({
|
|
7778
7778
|
id: z.string(),
|
|
7779
7779
|
description: z.string(),
|
|
7780
|
-
created: z.string().default("2025-10-
|
|
7781
|
-
updated: z.string().default("2025-10-
|
|
7780
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
7781
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
7782
7782
|
guardrailConfig: z.union([
|
|
7783
7783
|
z.lazy(() =>
|
|
7784
7784
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -8220,8 +8220,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
8220
8220
|
> = z.object({
|
|
8221
8221
|
_id: z.string(),
|
|
8222
8222
|
description: z.string(),
|
|
8223
|
-
created: z.string().default("2025-10-
|
|
8224
|
-
updated: z.string().default("2025-10-
|
|
8223
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8224
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8225
8225
|
guardrail_config: z.union([
|
|
8226
8226
|
z.lazy(() =>
|
|
8227
8227
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -8263,8 +8263,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
8263
8263
|
> = z.object({
|
|
8264
8264
|
id: z.string(),
|
|
8265
8265
|
description: z.string(),
|
|
8266
|
-
created: z.string().default("2025-10-
|
|
8267
|
-
updated: z.string().default("2025-10-
|
|
8266
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8267
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8268
8268
|
guardrailConfig: z.union([
|
|
8269
8269
|
z.lazy(() =>
|
|
8270
8270
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8685,8 +8685,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8685
8685
|
> = z.object({
|
|
8686
8686
|
_id: z.string(),
|
|
8687
8687
|
description: z.string(),
|
|
8688
|
-
created: z.string().default("2025-10-
|
|
8689
|
-
updated: z.string().default("2025-10-
|
|
8688
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8689
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8690
8690
|
guardrail_config: z.union([
|
|
8691
8691
|
z.lazy(() =>
|
|
8692
8692
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8734,8 +8734,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8734
8734
|
> = z.object({
|
|
8735
8735
|
id: z.string(),
|
|
8736
8736
|
description: z.string(),
|
|
8737
|
-
created: z.string().default("2025-10-
|
|
8738
|
-
updated: z.string().default("2025-10-
|
|
8737
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8738
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
8739
8739
|
guardrailConfig: z.union([
|
|
8740
8740
|
z.lazy(() =>
|
|
8741
8741
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -9125,8 +9125,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
9125
9125
|
> = z.object({
|
|
9126
9126
|
_id: z.string(),
|
|
9127
9127
|
description: z.string(),
|
|
9128
|
-
created: z.string().default("2025-10-
|
|
9129
|
-
updated: z.string().default("2025-10-
|
|
9128
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9129
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9130
9130
|
guardrail_config: z.union([
|
|
9131
9131
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
9132
9132
|
z.lazy(() =>
|
|
@@ -9166,8 +9166,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
9166
9166
|
> = z.object({
|
|
9167
9167
|
id: z.string(),
|
|
9168
9168
|
description: z.string(),
|
|
9169
|
-
created: z.string().default("2025-10-
|
|
9170
|
-
updated: z.string().default("2025-10-
|
|
9169
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9170
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9171
9171
|
guardrailConfig: z.union([
|
|
9172
9172
|
z.lazy(() =>
|
|
9173
9173
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9525,8 +9525,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9525
9525
|
> = z.object({
|
|
9526
9526
|
_id: z.string(),
|
|
9527
9527
|
description: z.string(),
|
|
9528
|
-
created: z.string().default("2025-10-
|
|
9529
|
-
updated: z.string().default("2025-10-
|
|
9528
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9529
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9530
9530
|
guardrail_config: z.union([
|
|
9531
9531
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9532
9532
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9566,8 +9566,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9566
9566
|
> = z.object({
|
|
9567
9567
|
id: z.string(),
|
|
9568
9568
|
description: z.string(),
|
|
9569
|
-
created: z.string().default("2025-10-
|
|
9570
|
-
updated: z.string().default("2025-10-
|
|
9569
|
+
created: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9570
|
+
updated: z.string().default("2025-10-15T20:41:20.803Z"),
|
|
9571
9571
|
guardrailConfig: z.union([
|
|
9572
9572
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9573
9573
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -1929,7 +1929,7 @@ export const UpdateToolRequestBody3$inboundSchema: z.ZodType<
|
|
|
1929
1929
|
z.ZodTypeDef,
|
|
1930
1930
|
unknown
|
|
1931
1931
|
> = z.object({
|
|
1932
|
-
_id: z.string().default("
|
|
1932
|
+
_id: z.string().default("01K7MSPE94XN2H7B7P00GSVFDW"),
|
|
1933
1933
|
path: z.string().optional(),
|
|
1934
1934
|
display_name: z.string().optional(),
|
|
1935
1935
|
description: z.string().optional(),
|
|
@@ -1960,7 +1960,7 @@ export const UpdateToolRequestBody3$outboundSchema: z.ZodType<
|
|
|
1960
1960
|
z.ZodTypeDef,
|
|
1961
1961
|
UpdateToolRequestBody3
|
|
1962
1962
|
> = z.object({
|
|
1963
|
-
id: z.string().default("
|
|
1963
|
+
id: z.string().default("01K7MSPE94XN2H7B7P00GSVFDW"),
|
|
1964
1964
|
path: z.string().optional(),
|
|
1965
1965
|
displayName: z.string().optional(),
|
|
1966
1966
|
description: z.string().optional(),
|
|
@@ -2120,7 +2120,7 @@ export const UpdateToolRequestBody2$inboundSchema: z.ZodType<
|
|
|
2120
2120
|
z.ZodTypeDef,
|
|
2121
2121
|
unknown
|
|
2122
2122
|
> = z.object({
|
|
2123
|
-
_id: z.string().default("
|
|
2123
|
+
_id: z.string().default("01K7MSPE94VW86ETH6BB8TXYP2"),
|
|
2124
2124
|
path: z.string().optional(),
|
|
2125
2125
|
display_name: z.string().optional(),
|
|
2126
2126
|
description: z.string().optional(),
|
|
@@ -2153,7 +2153,7 @@ export const UpdateToolRequestBody2$outboundSchema: z.ZodType<
|
|
|
2153
2153
|
z.ZodTypeDef,
|
|
2154
2154
|
UpdateToolRequestBody2
|
|
2155
2155
|
> = z.object({
|
|
2156
|
-
id: z.string().default("
|
|
2156
|
+
id: z.string().default("01K7MSPE94VW86ETH6BB8TXYP2"),
|
|
2157
2157
|
path: z.string().optional(),
|
|
2158
2158
|
displayName: z.string().optional(),
|
|
2159
2159
|
description: z.string().optional(),
|
|
@@ -2675,7 +2675,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2675
2675
|
z.ZodTypeDef,
|
|
2676
2676
|
unknown
|
|
2677
2677
|
> = z.object({
|
|
2678
|
-
_id: z.string().default("
|
|
2678
|
+
_id: z.string().default("01K7MSPE93MBNEQ48XNPQQYF3D"),
|
|
2679
2679
|
path: z.string(),
|
|
2680
2680
|
key: z.string(),
|
|
2681
2681
|
display_name: z.string(),
|
|
@@ -2730,7 +2730,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2730
2730
|
z.ZodTypeDef,
|
|
2731
2731
|
UpdateToolResponseBody5
|
|
2732
2732
|
> = z.object({
|
|
2733
|
-
id: z.string().default("
|
|
2733
|
+
id: z.string().default("01K7MSPE93MBNEQ48XNPQQYF3D"),
|
|
2734
2734
|
path: z.string(),
|
|
2735
2735
|
key: z.string(),
|
|
2736
2736
|
displayName: z.string(),
|
|
@@ -3104,7 +3104,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3104
3104
|
z.ZodTypeDef,
|
|
3105
3105
|
unknown
|
|
3106
3106
|
> = z.object({
|
|
3107
|
-
_id: z.string().default("
|
|
3107
|
+
_id: z.string().default("01K7MSPE932TRNVNYJ0D1TMWZ1"),
|
|
3108
3108
|
path: z.string(),
|
|
3109
3109
|
key: z.string(),
|
|
3110
3110
|
display_name: z.string(),
|
|
@@ -3158,7 +3158,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3158
3158
|
z.ZodTypeDef,
|
|
3159
3159
|
UpdateToolResponseBody4
|
|
3160
3160
|
> = z.object({
|
|
3161
|
-
id: z.string().default("
|
|
3161
|
+
id: z.string().default("01K7MSPE932TRNVNYJ0D1TMWZ1"),
|
|
3162
3162
|
path: z.string(),
|
|
3163
3163
|
key: z.string(),
|
|
3164
3164
|
displayName: z.string(),
|
|
@@ -3576,7 +3576,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3576
3576
|
z.ZodTypeDef,
|
|
3577
3577
|
unknown
|
|
3578
3578
|
> = z.object({
|
|
3579
|
-
_id: z.string().default("
|
|
3579
|
+
_id: z.string().default("01K7MSPE923NEA1T2337S5AZH8"),
|
|
3580
3580
|
path: z.string(),
|
|
3581
3581
|
key: z.string(),
|
|
3582
3582
|
display_name: z.string(),
|
|
@@ -3630,7 +3630,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3630
3630
|
z.ZodTypeDef,
|
|
3631
3631
|
UpdateToolResponseBody3
|
|
3632
3632
|
> = z.object({
|
|
3633
|
-
id: z.string().default("
|
|
3633
|
+
id: z.string().default("01K7MSPE923NEA1T2337S5AZH8"),
|
|
3634
3634
|
path: z.string(),
|
|
3635
3635
|
key: z.string(),
|
|
3636
3636
|
displayName: z.string(),
|
|
@@ -3804,7 +3804,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3804
3804
|
z.ZodTypeDef,
|
|
3805
3805
|
unknown
|
|
3806
3806
|
> = z.object({
|
|
3807
|
-
_id: z.string().default("
|
|
3807
|
+
_id: z.string().default("01K7MSPE917FSYYSNPGED0N9CR"),
|
|
3808
3808
|
path: z.string(),
|
|
3809
3809
|
key: z.string(),
|
|
3810
3810
|
display_name: z.string(),
|
|
@@ -3857,7 +3857,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3857
3857
|
z.ZodTypeDef,
|
|
3858
3858
|
UpdateToolResponseBody2
|
|
3859
3859
|
> = z.object({
|
|
3860
|
-
id: z.string().default("
|
|
3860
|
+
id: z.string().default("01K7MSPE917FSYYSNPGED0N9CR"),
|
|
3861
3861
|
path: z.string(),
|
|
3862
3862
|
key: z.string(),
|
|
3863
3863
|
displayName: z.string(),
|
|
@@ -4029,7 +4029,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4029
4029
|
z.ZodTypeDef,
|
|
4030
4030
|
unknown
|
|
4031
4031
|
> = z.object({
|
|
4032
|
-
_id: z.string().default("
|
|
4032
|
+
_id: z.string().default("01K7MSPE911CFXG7YYEM30Q9YR"),
|
|
4033
4033
|
path: z.string(),
|
|
4034
4034
|
key: z.string(),
|
|
4035
4035
|
display_name: z.string(),
|
|
@@ -4081,7 +4081,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4081
4081
|
z.ZodTypeDef,
|
|
4082
4082
|
UpdateToolResponseBody1
|
|
4083
4083
|
> = z.object({
|
|
4084
|
-
id: z.string().default("
|
|
4084
|
+
id: z.string().default("01K7MSPE911CFXG7YYEM30Q9YR"),
|
|
4085
4085
|
path: z.string(),
|
|
4086
4086
|
key: z.string(),
|
|
4087
4087
|
displayName: z.string(),
|