@orq-ai/node 3.2.0-rc.20 → 3.2.0-rc.22
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 +40 -36
- package/bin/mcp-server.js.map +18 -18
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- 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/fileget.d.ts +3 -0
- package/models/operations/fileget.d.ts.map +1 -1
- package/models/operations/fileget.js +3 -2
- package/models/operations/fileget.js.map +1 -1
- package/models/operations/filelist.d.ts +3 -0
- package/models/operations/filelist.d.ts.map +1 -1
- package/models/operations/filelist.js +3 -2
- package/models/operations/filelist.js.map +1 -1
- package/models/operations/fileupload.d.ts +6 -0
- package/models/operations/fileupload.d.ts.map +1 -1
- package/models/operations/fileupload.js +4 -2
- package/models/operations/fileupload.js.map +1 -1
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- 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/fileget.ts +3 -2
- package/src/models/operations/filelist.ts +3 -2
- package/src/models/operations/fileupload.ts +4 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
package/bin/mcp-server.js
CHANGED
|
@@ -34231,9 +34231,9 @@ var init_config = __esm(() => {
|
|
|
34231
34231
|
SDK_METADATA = {
|
|
34232
34232
|
language: "typescript",
|
|
34233
34233
|
openapiDocVersion: "2.0",
|
|
34234
|
-
sdkVersion: "3.2.0-rc.
|
|
34235
|
-
genVersion: "2.
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 3.2.0-rc.
|
|
34234
|
+
sdkVersion: "3.2.0-rc.22",
|
|
34235
|
+
genVersion: "2.533.0",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 3.2.0-rc.22 2.533.0 2.0 @orq-ai/node"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -35998,7 +35998,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
35998
35998
|
created_by_id: stringType().optional(),
|
|
35999
35999
|
updated_by_id: stringType().optional(),
|
|
36000
36000
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36001
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
36001
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
36002
36002
|
}).transform((v2) => {
|
|
36003
36003
|
return remap(v2, {
|
|
36004
36004
|
_id: "id",
|
|
@@ -36019,7 +36019,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36019
36019
|
createdById: stringType().optional(),
|
|
36020
36020
|
updatedById: stringType().optional(),
|
|
36021
36021
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36022
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
36022
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
36023
36023
|
}).transform((v2) => {
|
|
36024
36024
|
return remap(v2, {
|
|
36025
36025
|
id: "_id",
|
|
@@ -36107,7 +36107,7 @@ var init_createcontact = __esm(() => {
|
|
|
36107
36107
|
tags: arrayType(stringType()).optional(),
|
|
36108
36108
|
metadata: recordType(anyType()).optional(),
|
|
36109
36109
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36110
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
36110
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
36111
36111
|
}).transform((v2) => {
|
|
36112
36112
|
return remap(v2, {
|
|
36113
36113
|
external_id: "externalId",
|
|
@@ -36124,7 +36124,7 @@ var init_createcontact = __esm(() => {
|
|
|
36124
36124
|
tags: arrayType(stringType()).optional(),
|
|
36125
36125
|
metadata: recordType(anyType()).optional(),
|
|
36126
36126
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36127
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
36127
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
36128
36128
|
}).transform((v2) => {
|
|
36129
36129
|
return remap(v2, {
|
|
36130
36130
|
externalId: "external_id",
|
|
@@ -36194,7 +36194,7 @@ var init_createdataset = __esm(() => {
|
|
|
36194
36194
|
updated_by_id: stringType().optional(),
|
|
36195
36195
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36196
36196
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36197
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
36197
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
36198
36198
|
}).transform((v2) => {
|
|
36199
36199
|
return remap(v2, {
|
|
36200
36200
|
_id: "id",
|
|
@@ -36214,7 +36214,7 @@ var init_createdataset = __esm(() => {
|
|
|
36214
36214
|
updatedById: stringType().optional(),
|
|
36215
36215
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36216
36216
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36217
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
36217
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
36218
36218
|
}).transform((v2) => {
|
|
36219
36219
|
return remap(v2, {
|
|
36220
36220
|
id: "_id",
|
|
@@ -36650,7 +36650,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
36650
36650
|
created_by_id: stringType().optional(),
|
|
36651
36651
|
updated_by_id: stringType().optional(),
|
|
36652
36652
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36653
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
36653
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
36654
36654
|
}).transform((v2) => {
|
|
36655
36655
|
return remap(v2, {
|
|
36656
36656
|
_id: "id",
|
|
@@ -36671,7 +36671,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
36671
36671
|
createdById: stringType().optional(),
|
|
36672
36672
|
updatedById: stringType().optional(),
|
|
36673
36673
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36674
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
36674
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
36675
36675
|
}).transform((v2) => {
|
|
36676
36676
|
return remap(v2, {
|
|
36677
36677
|
id: "_id",
|
|
@@ -40242,7 +40242,8 @@ var init_fileget = __esm(() => {
|
|
|
40242
40242
|
init_primitives();
|
|
40243
40243
|
FileGetPurpose = {
|
|
40244
40244
|
Retrieval: "retrieval",
|
|
40245
|
-
KnowledgeDatasource: "knowledge_datasource"
|
|
40245
|
+
KnowledgeDatasource: "knowledge_datasource",
|
|
40246
|
+
Batch: "batch"
|
|
40246
40247
|
};
|
|
40247
40248
|
FileGetRequest$inboundSchema = objectType({
|
|
40248
40249
|
file_id: stringType()
|
|
@@ -40275,7 +40276,7 @@ var init_fileget = __esm(() => {
|
|
|
40275
40276
|
bytes: numberType(),
|
|
40276
40277
|
file_name: stringType(),
|
|
40277
40278
|
workspace_id: stringType(),
|
|
40278
|
-
created: stringType().datetime({ offset: true }).default("2025-02-
|
|
40279
|
+
created: stringType().datetime({ offset: true }).default("2025-02-28T09:18:03.386Z").transform((v2) => new Date(v2))
|
|
40279
40280
|
}).transform((v2) => {
|
|
40280
40281
|
return remap(v2, {
|
|
40281
40282
|
_id: "id",
|
|
@@ -40291,7 +40292,7 @@ var init_fileget = __esm(() => {
|
|
|
40291
40292
|
bytes: numberType(),
|
|
40292
40293
|
fileName: stringType(),
|
|
40293
40294
|
workspaceId: stringType(),
|
|
40294
|
-
created: dateType().default(() => new Date("2025-02-
|
|
40295
|
+
created: dateType().default(() => new Date("2025-02-28T09:18:03.386Z")).transform((v2) => v2.toISOString())
|
|
40295
40296
|
}).transform((v2) => {
|
|
40296
40297
|
return remap(v2, {
|
|
40297
40298
|
id: "_id",
|
|
@@ -40316,7 +40317,8 @@ var init_filelist = __esm(() => {
|
|
|
40316
40317
|
};
|
|
40317
40318
|
FileListPurpose = {
|
|
40318
40319
|
Retrieval: "retrieval",
|
|
40319
|
-
KnowledgeDatasource: "knowledge_datasource"
|
|
40320
|
+
KnowledgeDatasource: "knowledge_datasource",
|
|
40321
|
+
Batch: "batch"
|
|
40320
40322
|
};
|
|
40321
40323
|
FileListRequest$inboundSchema = objectType({
|
|
40322
40324
|
limit: numberType().default(10),
|
|
@@ -40361,7 +40363,7 @@ var init_filelist = __esm(() => {
|
|
|
40361
40363
|
bytes: numberType(),
|
|
40362
40364
|
file_name: stringType(),
|
|
40363
40365
|
workspace_id: stringType(),
|
|
40364
|
-
created: stringType().datetime({ offset: true }).default("2025-02-
|
|
40366
|
+
created: stringType().datetime({ offset: true }).default("2025-02-28T09:18:03.386Z").transform((v2) => new Date(v2))
|
|
40365
40367
|
}).transform((v2) => {
|
|
40366
40368
|
return remap(v2, {
|
|
40367
40369
|
_id: "id",
|
|
@@ -40377,7 +40379,7 @@ var init_filelist = __esm(() => {
|
|
|
40377
40379
|
bytes: numberType(),
|
|
40378
40380
|
fileName: stringType(),
|
|
40379
40381
|
workspaceId: stringType(),
|
|
40380
|
-
created: dateType().default(() => new Date("2025-02-
|
|
40382
|
+
created: dateType().default(() => new Date("2025-02-28T09:18:03.386Z")).transform((v2) => v2.toISOString())
|
|
40381
40383
|
}).transform((v2) => {
|
|
40382
40384
|
return remap(v2, {
|
|
40383
40385
|
id: "_id",
|
|
@@ -40448,11 +40450,13 @@ var init_fileupload = __esm(() => {
|
|
|
40448
40450
|
init_blobs();
|
|
40449
40451
|
Purpose = {
|
|
40450
40452
|
Retrieval: "retrieval",
|
|
40451
|
-
KnowledgeDatasource: "knowledge_datasource"
|
|
40453
|
+
KnowledgeDatasource: "knowledge_datasource",
|
|
40454
|
+
Batch: "batch"
|
|
40452
40455
|
};
|
|
40453
40456
|
FileUploadPurpose = {
|
|
40454
40457
|
Retrieval: "retrieval",
|
|
40455
|
-
KnowledgeDatasource: "knowledge_datasource"
|
|
40458
|
+
KnowledgeDatasource: "knowledge_datasource",
|
|
40459
|
+
Batch: "batch"
|
|
40456
40460
|
};
|
|
40457
40461
|
FileT$inboundSchema = objectType({
|
|
40458
40462
|
fileName: stringType(),
|
|
@@ -40507,7 +40511,7 @@ var init_fileupload = __esm(() => {
|
|
|
40507
40511
|
bytes: numberType(),
|
|
40508
40512
|
file_name: stringType(),
|
|
40509
40513
|
workspace_id: stringType(),
|
|
40510
|
-
created: stringType().datetime({ offset: true }).default("2025-02-
|
|
40514
|
+
created: stringType().datetime({ offset: true }).default("2025-02-28T09:18:03.386Z").transform((v2) => new Date(v2))
|
|
40511
40515
|
}).transform((v2) => {
|
|
40512
40516
|
return remap(v2, {
|
|
40513
40517
|
_id: "id",
|
|
@@ -40523,7 +40527,7 @@ var init_fileupload = __esm(() => {
|
|
|
40523
40527
|
bytes: numberType(),
|
|
40524
40528
|
fileName: stringType(),
|
|
40525
40529
|
workspaceId: stringType(),
|
|
40526
|
-
created: dateType().default(() => new Date("2025-02-
|
|
40530
|
+
created: dateType().default(() => new Date("2025-02-28T09:18:03.386Z")).transform((v2) => v2.toISOString())
|
|
40527
40531
|
}).transform((v2) => {
|
|
40528
40532
|
return remap(v2, {
|
|
40529
40533
|
id: "_id",
|
|
@@ -42551,7 +42555,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
42551
42555
|
created_by_id: stringType().optional(),
|
|
42552
42556
|
updated_by_id: stringType().optional(),
|
|
42553
42557
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42554
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
42558
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
42555
42559
|
}).transform((v2) => {
|
|
42556
42560
|
return remap(v2, {
|
|
42557
42561
|
_id: "id",
|
|
@@ -42572,7 +42576,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
42572
42576
|
createdById: stringType().optional(),
|
|
42573
42577
|
updatedById: stringType().optional(),
|
|
42574
42578
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42575
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
42579
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
42576
42580
|
}).transform((v2) => {
|
|
42577
42581
|
return remap(v2, {
|
|
42578
42582
|
id: "_id",
|
|
@@ -42680,7 +42684,7 @@ var init_listdatasets = __esm(() => {
|
|
|
42680
42684
|
updated_by_id: stringType().optional(),
|
|
42681
42685
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
42682
42686
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42683
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
42687
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
42684
42688
|
}).transform((v2) => {
|
|
42685
42689
|
return remap(v2, {
|
|
42686
42690
|
_id: "id",
|
|
@@ -42700,7 +42704,7 @@ var init_listdatasets = __esm(() => {
|
|
|
42700
42704
|
updatedById: stringType().optional(),
|
|
42701
42705
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
42702
42706
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42703
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
42707
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
42704
42708
|
}).transform((v2) => {
|
|
42705
42709
|
return remap(v2, {
|
|
42706
42710
|
id: "_id",
|
|
@@ -43612,7 +43616,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
43612
43616
|
created_by_id: stringType().optional(),
|
|
43613
43617
|
updated_by_id: stringType().optional(),
|
|
43614
43618
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43615
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
43619
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
43616
43620
|
}).transform((v2) => {
|
|
43617
43621
|
return remap(v2, {
|
|
43618
43622
|
_id: "id",
|
|
@@ -43633,7 +43637,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
43633
43637
|
createdById: stringType().optional(),
|
|
43634
43638
|
updatedById: stringType().optional(),
|
|
43635
43639
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43636
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
43640
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
43637
43641
|
}).transform((v2) => {
|
|
43638
43642
|
return remap(v2, {
|
|
43639
43643
|
id: "_id",
|
|
@@ -43704,7 +43708,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
43704
43708
|
updated_by_id: stringType().optional(),
|
|
43705
43709
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
43706
43710
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43707
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
43711
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
43708
43712
|
}).transform((v2) => {
|
|
43709
43713
|
return remap(v2, {
|
|
43710
43714
|
_id: "id",
|
|
@@ -43724,7 +43728,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
43724
43728
|
updatedById: stringType().optional(),
|
|
43725
43729
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
43726
43730
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43727
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
43731
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
43728
43732
|
}).transform((v2) => {
|
|
43729
43733
|
return remap(v2, {
|
|
43730
43734
|
id: "_id",
|
|
@@ -44164,7 +44168,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
44164
44168
|
created_by_id: stringType().optional(),
|
|
44165
44169
|
updated_by_id: stringType().optional(),
|
|
44166
44170
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44167
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
44171
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
44168
44172
|
}).transform((v2) => {
|
|
44169
44173
|
return remap(v2, {
|
|
44170
44174
|
_id: "id",
|
|
@@ -44185,7 +44189,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
44185
44189
|
createdById: stringType().optional(),
|
|
44186
44190
|
updatedById: stringType().optional(),
|
|
44187
44191
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44188
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
44192
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
44189
44193
|
}).transform((v2) => {
|
|
44190
44194
|
return remap(v2, {
|
|
44191
44195
|
id: "_id",
|
|
@@ -44280,7 +44284,7 @@ var init_updatedataset = __esm(() => {
|
|
|
44280
44284
|
parent_id: stringType().optional(),
|
|
44281
44285
|
version: stringType().optional(),
|
|
44282
44286
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44283
|
-
updated: stringType().datetime({ offset: true }).default("2025-02-
|
|
44287
|
+
updated: stringType().datetime({ offset: true }).default("2025-02-28T09:18:02.286Z").transform((v2) => new Date(v2))
|
|
44284
44288
|
}).transform((v2) => {
|
|
44285
44289
|
return remap(v2, {
|
|
44286
44290
|
_id: "id",
|
|
@@ -44303,7 +44307,7 @@ var init_updatedataset = __esm(() => {
|
|
|
44303
44307
|
parentId: stringType().optional(),
|
|
44304
44308
|
version: stringType().optional(),
|
|
44305
44309
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44306
|
-
updated: dateType().default(() => new Date("2025-02-
|
|
44310
|
+
updated: dateType().default(() => new Date("2025-02-28T09:18:02.286Z")).transform((v2) => v2.toISOString())
|
|
44307
44311
|
}).transform((v2) => {
|
|
44308
44312
|
return remap(v2, {
|
|
44309
44313
|
id: "_id",
|
|
@@ -49238,7 +49242,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
49238
49242
|
function createMCPServer(deps) {
|
|
49239
49243
|
const server = new McpServer({
|
|
49240
49244
|
name: "Orq",
|
|
49241
|
-
version: "3.2.0-rc.
|
|
49245
|
+
version: "3.2.0-rc.22"
|
|
49242
49246
|
});
|
|
49243
49247
|
const client = new OrqCore({
|
|
49244
49248
|
apiKey: deps.apiKey,
|
|
@@ -50514,7 +50518,7 @@ var routes = rn({
|
|
|
50514
50518
|
var app = Ve(routes, {
|
|
50515
50519
|
name: "mcp",
|
|
50516
50520
|
versionInfo: {
|
|
50517
|
-
currentVersion: "3.2.0-rc.
|
|
50521
|
+
currentVersion: "3.2.0-rc.22"
|
|
50518
50522
|
}
|
|
50519
50523
|
});
|
|
50520
50524
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -50522,5 +50526,5 @@ export {
|
|
|
50522
50526
|
app
|
|
50523
50527
|
};
|
|
50524
50528
|
|
|
50525
|
-
//# debugId=
|
|
50529
|
+
//# debugId=7481177C7454736264756E2164756E21
|
|
50526
50530
|
//# sourceMappingURL=mcp-server.js.map
|