@orq-ai/node 3.6.0-rc.39 → 3.6.0-rc.40
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
|
@@ -34272,9 +34272,9 @@ var init_config = __esm(() => {
|
|
|
34272
34272
|
SDK_METADATA = {
|
|
34273
34273
|
language: "typescript",
|
|
34274
34274
|
openapiDocVersion: "2.0",
|
|
34275
|
-
sdkVersion: "3.6.0-rc.
|
|
34275
|
+
sdkVersion: "3.6.0-rc.40",
|
|
34276
34276
|
genVersion: "2.610.0",
|
|
34277
|
-
userAgent: "speakeasy-sdk/typescript 3.6.0-rc.
|
|
34277
|
+
userAgent: "speakeasy-sdk/typescript 3.6.0-rc.40 2.610.0 2.0 @orq-ai/node"
|
|
34278
34278
|
};
|
|
34279
34279
|
});
|
|
34280
34280
|
|
|
@@ -36424,7 +36424,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36424
36424
|
created_by_id: stringType().optional(),
|
|
36425
36425
|
updated_by_id: stringType().optional(),
|
|
36426
36426
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36427
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36427
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
36428
36428
|
}).transform((v2) => {
|
|
36429
36429
|
return remap(v2, {
|
|
36430
36430
|
_id: "id",
|
|
@@ -36445,7 +36445,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36445
36445
|
createdById: stringType().optional(),
|
|
36446
36446
|
updatedById: stringType().optional(),
|
|
36447
36447
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36448
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36448
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
36449
36449
|
}).transform((v2) => {
|
|
36450
36450
|
return remap(v2, {
|
|
36451
36451
|
id: "_id",
|
|
@@ -36643,7 +36643,7 @@ var init_createcontact = __esm(() => {
|
|
|
36643
36643
|
tags: arrayType(stringType()).optional(),
|
|
36644
36644
|
metadata: recordType(anyType()).optional(),
|
|
36645
36645
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36646
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36646
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
36647
36647
|
}).transform((v2) => {
|
|
36648
36648
|
return remap(v2, {
|
|
36649
36649
|
external_id: "externalId",
|
|
@@ -36660,7 +36660,7 @@ var init_createcontact = __esm(() => {
|
|
|
36660
36660
|
tags: arrayType(stringType()).optional(),
|
|
36661
36661
|
metadata: recordType(anyType()).optional(),
|
|
36662
36662
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36663
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36663
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
36664
36664
|
}).transform((v2) => {
|
|
36665
36665
|
return remap(v2, {
|
|
36666
36666
|
externalId: "external_id",
|
|
@@ -36730,7 +36730,7 @@ var init_createdataset = __esm(() => {
|
|
|
36730
36730
|
updated_by_id: stringType().optional(),
|
|
36731
36731
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36732
36732
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36733
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36733
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
36734
36734
|
}).transform((v2) => {
|
|
36735
36735
|
return remap(v2, {
|
|
36736
36736
|
_id: "id",
|
|
@@ -36750,7 +36750,7 @@ var init_createdataset = __esm(() => {
|
|
|
36750
36750
|
updatedById: stringType().optional(),
|
|
36751
36751
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36752
36752
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36753
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36753
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
36754
36754
|
}).transform((v2) => {
|
|
36755
36755
|
return remap(v2, {
|
|
36756
36756
|
id: "_id",
|
|
@@ -37378,7 +37378,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37378
37378
|
created_by_id: stringType().optional(),
|
|
37379
37379
|
updated_by_id: stringType().optional(),
|
|
37380
37380
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37381
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
37381
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
37382
37382
|
}).transform((v2) => {
|
|
37383
37383
|
return remap(v2, {
|
|
37384
37384
|
_id: "id",
|
|
@@ -37399,7 +37399,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37399
37399
|
createdById: stringType().optional(),
|
|
37400
37400
|
updatedById: stringType().optional(),
|
|
37401
37401
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37402
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
37402
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
37403
37403
|
}).transform((v2) => {
|
|
37404
37404
|
return remap(v2, {
|
|
37405
37405
|
id: "_id",
|
|
@@ -37621,7 +37621,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37621
37621
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37622
37622
|
})(CreateDatasourceStatus$ ||= {});
|
|
37623
37623
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37624
|
-
_id: stringType().default("
|
|
37624
|
+
_id: stringType().default("01JW8WSSGZWEMAQG38TKR724QA"),
|
|
37625
37625
|
display_name: stringType(),
|
|
37626
37626
|
description: stringType().optional(),
|
|
37627
37627
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37644,7 +37644,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37644
37644
|
});
|
|
37645
37645
|
});
|
|
37646
37646
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37647
|
-
id: stringType().default("
|
|
37647
|
+
id: stringType().default("01JW8WSSGZWEMAQG38TKR724QA"),
|
|
37648
37648
|
displayName: stringType(),
|
|
37649
37649
|
description: stringType().optional(),
|
|
37650
37650
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -45955,7 +45955,7 @@ var init_fileget = __esm(() => {
|
|
|
45955
45955
|
bytes: numberType(),
|
|
45956
45956
|
file_name: stringType(),
|
|
45957
45957
|
workspace_id: stringType(),
|
|
45958
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
45958
|
+
created: stringType().datetime({ offset: true }).default("2025-05-27T12:52:06.043Z").transform((v2) => new Date(v2))
|
|
45959
45959
|
}).transform((v2) => {
|
|
45960
45960
|
return remap(v2, {
|
|
45961
45961
|
_id: "id",
|
|
@@ -45971,7 +45971,7 @@ var init_fileget = __esm(() => {
|
|
|
45971
45971
|
bytes: numberType(),
|
|
45972
45972
|
fileName: stringType(),
|
|
45973
45973
|
workspaceId: stringType(),
|
|
45974
|
-
created: dateType().default(() => new Date("2025-05-
|
|
45974
|
+
created: dateType().default(() => new Date("2025-05-27T12:52:06.043Z")).transform((v2) => v2.toISOString())
|
|
45975
45975
|
}).transform((v2) => {
|
|
45976
45976
|
return remap(v2, {
|
|
45977
45977
|
id: "_id",
|
|
@@ -46042,7 +46042,7 @@ var init_filelist = __esm(() => {
|
|
|
46042
46042
|
bytes: numberType(),
|
|
46043
46043
|
file_name: stringType(),
|
|
46044
46044
|
workspace_id: stringType(),
|
|
46045
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
46045
|
+
created: stringType().datetime({ offset: true }).default("2025-05-27T12:52:06.043Z").transform((v2) => new Date(v2))
|
|
46046
46046
|
}).transform((v2) => {
|
|
46047
46047
|
return remap(v2, {
|
|
46048
46048
|
_id: "id",
|
|
@@ -46058,7 +46058,7 @@ var init_filelist = __esm(() => {
|
|
|
46058
46058
|
bytes: numberType(),
|
|
46059
46059
|
fileName: stringType(),
|
|
46060
46060
|
workspaceId: stringType(),
|
|
46061
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46061
|
+
created: dateType().default(() => new Date("2025-05-27T12:52:06.043Z")).transform((v2) => v2.toISOString())
|
|
46062
46062
|
}).transform((v2) => {
|
|
46063
46063
|
return remap(v2, {
|
|
46064
46064
|
id: "_id",
|
|
@@ -46190,7 +46190,7 @@ var init_fileupload = __esm(() => {
|
|
|
46190
46190
|
bytes: numberType(),
|
|
46191
46191
|
file_name: stringType(),
|
|
46192
46192
|
workspace_id: stringType(),
|
|
46193
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
46193
|
+
created: stringType().datetime({ offset: true }).default("2025-05-27T12:52:06.043Z").transform((v2) => new Date(v2))
|
|
46194
46194
|
}).transform((v2) => {
|
|
46195
46195
|
return remap(v2, {
|
|
46196
46196
|
_id: "id",
|
|
@@ -46206,7 +46206,7 @@ var init_fileupload = __esm(() => {
|
|
|
46206
46206
|
bytes: numberType(),
|
|
46207
46207
|
fileName: stringType(),
|
|
46208
46208
|
workspaceId: stringType(),
|
|
46209
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46209
|
+
created: dateType().default(() => new Date("2025-05-27T12:52:06.043Z")).transform((v2) => v2.toISOString())
|
|
46210
46210
|
}).transform((v2) => {
|
|
46211
46211
|
return remap(v2, {
|
|
46212
46212
|
id: "_id",
|
|
@@ -48793,7 +48793,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48793
48793
|
created_by_id: stringType().optional(),
|
|
48794
48794
|
updated_by_id: stringType().optional(),
|
|
48795
48795
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48796
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48796
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
48797
48797
|
}).transform((v2) => {
|
|
48798
48798
|
return remap(v2, {
|
|
48799
48799
|
_id: "id",
|
|
@@ -48814,7 +48814,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48814
48814
|
createdById: stringType().optional(),
|
|
48815
48815
|
updatedById: stringType().optional(),
|
|
48816
48816
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48817
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48817
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
48818
48818
|
}).transform((v2) => {
|
|
48819
48819
|
return remap(v2, {
|
|
48820
48820
|
id: "_id",
|
|
@@ -48922,7 +48922,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48922
48922
|
updated_by_id: stringType().optional(),
|
|
48923
48923
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
48924
48924
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48925
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48925
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
48926
48926
|
}).transform((v2) => {
|
|
48927
48927
|
return remap(v2, {
|
|
48928
48928
|
_id: "id",
|
|
@@ -48942,7 +48942,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48942
48942
|
updatedById: stringType().optional(),
|
|
48943
48943
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
48944
48944
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48945
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48945
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
48946
48946
|
}).transform((v2) => {
|
|
48947
48947
|
return remap(v2, {
|
|
48948
48948
|
id: "_id",
|
|
@@ -49047,7 +49047,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49047
49047
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
49048
49048
|
})(ListDatasourcesStatus$ ||= {});
|
|
49049
49049
|
ListDatasourcesData$inboundSchema = objectType({
|
|
49050
|
-
_id: stringType().default("
|
|
49050
|
+
_id: stringType().default("01JW8WSSGX044KN4TBNSWRQFMG"),
|
|
49051
49051
|
display_name: stringType(),
|
|
49052
49052
|
description: stringType().optional(),
|
|
49053
49053
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -49070,7 +49070,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49070
49070
|
});
|
|
49071
49071
|
});
|
|
49072
49072
|
ListDatasourcesData$outboundSchema = objectType({
|
|
49073
|
-
id: stringType().default("
|
|
49073
|
+
id: stringType().default("01JW8WSSGX044KN4TBNSWRQFMG"),
|
|
49074
49074
|
displayName: stringType(),
|
|
49075
49075
|
description: stringType().optional(),
|
|
49076
49076
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -50361,7 +50361,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50361
50361
|
created_by_id: stringType().optional(),
|
|
50362
50362
|
updated_by_id: stringType().optional(),
|
|
50363
50363
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50364
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
50364
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
50365
50365
|
}).transform((v2) => {
|
|
50366
50366
|
return remap(v2, {
|
|
50367
50367
|
_id: "id",
|
|
@@ -50382,7 +50382,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50382
50382
|
createdById: stringType().optional(),
|
|
50383
50383
|
updatedById: stringType().optional(),
|
|
50384
50384
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50385
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
50385
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
50386
50386
|
}).transform((v2) => {
|
|
50387
50387
|
return remap(v2, {
|
|
50388
50388
|
id: "_id",
|
|
@@ -50453,7 +50453,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
50453
50453
|
updated_by_id: stringType().optional(),
|
|
50454
50454
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
50455
50455
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50456
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
50456
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
50457
50457
|
}).transform((v2) => {
|
|
50458
50458
|
return remap(v2, {
|
|
50459
50459
|
_id: "id",
|
|
@@ -50473,7 +50473,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
50473
50473
|
updatedById: stringType().optional(),
|
|
50474
50474
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
50475
50475
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50476
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
50476
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
50477
50477
|
}).transform((v2) => {
|
|
50478
50478
|
return remap(v2, {
|
|
50479
50479
|
id: "_id",
|
|
@@ -50531,7 +50531,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
50531
50531
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
50532
50532
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
50533
50533
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
50534
|
-
_id: stringType().default("
|
|
50534
|
+
_id: stringType().default("01JW8WSSGYG722K8MK6A4FTTMA"),
|
|
50535
50535
|
display_name: stringType(),
|
|
50536
50536
|
description: stringType().optional(),
|
|
50537
50537
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -50554,7 +50554,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
50554
50554
|
});
|
|
50555
50555
|
});
|
|
50556
50556
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
50557
|
-
id: stringType().default("
|
|
50557
|
+
id: stringType().default("01JW8WSSGYG722K8MK6A4FTTMA"),
|
|
50558
50558
|
displayName: stringType(),
|
|
50559
50559
|
description: stringType().optional(),
|
|
50560
50560
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -51898,7 +51898,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51898
51898
|
created_by_id: stringType().optional(),
|
|
51899
51899
|
updated_by_id: stringType().optional(),
|
|
51900
51900
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51901
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
51901
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
51902
51902
|
}).transform((v2) => {
|
|
51903
51903
|
return remap(v2, {
|
|
51904
51904
|
_id: "id",
|
|
@@ -51919,7 +51919,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51919
51919
|
createdById: stringType().optional(),
|
|
51920
51920
|
updatedById: stringType().optional(),
|
|
51921
51921
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51922
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
51922
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
51923
51923
|
}).transform((v2) => {
|
|
51924
51924
|
return remap(v2, {
|
|
51925
51925
|
id: "_id",
|
|
@@ -52020,7 +52020,7 @@ var init_updatedataset = __esm(() => {
|
|
|
52020
52020
|
parent_id: stringType().optional(),
|
|
52021
52021
|
version: stringType().optional(),
|
|
52022
52022
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
52023
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
52023
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-27T12:52:03.139Z").transform((v2) => new Date(v2))
|
|
52024
52024
|
}).transform((v2) => {
|
|
52025
52025
|
return remap(v2, {
|
|
52026
52026
|
_id: "id",
|
|
@@ -52043,7 +52043,7 @@ var init_updatedataset = __esm(() => {
|
|
|
52043
52043
|
parentId: stringType().optional(),
|
|
52044
52044
|
version: stringType().optional(),
|
|
52045
52045
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
52046
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
52046
|
+
updated: dateType().default(() => new Date("2025-05-27T12:52:03.139Z")).transform((v2) => v2.toISOString())
|
|
52047
52047
|
}).transform((v2) => {
|
|
52048
52048
|
return remap(v2, {
|
|
52049
52049
|
id: "_id",
|
|
@@ -52124,7 +52124,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
52124
52124
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
52125
52125
|
})(UpdateDatasourceStatus$ ||= {});
|
|
52126
52126
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
52127
|
-
_id: stringType().default("
|
|
52127
|
+
_id: stringType().default("01JW8WSSH01EN6XFV3RR176QYN"),
|
|
52128
52128
|
display_name: stringType(),
|
|
52129
52129
|
description: stringType().optional(),
|
|
52130
52130
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -52147,7 +52147,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
52147
52147
|
});
|
|
52148
52148
|
});
|
|
52149
52149
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
52150
|
-
id: stringType().default("
|
|
52150
|
+
id: stringType().default("01JW8WSSH01EN6XFV3RR176QYN"),
|
|
52151
52151
|
displayName: stringType(),
|
|
52152
52152
|
description: stringType().optional(),
|
|
52153
52153
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -60814,7 +60814,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
60814
60814
|
function createMCPServer(deps) {
|
|
60815
60815
|
const server = new McpServer({
|
|
60816
60816
|
name: "Orq",
|
|
60817
|
-
version: "3.6.0-rc.
|
|
60817
|
+
version: "3.6.0-rc.40"
|
|
60818
60818
|
});
|
|
60819
60819
|
const client = new OrqCore({
|
|
60820
60820
|
apiKey: deps.apiKey,
|
|
@@ -62150,7 +62150,7 @@ var routes = rn({
|
|
|
62150
62150
|
var app = Ve(routes, {
|
|
62151
62151
|
name: "mcp",
|
|
62152
62152
|
versionInfo: {
|
|
62153
|
-
currentVersion: "3.6.0-rc.
|
|
62153
|
+
currentVersion: "3.6.0-rc.40"
|
|
62154
62154
|
}
|
|
62155
62155
|
});
|
|
62156
62156
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -62158,5 +62158,5 @@ export {
|
|
|
62158
62158
|
app
|
|
62159
62159
|
};
|
|
62160
62160
|
|
|
62161
|
-
//# debugId=
|
|
62161
|
+
//# debugId=43E34E3D54F7561364756E2164756E21
|
|
62162
62162
|
//# sourceMappingURL=mcp-server.js.map
|