@orq-ai/node 3.3.0-rc.29 → 3.3.0-rc.31
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 +41 -41
- package/bin/mcp-server.js.map +22 -22
- 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.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/createchunk.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
|
@@ -34231,9 +34231,9 @@ var init_config = __esm(() => {
|
|
|
34231
34231
|
SDK_METADATA = {
|
|
34232
34232
|
language: "typescript",
|
|
34233
34233
|
openapiDocVersion: "2.0",
|
|
34234
|
-
sdkVersion: "3.3.0-rc.
|
|
34234
|
+
sdkVersion: "3.3.0-rc.31",
|
|
34235
34235
|
genVersion: "2.565.1",
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 3.3.0-rc.
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 3.3.0-rc.31 2.565.1 2.0 @orq-ai/node"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -36268,7 +36268,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36268
36268
|
created_by_id: stringType().optional(),
|
|
36269
36269
|
updated_by_id: stringType().optional(),
|
|
36270
36270
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36271
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36271
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
36272
36272
|
}).transform((v2) => {
|
|
36273
36273
|
return remap(v2, {
|
|
36274
36274
|
_id: "id",
|
|
@@ -36289,7 +36289,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36289
36289
|
createdById: stringType().optional(),
|
|
36290
36290
|
updatedById: stringType().optional(),
|
|
36291
36291
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36292
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36292
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
36293
36293
|
}).transform((v2) => {
|
|
36294
36294
|
return remap(v2, {
|
|
36295
36295
|
id: "_id",
|
|
@@ -36492,7 +36492,7 @@ var init_createchunk = __esm(() => {
|
|
|
36492
36492
|
knowledge_id: stringType(),
|
|
36493
36493
|
workspace_id: stringType(),
|
|
36494
36494
|
data_source_id: stringType(),
|
|
36495
|
-
id: stringType().default("
|
|
36495
|
+
id: stringType().default("chunk_01JQXCHH4ZW01QSCSAC4T8GKJB"),
|
|
36496
36496
|
text: stringType(),
|
|
36497
36497
|
enabled: booleanType().default(true),
|
|
36498
36498
|
metadata: lazyType(() => CreateChunkKnowledgeMetadata$inboundSchema).optional(),
|
|
@@ -36515,7 +36515,7 @@ var init_createchunk = __esm(() => {
|
|
|
36515
36515
|
knowledgeId: stringType(),
|
|
36516
36516
|
workspaceId: stringType(),
|
|
36517
36517
|
dataSourceId: stringType(),
|
|
36518
|
-
id: stringType().default("
|
|
36518
|
+
id: stringType().default("chunk_01JQXCHH4ZW01QSCSAC4T8GKJB"),
|
|
36519
36519
|
text: stringType(),
|
|
36520
36520
|
enabled: booleanType().default(true),
|
|
36521
36521
|
metadata: lazyType(() => CreateChunkKnowledgeMetadata$outboundSchema).optional(),
|
|
@@ -36586,7 +36586,7 @@ var init_createcontact = __esm(() => {
|
|
|
36586
36586
|
tags: arrayType(stringType()).optional(),
|
|
36587
36587
|
metadata: recordType(anyType()).optional(),
|
|
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-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
36590
36590
|
}).transform((v2) => {
|
|
36591
36591
|
return remap(v2, {
|
|
36592
36592
|
external_id: "externalId",
|
|
@@ -36603,7 +36603,7 @@ var init_createcontact = __esm(() => {
|
|
|
36603
36603
|
tags: arrayType(stringType()).optional(),
|
|
36604
36604
|
metadata: recordType(anyType()).optional(),
|
|
36605
36605
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36606
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36606
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
36607
36607
|
}).transform((v2) => {
|
|
36608
36608
|
return remap(v2, {
|
|
36609
36609
|
externalId: "external_id",
|
|
@@ -36673,7 +36673,7 @@ var init_createdataset = __esm(() => {
|
|
|
36673
36673
|
updated_by_id: stringType().optional(),
|
|
36674
36674
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36675
36675
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36676
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
36676
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
36677
36677
|
}).transform((v2) => {
|
|
36678
36678
|
return remap(v2, {
|
|
36679
36679
|
_id: "id",
|
|
@@ -36693,7 +36693,7 @@ var init_createdataset = __esm(() => {
|
|
|
36693
36693
|
updatedById: stringType().optional(),
|
|
36694
36694
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36695
36695
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36696
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
36696
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
36697
36697
|
}).transform((v2) => {
|
|
36698
36698
|
return remap(v2, {
|
|
36699
36699
|
id: "_id",
|
|
@@ -37129,7 +37129,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37129
37129
|
created_by_id: stringType().optional(),
|
|
37130
37130
|
updated_by_id: stringType().optional(),
|
|
37131
37131
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37132
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
37132
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
37133
37133
|
}).transform((v2) => {
|
|
37134
37134
|
return remap(v2, {
|
|
37135
37135
|
_id: "id",
|
|
@@ -37150,7 +37150,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37150
37150
|
createdById: stringType().optional(),
|
|
37151
37151
|
updatedById: stringType().optional(),
|
|
37152
37152
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37153
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
37153
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
37154
37154
|
}).transform((v2) => {
|
|
37155
37155
|
return remap(v2, {
|
|
37156
37156
|
id: "_id",
|
|
@@ -37372,7 +37372,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37372
37372
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37373
37373
|
})(CreateDatasourceStatus$ ||= {});
|
|
37374
37374
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37375
|
-
_id: stringType().default("
|
|
37375
|
+
_id: stringType().default("01JQXCHH4RMEKY5KCBXG8ZF74A"),
|
|
37376
37376
|
display_name: stringType(),
|
|
37377
37377
|
description: stringType().optional(),
|
|
37378
37378
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37395,7 +37395,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37395
37395
|
});
|
|
37396
37396
|
});
|
|
37397
37397
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37398
|
-
id: stringType().default("
|
|
37398
|
+
id: stringType().default("01JQXCHH4RMEKY5KCBXG8ZF74A"),
|
|
37399
37399
|
displayName: stringType(),
|
|
37400
37400
|
description: stringType().optional(),
|
|
37401
37401
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -43922,7 +43922,7 @@ var init_fileget = __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-03T08:33:32.048Z").transform((v2) => new Date(v2))
|
|
43926
43926
|
}).transform((v2) => {
|
|
43927
43927
|
return remap(v2, {
|
|
43928
43928
|
_id: "id",
|
|
@@ -43938,7 +43938,7 @@ var init_fileget = __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-03T08:33:32.048Z")).transform((v2) => v2.toISOString())
|
|
43942
43942
|
}).transform((v2) => {
|
|
43943
43943
|
return remap(v2, {
|
|
43944
43944
|
id: "_id",
|
|
@@ -44009,7 +44009,7 @@ var init_filelist = __esm(() => {
|
|
|
44009
44009
|
bytes: numberType(),
|
|
44010
44010
|
file_name: stringType(),
|
|
44011
44011
|
workspace_id: stringType(),
|
|
44012
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
44012
|
+
created: stringType().datetime({ offset: true }).default("2025-04-03T08:33:32.048Z").transform((v2) => new Date(v2))
|
|
44013
44013
|
}).transform((v2) => {
|
|
44014
44014
|
return remap(v2, {
|
|
44015
44015
|
_id: "id",
|
|
@@ -44025,7 +44025,7 @@ var init_filelist = __esm(() => {
|
|
|
44025
44025
|
bytes: numberType(),
|
|
44026
44026
|
fileName: stringType(),
|
|
44027
44027
|
workspaceId: stringType(),
|
|
44028
|
-
created: dateType().default(() => new Date("2025-04-
|
|
44028
|
+
created: dateType().default(() => new Date("2025-04-03T08:33:32.048Z")).transform((v2) => v2.toISOString())
|
|
44029
44029
|
}).transform((v2) => {
|
|
44030
44030
|
return remap(v2, {
|
|
44031
44031
|
id: "_id",
|
|
@@ -44157,7 +44157,7 @@ var init_fileupload = __esm(() => {
|
|
|
44157
44157
|
bytes: numberType(),
|
|
44158
44158
|
file_name: stringType(),
|
|
44159
44159
|
workspace_id: stringType(),
|
|
44160
|
-
created: stringType().datetime({ offset: true }).default("2025-04-
|
|
44160
|
+
created: stringType().datetime({ offset: true }).default("2025-04-03T08:33:32.048Z").transform((v2) => new Date(v2))
|
|
44161
44161
|
}).transform((v2) => {
|
|
44162
44162
|
return remap(v2, {
|
|
44163
44163
|
_id: "id",
|
|
@@ -44173,7 +44173,7 @@ var init_fileupload = __esm(() => {
|
|
|
44173
44173
|
bytes: numberType(),
|
|
44174
44174
|
fileName: stringType(),
|
|
44175
44175
|
workspaceId: stringType(),
|
|
44176
|
-
created: dateType().default(() => new Date("2025-04-
|
|
44176
|
+
created: dateType().default(() => new Date("2025-04-03T08:33:32.048Z")).transform((v2) => v2.toISOString())
|
|
44177
44177
|
}).transform((v2) => {
|
|
44178
44178
|
return remap(v2, {
|
|
44179
44179
|
id: "_id",
|
|
@@ -46556,7 +46556,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
46556
46556
|
created_by_id: stringType().optional(),
|
|
46557
46557
|
updated_by_id: stringType().optional(),
|
|
46558
46558
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46559
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
46559
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
46560
46560
|
}).transform((v2) => {
|
|
46561
46561
|
return remap(v2, {
|
|
46562
46562
|
_id: "id",
|
|
@@ -46577,7 +46577,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
46577
46577
|
createdById: stringType().optional(),
|
|
46578
46578
|
updatedById: stringType().optional(),
|
|
46579
46579
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46580
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
46580
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
46581
46581
|
}).transform((v2) => {
|
|
46582
46582
|
return remap(v2, {
|
|
46583
46583
|
id: "_id",
|
|
@@ -46685,7 +46685,7 @@ var init_listdatasets = __esm(() => {
|
|
|
46685
46685
|
updated_by_id: stringType().optional(),
|
|
46686
46686
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
46687
46687
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46688
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
46688
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
46689
46689
|
}).transform((v2) => {
|
|
46690
46690
|
return remap(v2, {
|
|
46691
46691
|
_id: "id",
|
|
@@ -46705,7 +46705,7 @@ var init_listdatasets = __esm(() => {
|
|
|
46705
46705
|
updatedById: stringType().optional(),
|
|
46706
46706
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
46707
46707
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46708
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
46708
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
46709
46709
|
}).transform((v2) => {
|
|
46710
46710
|
return remap(v2, {
|
|
46711
46711
|
id: "_id",
|
|
@@ -46810,7 +46810,7 @@ var init_listdatasources = __esm(() => {
|
|
|
46810
46810
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
46811
46811
|
})(ListDatasourcesStatus$ ||= {});
|
|
46812
46812
|
ListDatasourcesData$inboundSchema = objectType({
|
|
46813
|
-
_id: stringType().default("
|
|
46813
|
+
_id: stringType().default("01JQXCHH4NKAFV71Z541AHAMQ1"),
|
|
46814
46814
|
display_name: stringType(),
|
|
46815
46815
|
description: stringType().optional(),
|
|
46816
46816
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -46833,7 +46833,7 @@ var init_listdatasources = __esm(() => {
|
|
|
46833
46833
|
});
|
|
46834
46834
|
});
|
|
46835
46835
|
ListDatasourcesData$outboundSchema = objectType({
|
|
46836
|
-
id: stringType().default("
|
|
46836
|
+
id: stringType().default("01JQXCHH4NKAFV71Z541AHAMQ1"),
|
|
46837
46837
|
displayName: stringType(),
|
|
46838
46838
|
description: stringType().optional(),
|
|
46839
46839
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -47925,7 +47925,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
47925
47925
|
created_by_id: stringType().optional(),
|
|
47926
47926
|
updated_by_id: stringType().optional(),
|
|
47927
47927
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
47928
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
47928
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
47929
47929
|
}).transform((v2) => {
|
|
47930
47930
|
return remap(v2, {
|
|
47931
47931
|
_id: "id",
|
|
@@ -47946,7 +47946,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
47946
47946
|
createdById: stringType().optional(),
|
|
47947
47947
|
updatedById: stringType().optional(),
|
|
47948
47948
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
47949
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
47949
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
47950
47950
|
}).transform((v2) => {
|
|
47951
47951
|
return remap(v2, {
|
|
47952
47952
|
id: "_id",
|
|
@@ -48017,7 +48017,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
48017
48017
|
updated_by_id: stringType().optional(),
|
|
48018
48018
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
48019
48019
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48020
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
48020
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
48021
48021
|
}).transform((v2) => {
|
|
48022
48022
|
return remap(v2, {
|
|
48023
48023
|
_id: "id",
|
|
@@ -48037,7 +48037,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
48037
48037
|
updatedById: stringType().optional(),
|
|
48038
48038
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
48039
48039
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48040
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
48040
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
48041
48041
|
}).transform((v2) => {
|
|
48042
48042
|
return remap(v2, {
|
|
48043
48043
|
id: "_id",
|
|
@@ -48095,7 +48095,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48095
48095
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
48096
48096
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
48097
48097
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
48098
|
-
_id: stringType().default("
|
|
48098
|
+
_id: stringType().default("01JQXCHH4Q66DCYARD24KVR2GR"),
|
|
48099
48099
|
display_name: stringType(),
|
|
48100
48100
|
description: stringType().optional(),
|
|
48101
48101
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -48118,7 +48118,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48118
48118
|
});
|
|
48119
48119
|
});
|
|
48120
48120
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
48121
|
-
id: stringType().default("
|
|
48121
|
+
id: stringType().default("01JQXCHH4Q66DCYARD24KVR2GR"),
|
|
48122
48122
|
displayName: stringType(),
|
|
48123
48123
|
description: stringType().optional(),
|
|
48124
48124
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -49182,7 +49182,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
49182
49182
|
created_by_id: stringType().optional(),
|
|
49183
49183
|
updated_by_id: stringType().optional(),
|
|
49184
49184
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49185
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
49185
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
49186
49186
|
}).transform((v2) => {
|
|
49187
49187
|
return remap(v2, {
|
|
49188
49188
|
_id: "id",
|
|
@@ -49203,7 +49203,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
49203
49203
|
createdById: stringType().optional(),
|
|
49204
49204
|
updatedById: stringType().optional(),
|
|
49205
49205
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49206
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
49206
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
49207
49207
|
}).transform((v2) => {
|
|
49208
49208
|
return remap(v2, {
|
|
49209
49209
|
id: "_id",
|
|
@@ -49304,7 +49304,7 @@ var init_updatedataset = __esm(() => {
|
|
|
49304
49304
|
parent_id: stringType().optional(),
|
|
49305
49305
|
version: stringType().optional(),
|
|
49306
49306
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49307
|
-
updated: stringType().datetime({ offset: true }).default("2025-04-
|
|
49307
|
+
updated: stringType().datetime({ offset: true }).default("2025-04-03T08:33:30.512Z").transform((v2) => new Date(v2))
|
|
49308
49308
|
}).transform((v2) => {
|
|
49309
49309
|
return remap(v2, {
|
|
49310
49310
|
_id: "id",
|
|
@@ -49327,7 +49327,7 @@ var init_updatedataset = __esm(() => {
|
|
|
49327
49327
|
parentId: stringType().optional(),
|
|
49328
49328
|
version: stringType().optional(),
|
|
49329
49329
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49330
|
-
updated: dateType().default(() => new Date("2025-04-
|
|
49330
|
+
updated: dateType().default(() => new Date("2025-04-03T08:33:30.512Z")).transform((v2) => v2.toISOString())
|
|
49331
49331
|
}).transform((v2) => {
|
|
49332
49332
|
return remap(v2, {
|
|
49333
49333
|
id: "_id",
|
|
@@ -49408,7 +49408,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
49408
49408
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
49409
49409
|
})(UpdateDatasourceStatus$ ||= {});
|
|
49410
49410
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
49411
|
-
_id: stringType().default("
|
|
49411
|
+
_id: stringType().default("01JQXCHH4S7PPR8ZG9NT5HJP92"),
|
|
49412
49412
|
display_name: stringType(),
|
|
49413
49413
|
description: stringType().optional(),
|
|
49414
49414
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -49431,7 +49431,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
49431
49431
|
});
|
|
49432
49432
|
});
|
|
49433
49433
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
49434
|
-
id: stringType().default("
|
|
49434
|
+
id: stringType().default("01JQXCHH4S7PPR8ZG9NT5HJP92"),
|
|
49435
49435
|
displayName: stringType(),
|
|
49436
49436
|
description: stringType().optional(),
|
|
49437
49437
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -57001,7 +57001,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
57001
57001
|
function createMCPServer(deps) {
|
|
57002
57002
|
const server = new McpServer({
|
|
57003
57003
|
name: "Orq",
|
|
57004
|
-
version: "3.3.0-rc.
|
|
57004
|
+
version: "3.3.0-rc.31"
|
|
57005
57005
|
});
|
|
57006
57006
|
const client = new OrqCore({
|
|
57007
57007
|
apiKey: deps.apiKey,
|
|
@@ -58328,7 +58328,7 @@ var routes = rn({
|
|
|
58328
58328
|
var app = Ve(routes, {
|
|
58329
58329
|
name: "mcp",
|
|
58330
58330
|
versionInfo: {
|
|
58331
|
-
currentVersion: "3.3.0-rc.
|
|
58331
|
+
currentVersion: "3.3.0-rc.31"
|
|
58332
58332
|
}
|
|
58333
58333
|
});
|
|
58334
58334
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -58336,5 +58336,5 @@ export {
|
|
|
58336
58336
|
app
|
|
58337
58337
|
};
|
|
58338
58338
|
|
|
58339
|
-
//# debugId=
|
|
58339
|
+
//# debugId=8BD8231A26FBBD9964756E2164756E21
|
|
58340
58340
|
//# sourceMappingURL=mcp-server.js.map
|