@orq-ai/node 3.13.3 → 3.13.4
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 +216 -246
- package/bin/mcp-server.js.map +42 -42
- package/docs/sdks/agents/README.md +3 -3
- package/examples/package-lock.json +1 -1
- package/funcs/agentsRetrieveTask.js +2 -2
- package/funcs/agentsRetrieveTask.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- 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/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- 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.d.ts +5 -2
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +4 -12
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getagenttask.d.ts +2 -2
- package/models/operations/getagenttask.d.ts.map +1 -1
- package/models/operations/getagenttask.js +4 -2
- package/models/operations/getagenttask.js.map +1 -1
- 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.d.ts +5 -2
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +4 -12
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- 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 +2 -2
- 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.d.ts +5 -2
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +4 -12
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +5 -2
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +4 -12
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- 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 +97 -91
- package/packages/orq-rc/docs/sdks/agents/README.md +3 -3
- package/packages/orq-rc/docs/sdks/knowledge/README.md +228 -0
- package/packages/orq-rc/docs/sdks/tools/README.md +14 -16
- 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/agentsRetrieveTask.ts +2 -2
- package/packages/orq-rc/src/funcs/knowledgeDeleteChunks.ts +170 -0
- package/packages/orq-rc/src/funcs/knowledgeGetChunksCount.ts +170 -0
- package/packages/orq-rc/src/funcs/knowledgeListChunksPaginated.ts +171 -0
- package/packages/orq-rc/src/funcs/toolsDelete.ts +2 -2
- package/packages/orq-rc/src/funcs/toolsDuplicate.ts +3 -3
- package/packages/orq-rc/src/funcs/toolsRetrieve.ts +3 -3
- package/packages/orq-rc/src/funcs/toolsUpdate.ts +2 -2
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +7 -1
- package/packages/orq-rc/src/mcp-server/tools/knowledgeDeleteChunks.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/knowledgeGetChunksCount.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/knowledgeListChunksPaginated.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +1 -1
- 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 +2 -2
- 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 +8 -0
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -22
- package/packages/orq-rc/src/models/operations/deletechunks.ts +243 -0
- package/packages/orq-rc/src/models/operations/deletetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +4 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +4 -0
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +23 -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 -14
- package/packages/orq-rc/src/models/operations/getagenttask.ts +6 -4
- package/packages/orq-rc/src/models/operations/getallprompts.ts +4 -0
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getchunkscount.ts +230 -0
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +4 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +4 -0
- package/packages/orq-rc/src/models/operations/index.ts +3 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -14
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listchunkspaginated.ts +507 -0
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- 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/listpromptversions.ts +4 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- 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 +16 -16
- package/packages/orq-rc/src/models/operations/runagent.ts +7 -18
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -18
- 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 +2 -2
- 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 +8 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +44 -28
- package/packages/orq-rc/src/sdk/knowledge.ts +45 -0
- package/packages/orq-rc/src/sdk/tools.ts +2 -2
- package/src/funcs/agentsRetrieveTask.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/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 -2
- 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/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 +9 -14
- package/src/models/operations/getagenttask.ts +6 -4
- 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 +9 -14
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- 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/retrievecontact.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 +10 -10
- package/src/models/operations/runagent.ts +9 -14
- package/src/models/operations/streamrunagent.ts +9 -14
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- 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/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -3347,8 +3347,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
3347
3347
|
> = z.object({
|
|
3348
3348
|
_id: z.string(),
|
|
3349
3349
|
description: z.string(),
|
|
3350
|
-
created: z.string().default("2025-10-
|
|
3351
|
-
updated: z.string().default("2025-10-
|
|
3350
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3351
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3352
3352
|
guardrail_config: z.union([
|
|
3353
3353
|
z.lazy(() =>
|
|
3354
3354
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3391,8 +3391,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
3391
3391
|
> = z.object({
|
|
3392
3392
|
id: z.string(),
|
|
3393
3393
|
description: z.string(),
|
|
3394
|
-
created: z.string().default("2025-10-
|
|
3395
|
-
updated: z.string().default("2025-10-
|
|
3394
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3395
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3396
3396
|
guardrailConfig: z.union([
|
|
3397
3397
|
z.lazy(() =>
|
|
3398
3398
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3809,8 +3809,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3809
3809
|
.object({
|
|
3810
3810
|
_id: z.string(),
|
|
3811
3811
|
description: z.string(),
|
|
3812
|
-
created: z.string().default("2025-10-
|
|
3813
|
-
updated: z.string().default("2025-10-
|
|
3812
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3813
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3814
3814
|
guardrail_config: z.union([
|
|
3815
3815
|
z.lazy(() =>
|
|
3816
3816
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3856,8 +3856,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3856
3856
|
> = z.object({
|
|
3857
3857
|
id: z.string(),
|
|
3858
3858
|
description: z.string(),
|
|
3859
|
-
created: z.string().default("2025-10-
|
|
3860
|
-
updated: z.string().default("2025-10-
|
|
3859
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3860
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
3861
3861
|
guardrailConfig: z.union([
|
|
3862
3862
|
z.lazy(() =>
|
|
3863
3863
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7281,8 +7281,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7281
7281
|
> = z.object({
|
|
7282
7282
|
_id: z.string(),
|
|
7283
7283
|
description: z.string(),
|
|
7284
|
-
created: z.string().default("2025-10-
|
|
7285
|
-
updated: z.string().default("2025-10-
|
|
7284
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7285
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7286
7286
|
guardrail_config: z.union([
|
|
7287
7287
|
z.lazy(() =>
|
|
7288
7288
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7396,8 +7396,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7396
7396
|
> = z.object({
|
|
7397
7397
|
id: z.string(),
|
|
7398
7398
|
description: z.string(),
|
|
7399
|
-
created: z.string().default("2025-10-
|
|
7400
|
-
updated: z.string().default("2025-10-
|
|
7399
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7400
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7401
7401
|
guardrailConfig: z.union([
|
|
7402
7402
|
z.lazy(() =>
|
|
7403
7403
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -7836,8 +7836,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7836
7836
|
> = z.object({
|
|
7837
7837
|
_id: z.string(),
|
|
7838
7838
|
description: z.string(),
|
|
7839
|
-
created: z.string().default("2025-10-
|
|
7840
|
-
updated: z.string().default("2025-10-
|
|
7839
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7840
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7841
7841
|
guardrail_config: z.union([
|
|
7842
7842
|
z.lazy(() =>
|
|
7843
7843
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7879,8 +7879,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7879
7879
|
> = z.object({
|
|
7880
7880
|
id: z.string(),
|
|
7881
7881
|
description: z.string(),
|
|
7882
|
-
created: z.string().default("2025-10-
|
|
7883
|
-
updated: z.string().default("2025-10-
|
|
7882
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7883
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
7884
7884
|
guardrailConfig: z.union([
|
|
7885
7885
|
z.lazy(() =>
|
|
7886
7886
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8293,8 +8293,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8293
8293
|
> = z.object({
|
|
8294
8294
|
_id: z.string(),
|
|
8295
8295
|
description: z.string(),
|
|
8296
|
-
created: z.string().default("2025-10-
|
|
8297
|
-
updated: z.string().default("2025-10-
|
|
8296
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8297
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8298
8298
|
guardrail_config: z.union([
|
|
8299
8299
|
z.lazy(() =>
|
|
8300
8300
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8342,8 +8342,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8342
8342
|
> = z.object({
|
|
8343
8343
|
id: z.string(),
|
|
8344
8344
|
description: z.string(),
|
|
8345
|
-
created: z.string().default("2025-10-
|
|
8346
|
-
updated: z.string().default("2025-10-
|
|
8345
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8346
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8347
8347
|
guardrailConfig: z.union([
|
|
8348
8348
|
z.lazy(() =>
|
|
8349
8349
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -8720,8 +8720,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
8720
8720
|
> = z.object({
|
|
8721
8721
|
_id: z.string(),
|
|
8722
8722
|
description: z.string(),
|
|
8723
|
-
created: z.string().default("2025-10-
|
|
8724
|
-
updated: z.string().default("2025-10-
|
|
8723
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8724
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8725
8725
|
guardrail_config: z.union([
|
|
8726
8726
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
8727
8727
|
z.lazy(() =>
|
|
@@ -8761,8 +8761,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8761
8761
|
> = z.object({
|
|
8762
8762
|
id: z.string(),
|
|
8763
8763
|
description: z.string(),
|
|
8764
|
-
created: z.string().default("2025-10-
|
|
8765
|
-
updated: z.string().default("2025-10-
|
|
8764
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8765
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
8766
8766
|
guardrailConfig: z.union([
|
|
8767
8767
|
z.lazy(() =>
|
|
8768
8768
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9117,8 +9117,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9117
9117
|
> = z.object({
|
|
9118
9118
|
_id: z.string(),
|
|
9119
9119
|
description: z.string(),
|
|
9120
|
-
created: z.string().default("2025-10-
|
|
9121
|
-
updated: z.string().default("2025-10-
|
|
9120
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
9121
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
9122
9122
|
guardrail_config: z.union([
|
|
9123
9123
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9124
9124
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9158,8 +9158,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9158
9158
|
> = z.object({
|
|
9159
9159
|
id: z.string(),
|
|
9160
9160
|
description: z.string(),
|
|
9161
|
-
created: z.string().default("2025-10-
|
|
9162
|
-
updated: z.string().default("2025-10-
|
|
9161
|
+
created: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
9162
|
+
updated: z.string().default("2025-10-03T07:40:57.310Z"),
|
|
9163
9163
|
guardrailConfig: z.union([
|
|
9164
9164
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9165
9165
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -1881,7 +1881,7 @@ export const RequestBody3$inboundSchema: z.ZodType<
|
|
|
1881
1881
|
z.ZodTypeDef,
|
|
1882
1882
|
unknown
|
|
1883
1883
|
> = z.object({
|
|
1884
|
-
_id: z.string().default("
|
|
1884
|
+
_id: z.string().default("01K6MG8W5KD610B54XTCEAGGX6"),
|
|
1885
1885
|
path: z.string(),
|
|
1886
1886
|
key: z.string(),
|
|
1887
1887
|
display_name: z.string(),
|
|
@@ -1914,7 +1914,7 @@ export const RequestBody3$outboundSchema: z.ZodType<
|
|
|
1914
1914
|
z.ZodTypeDef,
|
|
1915
1915
|
RequestBody3
|
|
1916
1916
|
> = z.object({
|
|
1917
|
-
id: z.string().default("
|
|
1917
|
+
id: z.string().default("01K6MG8W5KD610B54XTCEAGGX6"),
|
|
1918
1918
|
path: z.string(),
|
|
1919
1919
|
key: z.string(),
|
|
1920
1920
|
displayName: z.string(),
|
|
@@ -2067,7 +2067,7 @@ export const RequestBody2$inboundSchema: z.ZodType<
|
|
|
2067
2067
|
z.ZodTypeDef,
|
|
2068
2068
|
unknown
|
|
2069
2069
|
> = z.object({
|
|
2070
|
-
_id: z.string().default("
|
|
2070
|
+
_id: z.string().default("01K6MG8W5K3NWFKVWY0WTVJZVA"),
|
|
2071
2071
|
path: z.string(),
|
|
2072
2072
|
key: z.string(),
|
|
2073
2073
|
display_name: z.string(),
|
|
@@ -2101,7 +2101,7 @@ export const RequestBody2$outboundSchema: z.ZodType<
|
|
|
2101
2101
|
z.ZodTypeDef,
|
|
2102
2102
|
RequestBody2
|
|
2103
2103
|
> = z.object({
|
|
2104
|
-
id: z.string().default("
|
|
2104
|
+
id: z.string().default("01K6MG8W5K3NWFKVWY0WTVJZVA"),
|
|
2105
2105
|
path: z.string(),
|
|
2106
2106
|
key: z.string(),
|
|
2107
2107
|
displayName: z.string(),
|
|
@@ -2525,7 +2525,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2525
2525
|
z.ZodTypeDef,
|
|
2526
2526
|
unknown
|
|
2527
2527
|
> = z.object({
|
|
2528
|
-
_id: z.string().default("
|
|
2528
|
+
_id: z.string().default("01K6MG8W5JNMJ8ZKFC0B2AY262"),
|
|
2529
2529
|
path: z.string(),
|
|
2530
2530
|
key: z.string(),
|
|
2531
2531
|
display_name: z.string(),
|
|
@@ -2580,7 +2580,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2580
2580
|
z.ZodTypeDef,
|
|
2581
2581
|
ResponseBody5
|
|
2582
2582
|
> = z.object({
|
|
2583
|
-
id: z.string().default("
|
|
2583
|
+
id: z.string().default("01K6MG8W5JNMJ8ZKFC0B2AY262"),
|
|
2584
2584
|
path: z.string(),
|
|
2585
2585
|
key: z.string(),
|
|
2586
2586
|
displayName: z.string(),
|
|
@@ -2939,7 +2939,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2939
2939
|
z.ZodTypeDef,
|
|
2940
2940
|
unknown
|
|
2941
2941
|
> = z.object({
|
|
2942
|
-
_id: z.string().default("
|
|
2942
|
+
_id: z.string().default("01K6MG8W5JTZ427YXCFFYJRAG2"),
|
|
2943
2943
|
path: z.string(),
|
|
2944
2944
|
key: z.string(),
|
|
2945
2945
|
display_name: z.string(),
|
|
@@ -2993,7 +2993,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2993
2993
|
z.ZodTypeDef,
|
|
2994
2994
|
ResponseBody4
|
|
2995
2995
|
> = z.object({
|
|
2996
|
-
id: z.string().default("
|
|
2996
|
+
id: z.string().default("01K6MG8W5JTZ427YXCFFYJRAG2"),
|
|
2997
2997
|
path: z.string(),
|
|
2998
2998
|
key: z.string(),
|
|
2999
2999
|
displayName: z.string(),
|
|
@@ -3391,7 +3391,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3391
3391
|
z.ZodTypeDef,
|
|
3392
3392
|
unknown
|
|
3393
3393
|
> = z.object({
|
|
3394
|
-
_id: z.string().default("
|
|
3394
|
+
_id: z.string().default("01K6MG8W5H8RS1HB8YA46T8P80"),
|
|
3395
3395
|
path: z.string(),
|
|
3396
3396
|
key: z.string(),
|
|
3397
3397
|
display_name: z.string(),
|
|
@@ -3443,7 +3443,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3443
3443
|
z.ZodTypeDef,
|
|
3444
3444
|
ResponseBody3
|
|
3445
3445
|
> = z.object({
|
|
3446
|
-
id: z.string().default("
|
|
3446
|
+
id: z.string().default("01K6MG8W5H8RS1HB8YA46T8P80"),
|
|
3447
3447
|
path: z.string(),
|
|
3448
3448
|
key: z.string(),
|
|
3449
3449
|
displayName: z.string(),
|
|
@@ -3608,7 +3608,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3608
3608
|
z.ZodTypeDef,
|
|
3609
3609
|
unknown
|
|
3610
3610
|
> = z.object({
|
|
3611
|
-
_id: z.string().default("
|
|
3611
|
+
_id: z.string().default("01K6MG8W5HAVBVSHARVD2EVGDP"),
|
|
3612
3612
|
path: z.string(),
|
|
3613
3613
|
key: z.string(),
|
|
3614
3614
|
display_name: z.string(),
|
|
@@ -3661,7 +3661,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3661
3661
|
z.ZodTypeDef,
|
|
3662
3662
|
ResponseBody2
|
|
3663
3663
|
> = z.object({
|
|
3664
|
-
id: z.string().default("
|
|
3664
|
+
id: z.string().default("01K6MG8W5HAVBVSHARVD2EVGDP"),
|
|
3665
3665
|
path: z.string(),
|
|
3666
3666
|
key: z.string(),
|
|
3667
3667
|
displayName: z.string(),
|
|
@@ -3829,7 +3829,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3829
3829
|
z.ZodTypeDef,
|
|
3830
3830
|
unknown
|
|
3831
3831
|
> = z.object({
|
|
3832
|
-
_id: z.string().default("
|
|
3832
|
+
_id: z.string().default("01K6MG8W5GXF0WG4SPZ5YQQ9X8"),
|
|
3833
3833
|
path: z.string(),
|
|
3834
3834
|
key: z.string(),
|
|
3835
3835
|
display_name: z.string(),
|
|
@@ -3881,7 +3881,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3881
3881
|
z.ZodTypeDef,
|
|
3882
3882
|
ResponseBody1
|
|
3883
3883
|
> = z.object({
|
|
3884
|
-
id: z.string().default("
|
|
3884
|
+
id: z.string().default("01K6MG8W5GXF0WG4SPZ5YQQ9X8"),
|
|
3885
3885
|
path: z.string(),
|
|
3886
3886
|
key: z.string(),
|
|
3887
3887
|
displayName: z.string(),
|
|
@@ -750,7 +750,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
750
750
|
z.ZodTypeDef,
|
|
751
751
|
unknown
|
|
752
752
|
> = z.object({
|
|
753
|
-
_id: z.string().default("
|
|
753
|
+
_id: z.string().default("01K6MG8W5SRV06QKHBMHNKQXE3"),
|
|
754
754
|
path: z.string(),
|
|
755
755
|
key: z.string(),
|
|
756
756
|
display_name: z.string(),
|
|
@@ -806,7 +806,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
806
806
|
z.ZodTypeDef,
|
|
807
807
|
DuplicateToolResponseBody5
|
|
808
808
|
> = z.object({
|
|
809
|
-
id: z.string().default("
|
|
809
|
+
id: z.string().default("01K6MG8W5SRV06QKHBMHNKQXE3"),
|
|
810
810
|
path: z.string(),
|
|
811
811
|
key: z.string(),
|
|
812
812
|
displayName: z.string(),
|
|
@@ -1194,7 +1194,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1194
1194
|
z.ZodTypeDef,
|
|
1195
1195
|
unknown
|
|
1196
1196
|
> = z.object({
|
|
1197
|
-
_id: z.string().default("
|
|
1197
|
+
_id: z.string().default("01K6MG8W5SFQQCBZ7TB099Q2HP"),
|
|
1198
1198
|
path: z.string(),
|
|
1199
1199
|
key: z.string(),
|
|
1200
1200
|
display_name: z.string(),
|
|
@@ -1248,7 +1248,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1248
1248
|
z.ZodTypeDef,
|
|
1249
1249
|
DuplicateToolResponseBody4
|
|
1250
1250
|
> = z.object({
|
|
1251
|
-
id: z.string().default("
|
|
1251
|
+
id: z.string().default("01K6MG8W5SFQQCBZ7TB099Q2HP"),
|
|
1252
1252
|
path: z.string(),
|
|
1253
1253
|
key: z.string(),
|
|
1254
1254
|
displayName: z.string(),
|
|
@@ -1675,7 +1675,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1675
1675
|
z.ZodTypeDef,
|
|
1676
1676
|
unknown
|
|
1677
1677
|
> = z.object({
|
|
1678
|
-
_id: z.string().default("
|
|
1678
|
+
_id: z.string().default("01K6MG8W5RDVPAF4DGKW9XGBDW"),
|
|
1679
1679
|
path: z.string(),
|
|
1680
1680
|
key: z.string(),
|
|
1681
1681
|
display_name: z.string(),
|
|
@@ -1729,7 +1729,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1729
1729
|
z.ZodTypeDef,
|
|
1730
1730
|
DuplicateToolResponseBody3
|
|
1731
1731
|
> = z.object({
|
|
1732
|
-
id: z.string().default("
|
|
1732
|
+
id: z.string().default("01K6MG8W5RDVPAF4DGKW9XGBDW"),
|
|
1733
1733
|
path: z.string(),
|
|
1734
1734
|
key: z.string(),
|
|
1735
1735
|
displayName: z.string(),
|
|
@@ -1909,7 +1909,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1909
1909
|
z.ZodTypeDef,
|
|
1910
1910
|
unknown
|
|
1911
1911
|
> = z.object({
|
|
1912
|
-
_id: z.string().default("
|
|
1912
|
+
_id: z.string().default("01K6MG8W5R4TQJ1BHWFM2EGYBX"),
|
|
1913
1913
|
path: z.string(),
|
|
1914
1914
|
key: z.string(),
|
|
1915
1915
|
display_name: z.string(),
|
|
@@ -1962,7 +1962,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1962
1962
|
z.ZodTypeDef,
|
|
1963
1963
|
DuplicateToolResponseBody2
|
|
1964
1964
|
> = z.object({
|
|
1965
|
-
id: z.string().default("
|
|
1965
|
+
id: z.string().default("01K6MG8W5R4TQJ1BHWFM2EGYBX"),
|
|
1966
1966
|
path: z.string(),
|
|
1967
1967
|
key: z.string(),
|
|
1968
1968
|
displayName: z.string(),
|
|
@@ -2135,7 +2135,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2135
2135
|
z.ZodTypeDef,
|
|
2136
2136
|
unknown
|
|
2137
2137
|
> = z.object({
|
|
2138
|
-
_id: z.string().default("
|
|
2138
|
+
_id: z.string().default("01K6MG8W5R1V8JXXK72EKHEH5A"),
|
|
2139
2139
|
path: z.string(),
|
|
2140
2140
|
key: z.string(),
|
|
2141
2141
|
display_name: z.string(),
|
|
@@ -2187,7 +2187,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2187
2187
|
z.ZodTypeDef,
|
|
2188
2188
|
DuplicateToolResponseBody1
|
|
2189
2189
|
> = z.object({
|
|
2190
|
-
id: z.string().default("
|
|
2190
|
+
id: z.string().default("01K6MG8W5R1V8JXXK72EKHEH5A"),
|
|
2191
2191
|
path: z.string(),
|
|
2192
2192
|
key: z.string(),
|
|
2193
2193
|
displayName: z.string(),
|
|
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
146
146
|
file_name: z.string(),
|
|
147
147
|
workspace_id: z.string(),
|
|
148
148
|
created: z.string().datetime({ offset: true }).default(
|
|
149
|
-
"2025-10-
|
|
149
|
+
"2025-10-03T07:40:58.086Z",
|
|
150
150
|
).transform(v => new Date(v)),
|
|
151
151
|
}).transform((v) => {
|
|
152
152
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
180
180
|
bytes: z.number(),
|
|
181
181
|
fileName: z.string(),
|
|
182
182
|
workspaceId: z.string(),
|
|
183
|
-
created: z.date().default(() => new Date("2025-10-
|
|
183
|
+
created: z.date().default(() => new Date("2025-10-03T07:40:58.086Z"))
|
|
184
184
|
.transform(v => v.toISOString()),
|
|
185
185
|
}).transform((v) => {
|
|
186
186
|
return remap$(v, {
|
|
@@ -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-10-
|
|
199
|
+
"2025-10-03T07:40:58.086Z",
|
|
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-10-
|
|
233
|
+
created: z.date().default(() => new Date("2025-10-03T07:40:58.086Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
250
250
|
file_name: z.string(),
|
|
251
251
|
workspace_id: z.string(),
|
|
252
252
|
created: z.string().datetime({ offset: true }).default(
|
|
253
|
-
"2025-10-
|
|
253
|
+
"2025-10-03T07:40:58.086Z",
|
|
254
254
|
).transform(v => new Date(v)),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
284
284
|
bytes: z.number(),
|
|
285
285
|
fileName: z.string(),
|
|
286
286
|
workspaceId: z.string(),
|
|
287
|
-
created: z.date().default(() => new Date("2025-10-
|
|
287
|
+
created: z.date().default(() => new Date("2025-10-03T07:40:58.086Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -119,7 +119,10 @@ export type GetAgentModel = {
|
|
|
119
119
|
};
|
|
120
120
|
|
|
121
121
|
export type GetAgentTeamOfAgents = {
|
|
122
|
-
|
|
122
|
+
/**
|
|
123
|
+
* The unique key of the agent within the workspace
|
|
124
|
+
*/
|
|
125
|
+
key: string;
|
|
123
126
|
/**
|
|
124
127
|
* The role of the agent in this context. This is used to give extra information to the leader to help it decide which agent to hand off to.
|
|
125
128
|
*/
|
|
@@ -628,17 +631,13 @@ export const GetAgentTeamOfAgents$inboundSchema: z.ZodType<
|
|
|
628
631
|
z.ZodTypeDef,
|
|
629
632
|
unknown
|
|
630
633
|
> = z.object({
|
|
631
|
-
|
|
634
|
+
key: z.string(),
|
|
632
635
|
role: z.string().optional(),
|
|
633
|
-
}).transform((v) => {
|
|
634
|
-
return remap$(v, {
|
|
635
|
-
"_id": "id",
|
|
636
|
-
});
|
|
637
636
|
});
|
|
638
637
|
|
|
639
638
|
/** @internal */
|
|
640
639
|
export type GetAgentTeamOfAgents$Outbound = {
|
|
641
|
-
|
|
640
|
+
key: string;
|
|
642
641
|
role?: string | undefined;
|
|
643
642
|
};
|
|
644
643
|
|
|
@@ -648,12 +647,8 @@ export const GetAgentTeamOfAgents$outboundSchema: z.ZodType<
|
|
|
648
647
|
z.ZodTypeDef,
|
|
649
648
|
GetAgentTeamOfAgents
|
|
650
649
|
> = z.object({
|
|
651
|
-
|
|
650
|
+
key: z.string(),
|
|
652
651
|
role: z.string().optional(),
|
|
653
|
-
}).transform((v) => {
|
|
654
|
-
return remap$(v, {
|
|
655
|
-
id: "_id",
|
|
656
|
-
});
|
|
657
652
|
});
|
|
658
653
|
|
|
659
654
|
/**
|
|
@@ -1000,7 +995,7 @@ export const GetAgentKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
1000
995
|
z.ZodTypeDef,
|
|
1001
996
|
unknown
|
|
1002
997
|
> = z.object({
|
|
1003
|
-
id: z.string().default("
|
|
998
|
+
id: z.string().default("01K6MG8VXTC33GWKWY15G8CR73"),
|
|
1004
999
|
knowledge_id: z.string(),
|
|
1005
1000
|
configuration: z.union([
|
|
1006
1001
|
z.lazy(() =>
|
|
@@ -1031,7 +1026,7 @@ export const GetAgentKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
1031
1026
|
z.ZodTypeDef,
|
|
1032
1027
|
GetAgentKnowledgeBases
|
|
1033
1028
|
> = z.object({
|
|
1034
|
-
id: z.string().default("
|
|
1029
|
+
id: z.string().default("01K6MG8VXTC33GWKWY15G8CR73"),
|
|
1035
1030
|
knowledgeId: z.string(),
|
|
1036
1031
|
configuration: z.union([
|
|
1037
1032
|
z.lazy(() =>
|
|
@@ -10,7 +10,7 @@ import { Result as SafeParseResult } from "../../types/fp.js";
|
|
|
10
10
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
11
11
|
|
|
12
12
|
export type GetAgentTaskRequest = {
|
|
13
|
-
|
|
13
|
+
agentKey: string;
|
|
14
14
|
taskId: string;
|
|
15
15
|
};
|
|
16
16
|
|
|
@@ -44,17 +44,18 @@ export const GetAgentTaskRequest$inboundSchema: z.ZodType<
|
|
|
44
44
|
z.ZodTypeDef,
|
|
45
45
|
unknown
|
|
46
46
|
> = z.object({
|
|
47
|
-
|
|
47
|
+
agent_key: z.string(),
|
|
48
48
|
task_id: z.string(),
|
|
49
49
|
}).transform((v) => {
|
|
50
50
|
return remap$(v, {
|
|
51
|
+
"agent_key": "agentKey",
|
|
51
52
|
"task_id": "taskId",
|
|
52
53
|
});
|
|
53
54
|
});
|
|
54
55
|
|
|
55
56
|
/** @internal */
|
|
56
57
|
export type GetAgentTaskRequest$Outbound = {
|
|
57
|
-
|
|
58
|
+
agent_key: string;
|
|
58
59
|
task_id: string;
|
|
59
60
|
};
|
|
60
61
|
|
|
@@ -64,10 +65,11 @@ export const GetAgentTaskRequest$outboundSchema: z.ZodType<
|
|
|
64
65
|
z.ZodTypeDef,
|
|
65
66
|
GetAgentTaskRequest
|
|
66
67
|
> = z.object({
|
|
67
|
-
|
|
68
|
+
agentKey: z.string(),
|
|
68
69
|
taskId: z.string(),
|
|
69
70
|
}).transform((v) => {
|
|
70
71
|
return remap$(v, {
|
|
72
|
+
agentKey: "agent_key",
|
|
71
73
|
taskId: "task_id",
|
|
72
74
|
});
|
|
73
75
|
});
|
|
@@ -763,7 +763,7 @@ export function dataCodeToolFromJSON(
|
|
|
763
763
|
/** @internal */
|
|
764
764
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
765
765
|
.object({
|
|
766
|
-
_id: z.string().default("
|
|
766
|
+
_id: z.string().default("01K6MG8W5DHHZHPQZT4WZWB82S"),
|
|
767
767
|
path: z.string(),
|
|
768
768
|
key: z.string(),
|
|
769
769
|
display_name: z.string(),
|
|
@@ -816,7 +816,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
816
816
|
z.ZodTypeDef,
|
|
817
817
|
Data5
|
|
818
818
|
> = z.object({
|
|
819
|
-
id: z.string().default("
|
|
819
|
+
id: z.string().default("01K6MG8W5DHHZHPQZT4WZWB82S"),
|
|
820
820
|
path: z.string(),
|
|
821
821
|
key: z.string(),
|
|
822
822
|
displayName: z.string(),
|
|
@@ -1159,7 +1159,7 @@ export function dataMcpFromJSON(
|
|
|
1159
1159
|
/** @internal */
|
|
1160
1160
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1161
1161
|
.object({
|
|
1162
|
-
_id: z.string().default("
|
|
1162
|
+
_id: z.string().default("01K6MG8W5C4WFWE8SFQK51EM0R"),
|
|
1163
1163
|
path: z.string(),
|
|
1164
1164
|
key: z.string(),
|
|
1165
1165
|
display_name: z.string(),
|
|
@@ -1211,7 +1211,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1211
1211
|
z.ZodTypeDef,
|
|
1212
1212
|
Data4
|
|
1213
1213
|
> = z.object({
|
|
1214
|
-
id: z.string().default("
|
|
1214
|
+
id: z.string().default("01K6MG8W5C4WFWE8SFQK51EM0R"),
|
|
1215
1215
|
path: z.string(),
|
|
1216
1216
|
key: z.string(),
|
|
1217
1217
|
displayName: z.string(),
|
|
@@ -1594,7 +1594,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1594
1594
|
/** @internal */
|
|
1595
1595
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1596
1596
|
.object({
|
|
1597
|
-
_id: z.string().default("
|
|
1597
|
+
_id: z.string().default("01K6MG8W5CVY2DC4J95V7CWG88"),
|
|
1598
1598
|
path: z.string(),
|
|
1599
1599
|
key: z.string(),
|
|
1600
1600
|
display_name: z.string(),
|
|
@@ -1646,7 +1646,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1646
1646
|
z.ZodTypeDef,
|
|
1647
1647
|
Data3
|
|
1648
1648
|
> = z.object({
|
|
1649
|
-
id: z.string().default("
|
|
1649
|
+
id: z.string().default("01K6MG8W5CVY2DC4J95V7CWG88"),
|
|
1650
1650
|
path: z.string(),
|
|
1651
1651
|
key: z.string(),
|
|
1652
1652
|
displayName: z.string(),
|
|
@@ -1804,7 +1804,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1804
1804
|
/** @internal */
|
|
1805
1805
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1806
1806
|
.object({
|
|
1807
|
-
_id: z.string().default("
|
|
1807
|
+
_id: z.string().default("01K6MG8W5B4QN0C6G3GD45Y8DH"),
|
|
1808
1808
|
path: z.string(),
|
|
1809
1809
|
key: z.string(),
|
|
1810
1810
|
display_name: z.string(),
|
|
@@ -1857,7 +1857,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1857
1857
|
z.ZodTypeDef,
|
|
1858
1858
|
Data2
|
|
1859
1859
|
> = z.object({
|
|
1860
|
-
id: z.string().default("
|
|
1860
|
+
id: z.string().default("01K6MG8W5B4QN0C6G3GD45Y8DH"),
|
|
1861
1861
|
path: z.string(),
|
|
1862
1862
|
key: z.string(),
|
|
1863
1863
|
displayName: z.string(),
|
|
@@ -2018,7 +2018,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
2018
2018
|
/** @internal */
|
|
2019
2019
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
2020
2020
|
.object({
|
|
2021
|
-
_id: z.string().default("
|
|
2021
|
+
_id: z.string().default("01K6MG8W5B5G10BT3W0JY7TECY"),
|
|
2022
2022
|
path: z.string(),
|
|
2023
2023
|
key: z.string(),
|
|
2024
2024
|
display_name: z.string(),
|
|
@@ -2070,7 +2070,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
2070
2070
|
z.ZodTypeDef,
|
|
2071
2071
|
Data1
|
|
2072
2072
|
> = z.object({
|
|
2073
|
-
id: z.string().default("
|
|
2073
|
+
id: z.string().default("01K6MG8W5B5G10BT3W0JY7TECY"),
|
|
2074
2074
|
path: z.string(),
|
|
2075
2075
|
key: z.string(),
|
|
2076
2076
|
displayName: z.string(),
|
|
@@ -351,7 +351,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
351
351
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
352
352
|
.optional(),
|
|
353
353
|
updated: z.string().datetime({ offset: true }).default(
|
|
354
|
-
"2025-10-
|
|
354
|
+
"2025-10-03T07:40:54.894Z",
|
|
355
355
|
).transform(v => new Date(v)),
|
|
356
356
|
}).transform((v) => {
|
|
357
357
|
return remap$(v, {
|
|
@@ -386,7 +386,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
386
386
|
isActive: z.boolean(),
|
|
387
387
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
388
388
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
389
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
389
|
+
updated: z.date().default(() => new Date("2025-10-03T07:40:54.894Z"))
|
|
390
390
|
.transform(v => v.toISOString()),
|
|
391
391
|
}).transform((v) => {
|
|
392
392
|
return remap$(v, {
|