@orq-ai/node 3.2.0-rc.22 → 3.2.0-rc.24
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 +32 -34
- package/bin/mcp-server.js.map +19 -19
- 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/bulkcreatedatapoints.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/deploymentcreatemetric.d.ts +0 -5
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +0 -2
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/package.json +1 -1
- 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/bulkcreatedatapoints.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/deploymentcreatemetric.ts +0 -7
- 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/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
package/bin/mcp-server.js
CHANGED
|
@@ -34231,9 +34231,9 @@ var init_config = __esm(() => {
|
|
|
34231
34231
|
SDK_METADATA = {
|
|
34232
34232
|
language: "typescript",
|
|
34233
34233
|
openapiDocVersion: "2.0",
|
|
34234
|
-
sdkVersion: "3.2.0-rc.
|
|
34235
|
-
genVersion: "2.
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 3.2.0-rc.
|
|
34234
|
+
sdkVersion: "3.2.0-rc.24",
|
|
34235
|
+
genVersion: "2.536.0",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 3.2.0-rc.24 2.536.0 2.0 @orq-ai/node"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -35998,7 +35998,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
35998
35998
|
created_by_id: stringType().optional(),
|
|
35999
35999
|
updated_by_id: stringType().optional(),
|
|
36000
36000
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36001
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
36001
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
36002
36002
|
}).transform((v2) => {
|
|
36003
36003
|
return remap(v2, {
|
|
36004
36004
|
_id: "id",
|
|
@@ -36019,7 +36019,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36019
36019
|
createdById: stringType().optional(),
|
|
36020
36020
|
updatedById: stringType().optional(),
|
|
36021
36021
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36022
|
-
updated: dateType().default(() => new Date("2025-
|
|
36022
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
36023
36023
|
}).transform((v2) => {
|
|
36024
36024
|
return remap(v2, {
|
|
36025
36025
|
id: "_id",
|
|
@@ -36107,7 +36107,7 @@ var init_createcontact = __esm(() => {
|
|
|
36107
36107
|
tags: arrayType(stringType()).optional(),
|
|
36108
36108
|
metadata: recordType(anyType()).optional(),
|
|
36109
36109
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36110
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
36110
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
36111
36111
|
}).transform((v2) => {
|
|
36112
36112
|
return remap(v2, {
|
|
36113
36113
|
external_id: "externalId",
|
|
@@ -36124,7 +36124,7 @@ var init_createcontact = __esm(() => {
|
|
|
36124
36124
|
tags: arrayType(stringType()).optional(),
|
|
36125
36125
|
metadata: recordType(anyType()).optional(),
|
|
36126
36126
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36127
|
-
updated: dateType().default(() => new Date("2025-
|
|
36127
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
36128
36128
|
}).transform((v2) => {
|
|
36129
36129
|
return remap(v2, {
|
|
36130
36130
|
externalId: "external_id",
|
|
@@ -36194,7 +36194,7 @@ var init_createdataset = __esm(() => {
|
|
|
36194
36194
|
updated_by_id: stringType().optional(),
|
|
36195
36195
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36196
36196
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36197
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
36197
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
36198
36198
|
}).transform((v2) => {
|
|
36199
36199
|
return remap(v2, {
|
|
36200
36200
|
_id: "id",
|
|
@@ -36214,7 +36214,7 @@ var init_createdataset = __esm(() => {
|
|
|
36214
36214
|
updatedById: stringType().optional(),
|
|
36215
36215
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36216
36216
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36217
|
-
updated: dateType().default(() => new Date("2025-
|
|
36217
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
36218
36218
|
}).transform((v2) => {
|
|
36219
36219
|
return remap(v2, {
|
|
36220
36220
|
id: "_id",
|
|
@@ -36650,7 +36650,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
36650
36650
|
created_by_id: stringType().optional(),
|
|
36651
36651
|
updated_by_id: stringType().optional(),
|
|
36652
36652
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36653
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
36653
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
36654
36654
|
}).transform((v2) => {
|
|
36655
36655
|
return remap(v2, {
|
|
36656
36656
|
_id: "id",
|
|
@@ -36671,7 +36671,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
36671
36671
|
createdById: stringType().optional(),
|
|
36672
36672
|
updatedById: stringType().optional(),
|
|
36673
36673
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36674
|
-
updated: dateType().default(() => new Date("2025-
|
|
36674
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
36675
36675
|
}).transform((v2) => {
|
|
36676
36676
|
return remap(v2, {
|
|
36677
36677
|
id: "_id",
|
|
@@ -38377,11 +38377,9 @@ var init_deploymentcreatemetric = __esm(() => {
|
|
|
38377
38377
|
DeploymentCreateMetricRequest$.outboundSchema = DeploymentCreateMetricRequest$outboundSchema;
|
|
38378
38378
|
})(DeploymentCreateMetricRequest$ ||= {});
|
|
38379
38379
|
DeploymentCreateMetricResponseBody$inboundSchema = objectType({
|
|
38380
|
-
code: numberType(),
|
|
38381
38380
|
success: booleanType()
|
|
38382
38381
|
});
|
|
38383
38382
|
DeploymentCreateMetricResponseBody$outboundSchema = objectType({
|
|
38384
|
-
code: numberType(),
|
|
38385
38383
|
success: booleanType()
|
|
38386
38384
|
});
|
|
38387
38385
|
((DeploymentCreateMetricResponseBody$) => {
|
|
@@ -40276,7 +40274,7 @@ var init_fileget = __esm(() => {
|
|
|
40276
40274
|
bytes: numberType(),
|
|
40277
40275
|
file_name: stringType(),
|
|
40278
40276
|
workspace_id: stringType(),
|
|
40279
|
-
created: stringType().datetime({ offset: true }).default("2025-
|
|
40277
|
+
created: stringType().datetime({ offset: true }).default("2025-03-03T11:13:51.206Z").transform((v2) => new Date(v2))
|
|
40280
40278
|
}).transform((v2) => {
|
|
40281
40279
|
return remap(v2, {
|
|
40282
40280
|
_id: "id",
|
|
@@ -40292,7 +40290,7 @@ var init_fileget = __esm(() => {
|
|
|
40292
40290
|
bytes: numberType(),
|
|
40293
40291
|
fileName: stringType(),
|
|
40294
40292
|
workspaceId: stringType(),
|
|
40295
|
-
created: dateType().default(() => new Date("2025-
|
|
40293
|
+
created: dateType().default(() => new Date("2025-03-03T11:13:51.206Z")).transform((v2) => v2.toISOString())
|
|
40296
40294
|
}).transform((v2) => {
|
|
40297
40295
|
return remap(v2, {
|
|
40298
40296
|
id: "_id",
|
|
@@ -40363,7 +40361,7 @@ var init_filelist = __esm(() => {
|
|
|
40363
40361
|
bytes: numberType(),
|
|
40364
40362
|
file_name: stringType(),
|
|
40365
40363
|
workspace_id: stringType(),
|
|
40366
|
-
created: stringType().datetime({ offset: true }).default("2025-
|
|
40364
|
+
created: stringType().datetime({ offset: true }).default("2025-03-03T11:13:51.206Z").transform((v2) => new Date(v2))
|
|
40367
40365
|
}).transform((v2) => {
|
|
40368
40366
|
return remap(v2, {
|
|
40369
40367
|
_id: "id",
|
|
@@ -40379,7 +40377,7 @@ var init_filelist = __esm(() => {
|
|
|
40379
40377
|
bytes: numberType(),
|
|
40380
40378
|
fileName: stringType(),
|
|
40381
40379
|
workspaceId: stringType(),
|
|
40382
|
-
created: dateType().default(() => new Date("2025-
|
|
40380
|
+
created: dateType().default(() => new Date("2025-03-03T11:13:51.206Z")).transform((v2) => v2.toISOString())
|
|
40383
40381
|
}).transform((v2) => {
|
|
40384
40382
|
return remap(v2, {
|
|
40385
40383
|
id: "_id",
|
|
@@ -40511,7 +40509,7 @@ var init_fileupload = __esm(() => {
|
|
|
40511
40509
|
bytes: numberType(),
|
|
40512
40510
|
file_name: stringType(),
|
|
40513
40511
|
workspace_id: stringType(),
|
|
40514
|
-
created: stringType().datetime({ offset: true }).default("2025-
|
|
40512
|
+
created: stringType().datetime({ offset: true }).default("2025-03-03T11:13:51.206Z").transform((v2) => new Date(v2))
|
|
40515
40513
|
}).transform((v2) => {
|
|
40516
40514
|
return remap(v2, {
|
|
40517
40515
|
_id: "id",
|
|
@@ -40527,7 +40525,7 @@ var init_fileupload = __esm(() => {
|
|
|
40527
40525
|
bytes: numberType(),
|
|
40528
40526
|
fileName: stringType(),
|
|
40529
40527
|
workspaceId: stringType(),
|
|
40530
|
-
created: dateType().default(() => new Date("2025-
|
|
40528
|
+
created: dateType().default(() => new Date("2025-03-03T11:13:51.206Z")).transform((v2) => v2.toISOString())
|
|
40531
40529
|
}).transform((v2) => {
|
|
40532
40530
|
return remap(v2, {
|
|
40533
40531
|
id: "_id",
|
|
@@ -42555,7 +42553,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
42555
42553
|
created_by_id: stringType().optional(),
|
|
42556
42554
|
updated_by_id: stringType().optional(),
|
|
42557
42555
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42558
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
42556
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
42559
42557
|
}).transform((v2) => {
|
|
42560
42558
|
return remap(v2, {
|
|
42561
42559
|
_id: "id",
|
|
@@ -42576,7 +42574,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
42576
42574
|
createdById: stringType().optional(),
|
|
42577
42575
|
updatedById: stringType().optional(),
|
|
42578
42576
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42579
|
-
updated: dateType().default(() => new Date("2025-
|
|
42577
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
42580
42578
|
}).transform((v2) => {
|
|
42581
42579
|
return remap(v2, {
|
|
42582
42580
|
id: "_id",
|
|
@@ -42684,7 +42682,7 @@ var init_listdatasets = __esm(() => {
|
|
|
42684
42682
|
updated_by_id: stringType().optional(),
|
|
42685
42683
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
42686
42684
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42687
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
42685
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
42688
42686
|
}).transform((v2) => {
|
|
42689
42687
|
return remap(v2, {
|
|
42690
42688
|
_id: "id",
|
|
@@ -42704,7 +42702,7 @@ var init_listdatasets = __esm(() => {
|
|
|
42704
42702
|
updatedById: stringType().optional(),
|
|
42705
42703
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
42706
42704
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42707
|
-
updated: dateType().default(() => new Date("2025-
|
|
42705
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
42708
42706
|
}).transform((v2) => {
|
|
42709
42707
|
return remap(v2, {
|
|
42710
42708
|
id: "_id",
|
|
@@ -43616,7 +43614,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
43616
43614
|
created_by_id: stringType().optional(),
|
|
43617
43615
|
updated_by_id: stringType().optional(),
|
|
43618
43616
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43619
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
43617
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
43620
43618
|
}).transform((v2) => {
|
|
43621
43619
|
return remap(v2, {
|
|
43622
43620
|
_id: "id",
|
|
@@ -43637,7 +43635,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
43637
43635
|
createdById: stringType().optional(),
|
|
43638
43636
|
updatedById: stringType().optional(),
|
|
43639
43637
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43640
|
-
updated: dateType().default(() => new Date("2025-
|
|
43638
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
43641
43639
|
}).transform((v2) => {
|
|
43642
43640
|
return remap(v2, {
|
|
43643
43641
|
id: "_id",
|
|
@@ -43708,7 +43706,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
43708
43706
|
updated_by_id: stringType().optional(),
|
|
43709
43707
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
43710
43708
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43711
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
43709
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
43712
43710
|
}).transform((v2) => {
|
|
43713
43711
|
return remap(v2, {
|
|
43714
43712
|
_id: "id",
|
|
@@ -43728,7 +43726,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
43728
43726
|
updatedById: stringType().optional(),
|
|
43729
43727
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
43730
43728
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43731
|
-
updated: dateType().default(() => new Date("2025-
|
|
43729
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
43732
43730
|
}).transform((v2) => {
|
|
43733
43731
|
return remap(v2, {
|
|
43734
43732
|
id: "_id",
|
|
@@ -44168,7 +44166,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
44168
44166
|
created_by_id: stringType().optional(),
|
|
44169
44167
|
updated_by_id: stringType().optional(),
|
|
44170
44168
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44171
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
44169
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
44172
44170
|
}).transform((v2) => {
|
|
44173
44171
|
return remap(v2, {
|
|
44174
44172
|
_id: "id",
|
|
@@ -44189,7 +44187,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
44189
44187
|
createdById: stringType().optional(),
|
|
44190
44188
|
updatedById: stringType().optional(),
|
|
44191
44189
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44192
|
-
updated: dateType().default(() => new Date("2025-
|
|
44190
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
44193
44191
|
}).transform((v2) => {
|
|
44194
44192
|
return remap(v2, {
|
|
44195
44193
|
id: "_id",
|
|
@@ -44284,7 +44282,7 @@ var init_updatedataset = __esm(() => {
|
|
|
44284
44282
|
parent_id: stringType().optional(),
|
|
44285
44283
|
version: stringType().optional(),
|
|
44286
44284
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44287
|
-
updated: stringType().datetime({ offset: true }).default("2025-
|
|
44285
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-03T11:13:50.090Z").transform((v2) => new Date(v2))
|
|
44288
44286
|
}).transform((v2) => {
|
|
44289
44287
|
return remap(v2, {
|
|
44290
44288
|
_id: "id",
|
|
@@ -44307,7 +44305,7 @@ var init_updatedataset = __esm(() => {
|
|
|
44307
44305
|
parentId: stringType().optional(),
|
|
44308
44306
|
version: stringType().optional(),
|
|
44309
44307
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44310
|
-
updated: dateType().default(() => new Date("2025-
|
|
44308
|
+
updated: dateType().default(() => new Date("2025-03-03T11:13:50.090Z")).transform((v2) => v2.toISOString())
|
|
44311
44309
|
}).transform((v2) => {
|
|
44312
44310
|
return remap(v2, {
|
|
44313
44311
|
id: "_id",
|
|
@@ -49242,7 +49240,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
49242
49240
|
function createMCPServer(deps) {
|
|
49243
49241
|
const server = new McpServer({
|
|
49244
49242
|
name: "Orq",
|
|
49245
|
-
version: "3.2.0-rc.
|
|
49243
|
+
version: "3.2.0-rc.24"
|
|
49246
49244
|
});
|
|
49247
49245
|
const client = new OrqCore({
|
|
49248
49246
|
apiKey: deps.apiKey,
|
|
@@ -50518,7 +50516,7 @@ var routes = rn({
|
|
|
50518
50516
|
var app = Ve(routes, {
|
|
50519
50517
|
name: "mcp",
|
|
50520
50518
|
versionInfo: {
|
|
50521
|
-
currentVersion: "3.2.0-rc.
|
|
50519
|
+
currentVersion: "3.2.0-rc.24"
|
|
50522
50520
|
}
|
|
50523
50521
|
});
|
|
50524
50522
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -50526,5 +50524,5 @@ export {
|
|
|
50526
50524
|
app
|
|
50527
50525
|
};
|
|
50528
50526
|
|
|
50529
|
-
//# debugId=
|
|
50527
|
+
//# debugId=8FDF587E13235C5564756E2164756E21
|
|
50530
50528
|
//# sourceMappingURL=mcp-server.js.map
|