@orq-ai/node 3.6.0 → 3.7.0
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 +39 -39
- package/bin/mcp-server.js.map +21 -21
- 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/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/createdatasource.js +2 -2
- 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/listdatasources.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/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/package.json +1 -1
- 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/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/createdatasource.ts +2 -2
- 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/listdatasources.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/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
package/bin/mcp-server.js
CHANGED
|
@@ -34275,9 +34275,9 @@ var init_config = __esm(() => {
|
|
|
34275
34275
|
SDK_METADATA = {
|
|
34276
34276
|
language: "typescript",
|
|
34277
34277
|
openapiDocVersion: "2.0",
|
|
34278
|
-
sdkVersion: "3.
|
|
34278
|
+
sdkVersion: "3.7.0",
|
|
34279
34279
|
genVersion: "2.610.0",
|
|
34280
|
-
userAgent: "speakeasy-sdk/typescript 3.
|
|
34280
|
+
userAgent: "speakeasy-sdk/typescript 3.7.0 2.610.0 2.0 @orq-ai/node"
|
|
34281
34281
|
};
|
|
34282
34282
|
});
|
|
34283
34283
|
|
|
@@ -36427,7 +36427,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36427
36427
|
created_by_id: stringType().optional(),
|
|
36428
36428
|
updated_by_id: stringType().optional(),
|
|
36429
36429
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36430
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36430
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
36431
36431
|
}).transform((v2) => {
|
|
36432
36432
|
return remap(v2, {
|
|
36433
36433
|
_id: "id",
|
|
@@ -36448,7 +36448,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36448
36448
|
createdById: stringType().optional(),
|
|
36449
36449
|
updatedById: stringType().optional(),
|
|
36450
36450
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36451
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36451
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
36452
36452
|
}).transform((v2) => {
|
|
36453
36453
|
return remap(v2, {
|
|
36454
36454
|
id: "_id",
|
|
@@ -36646,7 +36646,7 @@ var init_createcontact = __esm(() => {
|
|
|
36646
36646
|
tags: arrayType(stringType()).optional(),
|
|
36647
36647
|
metadata: recordType(anyType()).optional(),
|
|
36648
36648
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36649
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36649
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
36650
36650
|
}).transform((v2) => {
|
|
36651
36651
|
return remap(v2, {
|
|
36652
36652
|
external_id: "externalId",
|
|
@@ -36663,7 +36663,7 @@ var init_createcontact = __esm(() => {
|
|
|
36663
36663
|
tags: arrayType(stringType()).optional(),
|
|
36664
36664
|
metadata: recordType(anyType()).optional(),
|
|
36665
36665
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36666
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36666
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
36667
36667
|
}).transform((v2) => {
|
|
36668
36668
|
return remap(v2, {
|
|
36669
36669
|
externalId: "external_id",
|
|
@@ -36733,7 +36733,7 @@ var init_createdataset = __esm(() => {
|
|
|
36733
36733
|
updated_by_id: stringType().optional(),
|
|
36734
36734
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36735
36735
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36736
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36736
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
36737
36737
|
}).transform((v2) => {
|
|
36738
36738
|
return remap(v2, {
|
|
36739
36739
|
_id: "id",
|
|
@@ -36753,7 +36753,7 @@ var init_createdataset = __esm(() => {
|
|
|
36753
36753
|
updatedById: stringType().optional(),
|
|
36754
36754
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36755
36755
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36756
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36756
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
36757
36757
|
}).transform((v2) => {
|
|
36758
36758
|
return remap(v2, {
|
|
36759
36759
|
id: "_id",
|
|
@@ -37381,7 +37381,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37381
37381
|
created_by_id: stringType().optional(),
|
|
37382
37382
|
updated_by_id: stringType().optional(),
|
|
37383
37383
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37384
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
37384
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
37385
37385
|
}).transform((v2) => {
|
|
37386
37386
|
return remap(v2, {
|
|
37387
37387
|
_id: "id",
|
|
@@ -37402,7 +37402,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37402
37402
|
createdById: stringType().optional(),
|
|
37403
37403
|
updatedById: stringType().optional(),
|
|
37404
37404
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37405
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
37405
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
37406
37406
|
}).transform((v2) => {
|
|
37407
37407
|
return remap(v2, {
|
|
37408
37408
|
id: "_id",
|
|
@@ -37624,7 +37624,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37624
37624
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37625
37625
|
})(CreateDatasourceStatus$ ||= {});
|
|
37626
37626
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37627
|
-
_id: stringType().default("
|
|
37627
|
+
_id: stringType().default("01JWDP33A63T2X6VEH9004AZNT"),
|
|
37628
37628
|
display_name: stringType(),
|
|
37629
37629
|
description: stringType().optional(),
|
|
37630
37630
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37647,7 +37647,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37647
37647
|
});
|
|
37648
37648
|
});
|
|
37649
37649
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37650
|
-
id: stringType().default("
|
|
37650
|
+
id: stringType().default("01JWDP33A63T2X6VEH9004AZNT"),
|
|
37651
37651
|
displayName: stringType(),
|
|
37652
37652
|
description: stringType().optional(),
|
|
37653
37653
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -45958,7 +45958,7 @@ var init_fileget = __esm(() => {
|
|
|
45958
45958
|
bytes: numberType(),
|
|
45959
45959
|
file_name: stringType(),
|
|
45960
45960
|
workspace_id: stringType(),
|
|
45961
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
45961
|
+
created: stringType().datetime({ offset: true }).default("2025-05-29T09:31:03.169Z").transform((v2) => new Date(v2))
|
|
45962
45962
|
}).transform((v2) => {
|
|
45963
45963
|
return remap(v2, {
|
|
45964
45964
|
_id: "id",
|
|
@@ -45974,7 +45974,7 @@ var init_fileget = __esm(() => {
|
|
|
45974
45974
|
bytes: numberType(),
|
|
45975
45975
|
fileName: stringType(),
|
|
45976
45976
|
workspaceId: stringType(),
|
|
45977
|
-
created: dateType().default(() => new Date("2025-05-
|
|
45977
|
+
created: dateType().default(() => new Date("2025-05-29T09:31:03.169Z")).transform((v2) => v2.toISOString())
|
|
45978
45978
|
}).transform((v2) => {
|
|
45979
45979
|
return remap(v2, {
|
|
45980
45980
|
id: "_id",
|
|
@@ -46045,7 +46045,7 @@ var init_filelist = __esm(() => {
|
|
|
46045
46045
|
bytes: numberType(),
|
|
46046
46046
|
file_name: stringType(),
|
|
46047
46047
|
workspace_id: stringType(),
|
|
46048
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
46048
|
+
created: stringType().datetime({ offset: true }).default("2025-05-29T09:31:03.169Z").transform((v2) => new Date(v2))
|
|
46049
46049
|
}).transform((v2) => {
|
|
46050
46050
|
return remap(v2, {
|
|
46051
46051
|
_id: "id",
|
|
@@ -46061,7 +46061,7 @@ var init_filelist = __esm(() => {
|
|
|
46061
46061
|
bytes: numberType(),
|
|
46062
46062
|
fileName: stringType(),
|
|
46063
46063
|
workspaceId: stringType(),
|
|
46064
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46064
|
+
created: dateType().default(() => new Date("2025-05-29T09:31:03.169Z")).transform((v2) => v2.toISOString())
|
|
46065
46065
|
}).transform((v2) => {
|
|
46066
46066
|
return remap(v2, {
|
|
46067
46067
|
id: "_id",
|
|
@@ -46193,7 +46193,7 @@ var init_fileupload = __esm(() => {
|
|
|
46193
46193
|
bytes: numberType(),
|
|
46194
46194
|
file_name: stringType(),
|
|
46195
46195
|
workspace_id: stringType(),
|
|
46196
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
46196
|
+
created: stringType().datetime({ offset: true }).default("2025-05-29T09:31:03.169Z").transform((v2) => new Date(v2))
|
|
46197
46197
|
}).transform((v2) => {
|
|
46198
46198
|
return remap(v2, {
|
|
46199
46199
|
_id: "id",
|
|
@@ -46209,7 +46209,7 @@ var init_fileupload = __esm(() => {
|
|
|
46209
46209
|
bytes: numberType(),
|
|
46210
46210
|
fileName: stringType(),
|
|
46211
46211
|
workspaceId: stringType(),
|
|
46212
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46212
|
+
created: dateType().default(() => new Date("2025-05-29T09:31:03.169Z")).transform((v2) => v2.toISOString())
|
|
46213
46213
|
}).transform((v2) => {
|
|
46214
46214
|
return remap(v2, {
|
|
46215
46215
|
id: "_id",
|
|
@@ -48796,7 +48796,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48796
48796
|
created_by_id: stringType().optional(),
|
|
48797
48797
|
updated_by_id: stringType().optional(),
|
|
48798
48798
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48799
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48799
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
48800
48800
|
}).transform((v2) => {
|
|
48801
48801
|
return remap(v2, {
|
|
48802
48802
|
_id: "id",
|
|
@@ -48817,7 +48817,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48817
48817
|
createdById: stringType().optional(),
|
|
48818
48818
|
updatedById: stringType().optional(),
|
|
48819
48819
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48820
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48820
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
48821
48821
|
}).transform((v2) => {
|
|
48822
48822
|
return remap(v2, {
|
|
48823
48823
|
id: "_id",
|
|
@@ -48925,7 +48925,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48925
48925
|
updated_by_id: stringType().optional(),
|
|
48926
48926
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
48927
48927
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48928
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48928
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
48929
48929
|
}).transform((v2) => {
|
|
48930
48930
|
return remap(v2, {
|
|
48931
48931
|
_id: "id",
|
|
@@ -48945,7 +48945,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48945
48945
|
updatedById: stringType().optional(),
|
|
48946
48946
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
48947
48947
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48948
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48948
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
48949
48949
|
}).transform((v2) => {
|
|
48950
48950
|
return remap(v2, {
|
|
48951
48951
|
id: "_id",
|
|
@@ -49050,7 +49050,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49050
49050
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
49051
49051
|
})(ListDatasourcesStatus$ ||= {});
|
|
49052
49052
|
ListDatasourcesData$inboundSchema = objectType({
|
|
49053
|
-
_id: stringType().default("
|
|
49053
|
+
_id: stringType().default("01JWDP33A4HT5JK5ZDFKHG24Z9"),
|
|
49054
49054
|
display_name: stringType(),
|
|
49055
49055
|
description: stringType().optional(),
|
|
49056
49056
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -49073,7 +49073,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49073
49073
|
});
|
|
49074
49074
|
});
|
|
49075
49075
|
ListDatasourcesData$outboundSchema = objectType({
|
|
49076
|
-
id: stringType().default("
|
|
49076
|
+
id: stringType().default("01JWDP33A4HT5JK5ZDFKHG24Z9"),
|
|
49077
49077
|
displayName: stringType(),
|
|
49078
49078
|
description: stringType().optional(),
|
|
49079
49079
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -50364,7 +50364,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50364
50364
|
created_by_id: stringType().optional(),
|
|
50365
50365
|
updated_by_id: stringType().optional(),
|
|
50366
50366
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50367
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
50367
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
50368
50368
|
}).transform((v2) => {
|
|
50369
50369
|
return remap(v2, {
|
|
50370
50370
|
_id: "id",
|
|
@@ -50385,7 +50385,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50385
50385
|
createdById: stringType().optional(),
|
|
50386
50386
|
updatedById: stringType().optional(),
|
|
50387
50387
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50388
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
50388
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
50389
50389
|
}).transform((v2) => {
|
|
50390
50390
|
return remap(v2, {
|
|
50391
50391
|
id: "_id",
|
|
@@ -50456,7 +50456,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
50456
50456
|
updated_by_id: stringType().optional(),
|
|
50457
50457
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
50458
50458
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50459
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
50459
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
50460
50460
|
}).transform((v2) => {
|
|
50461
50461
|
return remap(v2, {
|
|
50462
50462
|
_id: "id",
|
|
@@ -50476,7 +50476,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
50476
50476
|
updatedById: stringType().optional(),
|
|
50477
50477
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
50478
50478
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50479
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
50479
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
50480
50480
|
}).transform((v2) => {
|
|
50481
50481
|
return remap(v2, {
|
|
50482
50482
|
id: "_id",
|
|
@@ -50534,7 +50534,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
50534
50534
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
50535
50535
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
50536
50536
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
50537
|
-
_id: stringType().default("
|
|
50537
|
+
_id: stringType().default("01JWDP33A5GVGREVKEF0XSWM7V"),
|
|
50538
50538
|
display_name: stringType(),
|
|
50539
50539
|
description: stringType().optional(),
|
|
50540
50540
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -50557,7 +50557,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
50557
50557
|
});
|
|
50558
50558
|
});
|
|
50559
50559
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
50560
|
-
id: stringType().default("
|
|
50560
|
+
id: stringType().default("01JWDP33A5GVGREVKEF0XSWM7V"),
|
|
50561
50561
|
displayName: stringType(),
|
|
50562
50562
|
description: stringType().optional(),
|
|
50563
50563
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -51901,7 +51901,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51901
51901
|
created_by_id: stringType().optional(),
|
|
51902
51902
|
updated_by_id: stringType().optional(),
|
|
51903
51903
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51904
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
51904
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
51905
51905
|
}).transform((v2) => {
|
|
51906
51906
|
return remap(v2, {
|
|
51907
51907
|
_id: "id",
|
|
@@ -51922,7 +51922,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51922
51922
|
createdById: stringType().optional(),
|
|
51923
51923
|
updatedById: stringType().optional(),
|
|
51924
51924
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51925
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
51925
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
51926
51926
|
}).transform((v2) => {
|
|
51927
51927
|
return remap(v2, {
|
|
51928
51928
|
id: "_id",
|
|
@@ -52023,7 +52023,7 @@ var init_updatedataset = __esm(() => {
|
|
|
52023
52023
|
parent_id: stringType().optional(),
|
|
52024
52024
|
version: stringType().optional(),
|
|
52025
52025
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
52026
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
52026
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-29T09:31:00.280Z").transform((v2) => new Date(v2))
|
|
52027
52027
|
}).transform((v2) => {
|
|
52028
52028
|
return remap(v2, {
|
|
52029
52029
|
_id: "id",
|
|
@@ -52046,7 +52046,7 @@ var init_updatedataset = __esm(() => {
|
|
|
52046
52046
|
parentId: stringType().optional(),
|
|
52047
52047
|
version: stringType().optional(),
|
|
52048
52048
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
52049
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
52049
|
+
updated: dateType().default(() => new Date("2025-05-29T09:31:00.280Z")).transform((v2) => v2.toISOString())
|
|
52050
52050
|
}).transform((v2) => {
|
|
52051
52051
|
return remap(v2, {
|
|
52052
52052
|
id: "_id",
|
|
@@ -52127,7 +52127,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
52127
52127
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
52128
52128
|
})(UpdateDatasourceStatus$ ||= {});
|
|
52129
52129
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
52130
|
-
_id: stringType().default("
|
|
52130
|
+
_id: stringType().default("01JWDP33A7ESCFV6787W0KSJYC"),
|
|
52131
52131
|
display_name: stringType(),
|
|
52132
52132
|
description: stringType().optional(),
|
|
52133
52133
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -52150,7 +52150,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
52150
52150
|
});
|
|
52151
52151
|
});
|
|
52152
52152
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
52153
|
-
id: stringType().default("
|
|
52153
|
+
id: stringType().default("01JWDP33A7ESCFV6787W0KSJYC"),
|
|
52154
52154
|
displayName: stringType(),
|
|
52155
52155
|
description: stringType().optional(),
|
|
52156
52156
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -60817,7 +60817,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
60817
60817
|
function createMCPServer(deps) {
|
|
60818
60818
|
const server = new McpServer({
|
|
60819
60819
|
name: "Orq",
|
|
60820
|
-
version: "3.
|
|
60820
|
+
version: "3.7.0"
|
|
60821
60821
|
});
|
|
60822
60822
|
const client = new OrqCore({
|
|
60823
60823
|
apiKey: deps.apiKey,
|
|
@@ -62153,7 +62153,7 @@ var routes = rn({
|
|
|
62153
62153
|
var app = Ve(routes, {
|
|
62154
62154
|
name: "mcp",
|
|
62155
62155
|
versionInfo: {
|
|
62156
|
-
currentVersion: "3.
|
|
62156
|
+
currentVersion: "3.7.0"
|
|
62157
62157
|
}
|
|
62158
62158
|
});
|
|
62159
62159
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -62161,5 +62161,5 @@ export {
|
|
|
62161
62161
|
app
|
|
62162
62162
|
};
|
|
62163
62163
|
|
|
62164
|
-
//# debugId=
|
|
62164
|
+
//# debugId=4F6BCB58282BC9F964756E2164756E21
|
|
62165
62165
|
//# sourceMappingURL=mcp-server.js.map
|