@orq-ai/node 3.11.3 → 3.11.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 +103 -103
- package/bin/mcp-server.js.map +26 -26
- 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/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 +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getevals.js +28 -28
- 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/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 +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +6 -6
- package/packages/orq-rc/docs/sdks/budgets/README.md +6 -6
- 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/budgetsCreate.ts +2 -2
- package/packages/orq-rc/src/funcs/budgetsDelete.ts +2 -2
- package/packages/orq-rc/src/funcs/budgetsUpdate.ts +2 -2
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/budgetsCreate.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/budgetsDelete.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/budgetsUpdate.ts +2 -2
- package/packages/orq-rc/src/models/operations/createbudget.ts +262 -60
- 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 +16 -16
- package/packages/orq-rc/src/models/operations/createprompt.ts +2 -0
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +1 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +1 -0
- 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/getallprompts.ts +1 -0
- 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/getoneprompt.ts +1 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +1 -0
- 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 +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 +1 -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/searchknowledge.ts +2 -0
- package/packages/orq-rc/src/models/operations/updatebudget.ts +32 -36
- 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 +16 -16
- package/packages/orq-rc/src/models/operations/updateprompt.ts +2 -0
- package/packages/orq-rc/src/sdk/budgets.ts +6 -6
- 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/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 +16 -16
- 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/getevals.ts +28 -28
- 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/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 +16 -16
|
@@ -174,7 +174,7 @@ exports.UpdateDatasetResponseBody$inboundSchema = z.object({
|
|
|
174
174
|
version: z.string().optional(),
|
|
175
175
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
176
176
|
.optional(),
|
|
177
|
-
updated: z.string().datetime({ offset: true }).default("2025-08-
|
|
177
|
+
updated: z.string().datetime({ offset: true }).default("2025-08-20T15:46:49.058Z").transform(v => new Date(v)),
|
|
178
178
|
}).transform((v) => {
|
|
179
179
|
return (0, primitives_js_1.remap)(v, {
|
|
180
180
|
"_id": "id",
|
|
@@ -198,7 +198,7 @@ exports.UpdateDatasetResponseBody$outboundSchema = z.object({
|
|
|
198
198
|
parentId: z.string().optional(),
|
|
199
199
|
version: z.string().optional(),
|
|
200
200
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
201
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
201
|
+
updated: z.date().default(() => new Date("2025-08-20T15:46:49.058Z"))
|
|
202
202
|
.transform(v => v.toISOString()),
|
|
203
203
|
}).transform((v) => {
|
|
204
204
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -144,7 +144,7 @@ var UpdateDatasourceStatus$;
|
|
|
144
144
|
})(UpdateDatasourceStatus$ || (exports.UpdateDatasourceStatus$ = UpdateDatasourceStatus$ = {}));
|
|
145
145
|
/** @internal */
|
|
146
146
|
exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
147
|
-
_id: z.string().default("
|
|
147
|
+
_id: z.string().default("01K342JXDR7ARB78HT0F2RG619"),
|
|
148
148
|
display_name: z.string(),
|
|
149
149
|
description: z.string().optional(),
|
|
150
150
|
status: exports.UpdateDatasourceStatus$inboundSchema,
|
|
@@ -168,7 +168,7 @@ exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
|
168
168
|
});
|
|
169
169
|
/** @internal */
|
|
170
170
|
exports.UpdateDatasourceResponseBody$outboundSchema = z.object({
|
|
171
|
-
id: z.string().default("
|
|
171
|
+
id: z.string().default("01K342JXDR7ARB78HT0F2RG619"),
|
|
172
172
|
displayName: z.string(),
|
|
173
173
|
description: z.string().optional(),
|
|
174
174
|
status: exports.UpdateDatasourceStatus$outboundSchema,
|
|
@@ -1302,8 +1302,8 @@ var UpdateEvalResponseBodyEvalsResponse200Type$;
|
|
|
1302
1302
|
exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
1303
1303
|
_id: z.string(),
|
|
1304
1304
|
description: z.string(),
|
|
1305
|
-
created: z.string().default("2025-08-
|
|
1306
|
-
updated: z.string().default("2025-08-
|
|
1305
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1306
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1307
1307
|
guardrail_config: z.union([
|
|
1308
1308
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
1309
1309
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -1321,8 +1321,8 @@ exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
|
1321
1321
|
exports.UpdateEvalResponseBodyPython$outboundSchema = z.object({
|
|
1322
1322
|
id: z.string(),
|
|
1323
1323
|
description: z.string(),
|
|
1324
|
-
created: z.string().default("2025-08-
|
|
1325
|
-
updated: z.string().default("2025-08-
|
|
1324
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1325
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1326
1326
|
guardrailConfig: z.union([
|
|
1327
1327
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
1328
1328
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
@@ -1524,8 +1524,8 @@ var UpdateEvalResponseBodyMethod$;
|
|
|
1524
1524
|
exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1525
1525
|
_id: z.string(),
|
|
1526
1526
|
description: z.string(),
|
|
1527
|
-
created: z.string().default("2025-08-
|
|
1528
|
-
updated: z.string().default("2025-08-
|
|
1527
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1528
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1529
1529
|
guardrail_config: z.union([
|
|
1530
1530
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
1531
1531
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -1546,8 +1546,8 @@ exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
|
1546
1546
|
exports.UpdateEvalResponseBodyHTTP$outboundSchema = z.object({
|
|
1547
1547
|
id: z.string(),
|
|
1548
1548
|
description: z.string(),
|
|
1549
|
-
created: z.string().default("2025-08-
|
|
1550
|
-
updated: z.string().default("2025-08-
|
|
1549
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1550
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1551
1551
|
guardrailConfig: z.union([
|
|
1552
1552
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
1553
1553
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
@@ -1733,8 +1733,8 @@ var UpdateEvalResponseBodyEvalsType$;
|
|
|
1733
1733
|
exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
1734
1734
|
_id: z.string(),
|
|
1735
1735
|
description: z.string(),
|
|
1736
|
-
created: z.string().default("2025-08-
|
|
1737
|
-
updated: z.string().default("2025-08-
|
|
1736
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1737
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1738
1738
|
guardrail_config: z.union([
|
|
1739
1739
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1740
1740
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1752,8 +1752,8 @@ exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
|
1752
1752
|
exports.UpdateEvalResponseBodyJSON$outboundSchema = z.object({
|
|
1753
1753
|
id: z.string(),
|
|
1754
1754
|
description: z.string(),
|
|
1755
|
-
created: z.string().default("2025-08-
|
|
1756
|
-
updated: z.string().default("2025-08-
|
|
1755
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1756
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1757
1757
|
guardrailConfig: z.union([
|
|
1758
1758
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1759
1759
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -1938,8 +1938,8 @@ var UpdateEvalResponseBodyType$;
|
|
|
1938
1938
|
exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
1939
1939
|
_id: z.string(),
|
|
1940
1940
|
description: z.string(),
|
|
1941
|
-
created: z.string().default("2025-08-
|
|
1942
|
-
updated: z.string().default("2025-08-
|
|
1941
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1942
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1943
1943
|
guardrail_config: z.union([
|
|
1944
1944
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
1945
1945
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -1958,8 +1958,8 @@ exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
|
1958
1958
|
exports.UpdateEvalResponseBodyLLM$outboundSchema = z.object({
|
|
1959
1959
|
id: z.string(),
|
|
1960
1960
|
description: z.string(),
|
|
1961
|
-
created: z.string().default("2025-08-
|
|
1962
|
-
updated: z.string().default("2025-08-
|
|
1961
|
+
created: z.string().default("2025-08-20T15:46:51.300Z"),
|
|
1962
|
+
updated: z.string().default("2025-08-20T15:46:51.301Z"),
|
|
1963
1963
|
guardrailConfig: z.union([
|
|
1964
1964
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
1965
1965
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
package/package.json
CHANGED
|
@@ -262,10 +262,10 @@ run();
|
|
|
262
262
|
### [budgets](docs/sdks/budgets/README.md)
|
|
263
263
|
|
|
264
264
|
* [list](docs/sdks/budgets/README.md#list) - List contact budget configurations
|
|
265
|
-
* [create](docs/sdks/budgets/README.md#create) - Create
|
|
265
|
+
* [create](docs/sdks/budgets/README.md#create) - Create budget configuration
|
|
266
266
|
* [get](docs/sdks/budgets/README.md#get) - Get contact budget configuration
|
|
267
|
-
* [update](docs/sdks/budgets/README.md#update) - Update
|
|
268
|
-
* [delete](docs/sdks/budgets/README.md#delete) - Delete
|
|
267
|
+
* [update](docs/sdks/budgets/README.md#update) - Update budget configuration
|
|
268
|
+
* [delete](docs/sdks/budgets/README.md#delete) - Delete budget configuration
|
|
269
269
|
|
|
270
270
|
### [chunking](docs/sdks/chunking/README.md)
|
|
271
271
|
|
|
@@ -416,11 +416,11 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
|
|
|
416
416
|
|
|
417
417
|
<summary>Available standalone functions</summary>
|
|
418
418
|
|
|
419
|
-
- [`budgetsCreate`](docs/sdks/budgets/README.md#create) - Create
|
|
420
|
-
- [`budgetsDelete`](docs/sdks/budgets/README.md#delete) - Delete
|
|
419
|
+
- [`budgetsCreate`](docs/sdks/budgets/README.md#create) - Create budget configuration
|
|
420
|
+
- [`budgetsDelete`](docs/sdks/budgets/README.md#delete) - Delete budget configuration
|
|
421
421
|
- [`budgetsGet`](docs/sdks/budgets/README.md#get) - Get contact budget configuration
|
|
422
422
|
- [`budgetsList`](docs/sdks/budgets/README.md#list) - List contact budget configurations
|
|
423
|
-
- [`budgetsUpdate`](docs/sdks/budgets/README.md#update) - Update
|
|
423
|
+
- [`budgetsUpdate`](docs/sdks/budgets/README.md#update) - Update budget configuration
|
|
424
424
|
- [`chunkingParse`](docs/sdks/chunking/README.md#parse) - Parse text
|
|
425
425
|
- [`contactsCreate`](docs/sdks/contacts/README.md#create) - Create a contact
|
|
426
426
|
- [`contactsDelete`](docs/sdks/contacts/README.md#delete) - Delete a contact
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
### Available Operations
|
|
7
7
|
|
|
8
8
|
* [list](#list) - List contact budget configurations
|
|
9
|
-
* [create](#create) - Create
|
|
9
|
+
* [create](#create) - Create budget configuration
|
|
10
10
|
* [get](#get) - Get contact budget configuration
|
|
11
|
-
* [update](#update) - Update
|
|
12
|
-
* [delete](#delete) - Delete
|
|
11
|
+
* [update](#update) - Update budget configuration
|
|
12
|
+
* [delete](#delete) - Delete budget configuration
|
|
13
13
|
|
|
14
14
|
## list
|
|
15
15
|
|
|
@@ -90,7 +90,7 @@ run();
|
|
|
90
90
|
|
|
91
91
|
## create
|
|
92
92
|
|
|
93
|
-
Create a new budget configuration for a contact
|
|
93
|
+
Create a new budget configuration for a contact or workspace.
|
|
94
94
|
|
|
95
95
|
### Example Usage
|
|
96
96
|
|
|
@@ -242,7 +242,7 @@ run();
|
|
|
242
242
|
|
|
243
243
|
## update
|
|
244
244
|
|
|
245
|
-
Update
|
|
245
|
+
Update budget configuration by ID
|
|
246
246
|
|
|
247
247
|
### Example Usage
|
|
248
248
|
|
|
@@ -329,7 +329,7 @@ run();
|
|
|
329
329
|
|
|
330
330
|
## delete
|
|
331
331
|
|
|
332
|
-
Delete
|
|
332
|
+
Delete budget configuration by ID
|
|
333
333
|
|
|
334
334
|
### Example Usage
|
|
335
335
|
|
package/packages/orq-rc/jsr.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "3.12.0-rc.
|
|
3
|
+
"version": "3.12.0-rc.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@orq-ai/node",
|
|
9
|
-
"version": "3.12.0-rc.
|
|
9
|
+
"version": "3.12.0-rc.4",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "^3.20.0"
|
|
12
12
|
},
|
|
@@ -25,10 +25,10 @@ import { APICall, APIPromise } from "../types/async.js";
|
|
|
25
25
|
import { Result } from "../types/fp.js";
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
* Create
|
|
28
|
+
* Create budget configuration
|
|
29
29
|
*
|
|
30
30
|
* @remarks
|
|
31
|
-
* Create a new budget configuration for a contact
|
|
31
|
+
* Create a new budget configuration for a contact or workspace.
|
|
32
32
|
*/
|
|
33
33
|
export function budgetsCreate(
|
|
34
34
|
client: OrqCore,
|
|
@@ -26,10 +26,10 @@ import { APICall, APIPromise } from "../types/async.js";
|
|
|
26
26
|
import { Result } from "../types/fp.js";
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* Delete
|
|
29
|
+
* Delete budget configuration
|
|
30
30
|
*
|
|
31
31
|
* @remarks
|
|
32
|
-
* Delete
|
|
32
|
+
* Delete budget configuration by ID
|
|
33
33
|
*/
|
|
34
34
|
export function budgetsDelete(
|
|
35
35
|
client: OrqCore,
|
|
@@ -25,10 +25,10 @@ import { APICall, APIPromise } from "../types/async.js";
|
|
|
25
25
|
import { Result } from "../types/fp.js";
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
* Update
|
|
28
|
+
* Update budget configuration
|
|
29
29
|
*
|
|
30
30
|
* @remarks
|
|
31
|
-
* Update
|
|
31
|
+
* Update budget configuration by ID
|
|
32
32
|
*/
|
|
33
33
|
export function budgetsUpdate(
|
|
34
34
|
client: OrqCore,
|
|
@@ -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: "3.12.0-rc.
|
|
71
|
+
sdkVersion: "3.12.0-rc.4",
|
|
72
72
|
genVersion: "2.686.7",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.12.0-rc.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.12.0-rc.4 2.686.7 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -12,9 +12,9 @@ const args = {
|
|
|
12
12
|
|
|
13
13
|
export const tool$budgetsCreate: ToolDefinition<typeof args> = {
|
|
14
14
|
name: "budgets-create",
|
|
15
|
-
description: `Create
|
|
15
|
+
description: `Create budget configuration
|
|
16
16
|
|
|
17
|
-
Create a new budget configuration for a contact
|
|
17
|
+
Create a new budget configuration for a contact or workspace.`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await budgetsCreate(
|
|
@@ -12,9 +12,9 @@ const args = {
|
|
|
12
12
|
|
|
13
13
|
export const tool$budgetsDelete: ToolDefinition<typeof args> = {
|
|
14
14
|
name: "budgets-delete",
|
|
15
|
-
description: `Delete
|
|
15
|
+
description: `Delete budget configuration
|
|
16
16
|
|
|
17
|
-
Delete
|
|
17
|
+
Delete budget configuration by ID`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await budgetsDelete(
|
|
@@ -12,9 +12,9 @@ const args = {
|
|
|
12
12
|
|
|
13
13
|
export const tool$budgetsUpdate: ToolDefinition<typeof args> = {
|
|
14
14
|
name: "budgets-update",
|
|
15
|
-
description: `Update
|
|
15
|
+
description: `Update budget configuration
|
|
16
16
|
|
|
17
|
-
Update
|
|
17
|
+
Update budget configuration by ID`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await budgetsUpdate(
|