@orq-ai/node 4.8.1 → 4.8.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/FUNCTIONS.md +2 -2
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/config.js.map +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createprompt.d.ts +1 -0
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +1 -0
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/deploymentgetconfig.d.ts +1 -0
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +1 -0
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +1 -0
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +1 -0
- package/models/operations/deployments.js.map +1 -1
- package/models/operations/getallprompts.d.ts +1 -0
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +1 -0
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getoneprompt.d.ts +1 -0
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +1 -0
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +1 -0
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +1 -0
- package/models/operations/getpromptversion.js.map +1 -1
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/listpromptversions.d.ts +1 -0
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +1 -0
- package/models/operations/listpromptversions.js.map +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/policyupdate.d.ts +5 -0
- package/models/operations/policyupdate.d.ts.map +1 -1
- package/models/operations/policyupdate.js +2 -0
- package/models/operations/policyupdate.js.map +1 -1
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updateprompt.d.ts +1 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +1 -0
- package/models/operations/updateprompt.js.map +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +6 -6
- package/packages/orq-rc/src/funcs/filesCreate.ts +13 -48
- package/packages/orq-rc/src/funcs/filesDelete.ts +8 -8
- package/packages/orq-rc/src/funcs/filesGet.ts +6 -5
- package/packages/orq-rc/src/funcs/filesGetContent.ts +9 -9
- package/packages/orq-rc/src/funcs/filesList.ts +6 -5
- package/packages/orq-rc/src/funcs/filesUpdate.ts +8 -7
- package/packages/orq-rc/src/funcs/skillsCreate.ts +162 -0
- package/packages/orq-rc/src/funcs/skillsDelete.ts +165 -0
- package/packages/orq-rc/src/funcs/skillsGet.ts +168 -0
- package/packages/orq-rc/src/funcs/skillsList.ts +170 -0
- package/packages/orq-rc/src/funcs/skillsUpdate.ts +171 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/models/components/createfilerequest.ts +45 -0
- package/packages/orq-rc/src/models/components/createfileresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/createskillrequest.ts +55 -0
- package/packages/orq-rc/src/models/components/createskillresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/deletefileresponse.ts +27 -0
- package/packages/orq-rc/src/models/components/deleteskillresponse.ts +27 -0
- package/packages/orq-rc/src/models/components/file.ts +48 -0
- package/packages/orq-rc/src/models/components/filepart.ts +21 -16
- package/packages/orq-rc/src/models/components/getfilecontentresponse.ts +36 -0
- package/packages/orq-rc/src/models/components/getfileresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/getskillresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/index.ts +17 -1
- package/packages/orq-rc/src/models/components/listfilesresponse.ts +41 -0
- package/packages/orq-rc/src/models/components/listskillsresponse.ts +41 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/skill.ts +77 -0
- package/packages/orq-rc/src/models/components/updatefilerequest.ts +40 -0
- package/packages/orq-rc/src/models/components/updatefileresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/updateskillrequest.ts +55 -0
- package/packages/orq-rc/src/models/components/updateskillresponse.ts +32 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +11 -0
- package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/filecontent.ts +0 -3
- package/packages/orq-rc/src/models/operations/filedelete.ts +0 -3
- package/packages/orq-rc/src/models/operations/fileget.ts +0 -48
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -46
- package/packages/orq-rc/src/models/operations/fileupdate.ts +5 -82
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/index.ts +4 -1
- package/packages/orq-rc/src/models/operations/invokeeval.ts +5 -2
- package/packages/orq-rc/src/models/operations/listagents.ts +5 -0
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +1 -1
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +5 -0
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/skilldelete.ts +36 -0
- package/packages/orq-rc/src/models/operations/skillget.ts +40 -0
- package/packages/orq-rc/src/models/operations/skilllist.ts +49 -0
- package/packages/orq-rc/src/models/operations/skillupdate.ts +41 -0
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateagent.ts +20 -31
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/sdk/files.ts +22 -21
- package/packages/orq-rc/src/sdk/sdk.ts +11 -5
- package/packages/orq-rc/src/sdk/skills.ts +97 -0
- package/src/lib/config.ts +3 -3
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createprompt.ts +1 -0
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/deploymentgetconfig.ts +1 -0
- package/src/models/operations/deployments.ts +1 -0
- package/src/models/operations/getallprompts.ts +1 -0
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getoneprompt.ts +1 -0
- package/src/models/operations/getpromptversion.ts +1 -0
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/listpromptversions.ts +1 -0
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/policyupdate.ts +7 -0
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updateprompt.ts +1 -0
- package/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/models/components/filedocument.ts +0 -48
- package/packages/orq-rc/src/models/operations/fileupload.ts +0 -135
|
@@ -1541,8 +1541,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
1541
1541
|
> = z.object({
|
|
1542
1542
|
_id: z.string(),
|
|
1543
1543
|
description: z.string(),
|
|
1544
|
-
created: z.string().default("2026-04-
|
|
1545
|
-
updated: z.string().default("2026-04-
|
|
1544
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
1545
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
1546
1546
|
guardrail_config: z.nullable(
|
|
1547
1547
|
z.union([
|
|
1548
1548
|
z.lazy(() =>
|
|
@@ -1735,8 +1735,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
1735
1735
|
> = z.object({
|
|
1736
1736
|
_id: z.string(),
|
|
1737
1737
|
description: z.string(),
|
|
1738
|
-
created: z.string().default("2026-04-
|
|
1739
|
-
updated: z.string().default("2026-04-
|
|
1738
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
1739
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
1740
1740
|
guardrail_config: z.nullable(
|
|
1741
1741
|
z.union([
|
|
1742
1742
|
z.lazy(() =>
|
|
@@ -2592,8 +2592,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
2592
2592
|
> = z.object({
|
|
2593
2593
|
_id: z.string(),
|
|
2594
2594
|
description: z.string(),
|
|
2595
|
-
created: z.string().default("2026-04-
|
|
2596
|
-
updated: z.string().default("2026-04-
|
|
2595
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
2596
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
2597
2597
|
guardrail_config: z.nullable(
|
|
2598
2598
|
z.union([
|
|
2599
2599
|
z.lazy(() =>
|
|
@@ -2809,8 +2809,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2809
2809
|
> = z.object({
|
|
2810
2810
|
_id: z.string(),
|
|
2811
2811
|
description: z.string(),
|
|
2812
|
-
created: z.string().default("2026-04-
|
|
2813
|
-
updated: z.string().default("2026-04-
|
|
2812
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
2813
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
2814
2814
|
guardrail_config: z.nullable(
|
|
2815
2815
|
z.union([
|
|
2816
2816
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -2976,8 +2976,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2976
2976
|
> = z.object({
|
|
2977
2977
|
_id: z.string(),
|
|
2978
2978
|
description: z.string(),
|
|
2979
|
-
created: z.string().default("2026-04-
|
|
2980
|
-
updated: z.string().default("2026-04-
|
|
2979
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
2980
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
2981
2981
|
guardrail_config: z.nullable(
|
|
2982
2982
|
z.union([
|
|
2983
2983
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -3128,8 +3128,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3128
3128
|
> = z.object({
|
|
3129
3129
|
_id: z.string(),
|
|
3130
3130
|
description: z.string(),
|
|
3131
|
-
created: z.string().default("2026-04-
|
|
3132
|
-
updated: z.string().default("2026-04-
|
|
3131
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
3132
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
3133
3133
|
guardrail_config: z.nullable(
|
|
3134
3134
|
z.union([
|
|
3135
3135
|
z.lazy(() => UpdateEvalGuardrailConfigBoolean$inboundSchema),
|
|
@@ -3489,8 +3489,8 @@ export const UpdateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
3489
3489
|
> = z.object({
|
|
3490
3490
|
_id: z.string(),
|
|
3491
3491
|
description: z.string(),
|
|
3492
|
-
created: z.string().default("2026-04-
|
|
3493
|
-
updated: z.string().default("2026-04-
|
|
3492
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
3493
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
3494
3494
|
guardrail_config: z.nullable(
|
|
3495
3495
|
z.union([
|
|
3496
3496
|
z.lazy(() =>
|
|
@@ -3698,8 +3698,8 @@ export const UpdateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
3698
3698
|
> = z.object({
|
|
3699
3699
|
_id: z.string(),
|
|
3700
3700
|
description: z.string(),
|
|
3701
|
-
created: z.string().default("2026-04-
|
|
3702
|
-
updated: z.string().default("2026-04-
|
|
3701
|
+
created: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
3702
|
+
updated: z.string().default("2026-04-30T15:24:08.361Z"),
|
|
3703
3703
|
guardrail_config: z.nullable(
|
|
3704
3704
|
z.union([
|
|
3705
3705
|
z.lazy(() =>
|
|
@@ -167,7 +167,7 @@ export const UpdateIdentityResponseBody$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
|
-
"2026-04-
|
|
170
|
+
"2026-04-30T15:24:06.216Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -1472,7 +1472,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1472
1472
|
z.ZodTypeDef,
|
|
1473
1473
|
RequestBodyTools
|
|
1474
1474
|
> = z.object({
|
|
1475
|
-
id: z.string().default("
|
|
1475
|
+
id: z.string().default("01KQFFVBP4NAXMTTV7NGFB15V2"),
|
|
1476
1476
|
name: z.string(),
|
|
1477
1477
|
description: z.string().optional(),
|
|
1478
1478
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2193,7 +2193,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2193
2193
|
z.ZodTypeDef,
|
|
2194
2194
|
unknown
|
|
2195
2195
|
> = z.object({
|
|
2196
|
-
_id: z.string().default("
|
|
2196
|
+
_id: z.string().default("tool_01KQFFVBNYVS1RN6458XGE7527"),
|
|
2197
2197
|
path: z.string(),
|
|
2198
2198
|
key: z.string(),
|
|
2199
2199
|
display_name: z.string().optional(),
|
|
@@ -2296,7 +2296,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2296
2296
|
z.ZodTypeDef,
|
|
2297
2297
|
unknown
|
|
2298
2298
|
> = z.object({
|
|
2299
|
-
id: z.string().default("
|
|
2299
|
+
id: z.string().default("01KQFFVBNXAYKY8Q90XBCPR55P"),
|
|
2300
2300
|
name: z.string(),
|
|
2301
2301
|
description: z.string().optional(),
|
|
2302
2302
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2354,7 +2354,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2354
2354
|
z.ZodTypeDef,
|
|
2355
2355
|
unknown
|
|
2356
2356
|
> = z.object({
|
|
2357
|
-
_id: z.string().default("
|
|
2357
|
+
_id: z.string().default("tool_01KQFFVBNVSYZ9KMEDK68C74B9"),
|
|
2358
2358
|
path: z.string(),
|
|
2359
2359
|
key: z.string(),
|
|
2360
2360
|
display_name: z.string().optional(),
|
|
@@ -2543,7 +2543,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2543
2543
|
z.ZodTypeDef,
|
|
2544
2544
|
unknown
|
|
2545
2545
|
> = z.object({
|
|
2546
|
-
_id: z.string().default("
|
|
2546
|
+
_id: z.string().default("tool_01KQFFVBNSNMJRMGHXTEH0PWDS"),
|
|
2547
2547
|
path: z.string(),
|
|
2548
2548
|
key: z.string(),
|
|
2549
2549
|
display_name: z.string().optional(),
|
|
@@ -2638,7 +2638,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2638
2638
|
z.ZodTypeDef,
|
|
2639
2639
|
unknown
|
|
2640
2640
|
> = z.object({
|
|
2641
|
-
_id: z.string().default("
|
|
2641
|
+
_id: z.string().default("tool_01KQFFVBNR8CBAACZKMKZMCAEY"),
|
|
2642
2642
|
path: z.string(),
|
|
2643
2643
|
key: z.string(),
|
|
2644
2644
|
display_name: z.string().optional(),
|
|
@@ -2741,7 +2741,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2741
2741
|
z.ZodTypeDef,
|
|
2742
2742
|
unknown
|
|
2743
2743
|
> = z.object({
|
|
2744
|
-
_id: z.string().default("
|
|
2744
|
+
_id: z.string().default("tool_01KQFFVBNPJ1JJCN5P5GTX085N"),
|
|
2745
2745
|
path: z.string(),
|
|
2746
2746
|
key: z.string(),
|
|
2747
2747
|
display_name: z.string().optional(),
|
|
@@ -9,6 +9,7 @@ import { filesGetContent } from "../funcs/filesGetContent.js";
|
|
|
9
9
|
import { filesList } from "../funcs/filesList.js";
|
|
10
10
|
import { filesUpdate } from "../funcs/filesUpdate.js";
|
|
11
11
|
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
12
|
+
import * as components from "../models/components/index.js";
|
|
12
13
|
import * as operations from "../models/operations/index.js";
|
|
13
14
|
import { unwrapAsync } from "../types/fp.js";
|
|
14
15
|
|
|
@@ -22,7 +23,7 @@ export class Files extends ClientSDK {
|
|
|
22
23
|
async list(
|
|
23
24
|
request?: operations.FileListRequest | undefined,
|
|
24
25
|
options?: RequestOptions,
|
|
25
|
-
): Promise<
|
|
26
|
+
): Promise<components.ListFilesResponse> {
|
|
26
27
|
return unwrapAsync(filesList(
|
|
27
28
|
this,
|
|
28
29
|
request,
|
|
@@ -31,15 +32,15 @@ export class Files extends ClientSDK {
|
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* Upload a file
|
|
35
36
|
*
|
|
36
37
|
* @remarks
|
|
37
38
|
* Files are used to upload documents that can be used with features like Deployments.
|
|
38
39
|
*/
|
|
39
40
|
async create(
|
|
40
|
-
request:
|
|
41
|
+
request: components.CreateFileRequest,
|
|
41
42
|
options?: RequestOptions,
|
|
42
|
-
): Promise<
|
|
43
|
+
): Promise<components.CreateFileResponse> {
|
|
43
44
|
return unwrapAsync(filesCreate(
|
|
44
45
|
this,
|
|
45
46
|
request,
|
|
@@ -51,12 +52,12 @@ export class Files extends ClientSDK {
|
|
|
51
52
|
* Download file content
|
|
52
53
|
*
|
|
53
54
|
* @remarks
|
|
54
|
-
*
|
|
55
|
+
* Returns a presigned URL for downloading the file content by file ID.
|
|
55
56
|
*/
|
|
56
57
|
async getContent(
|
|
57
58
|
request: operations.FileContentRequest,
|
|
58
59
|
options?: RequestOptions,
|
|
59
|
-
): Promise<
|
|
60
|
+
): Promise<components.GetFileContentResponse> {
|
|
60
61
|
return unwrapAsync(filesGetContent(
|
|
61
62
|
this,
|
|
62
63
|
request,
|
|
@@ -65,13 +66,16 @@ export class Files extends ClientSDK {
|
|
|
65
66
|
}
|
|
66
67
|
|
|
67
68
|
/**
|
|
68
|
-
*
|
|
69
|
+
* Retrieve a file
|
|
70
|
+
*
|
|
71
|
+
* @remarks
|
|
72
|
+
* Retrieves the details of an existing file object. After you supply a unique file ID, orq.ai returns the corresponding file object.
|
|
69
73
|
*/
|
|
70
|
-
async
|
|
71
|
-
request: operations.
|
|
74
|
+
async get(
|
|
75
|
+
request: operations.FileGetRequest,
|
|
72
76
|
options?: RequestOptions,
|
|
73
|
-
): Promise<
|
|
74
|
-
return unwrapAsync(
|
|
77
|
+
): Promise<components.GetFileResponse> {
|
|
78
|
+
return unwrapAsync(filesGet(
|
|
75
79
|
this,
|
|
76
80
|
request,
|
|
77
81
|
options,
|
|
@@ -79,16 +83,13 @@ export class Files extends ClientSDK {
|
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
/**
|
|
82
|
-
*
|
|
83
|
-
*
|
|
84
|
-
* @remarks
|
|
85
|
-
* Retrieves the details of an existing file object. After you supply a unique file ID, orq.ai returns the corresponding file object.
|
|
86
|
+
* Delete a file
|
|
86
87
|
*/
|
|
87
|
-
async
|
|
88
|
-
request: operations.
|
|
88
|
+
async delete(
|
|
89
|
+
request: operations.FileDeleteRequest,
|
|
89
90
|
options?: RequestOptions,
|
|
90
|
-
): Promise<
|
|
91
|
-
return unwrapAsync(
|
|
91
|
+
): Promise<components.DeleteFileResponse> {
|
|
92
|
+
return unwrapAsync(filesDelete(
|
|
92
93
|
this,
|
|
93
94
|
request,
|
|
94
95
|
options,
|
|
@@ -96,7 +97,7 @@ export class Files extends ClientSDK {
|
|
|
96
97
|
}
|
|
97
98
|
|
|
98
99
|
/**
|
|
99
|
-
* Update file
|
|
100
|
+
* Update a file
|
|
100
101
|
*
|
|
101
102
|
* @remarks
|
|
102
103
|
* Updates the metadata of an existing file object.
|
|
@@ -104,7 +105,7 @@ export class Files extends ClientSDK {
|
|
|
104
105
|
async update(
|
|
105
106
|
request: operations.FileUpdateRequest,
|
|
106
107
|
options?: RequestOptions,
|
|
107
|
-
): Promise<
|
|
108
|
+
): Promise<components.UpdateFileResponse> {
|
|
108
109
|
return unwrapAsync(filesUpdate(
|
|
109
110
|
this,
|
|
110
111
|
request,
|
|
@@ -28,6 +28,7 @@ import { Responses } from "./responses.js";
|
|
|
28
28
|
import { Router } from "./router.js";
|
|
29
29
|
import { RoutingRules } from "./routingrules.js";
|
|
30
30
|
import { Schedules } from "./schedules.js";
|
|
31
|
+
import { Skills } from "./skills.js";
|
|
31
32
|
import { Tools } from "./tools.js";
|
|
32
33
|
|
|
33
34
|
export class Orq extends ClientSDK {
|
|
@@ -111,11 +112,6 @@ export class Orq extends ClientSDK {
|
|
|
111
112
|
return (this._humanReviewSets ??= new HumanReviewSets(this._options));
|
|
112
113
|
}
|
|
113
114
|
|
|
114
|
-
private _files?: Files;
|
|
115
|
-
get files(): Files {
|
|
116
|
-
return (this._files ??= new Files(this._options));
|
|
117
|
-
}
|
|
118
|
-
|
|
119
115
|
private _guardrailRules?: GuardrailRules;
|
|
120
116
|
get guardrailRules(): GuardrailRules {
|
|
121
117
|
return (this._guardrailRules ??= new GuardrailRules(this._options));
|
|
@@ -131,6 +127,16 @@ export class Orq extends ClientSDK {
|
|
|
131
127
|
return (this._routingRules ??= new RoutingRules(this._options));
|
|
132
128
|
}
|
|
133
129
|
|
|
130
|
+
private _files?: Files;
|
|
131
|
+
get files(): Files {
|
|
132
|
+
return (this._files ??= new Files(this._options));
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
private _skills?: Skills;
|
|
136
|
+
get skills(): Skills {
|
|
137
|
+
return (this._skills ??= new Skills(this._options));
|
|
138
|
+
}
|
|
139
|
+
|
|
134
140
|
private _schedules?: Schedules;
|
|
135
141
|
get schedules(): Schedules {
|
|
136
142
|
return (this._schedules ??= new Schedules(this._options));
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { skillsCreate } from "../funcs/skillsCreate.js";
|
|
6
|
+
import { skillsDelete } from "../funcs/skillsDelete.js";
|
|
7
|
+
import { skillsGet } from "../funcs/skillsGet.js";
|
|
8
|
+
import { skillsList } from "../funcs/skillsList.js";
|
|
9
|
+
import { skillsUpdate } from "../funcs/skillsUpdate.js";
|
|
10
|
+
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
11
|
+
import * as components from "../models/components/index.js";
|
|
12
|
+
import * as operations from "../models/operations/index.js";
|
|
13
|
+
import { unwrapAsync } from "../types/fp.js";
|
|
14
|
+
|
|
15
|
+
export class Skills extends ClientSDK {
|
|
16
|
+
/**
|
|
17
|
+
* List all skills
|
|
18
|
+
*
|
|
19
|
+
* @remarks
|
|
20
|
+
* Returns a list of skills. Skills are sorted by creation date, with the most recently created skills appearing first.
|
|
21
|
+
*/
|
|
22
|
+
async list(
|
|
23
|
+
request?: operations.SkillListRequest | undefined,
|
|
24
|
+
options?: RequestOptions,
|
|
25
|
+
): Promise<components.ListSkillsResponse> {
|
|
26
|
+
return unwrapAsync(skillsList(
|
|
27
|
+
this,
|
|
28
|
+
request,
|
|
29
|
+
options,
|
|
30
|
+
));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Create a new skill
|
|
35
|
+
*
|
|
36
|
+
* @remarks
|
|
37
|
+
* Skills are modular instructions you can use to codify processes and conventions
|
|
38
|
+
*/
|
|
39
|
+
async create(
|
|
40
|
+
request: components.CreateSkillRequest,
|
|
41
|
+
options?: RequestOptions,
|
|
42
|
+
): Promise<components.CreateSkillResponse> {
|
|
43
|
+
return unwrapAsync(skillsCreate(
|
|
44
|
+
this,
|
|
45
|
+
request,
|
|
46
|
+
options,
|
|
47
|
+
));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Retrieve a skill
|
|
52
|
+
*
|
|
53
|
+
* @remarks
|
|
54
|
+
* Retrieves an existing skill by its unique skill ID or its display name (display names are unique within a workspace).
|
|
55
|
+
*/
|
|
56
|
+
async get(
|
|
57
|
+
request: operations.SkillGetRequest,
|
|
58
|
+
options?: RequestOptions,
|
|
59
|
+
): Promise<components.GetSkillResponse> {
|
|
60
|
+
return unwrapAsync(skillsGet(
|
|
61
|
+
this,
|
|
62
|
+
request,
|
|
63
|
+
options,
|
|
64
|
+
));
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Delete a skill
|
|
69
|
+
*/
|
|
70
|
+
async delete(
|
|
71
|
+
request: operations.SkillDeleteRequest,
|
|
72
|
+
options?: RequestOptions,
|
|
73
|
+
): Promise<components.DeleteSkillResponse> {
|
|
74
|
+
return unwrapAsync(skillsDelete(
|
|
75
|
+
this,
|
|
76
|
+
request,
|
|
77
|
+
options,
|
|
78
|
+
));
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Update a skill
|
|
83
|
+
*
|
|
84
|
+
* @remarks
|
|
85
|
+
* Updates the specified skill by setting the values of the parameters passed.
|
|
86
|
+
*/
|
|
87
|
+
async update(
|
|
88
|
+
request: operations.SkillUpdateRequest,
|
|
89
|
+
options?: RequestOptions,
|
|
90
|
+
): Promise<components.UpdateSkillResponse> {
|
|
91
|
+
return unwrapAsync(skillsUpdate(
|
|
92
|
+
this,
|
|
93
|
+
request,
|
|
94
|
+
options,
|
|
95
|
+
));
|
|
96
|
+
}
|
|
97
|
+
}
|
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "4.8.
|
|
72
|
-
genVersion: "2.881.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.8.
|
|
71
|
+
sdkVersion: "4.8.4",
|
|
72
|
+
genVersion: "2.881.16",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.8.4 2.881.16 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01kqg40at35m5vgjvmkxwnza62"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -134,7 +134,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
134
134
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
135
135
|
.optional(),
|
|
136
136
|
updated: z.string().datetime({ offset: true }).default(
|
|
137
|
-
"2026-04-
|
|
137
|
+
"2026-04-30T21:16:20.852Z",
|
|
138
138
|
).transform(v => new Date(v)),
|
|
139
139
|
}).transform((v) => {
|
|
140
140
|
return remap$(v, {
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-04-
|
|
141
|
+
"2026-04-30T21:16:20.852Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2355
2355
|
),
|
|
2356
2356
|
reviewed_by_id: z.string(),
|
|
2357
2357
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2358
|
-
"2026-04-
|
|
2358
|
+
"2026-04-30T21:16:36.203Z",
|
|
2359
2359
|
).transform(v => new Date(v)),
|
|
2360
2360
|
type: z.literal("string_array"),
|
|
2361
2361
|
values: z.array(z.string()),
|
|
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2400
2400
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2401
2401
|
reviewed_by_id: z.string(),
|
|
2402
2402
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2403
|
-
"2026-04-
|
|
2403
|
+
"2026-04-30T21:16:36.202Z",
|
|
2404
2404
|
).transform(v => new Date(v)),
|
|
2405
2405
|
type: z.literal("number"),
|
|
2406
2406
|
value: z.number(),
|
|
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2446
2446
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2447
2447
|
reviewed_by_id: z.string(),
|
|
2448
2448
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2449
|
-
"2026-04-
|
|
2449
|
+
"2026-04-30T21:16:36.202Z",
|
|
2450
2450
|
).transform(v => new Date(v)),
|
|
2451
2451
|
type: z.literal("string"),
|
|
2452
2452
|
value: z.string(),
|
|
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2530
2530
|
.optional(),
|
|
2531
2531
|
updated: z.string().datetime({ offset: true }).default(
|
|
2532
|
-
"2026-04-
|
|
2532
|
+
"2026-04-30T21:16:20.852Z",
|
|
2533
2533
|
).transform(v => new Date(v)),
|
|
2534
2534
|
}).transform((v) => {
|
|
2535
2535
|
return remap$(v, {
|
|
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
403
403
|
z.ZodTypeDef,
|
|
404
404
|
unknown
|
|
405
405
|
> = z.object({
|
|
406
|
-
_id: z.string().default("
|
|
406
|
+
_id: z.string().default("01KQG40BX5HCMYAQEJFAAY908T"),
|
|
407
407
|
display_name: z.string(),
|
|
408
408
|
description: z.string().optional(),
|
|
409
409
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -2776,8 +2776,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2776
2776
|
> = z.object({
|
|
2777
2777
|
_id: z.string(),
|
|
2778
2778
|
description: z.string(),
|
|
2779
|
-
created: z.string().default("2026-04-
|
|
2780
|
-
updated: z.string().default("2026-04-
|
|
2779
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
2780
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
2781
2781
|
guardrail_config: z.nullable(
|
|
2782
2782
|
z.union([
|
|
2783
2783
|
z.lazy(() =>
|
|
@@ -2965,8 +2965,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2965
2965
|
.object({
|
|
2966
2966
|
_id: z.string(),
|
|
2967
2967
|
description: z.string(),
|
|
2968
|
-
created: z.string().default("2026-04-
|
|
2969
|
-
updated: z.string().default("2026-04-
|
|
2968
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
2969
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
2970
2970
|
guardrail_config: z.nullable(
|
|
2971
2971
|
z.union([
|
|
2972
2972
|
z.lazy(() =>
|
|
@@ -3792,8 +3792,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3792
3792
|
> = z.object({
|
|
3793
3793
|
_id: z.string(),
|
|
3794
3794
|
description: z.string(),
|
|
3795
|
-
created: z.string().default("2026-04-
|
|
3796
|
-
updated: z.string().default("2026-04-
|
|
3795
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
3796
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
3797
3797
|
guardrail_config: z.nullable(
|
|
3798
3798
|
z.union([
|
|
3799
3799
|
z.lazy(() =>
|
|
@@ -4011,8 +4011,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4011
4011
|
> = z.object({
|
|
4012
4012
|
_id: z.string(),
|
|
4013
4013
|
description: z.string(),
|
|
4014
|
-
created: z.string().default("2026-04-
|
|
4015
|
-
updated: z.string().default("2026-04-
|
|
4014
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4015
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4016
4016
|
guardrail_config: z.nullable(
|
|
4017
4017
|
z.union([
|
|
4018
4018
|
z.lazy(() =>
|
|
@@ -4193,8 +4193,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4193
4193
|
> = z.object({
|
|
4194
4194
|
_id: z.string(),
|
|
4195
4195
|
description: z.string(),
|
|
4196
|
-
created: z.string().default("2026-04-
|
|
4197
|
-
updated: z.string().default("2026-04-
|
|
4196
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4197
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4198
4198
|
guardrail_config: z.nullable(
|
|
4199
4199
|
z.union([
|
|
4200
4200
|
z.lazy(() =>
|
|
@@ -4370,8 +4370,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4370
4370
|
> = z.object({
|
|
4371
4371
|
_id: z.string(),
|
|
4372
4372
|
description: z.string(),
|
|
4373
|
-
created: z.string().default("2026-04-
|
|
4374
|
-
updated: z.string().default("2026-04-
|
|
4373
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4374
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4375
4375
|
guardrail_config: z.nullable(
|
|
4376
4376
|
z.union([
|
|
4377
4377
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4741,8 +4741,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4741
4741
|
> = z.object({
|
|
4742
4742
|
_id: z.string(),
|
|
4743
4743
|
description: z.string(),
|
|
4744
|
-
created: z.string().default("2026-04-
|
|
4745
|
-
updated: z.string().default("2026-04-
|
|
4744
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4745
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4746
4746
|
guardrail_config: z.nullable(
|
|
4747
4747
|
z.union([
|
|
4748
4748
|
z.lazy(() =>
|
|
@@ -4957,8 +4957,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4957
4957
|
> = z.object({
|
|
4958
4958
|
_id: z.string(),
|
|
4959
4959
|
description: z.string(),
|
|
4960
|
-
created: z.string().default("2026-04-
|
|
4961
|
-
updated: z.string().default("2026-04-
|
|
4960
|
+
created: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4961
|
+
updated: z.string().default("2026-04-30T21:16:22.948Z"),
|
|
4962
4962
|
guardrail_config: z.nullable(
|
|
4963
4963
|
z.union([
|
|
4964
4964
|
z.lazy(() =>
|
|
@@ -139,7 +139,7 @@ export const CreateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
139
139
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
140
140
|
.optional(),
|
|
141
141
|
updated: z.string().datetime({ offset: true }).default(
|
|
142
|
-
"2026-04-
|
|
142
|
+
"2026-04-30T21:16:20.852Z",
|
|
143
143
|
).transform(v => new Date(v)),
|
|
144
144
|
}).transform((v) => {
|
|
145
145
|
return remap$(v, {
|
|
@@ -1902,7 +1902,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1902
1902
|
z.ZodTypeDef,
|
|
1903
1903
|
unknown
|
|
1904
1904
|
> = z.object({
|
|
1905
|
-
_id: z.string().default("
|
|
1905
|
+
_id: z.string().default("tool_01KQG40BBF97SDWZ5HZSMP1RQM"),
|
|
1906
1906
|
path: z.string(),
|
|
1907
1907
|
key: z.string(),
|
|
1908
1908
|
display_name: z.string().optional(),
|
|
@@ -1999,7 +1999,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1999
1999
|
z.ZodTypeDef,
|
|
2000
2000
|
unknown
|
|
2001
2001
|
> = z.object({
|
|
2002
|
-
id: z.string().default("
|
|
2002
|
+
id: z.string().default("01KQG40BBBM90MWD1B8BEBDQ4A"),
|
|
2003
2003
|
name: z.string(),
|
|
2004
2004
|
description: z.string().optional(),
|
|
2005
2005
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2055,7 +2055,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2055
2055
|
z.ZodTypeDef,
|
|
2056
2056
|
unknown
|
|
2057
2057
|
> = z.object({
|
|
2058
|
-
_id: z.string().default("
|
|
2058
|
+
_id: z.string().default("tool_01KQG40BB4RBVGDJMBRK3XQZH3"),
|
|
2059
2059
|
path: z.string(),
|
|
2060
2060
|
key: z.string(),
|
|
2061
2061
|
display_name: z.string().optional(),
|
|
@@ -2241,7 +2241,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2241
2241
|
z.ZodTypeDef,
|
|
2242
2242
|
unknown
|
|
2243
2243
|
> = z.object({
|
|
2244
|
-
_id: z.string().default("
|
|
2244
|
+
_id: z.string().default("tool_01KQG40BAW1GAM7FH4VG903NRT"),
|
|
2245
2245
|
path: z.string(),
|
|
2246
2246
|
key: z.string(),
|
|
2247
2247
|
display_name: z.string().optional(),
|
|
@@ -2334,7 +2334,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2334
2334
|
z.ZodTypeDef,
|
|
2335
2335
|
unknown
|
|
2336
2336
|
> = z.object({
|
|
2337
|
-
_id: z.string().default("
|
|
2337
|
+
_id: z.string().default("tool_01KQG40BAM463TJGG9JC9RREC4"),
|
|
2338
2338
|
path: z.string(),
|
|
2339
2339
|
key: z.string(),
|
|
2340
2340
|
display_name: z.string().optional(),
|
|
@@ -2435,7 +2435,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2435
2435
|
z.ZodTypeDef,
|
|
2436
2436
|
unknown
|
|
2437
2437
|
> = z.object({
|
|
2438
|
-
_id: z.string().default("
|
|
2438
|
+
_id: z.string().default("tool_01KQG40BAFDAYXTF831S1F9ZHK"),
|
|
2439
2439
|
path: z.string(),
|
|
2440
2440
|
key: z.string(),
|
|
2441
2441
|
display_name: z.string().optional(),
|