@orq-ai/node 4.0.4 → 4.0.5
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 +213 -213
- package/bin/mcp-server.js.map +36 -36
- 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/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +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.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/README.md +38 -47
- package/packages/orq-rc/docs/sdks/agents/README.md +230 -529
- package/packages/orq-rc/docs/sdks/responses/README.md +60 -65
- 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/funcs/agentsCreate.ts +16 -14
- package/packages/orq-rc/src/funcs/agentsDelete.ts +10 -6
- package/packages/orq-rc/src/funcs/agentsInvoke.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsList.ts +18 -6
- package/packages/orq-rc/src/funcs/agentsResponsesCreate.ts +23 -12
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +21 -16
- package/packages/orq-rc/src/funcs/agentsRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsStream.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsUpdate.ts +14 -6
- 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 -9
- package/packages/orq-rc/src/mcp-server/tools/agentsCreate.ts +3 -3
- package/packages/orq-rc/src/mcp-server/tools/agentsDelete.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsInvoke.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +9 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsResponsesCreate.ts +8 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsStream.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsUpdate.ts +8 -4
- package/packages/orq-rc/src/models/errors/createagentrequest.ts +67 -0
- package/packages/orq-rc/src/models/errors/deleteagent.ts +2 -2
- package/packages/orq-rc/src/models/errors/index.ts +2 -3
- package/packages/orq-rc/src/models/errors/{listagenttasks.ts → retrieveagentrequest.ts} +15 -15
- package/packages/orq-rc/src/models/errors/updateagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/{createagent.ts → createagentrequest.ts} +1643 -1485
- package/packages/orq-rc/src/models/operations/{createagentresponse.ts → createagentresponserequest.ts} +141 -127
- 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 +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- 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/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +3 -7
- package/packages/orq-rc/src/models/operations/invokeagent.ts +153 -190
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -21
- 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 -8
- 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/retrieveagentrequest.ts +3741 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- 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 +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +53 -57
- package/packages/orq-rc/src/models/operations/streamagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +68 -82
- package/packages/orq-rc/src/models/operations/updateagent.ts +17 -17
- 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 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updateprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/agents.ts +51 -99
- package/packages/orq-rc/src/sdk/responses.ts +7 -5
- 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/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 +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/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 +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/funcs/agentsListActions.ts +0 -169
- package/packages/orq-rc/src/funcs/agentsListTasks.ts +0 -183
- package/packages/orq-rc/src/funcs/agentsRetrieveAction.ts +0 -173
- package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +0 -179
- package/packages/orq-rc/src/mcp-server/tools/agentsListActions.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsListTasks.ts +0 -37
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveAction.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveTask.ts +0 -37
- package/packages/orq-rc/src/models/errors/createagent.ts +0 -67
- package/packages/orq-rc/src/models/errors/getagent.ts +0 -67
- package/packages/orq-rc/src/models/operations/getagent.ts +0 -3480
- package/packages/orq-rc/src/models/operations/getagenttask.ts +0 -2389
- package/packages/orq-rc/src/models/operations/listactions.ts +0 -427
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +0 -2614
- package/packages/orq-rc/src/models/operations/retrieveaction.ts +0 -354
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-11-
|
|
170
|
+
"2025-11-24T12:57:32.994Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
210
|
+
updated: z.date().default(() => new Date("2025-11-24T12:57:32.994Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-11-
|
|
190
|
+
"2025-11-24T12:57:32.994Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
229
|
+
updated: z.date().default(() => new Date("2025-11-24T12:57:32.994Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-
|
|
4932
|
+
"2025-11-24T12:57:44.537Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-24T12:57:44.537Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-
|
|
5032
|
+
"2025-11-24T12:57:44.536Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-24T12:57:44.536Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-
|
|
5130
|
+
"2025-11-24T12:57:44.535Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-24T12:57:44.535Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-
|
|
5270
|
+
"2025-11-24T12:57:32.994Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-24T12:57:32.994Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01KATZ22QXMFVCH8XFVNVTBAN9"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01KATZ22QXMFVCH8XFVNVTBAN9"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2759
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2802
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3084
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3130
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5389,8 +5389,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5389
5389
|
> = z.object({
|
|
5390
5390
|
_id: z.string(),
|
|
5391
5391
|
description: z.string(),
|
|
5392
|
-
created: z.string().default("2025-11-
|
|
5393
|
-
updated: z.string().default("2025-11-
|
|
5392
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5393
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5394
5394
|
guardrail_config: z.union([
|
|
5395
5395
|
z.lazy(() =>
|
|
5396
5396
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5503,8 +5503,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5503
5503
|
> = z.object({
|
|
5504
5504
|
id: z.string(),
|
|
5505
5505
|
description: z.string(),
|
|
5506
|
-
created: z.string().default("2025-11-
|
|
5507
|
-
updated: z.string().default("2025-11-
|
|
5506
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5507
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5508
5508
|
guardrailConfig: z.union([
|
|
5509
5509
|
z.lazy(() =>
|
|
5510
5510
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
_id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5826
5826
|
guardrail_config: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5863,8 +5863,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5863
5863
|
> = z.object({
|
|
5864
5864
|
id: z.string(),
|
|
5865
5865
|
description: z.string(),
|
|
5866
|
-
created: z.string().default("2025-11-
|
|
5867
|
-
updated: z.string().default("2025-11-
|
|
5866
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5867
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
5868
5868
|
guardrailConfig: z.union([
|
|
5869
5869
|
z.lazy(() =>
|
|
5870
5870
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6144,8 +6144,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6144
6144
|
> = z.object({
|
|
6145
6145
|
_id: z.string(),
|
|
6146
6146
|
description: z.string(),
|
|
6147
|
-
created: z.string().default("2025-11-
|
|
6148
|
-
updated: z.string().default("2025-11-
|
|
6147
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6148
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6149
6149
|
guardrail_config: z.union([
|
|
6150
6150
|
z.lazy(() =>
|
|
6151
6151
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6192,8 +6192,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6192
6192
|
> = z.object({
|
|
6193
6193
|
id: z.string(),
|
|
6194
6194
|
description: z.string(),
|
|
6195
|
-
created: z.string().default("2025-11-
|
|
6196
|
-
updated: z.string().default("2025-11-
|
|
6195
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6196
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6197
6197
|
guardrailConfig: z.union([
|
|
6198
6198
|
z.lazy(() =>
|
|
6199
6199
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6449,8 +6449,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6449
6449
|
> = z.object({
|
|
6450
6450
|
_id: z.string(),
|
|
6451
6451
|
description: z.string(),
|
|
6452
|
-
created: z.string().default("2025-11-
|
|
6453
|
-
updated: z.string().default("2025-11-
|
|
6452
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6453
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6454
6454
|
guardrail_config: z.union([
|
|
6455
6455
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6456
6456
|
z.lazy(() =>
|
|
@@ -6489,8 +6489,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6489
6489
|
> = z.object({
|
|
6490
6490
|
id: z.string(),
|
|
6491
6491
|
description: z.string(),
|
|
6492
|
-
created: z.string().default("2025-11-
|
|
6493
|
-
updated: z.string().default("2025-11-
|
|
6492
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6493
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6494
6494
|
guardrailConfig: z.union([
|
|
6495
6495
|
z.lazy(() =>
|
|
6496
6496
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6728,8 +6728,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6728
6728
|
> = z.object({
|
|
6729
6729
|
_id: z.string(),
|
|
6730
6730
|
description: z.string(),
|
|
6731
|
-
created: z.string().default("2025-11-
|
|
6732
|
-
updated: z.string().default("2025-11-
|
|
6731
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6732
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6733
6733
|
guardrail_config: z.union([
|
|
6734
6734
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6735
6735
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6768,8 +6768,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6768
6768
|
> = z.object({
|
|
6769
6769
|
id: z.string(),
|
|
6770
6770
|
description: z.string(),
|
|
6771
|
-
created: z.string().default("2025-11-
|
|
6772
|
-
updated: z.string().default("2025-11-
|
|
6771
|
+
created: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6772
|
+
updated: z.string().default("2025-11-24T12:57:35.125Z"),
|
|
6773
6773
|
guardrailConfig: z.union([
|
|
6774
6774
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6775
6775
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2586,7 +2586,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2586
2586
|
z.ZodTypeDef,
|
|
2587
2587
|
unknown
|
|
2588
2588
|
> = z.object({
|
|
2589
|
-
_id: z.string().default("
|
|
2589
|
+
_id: z.string().default("tool_01KATZ22JVRVKZEFHBZ9CPRMRH"),
|
|
2590
2590
|
path: z.string(),
|
|
2591
2591
|
key: z.string(),
|
|
2592
2592
|
display_name: z.string().optional(),
|
|
@@ -2640,7 +2640,7 @@ export const ResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2640
2640
|
z.ZodTypeDef,
|
|
2641
2641
|
ResponseBodyCodeExecutionTool
|
|
2642
2642
|
> = z.object({
|
|
2643
|
-
id: z.string().default("
|
|
2643
|
+
id: z.string().default("tool_01KATZ22JVRVKZEFHBZ9CPRMRH"),
|
|
2644
2644
|
path: z.string(),
|
|
2645
2645
|
key: z.string(),
|
|
2646
2646
|
displayName: z.string().optional(),
|
|
@@ -2816,7 +2816,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2816
2816
|
z.ZodTypeDef,
|
|
2817
2817
|
unknown
|
|
2818
2818
|
> = z.object({
|
|
2819
|
-
id: z.string().default("
|
|
2819
|
+
id: z.string().default("01KATZ22JTYB50PWJ280WEJPAK"),
|
|
2820
2820
|
name: z.string(),
|
|
2821
2821
|
description: z.string().optional(),
|
|
2822
2822
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2835,7 +2835,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2835
2835
|
z.ZodTypeDef,
|
|
2836
2836
|
ResponseBodyTools
|
|
2837
2837
|
> = z.object({
|
|
2838
|
-
id: z.string().default("
|
|
2838
|
+
id: z.string().default("01KATZ22JTYB50PWJ280WEJPAK"),
|
|
2839
2839
|
name: z.string(),
|
|
2840
2840
|
description: z.string().optional(),
|
|
2841
2841
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2930,7 +2930,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2930
2930
|
z.ZodTypeDef,
|
|
2931
2931
|
unknown
|
|
2932
2932
|
> = z.object({
|
|
2933
|
-
_id: z.string().default("
|
|
2933
|
+
_id: z.string().default("tool_01KATZ22JRTAZTBF3HFKNYVCJQ"),
|
|
2934
2934
|
path: z.string(),
|
|
2935
2935
|
key: z.string(),
|
|
2936
2936
|
display_name: z.string().optional(),
|
|
@@ -2983,7 +2983,7 @@ export const ResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
2983
2983
|
z.ZodTypeDef,
|
|
2984
2984
|
ResponseBodyMCPTool
|
|
2985
2985
|
> = z.object({
|
|
2986
|
-
id: z.string().default("
|
|
2986
|
+
id: z.string().default("tool_01KATZ22JRTAZTBF3HFKNYVCJQ"),
|
|
2987
2987
|
path: z.string(),
|
|
2988
2988
|
key: z.string(),
|
|
2989
2989
|
displayName: z.string().optional(),
|
|
@@ -3343,7 +3343,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3343
3343
|
z.ZodTypeDef,
|
|
3344
3344
|
unknown
|
|
3345
3345
|
> = z.object({
|
|
3346
|
-
_id: z.string().default("
|
|
3346
|
+
_id: z.string().default("tool_01KATZ22JNDGWBDJ3M9Y850D69"),
|
|
3347
3347
|
path: z.string(),
|
|
3348
3348
|
key: z.string(),
|
|
3349
3349
|
display_name: z.string().optional(),
|
|
@@ -3394,7 +3394,7 @@ export const ResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3394
3394
|
z.ZodTypeDef,
|
|
3395
3395
|
ResponseBodyHTTPTool
|
|
3396
3396
|
> = z.object({
|
|
3397
|
-
id: z.string().default("
|
|
3397
|
+
id: z.string().default("tool_01KATZ22JNDGWBDJ3M9Y850D69"),
|
|
3398
3398
|
path: z.string(),
|
|
3399
3399
|
key: z.string(),
|
|
3400
3400
|
displayName: z.string().optional(),
|
|
@@ -3568,7 +3568,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3568
3568
|
z.ZodTypeDef,
|
|
3569
3569
|
unknown
|
|
3570
3570
|
> = z.object({
|
|
3571
|
-
_id: z.string().default("
|
|
3571
|
+
_id: z.string().default("tool_01KATZ22JJ4VTW64SQXWCX0YEX"),
|
|
3572
3572
|
path: z.string(),
|
|
3573
3573
|
key: z.string(),
|
|
3574
3574
|
display_name: z.string().optional(),
|
|
@@ -3620,7 +3620,7 @@ export const ResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3620
3620
|
z.ZodTypeDef,
|
|
3621
3621
|
ResponseBodyJSONSchemaTool
|
|
3622
3622
|
> = z.object({
|
|
3623
|
-
id: z.string().default("
|
|
3623
|
+
id: z.string().default("tool_01KATZ22JJ4VTW64SQXWCX0YEX"),
|
|
3624
3624
|
path: z.string(),
|
|
3625
3625
|
key: z.string(),
|
|
3626
3626
|
displayName: z.string().optional(),
|
|
@@ -3810,7 +3810,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3810
3810
|
z.ZodTypeDef,
|
|
3811
3811
|
unknown
|
|
3812
3812
|
> = z.object({
|
|
3813
|
-
_id: z.string().default("
|
|
3813
|
+
_id: z.string().default("tool_01KATZ22JG86652QXEZQHH24R1"),
|
|
3814
3814
|
path: z.string(),
|
|
3815
3815
|
key: z.string(),
|
|
3816
3816
|
display_name: z.string().optional(),
|
|
@@ -3861,7 +3861,7 @@ export const ResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
3861
3861
|
z.ZodTypeDef,
|
|
3862
3862
|
ResponseBodyFunctionTool
|
|
3863
3863
|
> = z.object({
|
|
3864
|
-
id: z.string().default("
|
|
3864
|
+
id: z.string().default("tool_01KATZ22JG86652QXEZQHH24R1"),
|
|
3865
3865
|
path: z.string(),
|
|
3866
3866
|
key: z.string(),
|
|
3867
3867
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-11-
|
|
122
|
+
"2025-11-24T12:57:36.199Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-11-
|
|
155
|
+
created: z.date().default(() => new Date("2025-11-24T12:57:36.199Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-11-
|
|
160
|
+
"2025-11-24T12:57:36.199Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-11-
|
|
193
|
+
created: z.date().default(() => new Date("2025-11-24T12:57:36.199Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$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-11-
|
|
199
|
+
"2025-11-24T12:57:36.199Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-11-
|
|
232
|
+
created: z.date().default(() => new Date("2025-11-24T12:57:36.199Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -905,7 +905,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
905
905
|
z.ZodTypeDef,
|
|
906
906
|
unknown
|
|
907
907
|
> = z.object({
|
|
908
|
-
_id: z.string().default("
|
|
908
|
+
_id: z.string().default("tool_01KATZ22HYAZDAB1P9YNTBK2X8"),
|
|
909
909
|
path: z.string(),
|
|
910
910
|
key: z.string(),
|
|
911
911
|
display_name: z.string().optional(),
|
|
@@ -957,7 +957,7 @@ export const DataCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
957
957
|
z.ZodTypeDef,
|
|
958
958
|
DataCodeExecutionTool
|
|
959
959
|
> = z.object({
|
|
960
|
-
id: z.string().default("
|
|
960
|
+
id: z.string().default("tool_01KATZ22HYAZDAB1P9YNTBK2X8"),
|
|
961
961
|
path: z.string(),
|
|
962
962
|
key: z.string(),
|
|
963
963
|
displayName: z.string().optional(),
|
|
@@ -1125,7 +1125,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
1125
1125
|
z.ZodTypeDef,
|
|
1126
1126
|
unknown
|
|
1127
1127
|
> = z.object({
|
|
1128
|
-
id: z.string().default("
|
|
1128
|
+
id: z.string().default("01KATZ22HX6RHJA7VA8RAWPKVK"),
|
|
1129
1129
|
name: z.string(),
|
|
1130
1130
|
description: z.string().optional(),
|
|
1131
1131
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -1144,7 +1144,7 @@ export const DataTools$outboundSchema: z.ZodType<
|
|
|
1144
1144
|
z.ZodTypeDef,
|
|
1145
1145
|
DataTools
|
|
1146
1146
|
> = z.object({
|
|
1147
|
-
id: z.string().default("
|
|
1147
|
+
id: z.string().default("01KATZ22HX6RHJA7VA8RAWPKVK"),
|
|
1148
1148
|
name: z.string(),
|
|
1149
1149
|
description: z.string().optional(),
|
|
1150
1150
|
schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
|
|
@@ -1229,7 +1229,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
1229
1229
|
z.ZodTypeDef,
|
|
1230
1230
|
unknown
|
|
1231
1231
|
> = z.object({
|
|
1232
|
-
_id: z.string().default("
|
|
1232
|
+
_id: z.string().default("tool_01KATZ22HWF0HYW3QNXGV8T4XF"),
|
|
1233
1233
|
path: z.string(),
|
|
1234
1234
|
key: z.string(),
|
|
1235
1235
|
display_name: z.string().optional(),
|
|
@@ -1280,7 +1280,7 @@ export const DataMCPTool$outboundSchema: z.ZodType<
|
|
|
1280
1280
|
z.ZodTypeDef,
|
|
1281
1281
|
DataMCPTool
|
|
1282
1282
|
> = z.object({
|
|
1283
|
-
id: z.string().default("
|
|
1283
|
+
id: z.string().default("tool_01KATZ22HWF0HYW3QNXGV8T4XF"),
|
|
1284
1284
|
path: z.string(),
|
|
1285
1285
|
key: z.string(),
|
|
1286
1286
|
displayName: z.string().optional(),
|
|
@@ -1623,7 +1623,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1623
1623
|
z.ZodTypeDef,
|
|
1624
1624
|
unknown
|
|
1625
1625
|
> = z.object({
|
|
1626
|
-
_id: z.string().default("
|
|
1626
|
+
_id: z.string().default("tool_01KATZ22HTF5QCA07TMNEMHSMT"),
|
|
1627
1627
|
path: z.string(),
|
|
1628
1628
|
key: z.string(),
|
|
1629
1629
|
display_name: z.string().optional(),
|
|
@@ -1674,7 +1674,7 @@ export const DataHTTPTool$outboundSchema: z.ZodType<
|
|
|
1674
1674
|
z.ZodTypeDef,
|
|
1675
1675
|
DataHTTPTool
|
|
1676
1676
|
> = z.object({
|
|
1677
|
-
id: z.string().default("
|
|
1677
|
+
id: z.string().default("tool_01KATZ22HTF5QCA07TMNEMHSMT"),
|
|
1678
1678
|
path: z.string(),
|
|
1679
1679
|
key: z.string(),
|
|
1680
1680
|
displayName: z.string().optional(),
|
|
@@ -1836,7 +1836,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1836
1836
|
z.ZodTypeDef,
|
|
1837
1837
|
unknown
|
|
1838
1838
|
> = z.object({
|
|
1839
|
-
_id: z.string().default("
|
|
1839
|
+
_id: z.string().default("tool_01KATZ22HRXDJPAH9N331VTPKF"),
|
|
1840
1840
|
path: z.string(),
|
|
1841
1841
|
key: z.string(),
|
|
1842
1842
|
display_name: z.string().optional(),
|
|
@@ -1888,7 +1888,7 @@ export const DataJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1888
1888
|
z.ZodTypeDef,
|
|
1889
1889
|
DataJSONSchemaTool
|
|
1890
1890
|
> = z.object({
|
|
1891
|
-
id: z.string().default("
|
|
1891
|
+
id: z.string().default("tool_01KATZ22HRXDJPAH9N331VTPKF"),
|
|
1892
1892
|
path: z.string(),
|
|
1893
1893
|
key: z.string(),
|
|
1894
1894
|
displayName: z.string().optional(),
|
|
@@ -2073,7 +2073,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
2073
2073
|
z.ZodTypeDef,
|
|
2074
2074
|
unknown
|
|
2075
2075
|
> = z.object({
|
|
2076
|
-
_id: z.string().default("
|
|
2076
|
+
_id: z.string().default("tool_01KATZ22HQ1XWGQXMT3PXZBE2V"),
|
|
2077
2077
|
path: z.string(),
|
|
2078
2078
|
key: z.string(),
|
|
2079
2079
|
display_name: z.string().optional(),
|
|
@@ -2124,7 +2124,7 @@ export const DataFunctionTool$outboundSchema: z.ZodType<
|
|
|
2124
2124
|
z.ZodTypeDef,
|
|
2125
2125
|
DataFunctionTool
|
|
2126
2126
|
> = z.object({
|
|
2127
|
-
id: z.string().default("
|
|
2127
|
+
id: z.string().default("tool_01KATZ22HQ1XWGQXMT3PXZBE2V"),
|
|
2128
2128
|
path: z.string(),
|
|
2129
2129
|
key: z.string(),
|
|
2130
2130
|
displayName: z.string().optional(),
|
|
@@ -291,7 +291,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
291
291
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
292
292
|
.optional(),
|
|
293
293
|
updated: z.string().datetime({ offset: true }).default(
|
|
294
|
-
"2025-11-
|
|
294
|
+
"2025-11-24T12:57:33.395Z",
|
|
295
295
|
).transform(v => new Date(v)),
|
|
296
296
|
}).transform((v) => {
|
|
297
297
|
return remap$(v, {
|
|
@@ -328,7 +328,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
328
328
|
isActive: z.boolean(),
|
|
329
329
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
330
330
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
331
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
331
|
+
updated: z.date().default(() => new Date("2025-11-24T12:57:33.395Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|