@orq-ai/node 3.7.0-rc.3 → 3.7.0-rc.4
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 +37 -37
- package/bin/mcp-server.js.map +20 -20
- 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/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/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
|
@@ -34272,9 +34272,9 @@ var init_config = __esm(() => {
|
|
|
34272
34272
|
SDK_METADATA = {
|
|
34273
34273
|
language: "typescript",
|
|
34274
34274
|
openapiDocVersion: "2.0",
|
|
34275
|
-
sdkVersion: "3.7.0-rc.
|
|
34275
|
+
sdkVersion: "3.7.0-rc.4",
|
|
34276
34276
|
genVersion: "2.616.1",
|
|
34277
|
-
userAgent: "speakeasy-sdk/typescript 3.7.0-rc.
|
|
34277
|
+
userAgent: "speakeasy-sdk/typescript 3.7.0-rc.4 2.616.1 2.0 @orq-ai/node"
|
|
34278
34278
|
};
|
|
34279
34279
|
});
|
|
34280
34280
|
|
|
@@ -36074,7 +36074,7 @@ var init_createcontact = __esm(() => {
|
|
|
36074
36074
|
tags: arrayType(stringType()).optional(),
|
|
36075
36075
|
metadata: recordType(anyType()).optional(),
|
|
36076
36076
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36077
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
36077
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
36078
36078
|
}).transform((v2) => {
|
|
36079
36079
|
return remap(v2, {
|
|
36080
36080
|
external_id: "externalId",
|
|
@@ -36091,7 +36091,7 @@ var init_createcontact = __esm(() => {
|
|
|
36091
36091
|
tags: arrayType(stringType()).optional(),
|
|
36092
36092
|
metadata: recordType(anyType()).optional(),
|
|
36093
36093
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36094
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
36094
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
36095
36095
|
}).transform((v2) => {
|
|
36096
36096
|
return remap(v2, {
|
|
36097
36097
|
externalId: "external_id",
|
|
@@ -36161,7 +36161,7 @@ var init_createdataset = __esm(() => {
|
|
|
36161
36161
|
updated_by_id: stringType().optional(),
|
|
36162
36162
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36163
36163
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36164
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
36164
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
36165
36165
|
}).transform((v2) => {
|
|
36166
36166
|
return remap(v2, {
|
|
36167
36167
|
_id: "id",
|
|
@@ -36181,7 +36181,7 @@ var init_createdataset = __esm(() => {
|
|
|
36181
36181
|
updatedById: stringType().optional(),
|
|
36182
36182
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36183
36183
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36184
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
36184
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
36185
36185
|
}).transform((v2) => {
|
|
36186
36186
|
return remap(v2, {
|
|
36187
36187
|
id: "_id",
|
|
@@ -37403,7 +37403,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37403
37403
|
created_by_id: stringType().optional(),
|
|
37404
37404
|
updated_by_id: stringType().optional(),
|
|
37405
37405
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37406
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
37406
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
37407
37407
|
}).transform((v2) => {
|
|
37408
37408
|
return remap(v2, {
|
|
37409
37409
|
_id: "id",
|
|
@@ -37430,7 +37430,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37430
37430
|
createdById: stringType().optional(),
|
|
37431
37431
|
updatedById: stringType().optional(),
|
|
37432
37432
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37433
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
37433
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
37434
37434
|
}).transform((v2) => {
|
|
37435
37435
|
return remap(v2, {
|
|
37436
37436
|
id: "_id",
|
|
@@ -37652,7 +37652,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37652
37652
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37653
37653
|
})(CreateDatasourceStatus$ ||= {});
|
|
37654
37654
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37655
|
-
_id: stringType().default("
|
|
37655
|
+
_id: stringType().default("01JWR1JP0DRD4K9QJ9PB8K59X4"),
|
|
37656
37656
|
display_name: stringType(),
|
|
37657
37657
|
description: stringType().optional(),
|
|
37658
37658
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37675,7 +37675,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37675
37675
|
});
|
|
37676
37676
|
});
|
|
37677
37677
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37678
|
-
id: stringType().default("
|
|
37678
|
+
id: stringType().default("01JWR1JP0DRD4K9QJ9PB8K59X4"),
|
|
37679
37679
|
displayName: stringType(),
|
|
37680
37680
|
description: stringType().optional(),
|
|
37681
37681
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -45986,7 +45986,7 @@ var init_fileget = __esm(() => {
|
|
|
45986
45986
|
bytes: numberType(),
|
|
45987
45987
|
file_name: stringType(),
|
|
45988
45988
|
workspace_id: stringType(),
|
|
45989
|
-
created: stringType().datetime({ offset: true }).default("2025-06-
|
|
45989
|
+
created: stringType().datetime({ offset: true }).default("2025-06-02T10:04:12.553Z").transform((v2) => new Date(v2))
|
|
45990
45990
|
}).transform((v2) => {
|
|
45991
45991
|
return remap(v2, {
|
|
45992
45992
|
_id: "id",
|
|
@@ -46002,7 +46002,7 @@ var init_fileget = __esm(() => {
|
|
|
46002
46002
|
bytes: numberType(),
|
|
46003
46003
|
fileName: stringType(),
|
|
46004
46004
|
workspaceId: stringType(),
|
|
46005
|
-
created: dateType().default(() => new Date("2025-06-
|
|
46005
|
+
created: dateType().default(() => new Date("2025-06-02T10:04:12.553Z")).transform((v2) => v2.toISOString())
|
|
46006
46006
|
}).transform((v2) => {
|
|
46007
46007
|
return remap(v2, {
|
|
46008
46008
|
id: "_id",
|
|
@@ -46073,7 +46073,7 @@ var init_filelist = __esm(() => {
|
|
|
46073
46073
|
bytes: numberType(),
|
|
46074
46074
|
file_name: stringType(),
|
|
46075
46075
|
workspace_id: stringType(),
|
|
46076
|
-
created: stringType().datetime({ offset: true }).default("2025-06-
|
|
46076
|
+
created: stringType().datetime({ offset: true }).default("2025-06-02T10:04:12.553Z").transform((v2) => new Date(v2))
|
|
46077
46077
|
}).transform((v2) => {
|
|
46078
46078
|
return remap(v2, {
|
|
46079
46079
|
_id: "id",
|
|
@@ -46089,7 +46089,7 @@ var init_filelist = __esm(() => {
|
|
|
46089
46089
|
bytes: numberType(),
|
|
46090
46090
|
fileName: stringType(),
|
|
46091
46091
|
workspaceId: stringType(),
|
|
46092
|
-
created: dateType().default(() => new Date("2025-06-
|
|
46092
|
+
created: dateType().default(() => new Date("2025-06-02T10:04:12.553Z")).transform((v2) => v2.toISOString())
|
|
46093
46093
|
}).transform((v2) => {
|
|
46094
46094
|
return remap(v2, {
|
|
46095
46095
|
id: "_id",
|
|
@@ -46221,7 +46221,7 @@ var init_fileupload = __esm(() => {
|
|
|
46221
46221
|
bytes: numberType(),
|
|
46222
46222
|
file_name: stringType(),
|
|
46223
46223
|
workspace_id: stringType(),
|
|
46224
|
-
created: stringType().datetime({ offset: true }).default("2025-06-
|
|
46224
|
+
created: stringType().datetime({ offset: true }).default("2025-06-02T10:04:12.553Z").transform((v2) => new Date(v2))
|
|
46225
46225
|
}).transform((v2) => {
|
|
46226
46226
|
return remap(v2, {
|
|
46227
46227
|
_id: "id",
|
|
@@ -46237,7 +46237,7 @@ var init_fileupload = __esm(() => {
|
|
|
46237
46237
|
bytes: numberType(),
|
|
46238
46238
|
fileName: stringType(),
|
|
46239
46239
|
workspaceId: stringType(),
|
|
46240
|
-
created: dateType().default(() => new Date("2025-06-
|
|
46240
|
+
created: dateType().default(() => new Date("2025-06-02T10:04:12.553Z")).transform((v2) => v2.toISOString())
|
|
46241
46241
|
}).transform((v2) => {
|
|
46242
46242
|
return remap(v2, {
|
|
46243
46243
|
id: "_id",
|
|
@@ -49117,7 +49117,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
49117
49117
|
created_by_id: stringType().optional(),
|
|
49118
49118
|
updated_by_id: stringType().optional(),
|
|
49119
49119
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49120
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
49120
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
49121
49121
|
}).transform((v2) => {
|
|
49122
49122
|
return remap(v2, {
|
|
49123
49123
|
_id: "id",
|
|
@@ -49144,7 +49144,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
49144
49144
|
createdById: stringType().optional(),
|
|
49145
49145
|
updatedById: stringType().optional(),
|
|
49146
49146
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49147
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
49147
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
49148
49148
|
}).transform((v2) => {
|
|
49149
49149
|
return remap(v2, {
|
|
49150
49150
|
id: "_id",
|
|
@@ -49252,7 +49252,7 @@ var init_listdatasets = __esm(() => {
|
|
|
49252
49252
|
updated_by_id: stringType().optional(),
|
|
49253
49253
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
49254
49254
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49255
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
49255
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
49256
49256
|
}).transform((v2) => {
|
|
49257
49257
|
return remap(v2, {
|
|
49258
49258
|
_id: "id",
|
|
@@ -49272,7 +49272,7 @@ var init_listdatasets = __esm(() => {
|
|
|
49272
49272
|
updatedById: stringType().optional(),
|
|
49273
49273
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
49274
49274
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49275
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
49275
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
49276
49276
|
}).transform((v2) => {
|
|
49277
49277
|
return remap(v2, {
|
|
49278
49278
|
id: "_id",
|
|
@@ -49377,7 +49377,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49377
49377
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
49378
49378
|
})(ListDatasourcesStatus$ ||= {});
|
|
49379
49379
|
ListDatasourcesData$inboundSchema = objectType({
|
|
49380
|
-
_id: stringType().default("
|
|
49380
|
+
_id: stringType().default("01JWR1JP0CACMP3M76WFBQ34GV"),
|
|
49381
49381
|
display_name: stringType(),
|
|
49382
49382
|
description: stringType().optional(),
|
|
49383
49383
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -49400,7 +49400,7 @@ var init_listdatasources = __esm(() => {
|
|
|
49400
49400
|
});
|
|
49401
49401
|
});
|
|
49402
49402
|
ListDatasourcesData$outboundSchema = objectType({
|
|
49403
|
-
id: stringType().default("
|
|
49403
|
+
id: stringType().default("01JWR1JP0CACMP3M76WFBQ34GV"),
|
|
49404
49404
|
displayName: stringType(),
|
|
49405
49405
|
description: stringType().optional(),
|
|
49406
49406
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -50984,7 +50984,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
50984
50984
|
created_by_id: stringType().optional(),
|
|
50985
50985
|
updated_by_id: stringType().optional(),
|
|
50986
50986
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50987
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
50987
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
50988
50988
|
}).transform((v2) => {
|
|
50989
50989
|
return remap(v2, {
|
|
50990
50990
|
_id: "id",
|
|
@@ -51011,7 +51011,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
51011
51011
|
createdById: stringType().optional(),
|
|
51012
51012
|
updatedById: stringType().optional(),
|
|
51013
51013
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51014
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
51014
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
51015
51015
|
}).transform((v2) => {
|
|
51016
51016
|
return remap(v2, {
|
|
51017
51017
|
id: "_id",
|
|
@@ -51082,7 +51082,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
51082
51082
|
updated_by_id: stringType().optional(),
|
|
51083
51083
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
51084
51084
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51085
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
51085
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
51086
51086
|
}).transform((v2) => {
|
|
51087
51087
|
return remap(v2, {
|
|
51088
51088
|
_id: "id",
|
|
@@ -51102,7 +51102,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
51102
51102
|
updatedById: stringType().optional(),
|
|
51103
51103
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
51104
51104
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51105
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
51105
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
51106
51106
|
}).transform((v2) => {
|
|
51107
51107
|
return remap(v2, {
|
|
51108
51108
|
id: "_id",
|
|
@@ -51160,7 +51160,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
51160
51160
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
51161
51161
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
51162
51162
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
51163
|
-
_id: stringType().default("
|
|
51163
|
+
_id: stringType().default("01JWR1JP0DCK5Q3J6ZZKKQEM7J"),
|
|
51164
51164
|
display_name: stringType(),
|
|
51165
51165
|
description: stringType().optional(),
|
|
51166
51166
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -51183,7 +51183,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
51183
51183
|
});
|
|
51184
51184
|
});
|
|
51185
51185
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
51186
|
-
id: stringType().default("
|
|
51186
|
+
id: stringType().default("01JWR1JP0DCK5Q3J6ZZKKQEM7J"),
|
|
51187
51187
|
displayName: stringType(),
|
|
51188
51188
|
description: stringType().optional(),
|
|
51189
51189
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -53121,7 +53121,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
53121
53121
|
created_by_id: stringType().optional(),
|
|
53122
53122
|
updated_by_id: stringType().optional(),
|
|
53123
53123
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53124
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
53124
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
53125
53125
|
}).transform((v2) => {
|
|
53126
53126
|
return remap(v2, {
|
|
53127
53127
|
_id: "id",
|
|
@@ -53148,7 +53148,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
53148
53148
|
createdById: stringType().optional(),
|
|
53149
53149
|
updatedById: stringType().optional(),
|
|
53150
53150
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53151
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
53151
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
53152
53152
|
}).transform((v2) => {
|
|
53153
53153
|
return remap(v2, {
|
|
53154
53154
|
id: "_id",
|
|
@@ -53249,7 +53249,7 @@ var init_updatedataset = __esm(() => {
|
|
|
53249
53249
|
parent_id: stringType().optional(),
|
|
53250
53250
|
version: stringType().optional(),
|
|
53251
53251
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53252
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
53252
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-02T10:04:09.782Z").transform((v2) => new Date(v2))
|
|
53253
53253
|
}).transform((v2) => {
|
|
53254
53254
|
return remap(v2, {
|
|
53255
53255
|
_id: "id",
|
|
@@ -53272,7 +53272,7 @@ var init_updatedataset = __esm(() => {
|
|
|
53272
53272
|
parentId: stringType().optional(),
|
|
53273
53273
|
version: stringType().optional(),
|
|
53274
53274
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53275
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
53275
|
+
updated: dateType().default(() => new Date("2025-06-02T10:04:09.782Z")).transform((v2) => v2.toISOString())
|
|
53276
53276
|
}).transform((v2) => {
|
|
53277
53277
|
return remap(v2, {
|
|
53278
53278
|
id: "_id",
|
|
@@ -53353,7 +53353,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
53353
53353
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
53354
53354
|
})(UpdateDatasourceStatus$ ||= {});
|
|
53355
53355
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
53356
|
-
_id: stringType().default("
|
|
53356
|
+
_id: stringType().default("01JWR1JP0EKK2794P2SX49ZCFB"),
|
|
53357
53357
|
display_name: stringType(),
|
|
53358
53358
|
description: stringType().optional(),
|
|
53359
53359
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -53376,7 +53376,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
53376
53376
|
});
|
|
53377
53377
|
});
|
|
53378
53378
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
53379
|
-
id: stringType().default("
|
|
53379
|
+
id: stringType().default("01JWR1JP0EKK2794P2SX49ZCFB"),
|
|
53380
53380
|
displayName: stringType(),
|
|
53381
53381
|
description: stringType().optional(),
|
|
53382
53382
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -62036,7 +62036,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
62036
62036
|
function createMCPServer(deps) {
|
|
62037
62037
|
const server = new McpServer({
|
|
62038
62038
|
name: "Orq",
|
|
62039
|
-
version: "3.7.0-rc.
|
|
62039
|
+
version: "3.7.0-rc.4"
|
|
62040
62040
|
});
|
|
62041
62041
|
const client = new OrqCore({
|
|
62042
62042
|
apiKey: deps.apiKey,
|
|
@@ -63370,7 +63370,7 @@ var routes = rn({
|
|
|
63370
63370
|
var app = Ve(routes, {
|
|
63371
63371
|
name: "mcp",
|
|
63372
63372
|
versionInfo: {
|
|
63373
|
-
currentVersion: "3.7.0-rc.
|
|
63373
|
+
currentVersion: "3.7.0-rc.4"
|
|
63374
63374
|
}
|
|
63375
63375
|
});
|
|
63376
63376
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -63378,5 +63378,5 @@ export {
|
|
|
63378
63378
|
app
|
|
63379
63379
|
};
|
|
63380
63380
|
|
|
63381
|
-
//# debugId=
|
|
63381
|
+
//# debugId=2806B01D959FDB7664756E2164756E21
|
|
63382
63382
|
//# sourceMappingURL=mcp-server.js.map
|