@orq-ai/node 3.6.0-rc.23 → 3.6.0-rc.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +39 -39
- package/bin/mcp-server.js.map +21 -21
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/bulkcreatedatapoints.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/bulkcreatedatapoints.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
package/bin/mcp-server.js
CHANGED
|
@@ -34225,9 +34225,9 @@ var init_config = __esm(() => {
|
|
|
34225
34225
|
SDK_METADATA = {
|
|
34226
34226
|
language: "typescript",
|
|
34227
34227
|
openapiDocVersion: "2.0",
|
|
34228
|
-
sdkVersion: "3.6.0-rc.
|
|
34228
|
+
sdkVersion: "3.6.0-rc.25",
|
|
34229
34229
|
genVersion: "2.605.6",
|
|
34230
|
-
userAgent: "speakeasy-sdk/typescript 3.6.0-rc.
|
|
34230
|
+
userAgent: "speakeasy-sdk/typescript 3.6.0-rc.25 2.605.6 2.0 @orq-ai/node"
|
|
34231
34231
|
};
|
|
34232
34232
|
});
|
|
34233
34233
|
|
|
@@ -36283,7 +36283,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36283
36283
|
created_by_id: stringType().optional(),
|
|
36284
36284
|
updated_by_id: stringType().optional(),
|
|
36285
36285
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36286
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36286
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
36287
36287
|
}).transform((v2) => {
|
|
36288
36288
|
return remap(v2, {
|
|
36289
36289
|
_id: "id",
|
|
@@ -36304,7 +36304,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36304
36304
|
createdById: stringType().optional(),
|
|
36305
36305
|
updatedById: stringType().optional(),
|
|
36306
36306
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36307
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36307
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
36308
36308
|
}).transform((v2) => {
|
|
36309
36309
|
return remap(v2, {
|
|
36310
36310
|
id: "_id",
|
|
@@ -36502,7 +36502,7 @@ var init_createcontact = __esm(() => {
|
|
|
36502
36502
|
tags: arrayType(stringType()).optional(),
|
|
36503
36503
|
metadata: recordType(anyType()).optional(),
|
|
36504
36504
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36505
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36505
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
36506
36506
|
}).transform((v2) => {
|
|
36507
36507
|
return remap(v2, {
|
|
36508
36508
|
external_id: "externalId",
|
|
@@ -36519,7 +36519,7 @@ var init_createcontact = __esm(() => {
|
|
|
36519
36519
|
tags: arrayType(stringType()).optional(),
|
|
36520
36520
|
metadata: recordType(anyType()).optional(),
|
|
36521
36521
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36522
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36522
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
36523
36523
|
}).transform((v2) => {
|
|
36524
36524
|
return remap(v2, {
|
|
36525
36525
|
externalId: "external_id",
|
|
@@ -36589,7 +36589,7 @@ var init_createdataset = __esm(() => {
|
|
|
36589
36589
|
updated_by_id: stringType().optional(),
|
|
36590
36590
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36591
36591
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36592
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
36592
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
36593
36593
|
}).transform((v2) => {
|
|
36594
36594
|
return remap(v2, {
|
|
36595
36595
|
_id: "id",
|
|
@@ -36609,7 +36609,7 @@ var init_createdataset = __esm(() => {
|
|
|
36609
36609
|
updatedById: stringType().optional(),
|
|
36610
36610
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36611
36611
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36612
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
36612
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
36613
36613
|
}).transform((v2) => {
|
|
36614
36614
|
return remap(v2, {
|
|
36615
36615
|
id: "_id",
|
|
@@ -37143,7 +37143,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37143
37143
|
created_by_id: stringType().optional(),
|
|
37144
37144
|
updated_by_id: stringType().optional(),
|
|
37145
37145
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37146
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
37146
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
37147
37147
|
}).transform((v2) => {
|
|
37148
37148
|
return remap(v2, {
|
|
37149
37149
|
_id: "id",
|
|
@@ -37164,7 +37164,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37164
37164
|
createdById: stringType().optional(),
|
|
37165
37165
|
updatedById: stringType().optional(),
|
|
37166
37166
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37167
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
37167
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
37168
37168
|
}).transform((v2) => {
|
|
37169
37169
|
return remap(v2, {
|
|
37170
37170
|
id: "_id",
|
|
@@ -37386,7 +37386,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37386
37386
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37387
37387
|
})(CreateDatasourceStatus$ ||= {});
|
|
37388
37388
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37389
|
-
_id: stringType().default("
|
|
37389
|
+
_id: stringType().default("01JVV8P6D1NFM6NMV0GTQG5JQ7"),
|
|
37390
37390
|
display_name: stringType(),
|
|
37391
37391
|
description: stringType().optional(),
|
|
37392
37392
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37409,7 +37409,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37409
37409
|
});
|
|
37410
37410
|
});
|
|
37411
37411
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37412
|
-
id: stringType().default("
|
|
37412
|
+
id: stringType().default("01JVV8P6D1NFM6NMV0GTQG5JQ7"),
|
|
37413
37413
|
displayName: stringType(),
|
|
37414
37414
|
description: stringType().optional(),
|
|
37415
37415
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -45996,7 +45996,7 @@ var init_fileget = __esm(() => {
|
|
|
45996
45996
|
bytes: numberType(),
|
|
45997
45997
|
file_name: stringType(),
|
|
45998
45998
|
workspace_id: stringType(),
|
|
45999
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
45999
|
+
created: stringType().datetime({ offset: true }).default("2025-05-22T05:50:29.352Z").transform((v2) => new Date(v2))
|
|
46000
46000
|
}).transform((v2) => {
|
|
46001
46001
|
return remap(v2, {
|
|
46002
46002
|
_id: "id",
|
|
@@ -46012,7 +46012,7 @@ var init_fileget = __esm(() => {
|
|
|
46012
46012
|
bytes: numberType(),
|
|
46013
46013
|
fileName: stringType(),
|
|
46014
46014
|
workspaceId: stringType(),
|
|
46015
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46015
|
+
created: dateType().default(() => new Date("2025-05-22T05:50:29.352Z")).transform((v2) => v2.toISOString())
|
|
46016
46016
|
}).transform((v2) => {
|
|
46017
46017
|
return remap(v2, {
|
|
46018
46018
|
id: "_id",
|
|
@@ -46083,7 +46083,7 @@ var init_filelist = __esm(() => {
|
|
|
46083
46083
|
bytes: numberType(),
|
|
46084
46084
|
file_name: stringType(),
|
|
46085
46085
|
workspace_id: stringType(),
|
|
46086
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
46086
|
+
created: stringType().datetime({ offset: true }).default("2025-05-22T05:50:29.352Z").transform((v2) => new Date(v2))
|
|
46087
46087
|
}).transform((v2) => {
|
|
46088
46088
|
return remap(v2, {
|
|
46089
46089
|
_id: "id",
|
|
@@ -46099,7 +46099,7 @@ var init_filelist = __esm(() => {
|
|
|
46099
46099
|
bytes: numberType(),
|
|
46100
46100
|
fileName: stringType(),
|
|
46101
46101
|
workspaceId: stringType(),
|
|
46102
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46102
|
+
created: dateType().default(() => new Date("2025-05-22T05:50:29.352Z")).transform((v2) => v2.toISOString())
|
|
46103
46103
|
}).transform((v2) => {
|
|
46104
46104
|
return remap(v2, {
|
|
46105
46105
|
id: "_id",
|
|
@@ -46231,7 +46231,7 @@ var init_fileupload = __esm(() => {
|
|
|
46231
46231
|
bytes: numberType(),
|
|
46232
46232
|
file_name: stringType(),
|
|
46233
46233
|
workspace_id: stringType(),
|
|
46234
|
-
created: stringType().datetime({ offset: true }).default("2025-05-
|
|
46234
|
+
created: stringType().datetime({ offset: true }).default("2025-05-22T05:50:29.352Z").transform((v2) => new Date(v2))
|
|
46235
46235
|
}).transform((v2) => {
|
|
46236
46236
|
return remap(v2, {
|
|
46237
46237
|
_id: "id",
|
|
@@ -46247,7 +46247,7 @@ var init_fileupload = __esm(() => {
|
|
|
46247
46247
|
bytes: numberType(),
|
|
46248
46248
|
fileName: stringType(),
|
|
46249
46249
|
workspaceId: stringType(),
|
|
46250
|
-
created: dateType().default(() => new Date("2025-05-
|
|
46250
|
+
created: dateType().default(() => new Date("2025-05-22T05:50:29.352Z")).transform((v2) => v2.toISOString())
|
|
46251
46251
|
}).transform((v2) => {
|
|
46252
46252
|
return remap(v2, {
|
|
46253
46253
|
id: "_id",
|
|
@@ -48646,7 +48646,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48646
48646
|
created_by_id: stringType().optional(),
|
|
48647
48647
|
updated_by_id: stringType().optional(),
|
|
48648
48648
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48649
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48649
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
48650
48650
|
}).transform((v2) => {
|
|
48651
48651
|
return remap(v2, {
|
|
48652
48652
|
_id: "id",
|
|
@@ -48667,7 +48667,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
48667
48667
|
createdById: stringType().optional(),
|
|
48668
48668
|
updatedById: stringType().optional(),
|
|
48669
48669
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48670
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48670
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
48671
48671
|
}).transform((v2) => {
|
|
48672
48672
|
return remap(v2, {
|
|
48673
48673
|
id: "_id",
|
|
@@ -48775,7 +48775,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48775
48775
|
updated_by_id: stringType().optional(),
|
|
48776
48776
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
48777
48777
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
48778
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
48778
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
48779
48779
|
}).transform((v2) => {
|
|
48780
48780
|
return remap(v2, {
|
|
48781
48781
|
_id: "id",
|
|
@@ -48795,7 +48795,7 @@ var init_listdatasets = __esm(() => {
|
|
|
48795
48795
|
updatedById: stringType().optional(),
|
|
48796
48796
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
48797
48797
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
48798
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
48798
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
48799
48799
|
}).transform((v2) => {
|
|
48800
48800
|
return remap(v2, {
|
|
48801
48801
|
id: "_id",
|
|
@@ -48900,7 +48900,7 @@ var init_listdatasources = __esm(() => {
|
|
|
48900
48900
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
48901
48901
|
})(ListDatasourcesStatus$ ||= {});
|
|
48902
48902
|
ListDatasourcesData$inboundSchema = objectType({
|
|
48903
|
-
_id: stringType().default("
|
|
48903
|
+
_id: stringType().default("01JVV8P6D0YGSD58G9N093J39J"),
|
|
48904
48904
|
display_name: stringType(),
|
|
48905
48905
|
description: stringType().optional(),
|
|
48906
48906
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -48923,7 +48923,7 @@ var init_listdatasources = __esm(() => {
|
|
|
48923
48923
|
});
|
|
48924
48924
|
});
|
|
48925
48925
|
ListDatasourcesData$outboundSchema = objectType({
|
|
48926
|
-
id: stringType().default("
|
|
48926
|
+
id: stringType().default("01JVV8P6D0YGSD58G9N093J39J"),
|
|
48927
48927
|
displayName: stringType(),
|
|
48928
48928
|
description: stringType().optional(),
|
|
48929
48929
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -50120,7 +50120,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50120
50120
|
created_by_id: stringType().optional(),
|
|
50121
50121
|
updated_by_id: stringType().optional(),
|
|
50122
50122
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50123
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
50123
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
50124
50124
|
}).transform((v2) => {
|
|
50125
50125
|
return remap(v2, {
|
|
50126
50126
|
_id: "id",
|
|
@@ -50141,7 +50141,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50141
50141
|
createdById: stringType().optional(),
|
|
50142
50142
|
updatedById: stringType().optional(),
|
|
50143
50143
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50144
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
50144
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
50145
50145
|
}).transform((v2) => {
|
|
50146
50146
|
return remap(v2, {
|
|
50147
50147
|
id: "_id",
|
|
@@ -50212,7 +50212,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
50212
50212
|
updated_by_id: stringType().optional(),
|
|
50213
50213
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
50214
50214
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50215
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
50215
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
50216
50216
|
}).transform((v2) => {
|
|
50217
50217
|
return remap(v2, {
|
|
50218
50218
|
_id: "id",
|
|
@@ -50232,7 +50232,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
50232
50232
|
updatedById: stringType().optional(),
|
|
50233
50233
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
50234
50234
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50235
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
50235
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
50236
50236
|
}).transform((v2) => {
|
|
50237
50237
|
return remap(v2, {
|
|
50238
50238
|
id: "_id",
|
|
@@ -50290,7 +50290,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
50290
50290
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
50291
50291
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
50292
50292
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
50293
|
-
_id: stringType().default("
|
|
50293
|
+
_id: stringType().default("01JVV8P6D1EB42TE29YQ1205A8"),
|
|
50294
50294
|
display_name: stringType(),
|
|
50295
50295
|
description: stringType().optional(),
|
|
50296
50296
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -50313,7 +50313,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
50313
50313
|
});
|
|
50314
50314
|
});
|
|
50315
50315
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
50316
|
-
id: stringType().default("
|
|
50316
|
+
id: stringType().default("01JVV8P6D1EB42TE29YQ1205A8"),
|
|
50317
50317
|
displayName: stringType(),
|
|
50318
50318
|
description: stringType().optional(),
|
|
50319
50319
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -51793,7 +51793,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51793
51793
|
created_by_id: stringType().optional(),
|
|
51794
51794
|
updated_by_id: stringType().optional(),
|
|
51795
51795
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51796
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
51796
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
51797
51797
|
}).transform((v2) => {
|
|
51798
51798
|
return remap(v2, {
|
|
51799
51799
|
_id: "id",
|
|
@@ -51814,7 +51814,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
51814
51814
|
createdById: stringType().optional(),
|
|
51815
51815
|
updatedById: stringType().optional(),
|
|
51816
51816
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51817
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
51817
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
51818
51818
|
}).transform((v2) => {
|
|
51819
51819
|
return remap(v2, {
|
|
51820
51820
|
id: "_id",
|
|
@@ -51915,7 +51915,7 @@ var init_updatedataset = __esm(() => {
|
|
|
51915
51915
|
parent_id: stringType().optional(),
|
|
51916
51916
|
version: stringType().optional(),
|
|
51917
51917
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51918
|
-
updated: stringType().datetime({ offset: true }).default("2025-05-
|
|
51918
|
+
updated: stringType().datetime({ offset: true }).default("2025-05-22T05:50:26.701Z").transform((v2) => new Date(v2))
|
|
51919
51919
|
}).transform((v2) => {
|
|
51920
51920
|
return remap(v2, {
|
|
51921
51921
|
_id: "id",
|
|
@@ -51938,7 +51938,7 @@ var init_updatedataset = __esm(() => {
|
|
|
51938
51938
|
parentId: stringType().optional(),
|
|
51939
51939
|
version: stringType().optional(),
|
|
51940
51940
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51941
|
-
updated: dateType().default(() => new Date("2025-05-
|
|
51941
|
+
updated: dateType().default(() => new Date("2025-05-22T05:50:26.701Z")).transform((v2) => v2.toISOString())
|
|
51942
51942
|
}).transform((v2) => {
|
|
51943
51943
|
return remap(v2, {
|
|
51944
51944
|
id: "_id",
|
|
@@ -52019,7 +52019,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
52019
52019
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
52020
52020
|
})(UpdateDatasourceStatus$ ||= {});
|
|
52021
52021
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
52022
|
-
_id: stringType().default("
|
|
52022
|
+
_id: stringType().default("01JVV8P6D39S7DR158WM67TPMJ"),
|
|
52023
52023
|
display_name: stringType(),
|
|
52024
52024
|
description: stringType().optional(),
|
|
52025
52025
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -52042,7 +52042,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
52042
52042
|
});
|
|
52043
52043
|
});
|
|
52044
52044
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
52045
|
-
id: stringType().default("
|
|
52045
|
+
id: stringType().default("01JVV8P6D39S7DR158WM67TPMJ"),
|
|
52046
52046
|
displayName: stringType(),
|
|
52047
52047
|
description: stringType().optional(),
|
|
52048
52048
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -60835,7 +60835,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
60835
60835
|
function createMCPServer(deps) {
|
|
60836
60836
|
const server = new McpServer({
|
|
60837
60837
|
name: "Orq",
|
|
60838
|
-
version: "3.6.0-rc.
|
|
60838
|
+
version: "3.6.0-rc.25"
|
|
60839
60839
|
});
|
|
60840
60840
|
const client = new OrqCore({
|
|
60841
60841
|
apiKey: deps.apiKey,
|
|
@@ -62171,7 +62171,7 @@ var routes = rn({
|
|
|
62171
62171
|
var app = Ve(routes, {
|
|
62172
62172
|
name: "mcp",
|
|
62173
62173
|
versionInfo: {
|
|
62174
|
-
currentVersion: "3.6.0-rc.
|
|
62174
|
+
currentVersion: "3.6.0-rc.25"
|
|
62175
62175
|
}
|
|
62176
62176
|
});
|
|
62177
62177
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -62179,5 +62179,5 @@ export {
|
|
|
62179
62179
|
app
|
|
62180
62180
|
};
|
|
62181
62181
|
|
|
62182
|
-
//# debugId=
|
|
62182
|
+
//# debugId=4920385F096C57A964756E2164756E21
|
|
62183
62183
|
//# sourceMappingURL=mcp-server.js.map
|