@orq-ai/node 3.6.0-rc.29 → 3.6.0-rc.30
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.30",
|
|
34276
34276
|
genVersion: "2.610.0",
|
|
34277
|
-
userAgent: "speakeasy-sdk/typescript 3.6.0-rc.
|
|
34277
|
+
userAgent: "speakeasy-sdk/typescript 3.6.0-rc.30 2.610.0 2.0 @orq-ai/node"
|
|
34278
34278
|
};
|
|
34279
34279
|
});
|
|
34280
34280
|
|
|
@@ -36330,7 +36330,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36330
36330
|
created_by_id: stringType().optional(),
|
|
36331
36331
|
updated_by_id: stringType().optional(),
|
|
36332
36332
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36333
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36333
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
36334
36334
|
}).transform((v2) => {
|
|
36335
36335
|
return remap(v2, {
|
|
36336
36336
|
_id: "id",
|
|
@@ -36351,7 +36351,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36351
36351
|
createdById: stringType().optional(),
|
|
36352
36352
|
updatedById: stringType().optional(),
|
|
36353
36353
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36354
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36354
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
36355
36355
|
}).transform((v2) => {
|
|
36356
36356
|
return remap(v2, {
|
|
36357
36357
|
id: "_id",
|
|
@@ -36549,7 +36549,7 @@ var init_createcontact = __esm(() => {
|
|
|
36549
36549
|
tags: arrayType(stringType()).optional(),
|
|
36550
36550
|
metadata: recordType(anyType()).optional(),
|
|
36551
36551
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36552
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36552
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
36553
36553
|
}).transform((v2) => {
|
|
36554
36554
|
return remap(v2, {
|
|
36555
36555
|
external_id: "externalId",
|
|
@@ -36566,7 +36566,7 @@ var init_createcontact = __esm(() => {
|
|
|
36566
36566
|
tags: arrayType(stringType()).optional(),
|
|
36567
36567
|
metadata: recordType(anyType()).optional(),
|
|
36568
36568
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36569
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36569
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
36570
36570
|
}).transform((v2) => {
|
|
36571
36571
|
return remap(v2, {
|
|
36572
36572
|
externalId: "external_id",
|
|
@@ -36636,7 +36636,7 @@ var init_createdataset = __esm(() => {
|
|
|
36636
36636
|
updated_by_id: stringType().optional(),
|
|
36637
36637
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36638
36638
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36639
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36639
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
36640
36640
|
}).transform((v2) => {
|
|
36641
36641
|
return remap(v2, {
|
|
36642
36642
|
_id: "id",
|
|
@@ -36656,7 +36656,7 @@ var init_createdataset = __esm(() => {
|
|
|
36656
36656
|
updatedById: stringType().optional(),
|
|
36657
36657
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36658
36658
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36659
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36659
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
36660
36660
|
}).transform((v2) => {
|
|
36661
36661
|
return remap(v2, {
|
|
36662
36662
|
id: "_id",
|
|
@@ -37190,7 +37190,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37190
37190
|
created_by_id: stringType().optional(),
|
|
37191
37191
|
updated_by_id: stringType().optional(),
|
|
37192
37192
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37193
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
37193
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
37194
37194
|
}).transform((v2) => {
|
|
37195
37195
|
return remap(v2, {
|
|
37196
37196
|
_id: "id",
|
|
@@ -37211,7 +37211,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37211
37211
|
createdById: stringType().optional(),
|
|
37212
37212
|
updatedById: stringType().optional(),
|
|
37213
37213
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37214
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
37214
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
37215
37215
|
}).transform((v2) => {
|
|
37216
37216
|
return remap(v2, {
|
|
37217
37217
|
id: "_id",
|
|
@@ -37433,7 +37433,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37433
37433
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37434
37434
|
})(CreateDatasourceStatus$ ||= {});
|
|
37435
37435
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37436
|
-
_id: stringType().default("
|
|
37436
|
+
_id: stringType().default("01JVY60BJWV8BY7K0ZV60YR2EE"),
|
|
37437
37437
|
display_name: stringType(),
|
|
37438
37438
|
description: stringType().optional(),
|
|
37439
37439
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37456,7 +37456,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37456
37456
|
});
|
|
37457
37457
|
});
|
|
37458
37458
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37459
|
-
id: stringType().default("
|
|
37459
|
+
id: stringType().default("01JVY60BJWV8BY7K0ZV60YR2EE"),
|
|
37460
37460
|
displayName: stringType(),
|
|
37461
37461
|
description: stringType().optional(),
|
|
37462
37462
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -45579,7 +45579,7 @@ var init_fileget = __esm(() => {
|
|
|
45579
45579
|
bytes: numberType(),
|
|
45580
45580
|
file_name: stringType(),
|
|
45581
45581
|
workspace_id: stringType(),
|
|
45582
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
45582
|
+
created: stringType().datetime({ offset: true }).default("2025-05-23T09:01:19.959Z").transform((v2) => new Date(v2))
|
|
45583
45583
|
}).transform((v2) => {
|
|
45584
45584
|
return remap(v2, {
|
|
45585
45585
|
_id: "id",
|
|
@@ -45595,7 +45595,7 @@ var init_fileget = __esm(() => {
|
|
|
45595
45595
|
bytes: numberType(),
|
|
45596
45596
|
fileName: stringType(),
|
|
45597
45597
|
workspaceId: stringType(),
|
|
45598
|
-
created: dateType().default(() => new Date("2025-05-
|
|
45598
|
+
created: dateType().default(() => new Date("2025-05-23T09:01:19.959Z")).transform((v2) => v2.toISOString())
|
|
45599
45599
|
}).transform((v2) => {
|
|
45600
45600
|
return remap(v2, {
|
|
45601
45601
|
id: "_id",
|
|
@@ -45666,7 +45666,7 @@ var init_filelist = __esm(() => {
|
|
|
45666
45666
|
bytes: numberType(),
|
|
45667
45667
|
file_name: stringType(),
|
|
45668
45668
|
workspace_id: stringType(),
|
|
45669
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
45669
|
+
created: stringType().datetime({ offset: true }).default("2025-05-23T09:01:19.959Z").transform((v2) => new Date(v2))
|
|
45670
45670
|
}).transform((v2) => {
|
|
45671
45671
|
return remap(v2, {
|
|
45672
45672
|
_id: "id",
|
|
@@ -45682,7 +45682,7 @@ var init_filelist = __esm(() => {
|
|
|
45682
45682
|
bytes: numberType(),
|
|
45683
45683
|
fileName: stringType(),
|
|
45684
45684
|
workspaceId: stringType(),
|
|
45685
|
-
created: dateType().default(() => new Date("2025-05-
|
|
45685
|
+
created: dateType().default(() => new Date("2025-05-23T09:01:19.959Z")).transform((v2) => v2.toISOString())
|
|
45686
45686
|
}).transform((v2) => {
|
|
45687
45687
|
return remap(v2, {
|
|
45688
45688
|
id: "_id",
|
|
@@ -45814,7 +45814,7 @@ var init_fileupload = __esm(() => {
|
|
|
45814
45814
|
bytes: numberType(),
|
|
45815
45815
|
file_name: stringType(),
|
|
45816
45816
|
workspace_id: stringType(),
|
|
45817
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
45817
|
+
created: stringType().datetime({ offset: true }).default("2025-05-23T09:01:19.959Z").transform((v2) => new Date(v2))
|
|
45818
45818
|
}).transform((v2) => {
|
|
45819
45819
|
return remap(v2, {
|
|
45820
45820
|
_id: "id",
|
|
@@ -45830,7 +45830,7 @@ var init_fileupload = __esm(() => {
|
|
|
45830
45830
|
bytes: numberType(),
|
|
45831
45831
|
fileName: stringType(),
|
|
45832
45832
|
workspaceId: stringType(),
|
|
45833
|
-
created: dateType().default(() => new Date("2025-05-
|
|
45833
|
+
created: dateType().default(() => new Date("2025-05-23T09:01:19.959Z")).transform((v2) => v2.toISOString())
|
|
45834
45834
|
}).transform((v2) => {
|
|
45835
45835
|
return remap(v2, {
|
|
45836
45836
|
id: "_id",
|
|
@@ -48229,7 +48229,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48229
48229
|
created_by_id: stringType().optional(),
|
|
48230
48230
|
updated_by_id: stringType().optional(),
|
|
48231
48231
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48232
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48232
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
48233
48233
|
}).transform((v2) => {
|
|
48234
48234
|
return remap(v2, {
|
|
48235
48235
|
_id: "id",
|
|
@@ -48250,7 +48250,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48250
48250
|
createdById: stringType().optional(),
|
|
48251
48251
|
updatedById: stringType().optional(),
|
|
48252
48252
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48253
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48253
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
48254
48254
|
}).transform((v2) => {
|
|
48255
48255
|
return remap(v2, {
|
|
48256
48256
|
id: "_id",
|
|
@@ -48358,7 +48358,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48358
48358
|
updated_by_id: stringType().optional(),
|
|
48359
48359
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
48360
48360
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48361
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48361
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
48362
48362
|
}).transform((v2) => {
|
|
48363
48363
|
return remap(v2, {
|
|
48364
48364
|
_id: "id",
|
|
@@ -48378,7 +48378,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48378
48378
|
updatedById: stringType().optional(),
|
|
48379
48379
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
48380
48380
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48381
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48381
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
48382
48382
|
}).transform((v2) => {
|
|
48383
48383
|
return remap(v2, {
|
|
48384
48384
|
id: "_id",
|
|
@@ -48483,7 +48483,7 @@ var init_listdatasources = __esm(() => {
|
|
|
48483
48483
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
48484
48484
|
})(ListDatasourcesStatus$ ||= {});
|
|
48485
48485
|
ListDatasourcesData$inboundSchema = objectType({
|
|
48486
|
-
_id: stringType().default("
|
|
48486
|
+
_id: stringType().default("01JVY60BJVANFFTP8M2WJ7P7CB"),
|
|
48487
48487
|
display_name: stringType(),
|
|
48488
48488
|
description: stringType().optional(),
|
|
48489
48489
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -48506,7 +48506,7 @@ var init_listdatasources = __esm(() => {
|
|
|
48506
48506
|
});
|
|
48507
48507
|
});
|
|
48508
48508
|
ListDatasourcesData$outboundSchema = objectType({
|
|
48509
|
-
id: stringType().default("
|
|
48509
|
+
id: stringType().default("01JVY60BJVANFFTP8M2WJ7P7CB"),
|
|
48510
48510
|
displayName: stringType(),
|
|
48511
48511
|
description: stringType().optional(),
|
|
48512
48512
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -49703,7 +49703,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
49703
49703
|
created_by_id: stringType().optional(),
|
|
49704
49704
|
updated_by_id: stringType().optional(),
|
|
49705
49705
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49706
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
49706
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
49707
49707
|
}).transform((v2) => {
|
|
49708
49708
|
return remap(v2, {
|
|
49709
49709
|
_id: "id",
|
|
@@ -49724,7 +49724,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
49724
49724
|
createdById: stringType().optional(),
|
|
49725
49725
|
updatedById: stringType().optional(),
|
|
49726
49726
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49727
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
49727
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
49728
49728
|
}).transform((v2) => {
|
|
49729
49729
|
return remap(v2, {
|
|
49730
49730
|
id: "_id",
|
|
@@ -49795,7 +49795,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
49795
49795
|
updated_by_id: stringType().optional(),
|
|
49796
49796
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
49797
49797
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49798
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
49798
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
49799
49799
|
}).transform((v2) => {
|
|
49800
49800
|
return remap(v2, {
|
|
49801
49801
|
_id: "id",
|
|
@@ -49815,7 +49815,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
49815
49815
|
updatedById: stringType().optional(),
|
|
49816
49816
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
49817
49817
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49818
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
49818
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
49819
49819
|
}).transform((v2) => {
|
|
49820
49820
|
return remap(v2, {
|
|
49821
49821
|
id: "_id",
|
|
@@ -49873,7 +49873,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
49873
49873
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
49874
49874
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
49875
49875
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
49876
|
-
_id: stringType().default("
|
|
49876
|
+
_id: stringType().default("01JVY60BJW3XHZ3YEQJWM2944T"),
|
|
49877
49877
|
display_name: stringType(),
|
|
49878
49878
|
description: stringType().optional(),
|
|
49879
49879
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -49896,7 +49896,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
49896
49896
|
});
|
|
49897
49897
|
});
|
|
49898
49898
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
49899
|
-
id: stringType().default("
|
|
49899
|
+
id: stringType().default("01JVY60BJW3XHZ3YEQJWM2944T"),
|
|
49900
49900
|
displayName: stringType(),
|
|
49901
49901
|
description: stringType().optional(),
|
|
49902
49902
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -51146,7 +51146,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51146
51146
|
created_by_id: stringType().optional(),
|
|
51147
51147
|
updated_by_id: stringType().optional(),
|
|
51148
51148
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51149
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
51149
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
51150
51150
|
}).transform((v2) => {
|
|
51151
51151
|
return remap(v2, {
|
|
51152
51152
|
_id: "id",
|
|
@@ -51167,7 +51167,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51167
51167
|
createdById: stringType().optional(),
|
|
51168
51168
|
updatedById: stringType().optional(),
|
|
51169
51169
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51170
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
51170
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
51171
51171
|
}).transform((v2) => {
|
|
51172
51172
|
return remap(v2, {
|
|
51173
51173
|
id: "_id",
|
|
@@ -51268,7 +51268,7 @@ var init_updatedataset = __esm(() => {
|
|
|
51268
51268
|
parent_id: stringType().optional(),
|
|
51269
51269
|
version: stringType().optional(),
|
|
51270
51270
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51271
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
51271
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-23T09:01:17.257Z").transform((v2) => new Date(v2))
|
|
51272
51272
|
}).transform((v2) => {
|
|
51273
51273
|
return remap(v2, {
|
|
51274
51274
|
_id: "id",
|
|
@@ -51291,7 +51291,7 @@ var init_updatedataset = __esm(() => {
|
|
|
51291
51291
|
parentId: stringType().optional(),
|
|
51292
51292
|
version: stringType().optional(),
|
|
51293
51293
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51294
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
51294
|
+
updated: dateType().default(() => new Date("2025-05-23T09:01:17.257Z")).transform((v2) => v2.toISOString())
|
|
51295
51295
|
}).transform((v2) => {
|
|
51296
51296
|
return remap(v2, {
|
|
51297
51297
|
id: "_id",
|
|
@@ -51372,7 +51372,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
51372
51372
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
51373
51373
|
})(UpdateDatasourceStatus$ ||= {});
|
|
51374
51374
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
51375
|
-
_id: stringType().default("
|
|
51375
|
+
_id: stringType().default("01JVY60BK4XGC61KDYCDGENQEB"),
|
|
51376
51376
|
display_name: stringType(),
|
|
51377
51377
|
description: stringType().optional(),
|
|
51378
51378
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -51395,7 +51395,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
51395
51395
|
});
|
|
51396
51396
|
});
|
|
51397
51397
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
51398
|
-
id: stringType().default("
|
|
51398
|
+
id: stringType().default("01JVY60BK4XGC61KDYCDGENQEB"),
|
|
51399
51399
|
displayName: stringType(),
|
|
51400
51400
|
description: stringType().optional(),
|
|
51401
51401
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59968,7 +59968,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
59968
59968
|
function createMCPServer(deps) {
|
|
59969
59969
|
const server = new McpServer({
|
|
59970
59970
|
name: "Orq",
|
|
59971
|
-
version: "3.6.0-rc.
|
|
59971
|
+
version: "3.6.0-rc.30"
|
|
59972
59972
|
});
|
|
59973
59973
|
const client = new OrqCore({
|
|
59974
59974
|
apiKey: deps.apiKey,
|
|
@@ -61304,7 +61304,7 @@ var routes = rn({
|
|
|
61304
61304
|
var app = Ve(routes, {
|
|
61305
61305
|
name: "mcp",
|
|
61306
61306
|
versionInfo: {
|
|
61307
|
-
currentVersion: "3.6.0-rc.
|
|
61307
|
+
currentVersion: "3.6.0-rc.30"
|
|
61308
61308
|
}
|
|
61309
61309
|
});
|
|
61310
61310
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -61312,5 +61312,5 @@ export {
|
|
|
61312
61312
|
app
|
|
61313
61313
|
};
|
|
61314
61314
|
|
|
61315
|
-
//# debugId=
|
|
61315
|
+
//# debugId=E59F54EBBEDEC7E064756E2164756E21
|
|
61316
61316
|
//# sourceMappingURL=mcp-server.js.map
|