@orq-ai/node 3.3.13 → 3.3.14
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
|
@@ -34228,9 +34228,9 @@ var init_config = __esm(() => {
|
|
|
34228
34228
|
SDK_METADATA = {
|
|
34229
34229
|
language: "typescript",
|
|
34230
34230
|
openapiDocVersion: "2.0",
|
|
34231
|
-
sdkVersion: "3.3.
|
|
34231
|
+
sdkVersion: "3.3.14",
|
|
34232
34232
|
genVersion: "2.570.4",
|
|
34233
|
-
userAgent: "speakeasy-sdk/typescript 3.3.
|
|
34233
|
+
userAgent: "speakeasy-sdk/typescript 3.3.14 2.570.4 2.0 @orq-ai/node"
|
|
34234
34234
|
};
|
|
34235
34235
|
});
|
|
34236
34236
|
|
|
@@ -36274,7 +36274,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36274
36274
|
created_by_id: stringType().optional(),
|
|
36275
36275
|
updated_by_id: stringType().optional(),
|
|
36276
36276
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36277
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36277
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
36278
36278
|
}).transform((v2) => {
|
|
36279
36279
|
return remap(v2, {
|
|
36280
36280
|
_id: "id",
|
|
@@ -36295,7 +36295,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36295
36295
|
createdById: stringType().optional(),
|
|
36296
36296
|
updatedById: stringType().optional(),
|
|
36297
36297
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36298
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36298
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
36299
36299
|
}).transform((v2) => {
|
|
36300
36300
|
return remap(v2, {
|
|
36301
36301
|
id: "_id",
|
|
@@ -36499,7 +36499,7 @@ var init_createcontact = __esm(() => {
|
|
|
36499
36499
|
tags: arrayType(stringType()).optional(),
|
|
36500
36500
|
metadata: recordType(anyType()).optional(),
|
|
36501
36501
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36502
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36502
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
36503
36503
|
}).transform((v2) => {
|
|
36504
36504
|
return remap(v2, {
|
|
36505
36505
|
external_id: "externalId",
|
|
@@ -36516,7 +36516,7 @@ var init_createcontact = __esm(() => {
|
|
|
36516
36516
|
tags: arrayType(stringType()).optional(),
|
|
36517
36517
|
metadata: recordType(anyType()).optional(),
|
|
36518
36518
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36519
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36519
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
36520
36520
|
}).transform((v2) => {
|
|
36521
36521
|
return remap(v2, {
|
|
36522
36522
|
externalId: "external_id",
|
|
@@ -36586,7 +36586,7 @@ var init_createdataset = __esm(() => {
|
|
|
36586
36586
|
updated_by_id: stringType().optional(),
|
|
36587
36587
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36588
36588
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36589
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36589
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
36590
36590
|
}).transform((v2) => {
|
|
36591
36591
|
return remap(v2, {
|
|
36592
36592
|
_id: "id",
|
|
@@ -36606,7 +36606,7 @@ var init_createdataset = __esm(() => {
|
|
|
36606
36606
|
updatedById: stringType().optional(),
|
|
36607
36607
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36608
36608
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36609
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36609
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
36610
36610
|
}).transform((v2) => {
|
|
36611
36611
|
return remap(v2, {
|
|
36612
36612
|
id: "_id",
|
|
@@ -37042,7 +37042,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37042
37042
|
created_by_id: stringType().optional(),
|
|
37043
37043
|
updated_by_id: stringType().optional(),
|
|
37044
37044
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37045
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
37045
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
37046
37046
|
}).transform((v2) => {
|
|
37047
37047
|
return remap(v2, {
|
|
37048
37048
|
_id: "id",
|
|
@@ -37063,7 +37063,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37063
37063
|
createdById: stringType().optional(),
|
|
37064
37064
|
updatedById: stringType().optional(),
|
|
37065
37065
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37066
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
37066
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
37067
37067
|
}).transform((v2) => {
|
|
37068
37068
|
return remap(v2, {
|
|
37069
37069
|
id: "_id",
|
|
@@ -37285,7 +37285,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37285
37285
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37286
37286
|
})(CreateDatasourceStatus$ ||= {});
|
|
37287
37287
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37288
|
-
_id: stringType().default("
|
|
37288
|
+
_id: stringType().default("01JRWJET721FE9HZBG81EMSV9A"),
|
|
37289
37289
|
display_name: stringType(),
|
|
37290
37290
|
description: stringType().optional(),
|
|
37291
37291
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37308,7 +37308,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37308
37308
|
});
|
|
37309
37309
|
});
|
|
37310
37310
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37311
|
-
id: stringType().default("
|
|
37311
|
+
id: stringType().default("01JRWJET721FE9HZBG81EMSV9A"),
|
|
37312
37312
|
displayName: stringType(),
|
|
37313
37313
|
description: stringType().optional(),
|
|
37314
37314
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -43835,7 +43835,7 @@ var init_fileget = __esm(() => {
|
|
|
43835
43835
|
bytes: numberType(),
|
|
43836
43836
|
file_name: stringType(),
|
|
43837
43837
|
workspace_id: stringType(),
|
|
43838
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
43838
|
+
created: stringType().datetime({ offset: true }).default("2025-04-15T11:13:21.846Z").transform((v2) => new Date(v2))
|
|
43839
43839
|
}).transform((v2) => {
|
|
43840
43840
|
return remap(v2, {
|
|
43841
43841
|
_id: "id",
|
|
@@ -43851,7 +43851,7 @@ var init_fileget = __esm(() => {
|
|
|
43851
43851
|
bytes: numberType(),
|
|
43852
43852
|
fileName: stringType(),
|
|
43853
43853
|
workspaceId: stringType(),
|
|
43854
|
-
created: dateType().default(() => new Date("2025-04-
|
|
43854
|
+
created: dateType().default(() => new Date("2025-04-15T11:13:21.846Z")).transform((v2) => v2.toISOString())
|
|
43855
43855
|
}).transform((v2) => {
|
|
43856
43856
|
return remap(v2, {
|
|
43857
43857
|
id: "_id",
|
|
@@ -43922,7 +43922,7 @@ var init_filelist = __esm(() => {
|
|
|
43922
43922
|
bytes: numberType(),
|
|
43923
43923
|
file_name: stringType(),
|
|
43924
43924
|
workspace_id: stringType(),
|
|
43925
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
43925
|
+
created: stringType().datetime({ offset: true }).default("2025-04-15T11:13:21.846Z").transform((v2) => new Date(v2))
|
|
43926
43926
|
}).transform((v2) => {
|
|
43927
43927
|
return remap(v2, {
|
|
43928
43928
|
_id: "id",
|
|
@@ -43938,7 +43938,7 @@ var init_filelist = __esm(() => {
|
|
|
43938
43938
|
bytes: numberType(),
|
|
43939
43939
|
fileName: stringType(),
|
|
43940
43940
|
workspaceId: stringType(),
|
|
43941
|
-
created: dateType().default(() => new Date("2025-04-
|
|
43941
|
+
created: dateType().default(() => new Date("2025-04-15T11:13:21.846Z")).transform((v2) => v2.toISOString())
|
|
43942
43942
|
}).transform((v2) => {
|
|
43943
43943
|
return remap(v2, {
|
|
43944
43944
|
id: "_id",
|
|
@@ -44070,7 +44070,7 @@ var init_fileupload = __esm(() => {
|
|
|
44070
44070
|
bytes: numberType(),
|
|
44071
44071
|
file_name: stringType(),
|
|
44072
44072
|
workspace_id: stringType(),
|
|
44073
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
44073
|
+
created: stringType().datetime({ offset: true }).default("2025-04-15T11:13:21.846Z").transform((v2) => new Date(v2))
|
|
44074
44074
|
}).transform((v2) => {
|
|
44075
44075
|
return remap(v2, {
|
|
44076
44076
|
_id: "id",
|
|
@@ -44086,7 +44086,7 @@ var init_fileupload = __esm(() => {
|
|
|
44086
44086
|
bytes: numberType(),
|
|
44087
44087
|
fileName: stringType(),
|
|
44088
44088
|
workspaceId: stringType(),
|
|
44089
|
-
created: dateType().default(() => new Date("2025-04-
|
|
44089
|
+
created: dateType().default(() => new Date("2025-04-15T11:13:21.846Z")).transform((v2) => v2.toISOString())
|
|
44090
44090
|
}).transform((v2) => {
|
|
44091
44091
|
return remap(v2, {
|
|
44092
44092
|
id: "_id",
|
|
@@ -46469,7 +46469,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
46469
46469
|
created_by_id: stringType().optional(),
|
|
46470
46470
|
updated_by_id: stringType().optional(),
|
|
46471
46471
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46472
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
46472
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
46473
46473
|
}).transform((v2) => {
|
|
46474
46474
|
return remap(v2, {
|
|
46475
46475
|
_id: "id",
|
|
@@ -46490,7 +46490,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
46490
46490
|
createdById: stringType().optional(),
|
|
46491
46491
|
updatedById: stringType().optional(),
|
|
46492
46492
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46493
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
46493
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
46494
46494
|
}).transform((v2) => {
|
|
46495
46495
|
return remap(v2, {
|
|
46496
46496
|
id: "_id",
|
|
@@ -46598,7 +46598,7 @@ var init_listdatasets = __esm(() => {
|
|
|
46598
46598
|
updated_by_id: stringType().optional(),
|
|
46599
46599
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
46600
46600
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46601
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
46601
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
46602
46602
|
}).transform((v2) => {
|
|
46603
46603
|
return remap(v2, {
|
|
46604
46604
|
_id: "id",
|
|
@@ -46618,7 +46618,7 @@ var init_listdatasets = __esm(() => {
|
|
|
46618
46618
|
updatedById: stringType().optional(),
|
|
46619
46619
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
46620
46620
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46621
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
46621
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
46622
46622
|
}).transform((v2) => {
|
|
46623
46623
|
return remap(v2, {
|
|
46624
46624
|
id: "_id",
|
|
@@ -46723,7 +46723,7 @@ var init_listdatasources = __esm(() => {
|
|
|
46723
46723
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
46724
46724
|
})(ListDatasourcesStatus$ ||= {});
|
|
46725
46725
|
ListDatasourcesData$inboundSchema = objectType({
|
|
46726
|
-
_id: stringType().default("
|
|
46726
|
+
_id: stringType().default("01JRWJET715E130HFK66WEYTQS"),
|
|
46727
46727
|
display_name: stringType(),
|
|
46728
46728
|
description: stringType().optional(),
|
|
46729
46729
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -46746,7 +46746,7 @@ var init_listdatasources = __esm(() => {
|
|
|
46746
46746
|
});
|
|
46747
46747
|
});
|
|
46748
46748
|
ListDatasourcesData$outboundSchema = objectType({
|
|
46749
|
-
id: stringType().default("
|
|
46749
|
+
id: stringType().default("01JRWJET715E130HFK66WEYTQS"),
|
|
46750
46750
|
displayName: stringType(),
|
|
46751
46751
|
description: stringType().optional(),
|
|
46752
46752
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -47838,7 +47838,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
47838
47838
|
created_by_id: stringType().optional(),
|
|
47839
47839
|
updated_by_id: stringType().optional(),
|
|
47840
47840
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
47841
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
47841
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
47842
47842
|
}).transform((v2) => {
|
|
47843
47843
|
return remap(v2, {
|
|
47844
47844
|
_id: "id",
|
|
@@ -47859,7 +47859,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
47859
47859
|
createdById: stringType().optional(),
|
|
47860
47860
|
updatedById: stringType().optional(),
|
|
47861
47861
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
47862
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
47862
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
47863
47863
|
}).transform((v2) => {
|
|
47864
47864
|
return remap(v2, {
|
|
47865
47865
|
id: "_id",
|
|
@@ -47930,7 +47930,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
47930
47930
|
updated_by_id: stringType().optional(),
|
|
47931
47931
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
47932
47932
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
47933
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
47933
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
47934
47934
|
}).transform((v2) => {
|
|
47935
47935
|
return remap(v2, {
|
|
47936
47936
|
_id: "id",
|
|
@@ -47950,7 +47950,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
47950
47950
|
updatedById: stringType().optional(),
|
|
47951
47951
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
47952
47952
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
47953
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
47953
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
47954
47954
|
}).transform((v2) => {
|
|
47955
47955
|
return remap(v2, {
|
|
47956
47956
|
id: "_id",
|
|
@@ -48008,7 +48008,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48008
48008
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
48009
48009
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
48010
48010
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
48011
|
-
_id: stringType().default("
|
|
48011
|
+
_id: stringType().default("01JRWJET72YFX6YPVPTBH4Z9Q3"),
|
|
48012
48012
|
display_name: stringType(),
|
|
48013
48013
|
description: stringType().optional(),
|
|
48014
48014
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -48031,7 +48031,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48031
48031
|
});
|
|
48032
48032
|
});
|
|
48033
48033
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
48034
|
-
id: stringType().default("
|
|
48034
|
+
id: stringType().default("01JRWJET72YFX6YPVPTBH4Z9Q3"),
|
|
48035
48035
|
displayName: stringType(),
|
|
48036
48036
|
description: stringType().optional(),
|
|
48037
48037
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -49095,7 +49095,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
49095
49095
|
created_by_id: stringType().optional(),
|
|
49096
49096
|
updated_by_id: stringType().optional(),
|
|
49097
49097
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49098
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
49098
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
49099
49099
|
}).transform((v2) => {
|
|
49100
49100
|
return remap(v2, {
|
|
49101
49101
|
_id: "id",
|
|
@@ -49116,7 +49116,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
49116
49116
|
createdById: stringType().optional(),
|
|
49117
49117
|
updatedById: stringType().optional(),
|
|
49118
49118
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49119
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
49119
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
49120
49120
|
}).transform((v2) => {
|
|
49121
49121
|
return remap(v2, {
|
|
49122
49122
|
id: "_id",
|
|
@@ -49217,7 +49217,7 @@ var init_updatedataset = __esm(() => {
|
|
|
49217
49217
|
parent_id: stringType().optional(),
|
|
49218
49218
|
version: stringType().optional(),
|
|
49219
49219
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49220
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
49220
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-15T11:13:20.243Z").transform((v2) => new Date(v2))
|
|
49221
49221
|
}).transform((v2) => {
|
|
49222
49222
|
return remap(v2, {
|
|
49223
49223
|
_id: "id",
|
|
@@ -49240,7 +49240,7 @@ var init_updatedataset = __esm(() => {
|
|
|
49240
49240
|
parentId: stringType().optional(),
|
|
49241
49241
|
version: stringType().optional(),
|
|
49242
49242
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49243
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
49243
|
+
updated: dateType().default(() => new Date("2025-04-15T11:13:20.243Z")).transform((v2) => v2.toISOString())
|
|
49244
49244
|
}).transform((v2) => {
|
|
49245
49245
|
return remap(v2, {
|
|
49246
49246
|
id: "_id",
|
|
@@ -49321,7 +49321,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
49321
49321
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
49322
49322
|
})(UpdateDatasourceStatus$ ||= {});
|
|
49323
49323
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
49324
|
-
_id: stringType().default("
|
|
49324
|
+
_id: stringType().default("01JRWJET73DTHGAE5M664F20B1"),
|
|
49325
49325
|
display_name: stringType(),
|
|
49326
49326
|
description: stringType().optional(),
|
|
49327
49327
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -49344,7 +49344,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
49344
49344
|
});
|
|
49345
49345
|
});
|
|
49346
49346
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
49347
|
-
id: stringType().default("
|
|
49347
|
+
id: stringType().default("01JRWJET73DTHGAE5M664F20B1"),
|
|
49348
49348
|
displayName: stringType(),
|
|
49349
49349
|
description: stringType().optional(),
|
|
49350
49350
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -56914,7 +56914,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
56914
56914
|
function createMCPServer(deps) {
|
|
56915
56915
|
const server = new McpServer({
|
|
56916
56916
|
name: "Orq",
|
|
56917
|
-
version: "3.3.
|
|
56917
|
+
version: "3.3.14"
|
|
56918
56918
|
});
|
|
56919
56919
|
const client = new OrqCore({
|
|
56920
56920
|
apiKey: deps.apiKey,
|
|
@@ -58244,7 +58244,7 @@ var routes = rn({
|
|
|
58244
58244
|
var app = Ve(routes, {
|
|
58245
58245
|
name: "mcp",
|
|
58246
58246
|
versionInfo: {
|
|
58247
|
-
currentVersion: "3.3.
|
|
58247
|
+
currentVersion: "3.3.14"
|
|
58248
58248
|
}
|
|
58249
58249
|
});
|
|
58250
58250
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -58252,5 +58252,5 @@ export {
|
|
|
58252
58252
|
app
|
|
58253
58253
|
};
|
|
58254
58254
|
|
|
58255
|
-
//# debugId=
|
|
58255
|
+
//# debugId=8A64F32086566C6964756E2164756E21
|
|
58256
58256
|
//# sourceMappingURL=mcp-server.js.map
|