@orq-ai/node 3.3.6 → 3.3.8
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 +71 -71
- package/bin/mcp-server.js.map +26 -26
- 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/createchunk.d.ts +4 -4
- package/models/operations/createchunk.d.ts.map +1 -1
- package/models/operations/createchunk.js +4 -4
- package/models/operations/createchunk.js.map +1 -1
- 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.d.ts +4 -4
- package/models/operations/createdatasource.d.ts.map +1 -1
- package/models/operations/createdatasource.js +6 -6
- package/models/operations/createdatasource.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getonechunk.d.ts +4 -4
- package/models/operations/getonechunk.d.ts.map +1 -1
- package/models/operations/getonechunk.js +4 -4
- package/models/operations/getonechunk.js.map +1 -1
- package/models/operations/listchunks.d.ts +4 -4
- package/models/operations/listchunks.d.ts.map +1 -1
- package/models/operations/listchunks.js +4 -4
- package/models/operations/listchunks.js.map +1 -1
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.d.ts +4 -4
- package/models/operations/listdatasources.d.ts.map +1 -1
- package/models/operations/listdatasources.js +6 -6
- package/models/operations/listdatasources.js.map +1 -1
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.d.ts +4 -4
- package/models/operations/retrievedatasource.d.ts.map +1 -1
- package/models/operations/retrievedatasource.js +6 -6
- package/models/operations/retrievedatasource.js.map +1 -1
- package/models/operations/updatechunk.d.ts +4 -4
- package/models/operations/updatechunk.d.ts.map +1 -1
- package/models/operations/updatechunk.js +4 -4
- package/models/operations/updatechunk.js.map +1 -1
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.d.ts +4 -4
- package/models/operations/updatedatasource.d.ts.map +1 -1
- package/models/operations/updatedatasource.js +6 -6
- package/models/operations/updatedatasource.js.map +1 -1
- 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/createchunk.ts +8 -8
- 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 +10 -10
- 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/getonechunk.ts +8 -8
- package/src/models/operations/listchunks.ts +8 -8
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +10 -10
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +10 -10
- package/src/models/operations/updatechunk.ts +8 -8
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +10 -10
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.8",
|
|
34232
34232
|
genVersion: "2.568.2",
|
|
34233
|
-
userAgent: "speakeasy-sdk/typescript 3.3.
|
|
34233
|
+
userAgent: "speakeasy-sdk/typescript 3.3.8 2.568.2 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-09T06:57:16.333Z").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-09T06:57:16.333Z")).transform((v2) => v2.toISOString())
|
|
36299
36299
|
}).transform((v2) => {
|
|
36300
36300
|
return remap(v2, {
|
|
36301
36301
|
id: "_id",
|
|
@@ -36421,8 +36421,8 @@ var init_createchunk = __esm(() => {
|
|
|
36421
36421
|
status: CreateChunkStatus$inboundSchema,
|
|
36422
36422
|
created: stringType(),
|
|
36423
36423
|
updated: stringType(),
|
|
36424
|
-
created_by_id: stringType().optional(),
|
|
36425
|
-
update_by_id: stringType().optional()
|
|
36424
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
36425
|
+
update_by_id: nullableType(stringType()).optional()
|
|
36426
36426
|
}).transform((v2) => {
|
|
36427
36427
|
return remap(v2, {
|
|
36428
36428
|
_id: "id",
|
|
@@ -36438,8 +36438,8 @@ var init_createchunk = __esm(() => {
|
|
|
36438
36438
|
status: CreateChunkStatus$outboundSchema,
|
|
36439
36439
|
created: stringType(),
|
|
36440
36440
|
updated: stringType(),
|
|
36441
|
-
createdById: stringType().optional(),
|
|
36442
|
-
updateById: stringType().optional()
|
|
36441
|
+
createdById: nullableType(stringType()).optional(),
|
|
36442
|
+
updateById: nullableType(stringType()).optional()
|
|
36443
36443
|
}).transform((v2) => {
|
|
36444
36444
|
return remap(v2, {
|
|
36445
36445
|
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-09T06:57:16.333Z").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-09T06:57:16.333Z")).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-09T06:57:16.333Z").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-09T06:57:16.333Z")).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-09T06:57:16.333Z").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-09T06:57:16.333Z")).transform((v2) => v2.toISOString())
|
|
37067
37067
|
}).transform((v2) => {
|
|
37068
37068
|
return remap(v2, {
|
|
37069
37069
|
id: "_id",
|
|
@@ -37285,15 +37285,15 @@ 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("01JRCNDM8KVKZ9YPCDZX7FYC28"),
|
|
37289
37289
|
display_name: stringType(),
|
|
37290
37290
|
description: stringType().optional(),
|
|
37291
37291
|
status: CreateDatasourceStatus$inboundSchema,
|
|
37292
37292
|
file_id: nullableType(stringType()).optional(),
|
|
37293
37293
|
created: stringType(),
|
|
37294
37294
|
updated: stringType(),
|
|
37295
|
-
created_by_id: stringType().optional(),
|
|
37296
|
-
update_by_id: stringType().optional(),
|
|
37295
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
37296
|
+
update_by_id: nullableType(stringType()).optional(),
|
|
37297
37297
|
knowledge_id: stringType(),
|
|
37298
37298
|
chunks_count: numberType()
|
|
37299
37299
|
}).transform((v2) => {
|
|
@@ -37308,15 +37308,15 @@ var init_createdatasource = __esm(() => {
|
|
|
37308
37308
|
});
|
|
37309
37309
|
});
|
|
37310
37310
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37311
|
-
id: stringType().default("
|
|
37311
|
+
id: stringType().default("01JRCNDM8KVKZ9YPCDZX7FYC28"),
|
|
37312
37312
|
displayName: stringType(),
|
|
37313
37313
|
description: stringType().optional(),
|
|
37314
37314
|
status: CreateDatasourceStatus$outboundSchema,
|
|
37315
37315
|
fileId: nullableType(stringType()).optional(),
|
|
37316
37316
|
created: stringType(),
|
|
37317
37317
|
updated: stringType(),
|
|
37318
|
-
createdById: stringType().optional(),
|
|
37319
|
-
updateById: stringType().optional(),
|
|
37318
|
+
createdById: nullableType(stringType()).optional(),
|
|
37319
|
+
updateById: nullableType(stringType()).optional(),
|
|
37320
37320
|
knowledgeId: stringType(),
|
|
37321
37321
|
chunksCount: numberType()
|
|
37322
37322
|
}).transform((v2) => {
|
|
@@ -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-09T06:57:17.887Z").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-09T06:57:17.887Z")).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-09T06:57:17.887Z").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-09T06:57:17.887Z")).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-09T06:57:17.887Z").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-09T06:57:17.887Z")).transform((v2) => v2.toISOString())
|
|
44090
44090
|
}).transform((v2) => {
|
|
44091
44091
|
return remap(v2, {
|
|
44092
44092
|
id: "_id",
|
|
@@ -44784,8 +44784,8 @@ var init_getonechunk = __esm(() => {
|
|
|
44784
44784
|
status: GetOneChunkStatus$inboundSchema,
|
|
44785
44785
|
created: stringType(),
|
|
44786
44786
|
updated: stringType(),
|
|
44787
|
-
created_by_id: stringType().optional(),
|
|
44788
|
-
update_by_id: stringType().optional()
|
|
44787
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
44788
|
+
update_by_id: nullableType(stringType()).optional()
|
|
44789
44789
|
}).transform((v2) => {
|
|
44790
44790
|
return remap(v2, {
|
|
44791
44791
|
_id: "id",
|
|
@@ -44801,8 +44801,8 @@ var init_getonechunk = __esm(() => {
|
|
|
44801
44801
|
status: GetOneChunkStatus$outboundSchema,
|
|
44802
44802
|
created: stringType(),
|
|
44803
44803
|
updated: stringType(),
|
|
44804
|
-
createdById: stringType().optional(),
|
|
44805
|
-
updateById: stringType().optional()
|
|
44804
|
+
createdById: nullableType(stringType()).optional(),
|
|
44805
|
+
updateById: nullableType(stringType()).optional()
|
|
44806
44806
|
}).transform((v2) => {
|
|
44807
44807
|
return remap(v2, {
|
|
44808
44808
|
id: "_id",
|
|
@@ -46182,8 +46182,8 @@ var init_listchunks = __esm(() => {
|
|
|
46182
46182
|
status: ListChunksStatus$inboundSchema,
|
|
46183
46183
|
created: stringType(),
|
|
46184
46184
|
updated: stringType(),
|
|
46185
|
-
created_by_id: stringType().optional(),
|
|
46186
|
-
update_by_id: stringType().optional()
|
|
46185
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
46186
|
+
update_by_id: nullableType(stringType()).optional()
|
|
46187
46187
|
}).transform((v2) => {
|
|
46188
46188
|
return remap(v2, {
|
|
46189
46189
|
_id: "id",
|
|
@@ -46199,8 +46199,8 @@ var init_listchunks = __esm(() => {
|
|
|
46199
46199
|
status: ListChunksStatus$outboundSchema,
|
|
46200
46200
|
created: stringType(),
|
|
46201
46201
|
updated: stringType(),
|
|
46202
|
-
createdById: stringType().optional(),
|
|
46203
|
-
updateById: stringType().optional()
|
|
46202
|
+
createdById: nullableType(stringType()).optional(),
|
|
46203
|
+
updateById: nullableType(stringType()).optional()
|
|
46204
46204
|
}).transform((v2) => {
|
|
46205
46205
|
return remap(v2, {
|
|
46206
46206
|
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-09T06:57:16.333Z").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-09T06:57:16.333Z")).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-09T06:57:16.333Z").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-09T06:57:16.333Z")).transform((v2) => v2.toISOString())
|
|
46622
46622
|
}).transform((v2) => {
|
|
46623
46623
|
return remap(v2, {
|
|
46624
46624
|
id: "_id",
|
|
@@ -46723,15 +46723,15 @@ 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("01JRCNDM8DCVA6GE3EC52WSBD4"),
|
|
46727
46727
|
display_name: stringType(),
|
|
46728
46728
|
description: stringType().optional(),
|
|
46729
46729
|
status: ListDatasourcesStatus$inboundSchema,
|
|
46730
46730
|
file_id: nullableType(stringType()).optional(),
|
|
46731
46731
|
created: stringType(),
|
|
46732
46732
|
updated: stringType(),
|
|
46733
|
-
created_by_id: stringType().optional(),
|
|
46734
|
-
update_by_id: stringType().optional(),
|
|
46733
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
46734
|
+
update_by_id: nullableType(stringType()).optional(),
|
|
46735
46735
|
knowledge_id: stringType(),
|
|
46736
46736
|
chunks_count: numberType()
|
|
46737
46737
|
}).transform((v2) => {
|
|
@@ -46746,15 +46746,15 @@ var init_listdatasources = __esm(() => {
|
|
|
46746
46746
|
});
|
|
46747
46747
|
});
|
|
46748
46748
|
ListDatasourcesData$outboundSchema = objectType({
|
|
46749
|
-
id: stringType().default("
|
|
46749
|
+
id: stringType().default("01JRCNDM8DCVA6GE3EC52WSBD4"),
|
|
46750
46750
|
displayName: stringType(),
|
|
46751
46751
|
description: stringType().optional(),
|
|
46752
46752
|
status: ListDatasourcesStatus$outboundSchema,
|
|
46753
46753
|
fileId: nullableType(stringType()).optional(),
|
|
46754
46754
|
created: stringType(),
|
|
46755
46755
|
updated: stringType(),
|
|
46756
|
-
createdById: stringType().optional(),
|
|
46757
|
-
updateById: stringType().optional(),
|
|
46756
|
+
createdById: nullableType(stringType()).optional(),
|
|
46757
|
+
updateById: nullableType(stringType()).optional(),
|
|
46758
46758
|
knowledgeId: stringType(),
|
|
46759
46759
|
chunksCount: numberType()
|
|
46760
46760
|
}).transform((v2) => {
|
|
@@ -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-09T06:57:16.333Z").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-09T06:57:16.333Z")).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-09T06:57:16.333Z").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-09T06:57:16.333Z")).transform((v2) => v2.toISOString())
|
|
47954
47954
|
}).transform((v2) => {
|
|
47955
47955
|
return remap(v2, {
|
|
47956
47956
|
id: "_id",
|
|
@@ -48008,15 +48008,15 @@ 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("01JRCNDM8JSKPC8SGCV8R4C8JH"),
|
|
48012
48012
|
display_name: stringType(),
|
|
48013
48013
|
description: stringType().optional(),
|
|
48014
48014
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
48015
48015
|
file_id: nullableType(stringType()).optional(),
|
|
48016
48016
|
created: stringType(),
|
|
48017
48017
|
updated: stringType(),
|
|
48018
|
-
created_by_id: stringType().optional(),
|
|
48019
|
-
update_by_id: stringType().optional(),
|
|
48018
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
48019
|
+
update_by_id: nullableType(stringType()).optional(),
|
|
48020
48020
|
knowledge_id: stringType(),
|
|
48021
48021
|
chunks_count: numberType()
|
|
48022
48022
|
}).transform((v2) => {
|
|
@@ -48031,15 +48031,15 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48031
48031
|
});
|
|
48032
48032
|
});
|
|
48033
48033
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
48034
|
-
id: stringType().default("
|
|
48034
|
+
id: stringType().default("01JRCNDM8JSKPC8SGCV8R4C8JH"),
|
|
48035
48035
|
displayName: stringType(),
|
|
48036
48036
|
description: stringType().optional(),
|
|
48037
48037
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
48038
48038
|
fileId: nullableType(stringType()).optional(),
|
|
48039
48039
|
created: stringType(),
|
|
48040
48040
|
updated: stringType(),
|
|
48041
|
-
createdById: stringType().optional(),
|
|
48042
|
-
updateById: stringType().optional(),
|
|
48041
|
+
createdById: nullableType(stringType()).optional(),
|
|
48042
|
+
updateById: nullableType(stringType()).optional(),
|
|
48043
48043
|
knowledgeId: stringType(),
|
|
48044
48044
|
chunksCount: numberType()
|
|
48045
48045
|
}).transform((v2) => {
|
|
@@ -48640,8 +48640,8 @@ var init_updatechunk = __esm(() => {
|
|
|
48640
48640
|
status: UpdateChunkStatus$inboundSchema,
|
|
48641
48641
|
created: stringType(),
|
|
48642
48642
|
updated: stringType(),
|
|
48643
|
-
created_by_id: stringType().optional(),
|
|
48644
|
-
update_by_id: stringType().optional()
|
|
48643
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
48644
|
+
update_by_id: nullableType(stringType()).optional()
|
|
48645
48645
|
}).transform((v2) => {
|
|
48646
48646
|
return remap(v2, {
|
|
48647
48647
|
_id: "id",
|
|
@@ -48657,8 +48657,8 @@ var init_updatechunk = __esm(() => {
|
|
|
48657
48657
|
status: UpdateChunkStatus$outboundSchema,
|
|
48658
48658
|
created: stringType(),
|
|
48659
48659
|
updated: stringType(),
|
|
48660
|
-
createdById: stringType().optional(),
|
|
48661
|
-
updateById: stringType().optional()
|
|
48660
|
+
createdById: nullableType(stringType()).optional(),
|
|
48661
|
+
updateById: nullableType(stringType()).optional()
|
|
48662
48662
|
}).transform((v2) => {
|
|
48663
48663
|
return remap(v2, {
|
|
48664
48664
|
id: "_id",
|
|
@@ -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-09T06:57:16.333Z").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-09T06:57:16.333Z")).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-09T06:57:16.333Z").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-09T06:57:16.333Z")).transform((v2) => v2.toISOString())
|
|
49244
49244
|
}).transform((v2) => {
|
|
49245
49245
|
return remap(v2, {
|
|
49246
49246
|
id: "_id",
|
|
@@ -49321,15 +49321,15 @@ 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("01JRCNDM8MP1T68690B7TQ66F9"),
|
|
49325
49325
|
display_name: stringType(),
|
|
49326
49326
|
description: stringType().optional(),
|
|
49327
49327
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
49328
49328
|
file_id: nullableType(stringType()).optional(),
|
|
49329
49329
|
created: stringType(),
|
|
49330
49330
|
updated: stringType(),
|
|
49331
|
-
created_by_id: stringType().optional(),
|
|
49332
|
-
update_by_id: stringType().optional(),
|
|
49331
|
+
created_by_id: nullableType(stringType()).optional(),
|
|
49332
|
+
update_by_id: nullableType(stringType()).optional(),
|
|
49333
49333
|
knowledge_id: stringType(),
|
|
49334
49334
|
chunks_count: numberType()
|
|
49335
49335
|
}).transform((v2) => {
|
|
@@ -49344,15 +49344,15 @@ var init_updatedatasource = __esm(() => {
|
|
|
49344
49344
|
});
|
|
49345
49345
|
});
|
|
49346
49346
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
49347
|
-
id: stringType().default("
|
|
49347
|
+
id: stringType().default("01JRCNDM8MP1T68690B7TQ66F9"),
|
|
49348
49348
|
displayName: stringType(),
|
|
49349
49349
|
description: stringType().optional(),
|
|
49350
49350
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
49351
49351
|
fileId: nullableType(stringType()).optional(),
|
|
49352
49352
|
created: stringType(),
|
|
49353
49353
|
updated: stringType(),
|
|
49354
|
-
createdById: stringType().optional(),
|
|
49355
|
-
updateById: stringType().optional(),
|
|
49354
|
+
createdById: nullableType(stringType()).optional(),
|
|
49355
|
+
updateById: nullableType(stringType()).optional(),
|
|
49356
49356
|
knowledgeId: stringType(),
|
|
49357
49357
|
chunksCount: numberType()
|
|
49358
49358
|
}).transform((v2) => {
|
|
@@ -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.8"
|
|
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.8"
|
|
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=DEDFB26650BB63C364756E2164756E21
|
|
58256
58256
|
//# sourceMappingURL=mcp-server.js.map
|