@orq-ai/node 3.4.0-rc.26 → 3.4.0-rc.27
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 +65 -65
- package/bin/mcp-server.js.map +27 -27
- package/funcs/sessionsCreate.js +2 -2
- package/funcs/sessionsCreate.js.map +1 -1
- 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/createtool.js +6 -6
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +6 -6
- 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/retrievetool.js +6 -6
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updatetool.js +6 -6
- package/package.json +1 -1
- package/src/funcs/sessionsCreate.ts +2 -2
- 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/createtool.ts +6 -6
- 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/getalltools.ts +6 -6
- 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/retrievetool.ts +6 -6
- 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/src/models/operations/updatetool.ts +6 -6
package/bin/mcp-server.js
CHANGED
|
@@ -34225,9 +34225,9 @@ var init_config = __esm(() => {
|
|
|
34225
34225
|
SDK_METADATA = {
|
|
34226
34226
|
language: "typescript",
|
|
34227
34227
|
openapiDocVersion: "2.0",
|
|
34228
|
-
sdkVersion: "3.4.0-rc.
|
|
34228
|
+
sdkVersion: "3.4.0-rc.27",
|
|
34229
34229
|
genVersion: "2.578.0",
|
|
34230
|
-
userAgent: "speakeasy-sdk/typescript 3.4.0-rc.
|
|
34230
|
+
userAgent: "speakeasy-sdk/typescript 3.4.0-rc.27 2.578.0 2.0 @orq-ai/node"
|
|
34231
34231
|
};
|
|
34232
34232
|
});
|
|
34233
34233
|
|
|
@@ -36279,7 +36279,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36279
36279
|
created_by_id: stringType().optional(),
|
|
36280
36280
|
updated_by_id: stringType().optional(),
|
|
36281
36281
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36282
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36282
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
36283
36283
|
}).transform((v2) => {
|
|
36284
36284
|
return remap(v2, {
|
|
36285
36285
|
_id: "id",
|
|
@@ -36300,7 +36300,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36300
36300
|
createdById: stringType().optional(),
|
|
36301
36301
|
updatedById: stringType().optional(),
|
|
36302
36302
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36303
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36303
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
36304
36304
|
}).transform((v2) => {
|
|
36305
36305
|
return remap(v2, {
|
|
36306
36306
|
id: "_id",
|
|
@@ -36514,7 +36514,7 @@ var init_createcontact = __esm(() => {
|
|
|
36514
36514
|
tags: arrayType(stringType()).optional(),
|
|
36515
36515
|
metadata: recordType(anyType()).optional(),
|
|
36516
36516
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36517
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36517
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
36518
36518
|
}).transform((v2) => {
|
|
36519
36519
|
return remap(v2, {
|
|
36520
36520
|
external_id: "externalId",
|
|
@@ -36531,7 +36531,7 @@ var init_createcontact = __esm(() => {
|
|
|
36531
36531
|
tags: arrayType(stringType()).optional(),
|
|
36532
36532
|
metadata: recordType(anyType()).optional(),
|
|
36533
36533
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36534
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36534
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
36535
36535
|
}).transform((v2) => {
|
|
36536
36536
|
return remap(v2, {
|
|
36537
36537
|
externalId: "external_id",
|
|
@@ -36601,7 +36601,7 @@ var init_createdataset = __esm(() => {
|
|
|
36601
36601
|
updated_by_id: stringType().optional(),
|
|
36602
36602
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36603
36603
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36604
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36604
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
36605
36605
|
}).transform((v2) => {
|
|
36606
36606
|
return remap(v2, {
|
|
36607
36607
|
_id: "id",
|
|
@@ -36621,7 +36621,7 @@ var init_createdataset = __esm(() => {
|
|
|
36621
36621
|
updatedById: stringType().optional(),
|
|
36622
36622
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36623
36623
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36624
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36624
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
36625
36625
|
}).transform((v2) => {
|
|
36626
36626
|
return remap(v2, {
|
|
36627
36627
|
id: "_id",
|
|
@@ -37057,7 +37057,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37057
37057
|
created_by_id: stringType().optional(),
|
|
37058
37058
|
updated_by_id: stringType().optional(),
|
|
37059
37059
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37060
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
37060
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
37061
37061
|
}).transform((v2) => {
|
|
37062
37062
|
return remap(v2, {
|
|
37063
37063
|
_id: "id",
|
|
@@ -37078,7 +37078,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37078
37078
|
createdById: stringType().optional(),
|
|
37079
37079
|
updatedById: stringType().optional(),
|
|
37080
37080
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37081
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
37081
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
37082
37082
|
}).transform((v2) => {
|
|
37083
37083
|
return remap(v2, {
|
|
37084
37084
|
id: "_id",
|
|
@@ -37300,7 +37300,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37300
37300
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37301
37301
|
})(CreateDatasourceStatus$ ||= {});
|
|
37302
37302
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37303
|
-
_id: stringType().default("
|
|
37303
|
+
_id: stringType().default("01JRYR4D69FN11PKRA6B357DPV"),
|
|
37304
37304
|
display_name: stringType(),
|
|
37305
37305
|
description: stringType().optional(),
|
|
37306
37306
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37323,7 +37323,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37323
37323
|
});
|
|
37324
37324
|
});
|
|
37325
37325
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37326
|
-
id: stringType().default("
|
|
37326
|
+
id: stringType().default("01JRYR4D69FN11PKRA6B357DPV"),
|
|
37327
37327
|
displayName: stringType(),
|
|
37328
37328
|
description: stringType().optional(),
|
|
37329
37329
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -40111,7 +40111,7 @@ var init_createtool = __esm(() => {
|
|
|
40111
40111
|
ResponseBodyHttp$.outboundSchema = ResponseBodyHttp$outboundSchema;
|
|
40112
40112
|
})(ResponseBodyHttp$ ||= {});
|
|
40113
40113
|
ResponseBody3$inboundSchema = objectType({
|
|
40114
|
-
_id: stringType().default("
|
|
40114
|
+
_id: stringType().default("tool_01JRYR4D3F7QJB1B63XFQXZVD8"),
|
|
40115
40115
|
path: stringType(),
|
|
40116
40116
|
key: stringType(),
|
|
40117
40117
|
description: stringType(),
|
|
@@ -40136,7 +40136,7 @@ var init_createtool = __esm(() => {
|
|
|
40136
40136
|
});
|
|
40137
40137
|
});
|
|
40138
40138
|
ResponseBody3$outboundSchema = objectType({
|
|
40139
|
-
id: stringType().default("
|
|
40139
|
+
id: stringType().default("tool_01JRYR4D3F7QJB1B63XFQXZVD8"),
|
|
40140
40140
|
path: stringType(),
|
|
40141
40141
|
key: stringType(),
|
|
40142
40142
|
description: stringType(),
|
|
@@ -40193,7 +40193,7 @@ var init_createtool = __esm(() => {
|
|
|
40193
40193
|
ResponseBodyJsonSchema$.outboundSchema = ResponseBodyJsonSchema$outboundSchema;
|
|
40194
40194
|
})(ResponseBodyJsonSchema$ ||= {});
|
|
40195
40195
|
ResponseBody2$inboundSchema = objectType({
|
|
40196
|
-
_id: stringType().default("
|
|
40196
|
+
_id: stringType().default("tool_01JRYR4D3B10NS5ZGX97FAW369"),
|
|
40197
40197
|
path: stringType(),
|
|
40198
40198
|
key: stringType(),
|
|
40199
40199
|
description: stringType(),
|
|
@@ -40219,7 +40219,7 @@ var init_createtool = __esm(() => {
|
|
|
40219
40219
|
});
|
|
40220
40220
|
});
|
|
40221
40221
|
ResponseBody2$outboundSchema = objectType({
|
|
40222
|
-
id: stringType().default("
|
|
40222
|
+
id: stringType().default("tool_01JRYR4D3B10NS5ZGX97FAW369"),
|
|
40223
40223
|
path: stringType(),
|
|
40224
40224
|
key: stringType(),
|
|
40225
40225
|
description: stringType(),
|
|
@@ -40277,7 +40277,7 @@ var init_createtool = __esm(() => {
|
|
|
40277
40277
|
ResponseBodyFunction$.outboundSchema = ResponseBodyFunction$outboundSchema;
|
|
40278
40278
|
})(ResponseBodyFunction$ ||= {});
|
|
40279
40279
|
ResponseBody1$inboundSchema = objectType({
|
|
40280
|
-
_id: stringType().default("
|
|
40280
|
+
_id: stringType().default("tool_01JRYR4D3AJJ3DFGBG62VR87KA"),
|
|
40281
40281
|
path: stringType(),
|
|
40282
40282
|
key: stringType(),
|
|
40283
40283
|
description: stringType(),
|
|
@@ -40302,7 +40302,7 @@ var init_createtool = __esm(() => {
|
|
|
40302
40302
|
});
|
|
40303
40303
|
});
|
|
40304
40304
|
ResponseBody1$outboundSchema = objectType({
|
|
40305
|
-
id: stringType().default("
|
|
40305
|
+
id: stringType().default("tool_01JRYR4D3AJJ3DFGBG62VR87KA"),
|
|
40306
40306
|
path: stringType(),
|
|
40307
40307
|
key: stringType(),
|
|
40308
40308
|
description: stringType(),
|
|
@@ -45648,7 +45648,7 @@ var init_fileget = __esm(() => {
|
|
|
45648
45648
|
bytes: numberType(),
|
|
45649
45649
|
file_name: stringType(),
|
|
45650
45650
|
workspace_id: stringType(),
|
|
45651
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
45651
|
+
created: stringType().datetime({ offset: true }).default("2025-04-16T07:31:01.611Z").transform((v2) => new Date(v2))
|
|
45652
45652
|
}).transform((v2) => {
|
|
45653
45653
|
return remap(v2, {
|
|
45654
45654
|
_id: "id",
|
|
@@ -45664,7 +45664,7 @@ var init_fileget = __esm(() => {
|
|
|
45664
45664
|
bytes: numberType(),
|
|
45665
45665
|
fileName: stringType(),
|
|
45666
45666
|
workspaceId: stringType(),
|
|
45667
|
-
created: dateType().default(() => new Date("2025-04-
|
|
45667
|
+
created: dateType().default(() => new Date("2025-04-16T07:31:01.611Z")).transform((v2) => v2.toISOString())
|
|
45668
45668
|
}).transform((v2) => {
|
|
45669
45669
|
return remap(v2, {
|
|
45670
45670
|
id: "_id",
|
|
@@ -45735,7 +45735,7 @@ var init_filelist = __esm(() => {
|
|
|
45735
45735
|
bytes: numberType(),
|
|
45736
45736
|
file_name: stringType(),
|
|
45737
45737
|
workspace_id: stringType(),
|
|
45738
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
45738
|
+
created: stringType().datetime({ offset: true }).default("2025-04-16T07:31:01.611Z").transform((v2) => new Date(v2))
|
|
45739
45739
|
}).transform((v2) => {
|
|
45740
45740
|
return remap(v2, {
|
|
45741
45741
|
_id: "id",
|
|
@@ -45751,7 +45751,7 @@ var init_filelist = __esm(() => {
|
|
|
45751
45751
|
bytes: numberType(),
|
|
45752
45752
|
fileName: stringType(),
|
|
45753
45753
|
workspaceId: stringType(),
|
|
45754
|
-
created: dateType().default(() => new Date("2025-04-
|
|
45754
|
+
created: dateType().default(() => new Date("2025-04-16T07:31:01.611Z")).transform((v2) => v2.toISOString())
|
|
45755
45755
|
}).transform((v2) => {
|
|
45756
45756
|
return remap(v2, {
|
|
45757
45757
|
id: "_id",
|
|
@@ -45883,7 +45883,7 @@ var init_fileupload = __esm(() => {
|
|
|
45883
45883
|
bytes: numberType(),
|
|
45884
45884
|
file_name: stringType(),
|
|
45885
45885
|
workspace_id: stringType(),
|
|
45886
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
45886
|
+
created: stringType().datetime({ offset: true }).default("2025-04-16T07:31:01.611Z").transform((v2) => new Date(v2))
|
|
45887
45887
|
}).transform((v2) => {
|
|
45888
45888
|
return remap(v2, {
|
|
45889
45889
|
_id: "id",
|
|
@@ -45899,7 +45899,7 @@ var init_fileupload = __esm(() => {
|
|
|
45899
45899
|
bytes: numberType(),
|
|
45900
45900
|
fileName: stringType(),
|
|
45901
45901
|
workspaceId: stringType(),
|
|
45902
|
-
created: dateType().default(() => new Date("2025-04-
|
|
45902
|
+
created: dateType().default(() => new Date("2025-04-16T07:31:01.611Z")).transform((v2) => v2.toISOString())
|
|
45903
45903
|
}).transform((v2) => {
|
|
45904
45904
|
return remap(v2, {
|
|
45905
45905
|
id: "_id",
|
|
@@ -47275,7 +47275,7 @@ var init_getalltools = __esm(() => {
|
|
|
47275
47275
|
DataHttp$.outboundSchema = DataHttp$outboundSchema;
|
|
47276
47276
|
})(DataHttp$ ||= {});
|
|
47277
47277
|
Data3$inboundSchema = objectType({
|
|
47278
|
-
_id: stringType().default("
|
|
47278
|
+
_id: stringType().default("tool_01JRYR4D33E78CV4SBT3GA1XNC"),
|
|
47279
47279
|
path: stringType(),
|
|
47280
47280
|
key: stringType(),
|
|
47281
47281
|
description: stringType(),
|
|
@@ -47300,7 +47300,7 @@ var init_getalltools = __esm(() => {
|
|
|
47300
47300
|
});
|
|
47301
47301
|
});
|
|
47302
47302
|
Data3$outboundSchema = objectType({
|
|
47303
|
-
id: stringType().default("
|
|
47303
|
+
id: stringType().default("tool_01JRYR4D33E78CV4SBT3GA1XNC"),
|
|
47304
47304
|
path: stringType(),
|
|
47305
47305
|
key: stringType(),
|
|
47306
47306
|
description: stringType(),
|
|
@@ -47357,7 +47357,7 @@ var init_getalltools = __esm(() => {
|
|
|
47357
47357
|
DataJsonSchema$.outboundSchema = DataJsonSchema$outboundSchema;
|
|
47358
47358
|
})(DataJsonSchema$ ||= {});
|
|
47359
47359
|
Data2$inboundSchema = objectType({
|
|
47360
|
-
_id: stringType().default("
|
|
47360
|
+
_id: stringType().default("tool_01JRYR4D2WE3KXFNSC2BE5M3GA"),
|
|
47361
47361
|
path: stringType(),
|
|
47362
47362
|
key: stringType(),
|
|
47363
47363
|
description: stringType(),
|
|
@@ -47383,7 +47383,7 @@ var init_getalltools = __esm(() => {
|
|
|
47383
47383
|
});
|
|
47384
47384
|
});
|
|
47385
47385
|
Data2$outboundSchema = objectType({
|
|
47386
|
-
id: stringType().default("
|
|
47386
|
+
id: stringType().default("tool_01JRYR4D2WE3KXFNSC2BE5M3GA"),
|
|
47387
47387
|
path: stringType(),
|
|
47388
47388
|
key: stringType(),
|
|
47389
47389
|
description: stringType(),
|
|
@@ -47441,7 +47441,7 @@ var init_getalltools = __esm(() => {
|
|
|
47441
47441
|
DataFunction$.outboundSchema = DataFunction$outboundSchema;
|
|
47442
47442
|
})(DataFunction$ ||= {});
|
|
47443
47443
|
Data1$inboundSchema = objectType({
|
|
47444
|
-
_id: stringType().default("
|
|
47444
|
+
_id: stringType().default("tool_01JRYR4D2VYRZHKCM58TSAP50R"),
|
|
47445
47445
|
path: stringType(),
|
|
47446
47446
|
key: stringType(),
|
|
47447
47447
|
description: stringType(),
|
|
@@ -47466,7 +47466,7 @@ var init_getalltools = __esm(() => {
|
|
|
47466
47466
|
});
|
|
47467
47467
|
});
|
|
47468
47468
|
Data1$outboundSchema = objectType({
|
|
47469
|
-
id: stringType().default("
|
|
47469
|
+
id: stringType().default("tool_01JRYR4D2VYRZHKCM58TSAP50R"),
|
|
47470
47470
|
path: stringType(),
|
|
47471
47471
|
key: stringType(),
|
|
47472
47472
|
description: stringType(),
|
|
@@ -49422,7 +49422,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
49422
49422
|
created_by_id: stringType().optional(),
|
|
49423
49423
|
updated_by_id: stringType().optional(),
|
|
49424
49424
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49425
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
49425
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
49426
49426
|
}).transform((v2) => {
|
|
49427
49427
|
return remap(v2, {
|
|
49428
49428
|
_id: "id",
|
|
@@ -49443,7 +49443,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
49443
49443
|
createdById: stringType().optional(),
|
|
49444
49444
|
updatedById: stringType().optional(),
|
|
49445
49445
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49446
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
49446
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
49447
49447
|
}).transform((v2) => {
|
|
49448
49448
|
return remap(v2, {
|
|
49449
49449
|
id: "_id",
|
|
@@ -49551,7 +49551,7 @@ var init_listdatasets = __esm(() => {
|
|
|
49551
49551
|
updated_by_id: stringType().optional(),
|
|
49552
49552
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
49553
49553
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49554
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
49554
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
49555
49555
|
}).transform((v2) => {
|
|
49556
49556
|
return remap(v2, {
|
|
49557
49557
|
_id: "id",
|
|
@@ -49571,7 +49571,7 @@ var init_listdatasets = __esm(() => {
|
|
|
49571
49571
|
updatedById: stringType().optional(),
|
|
49572
49572
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
49573
49573
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49574
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
49574
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
49575
49575
|
}).transform((v2) => {
|
|
49576
49576
|
return remap(v2, {
|
|
49577
49577
|
id: "_id",
|
|
@@ -49676,7 +49676,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49676
49676
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
49677
49677
|
})(ListDatasourcesStatus$ ||= {});
|
|
49678
49678
|
ListDatasourcesData$inboundSchema = objectType({
|
|
49679
|
-
_id: stringType().default("
|
|
49679
|
+
_id: stringType().default("01JRYR4D687XKWPYKQW7R0Z8HA"),
|
|
49680
49680
|
display_name: stringType(),
|
|
49681
49681
|
description: stringType().optional(),
|
|
49682
49682
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -49699,7 +49699,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49699
49699
|
});
|
|
49700
49700
|
});
|
|
49701
49701
|
ListDatasourcesData$outboundSchema = objectType({
|
|
49702
|
-
id: stringType().default("
|
|
49702
|
+
id: stringType().default("01JRYR4D687XKWPYKQW7R0Z8HA"),
|
|
49703
49703
|
displayName: stringType(),
|
|
49704
49704
|
description: stringType().optional(),
|
|
49705
49705
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -55089,7 +55089,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
55089
55089
|
created_by_id: stringType().optional(),
|
|
55090
55090
|
updated_by_id: stringType().optional(),
|
|
55091
55091
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55092
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
55092
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
55093
55093
|
}).transform((v2) => {
|
|
55094
55094
|
return remap(v2, {
|
|
55095
55095
|
_id: "id",
|
|
@@ -55110,7 +55110,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
55110
55110
|
createdById: stringType().optional(),
|
|
55111
55111
|
updatedById: stringType().optional(),
|
|
55112
55112
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55113
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
55113
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
55114
55114
|
}).transform((v2) => {
|
|
55115
55115
|
return remap(v2, {
|
|
55116
55116
|
id: "_id",
|
|
@@ -55181,7 +55181,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
55181
55181
|
updated_by_id: stringType().optional(),
|
|
55182
55182
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
55183
55183
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55184
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
55184
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
55185
55185
|
}).transform((v2) => {
|
|
55186
55186
|
return remap(v2, {
|
|
55187
55187
|
_id: "id",
|
|
@@ -55201,7 +55201,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
55201
55201
|
updatedById: stringType().optional(),
|
|
55202
55202
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
55203
55203
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55204
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
55204
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
55205
55205
|
}).transform((v2) => {
|
|
55206
55206
|
return remap(v2, {
|
|
55207
55207
|
id: "_id",
|
|
@@ -55259,7 +55259,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
55259
55259
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
55260
55260
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
55261
55261
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
55262
|
-
_id: stringType().default("
|
|
55262
|
+
_id: stringType().default("01JRYR4D68GR1E9JMJ0QGV3Y0Y"),
|
|
55263
55263
|
display_name: stringType(),
|
|
55264
55264
|
description: stringType().optional(),
|
|
55265
55265
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -55282,7 +55282,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
55282
55282
|
});
|
|
55283
55283
|
});
|
|
55284
55284
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
55285
|
-
id: stringType().default("
|
|
55285
|
+
id: stringType().default("01JRYR4D68GR1E9JMJ0QGV3Y0Y"),
|
|
55286
55286
|
displayName: stringType(),
|
|
55287
55287
|
description: stringType().optional(),
|
|
55288
55288
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -55914,7 +55914,7 @@ var init_retrievetool = __esm(() => {
|
|
|
55914
55914
|
RetrieveToolResponseBodyHttp$.outboundSchema = RetrieveToolResponseBodyHttp$outboundSchema;
|
|
55915
55915
|
})(RetrieveToolResponseBodyHttp$ ||= {});
|
|
55916
55916
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
55917
|
-
_id: stringType().default("
|
|
55917
|
+
_id: stringType().default("tool_01JRYR4D42PTFJZ8QPCJDAN4A9"),
|
|
55918
55918
|
path: stringType(),
|
|
55919
55919
|
key: stringType(),
|
|
55920
55920
|
description: stringType(),
|
|
@@ -55939,7 +55939,7 @@ var init_retrievetool = __esm(() => {
|
|
|
55939
55939
|
});
|
|
55940
55940
|
});
|
|
55941
55941
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
55942
|
-
id: stringType().default("
|
|
55942
|
+
id: stringType().default("tool_01JRYR4D42PTFJZ8QPCJDAN4A9"),
|
|
55943
55943
|
path: stringType(),
|
|
55944
55944
|
key: stringType(),
|
|
55945
55945
|
description: stringType(),
|
|
@@ -55996,7 +55996,7 @@ var init_retrievetool = __esm(() => {
|
|
|
55996
55996
|
RetrieveToolResponseBodyJsonSchema$.outboundSchema = RetrieveToolResponseBodyJsonSchema$outboundSchema;
|
|
55997
55997
|
})(RetrieveToolResponseBodyJsonSchema$ ||= {});
|
|
55998
55998
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
55999
|
-
_id: stringType().default("
|
|
55999
|
+
_id: stringType().default("tool_01JRYR4D408R1PC40BD4C29ASF"),
|
|
56000
56000
|
path: stringType(),
|
|
56001
56001
|
key: stringType(),
|
|
56002
56002
|
description: stringType(),
|
|
@@ -56022,7 +56022,7 @@ var init_retrievetool = __esm(() => {
|
|
|
56022
56022
|
});
|
|
56023
56023
|
});
|
|
56024
56024
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
56025
|
-
id: stringType().default("
|
|
56025
|
+
id: stringType().default("tool_01JRYR4D408R1PC40BD4C29ASF"),
|
|
56026
56026
|
path: stringType(),
|
|
56027
56027
|
key: stringType(),
|
|
56028
56028
|
description: stringType(),
|
|
@@ -56080,7 +56080,7 @@ var init_retrievetool = __esm(() => {
|
|
|
56080
56080
|
RetrieveToolResponseBodyFunction$.outboundSchema = RetrieveToolResponseBodyFunction$outboundSchema;
|
|
56081
56081
|
})(RetrieveToolResponseBodyFunction$ ||= {});
|
|
56082
56082
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
56083
|
-
_id: stringType().default("
|
|
56083
|
+
_id: stringType().default("tool_01JRYR4D3ZETQ56C3PES8YDVA8"),
|
|
56084
56084
|
path: stringType(),
|
|
56085
56085
|
key: stringType(),
|
|
56086
56086
|
description: stringType(),
|
|
@@ -56105,7 +56105,7 @@ var init_retrievetool = __esm(() => {
|
|
|
56105
56105
|
});
|
|
56106
56106
|
});
|
|
56107
56107
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
56108
|
-
id: stringType().default("
|
|
56108
|
+
id: stringType().default("tool_01JRYR4D3ZETQ56C3PES8YDVA8"),
|
|
56109
56109
|
path: stringType(),
|
|
56110
56110
|
key: stringType(),
|
|
56111
56111
|
description: stringType(),
|
|
@@ -56692,7 +56692,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
56692
56692
|
created_by_id: stringType().optional(),
|
|
56693
56693
|
updated_by_id: stringType().optional(),
|
|
56694
56694
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56695
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
56695
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
56696
56696
|
}).transform((v2) => {
|
|
56697
56697
|
return remap(v2, {
|
|
56698
56698
|
_id: "id",
|
|
@@ -56713,7 +56713,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
56713
56713
|
createdById: stringType().optional(),
|
|
56714
56714
|
updatedById: stringType().optional(),
|
|
56715
56715
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56716
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
56716
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
56717
56717
|
}).transform((v2) => {
|
|
56718
56718
|
return remap(v2, {
|
|
56719
56719
|
id: "_id",
|
|
@@ -56814,7 +56814,7 @@ var init_updatedataset = __esm(() => {
|
|
|
56814
56814
|
parent_id: stringType().optional(),
|
|
56815
56815
|
version: stringType().optional(),
|
|
56816
56816
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56817
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
56817
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-16T07:30:59.029Z").transform((v2) => new Date(v2))
|
|
56818
56818
|
}).transform((v2) => {
|
|
56819
56819
|
return remap(v2, {
|
|
56820
56820
|
_id: "id",
|
|
@@ -56837,7 +56837,7 @@ var init_updatedataset = __esm(() => {
|
|
|
56837
56837
|
parentId: stringType().optional(),
|
|
56838
56838
|
version: stringType().optional(),
|
|
56839
56839
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56840
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
56840
|
+
updated: dateType().default(() => new Date("2025-04-16T07:30:59.029Z")).transform((v2) => v2.toISOString())
|
|
56841
56841
|
}).transform((v2) => {
|
|
56842
56842
|
return remap(v2, {
|
|
56843
56843
|
id: "_id",
|
|
@@ -56918,7 +56918,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
56918
56918
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
56919
56919
|
})(UpdateDatasourceStatus$ ||= {});
|
|
56920
56920
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
56921
|
-
_id: stringType().default("
|
|
56921
|
+
_id: stringType().default("01JRYR4D6AW6H7Y9YH91P6F3JJ"),
|
|
56922
56922
|
display_name: stringType(),
|
|
56923
56923
|
description: stringType().optional(),
|
|
56924
56924
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -56941,7 +56941,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
56941
56941
|
});
|
|
56942
56942
|
});
|
|
56943
56943
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
56944
|
-
id: stringType().default("
|
|
56944
|
+
id: stringType().default("01JRYR4D6AW6H7Y9YH91P6F3JJ"),
|
|
56945
56945
|
displayName: stringType(),
|
|
56946
56946
|
description: stringType().optional(),
|
|
56947
56947
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59619,7 +59619,7 @@ var init_updatetool = __esm(() => {
|
|
|
59619
59619
|
UpdateToolResponseBodyHttp$.outboundSchema = UpdateToolResponseBodyHttp$outboundSchema;
|
|
59620
59620
|
})(UpdateToolResponseBodyHttp$ ||= {});
|
|
59621
59621
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
59622
|
-
_id: stringType().default("
|
|
59622
|
+
_id: stringType().default("tool_01JRYR4D3QJ1ESF5C2Q0C3YPJ5"),
|
|
59623
59623
|
path: stringType(),
|
|
59624
59624
|
key: stringType(),
|
|
59625
59625
|
description: stringType(),
|
|
@@ -59644,7 +59644,7 @@ var init_updatetool = __esm(() => {
|
|
|
59644
59644
|
});
|
|
59645
59645
|
});
|
|
59646
59646
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
59647
|
-
id: stringType().default("
|
|
59647
|
+
id: stringType().default("tool_01JRYR4D3QJ1ESF5C2Q0C3YPJ5"),
|
|
59648
59648
|
path: stringType(),
|
|
59649
59649
|
key: stringType(),
|
|
59650
59650
|
description: stringType(),
|
|
@@ -59701,7 +59701,7 @@ var init_updatetool = __esm(() => {
|
|
|
59701
59701
|
UpdateToolResponseBodyJsonSchema$.outboundSchema = UpdateToolResponseBodyJsonSchema$outboundSchema;
|
|
59702
59702
|
})(UpdateToolResponseBodyJsonSchema$ ||= {});
|
|
59703
59703
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
59704
|
-
_id: stringType().default("
|
|
59704
|
+
_id: stringType().default("tool_01JRYR4D3QH2VJJK7DFZGMVA7B"),
|
|
59705
59705
|
path: stringType(),
|
|
59706
59706
|
key: stringType(),
|
|
59707
59707
|
description: stringType(),
|
|
@@ -59727,7 +59727,7 @@ var init_updatetool = __esm(() => {
|
|
|
59727
59727
|
});
|
|
59728
59728
|
});
|
|
59729
59729
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
59730
|
-
id: stringType().default("
|
|
59730
|
+
id: stringType().default("tool_01JRYR4D3QH2VJJK7DFZGMVA7B"),
|
|
59731
59731
|
path: stringType(),
|
|
59732
59732
|
key: stringType(),
|
|
59733
59733
|
description: stringType(),
|
|
@@ -59785,7 +59785,7 @@ var init_updatetool = __esm(() => {
|
|
|
59785
59785
|
UpdateToolResponseBodyFunction$.outboundSchema = UpdateToolResponseBodyFunction$outboundSchema;
|
|
59786
59786
|
})(UpdateToolResponseBodyFunction$ ||= {});
|
|
59787
59787
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
59788
|
-
_id: stringType().default("
|
|
59788
|
+
_id: stringType().default("tool_01JRYR4D3M66TAE9749TPBG61A"),
|
|
59789
59789
|
path: stringType(),
|
|
59790
59790
|
key: stringType(),
|
|
59791
59791
|
description: stringType(),
|
|
@@ -59810,7 +59810,7 @@ var init_updatetool = __esm(() => {
|
|
|
59810
59810
|
});
|
|
59811
59811
|
});
|
|
59812
59812
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
59813
|
-
id: stringType().default("
|
|
59813
|
+
id: stringType().default("tool_01JRYR4D3M66TAE9749TPBG61A"),
|
|
59814
59814
|
path: stringType(),
|
|
59815
59815
|
key: stringType(),
|
|
59816
59816
|
description: stringType(),
|
|
@@ -67678,7 +67678,7 @@ async function $do63(client, request, options) {
|
|
|
67678
67678
|
const req = requestRes.value;
|
|
67679
67679
|
const doResult = await client._do(req, {
|
|
67680
67680
|
context,
|
|
67681
|
-
errorCodes: ["4XX", "5XX"],
|
|
67681
|
+
errorCodes: ["409", "4XX", "5XX"],
|
|
67682
67682
|
retryConfig: context.retryConfig,
|
|
67683
67683
|
retryCodes: context.retryCodes
|
|
67684
67684
|
});
|
|
@@ -67686,7 +67686,7 @@ async function $do63(client, request, options) {
|
|
|
67686
67686
|
return [doResult, { status: "request-error", request: req }];
|
|
67687
67687
|
}
|
|
67688
67688
|
const response = doResult.value;
|
|
67689
|
-
const [result] = await match(json(200, CreateSessionResponseBody$inboundSchema), fail("4XX"), fail("5XX"))(response);
|
|
67689
|
+
const [result] = await match(json(200, CreateSessionResponseBody$inboundSchema), fail([409, "4XX"]), fail("5XX"))(response);
|
|
67690
67690
|
if (!result.ok) {
|
|
67691
67691
|
return [result, { status: "complete", request: req, response }];
|
|
67692
67692
|
}
|
|
@@ -68662,7 +68662,7 @@ Updates a tool in the workspace.`,
|
|
|
68662
68662
|
function createMCPServer(deps) {
|
|
68663
68663
|
const server = new McpServer({
|
|
68664
68664
|
name: "Orq",
|
|
68665
|
-
version: "3.4.0-rc.
|
|
68665
|
+
version: "3.4.0-rc.27"
|
|
68666
68666
|
});
|
|
68667
68667
|
const client = new OrqCore({
|
|
68668
68668
|
apiKey: deps.apiKey,
|
|
@@ -70042,7 +70042,7 @@ var routes = rn({
|
|
|
70042
70042
|
var app = Ve(routes, {
|
|
70043
70043
|
name: "mcp",
|
|
70044
70044
|
versionInfo: {
|
|
70045
|
-
currentVersion: "3.4.0-rc.
|
|
70045
|
+
currentVersion: "3.4.0-rc.27"
|
|
70046
70046
|
}
|
|
70047
70047
|
});
|
|
70048
70048
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -70050,5 +70050,5 @@ export {
|
|
|
70050
70050
|
app
|
|
70051
70051
|
};
|
|
70052
70052
|
|
|
70053
|
-
//# debugId=
|
|
70053
|
+
//# debugId=9939978211344AD864756E2164756E21
|
|
70054
70054
|
//# sourceMappingURL=mcp-server.js.map
|