@orq-ai/node 3.3.0-rc.16 → 3.3.0-rc.17
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 +54 -46
- package/bin/mcp-server.js.map +23 -23
- package/docs/sdks/datasets/README.md +6 -0
- package/docs/sdks/prompts/README.md +6 -0
- 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/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.d.ts +15 -2
- package/models/operations/updatedataset.d.ts.map +1 -1
- package/models/operations/updatedataset.js +10 -4
- package/models/operations/updatedataset.js.map +1 -1
- package/models/operations/updateprompt.d.ts +5 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +2 -0
- package/models/operations/updateprompt.js.map +1 -1
- 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/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 +25 -6
- package/src/models/operations/updateprompt.ts +7 -0
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.
|
|
34235
|
-
genVersion: "2.563.
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 3.3.0-rc.
|
|
34234
|
+
sdkVersion: "3.3.0-rc.17",
|
|
34235
|
+
genVersion: "2.563.1",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 3.3.0-rc.17 2.563.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-03-
|
|
36271
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").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-03-
|
|
36292
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).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_01JQPKBGKTM47D8EP3NPPXN2BJ"),
|
|
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_01JQPKBGKTM47D8EP3NPPXN2BJ"),
|
|
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-03-
|
|
36589
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").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-03-
|
|
36606
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).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-03-
|
|
36676
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").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-03-
|
|
36696
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).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-03-
|
|
37132
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").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-03-
|
|
37153
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).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("01JQPKBGKR9S3D5KEFCD2FJDA4"),
|
|
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("01JQPKBGKR9S3D5KEFCD2FJDA4"),
|
|
37399
37399
|
displayName: stringType(),
|
|
37400
37400
|
description: stringType().optional(),
|
|
37401
37401
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -43920,7 +43920,7 @@ var init_fileget = __esm(() => {
|
|
|
43920
43920
|
bytes: numberType(),
|
|
43921
43921
|
file_name: stringType(),
|
|
43922
43922
|
workspace_id: stringType(),
|
|
43923
|
-
created: stringType().datetime({ offset: true }).default("2025-03-
|
|
43923
|
+
created: stringType().datetime({ offset: true }).default("2025-03-31T17:17:54.028Z").transform((v2) => new Date(v2))
|
|
43924
43924
|
}).transform((v2) => {
|
|
43925
43925
|
return remap(v2, {
|
|
43926
43926
|
_id: "id",
|
|
@@ -43936,7 +43936,7 @@ var init_fileget = __esm(() => {
|
|
|
43936
43936
|
bytes: numberType(),
|
|
43937
43937
|
fileName: stringType(),
|
|
43938
43938
|
workspaceId: stringType(),
|
|
43939
|
-
created: dateType().default(() => new Date("2025-03-
|
|
43939
|
+
created: dateType().default(() => new Date("2025-03-31T17:17:54.028Z")).transform((v2) => v2.toISOString())
|
|
43940
43940
|
}).transform((v2) => {
|
|
43941
43941
|
return remap(v2, {
|
|
43942
43942
|
id: "_id",
|
|
@@ -44007,7 +44007,7 @@ var init_filelist = __esm(() => {
|
|
|
44007
44007
|
bytes: numberType(),
|
|
44008
44008
|
file_name: stringType(),
|
|
44009
44009
|
workspace_id: stringType(),
|
|
44010
|
-
created: stringType().datetime({ offset: true }).default("2025-03-
|
|
44010
|
+
created: stringType().datetime({ offset: true }).default("2025-03-31T17:17:54.028Z").transform((v2) => new Date(v2))
|
|
44011
44011
|
}).transform((v2) => {
|
|
44012
44012
|
return remap(v2, {
|
|
44013
44013
|
_id: "id",
|
|
@@ -44023,7 +44023,7 @@ var init_filelist = __esm(() => {
|
|
|
44023
44023
|
bytes: numberType(),
|
|
44024
44024
|
fileName: stringType(),
|
|
44025
44025
|
workspaceId: stringType(),
|
|
44026
|
-
created: dateType().default(() => new Date("2025-03-
|
|
44026
|
+
created: dateType().default(() => new Date("2025-03-31T17:17:54.028Z")).transform((v2) => v2.toISOString())
|
|
44027
44027
|
}).transform((v2) => {
|
|
44028
44028
|
return remap(v2, {
|
|
44029
44029
|
id: "_id",
|
|
@@ -44155,7 +44155,7 @@ var init_fileupload = __esm(() => {
|
|
|
44155
44155
|
bytes: numberType(),
|
|
44156
44156
|
file_name: stringType(),
|
|
44157
44157
|
workspace_id: stringType(),
|
|
44158
|
-
created: stringType().datetime({ offset: true }).default("2025-03-
|
|
44158
|
+
created: stringType().datetime({ offset: true }).default("2025-03-31T17:17:54.028Z").transform((v2) => new Date(v2))
|
|
44159
44159
|
}).transform((v2) => {
|
|
44160
44160
|
return remap(v2, {
|
|
44161
44161
|
_id: "id",
|
|
@@ -44171,7 +44171,7 @@ var init_fileupload = __esm(() => {
|
|
|
44171
44171
|
bytes: numberType(),
|
|
44172
44172
|
fileName: stringType(),
|
|
44173
44173
|
workspaceId: stringType(),
|
|
44174
|
-
created: dateType().default(() => new Date("2025-03-
|
|
44174
|
+
created: dateType().default(() => new Date("2025-03-31T17:17:54.028Z")).transform((v2) => v2.toISOString())
|
|
44175
44175
|
}).transform((v2) => {
|
|
44176
44176
|
return remap(v2, {
|
|
44177
44177
|
id: "_id",
|
|
@@ -46467,7 +46467,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
46467
46467
|
created_by_id: stringType().optional(),
|
|
46468
46468
|
updated_by_id: stringType().optional(),
|
|
46469
46469
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46470
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
46470
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").transform((v2) => new Date(v2))
|
|
46471
46471
|
}).transform((v2) => {
|
|
46472
46472
|
return remap(v2, {
|
|
46473
46473
|
_id: "id",
|
|
@@ -46488,7 +46488,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
46488
46488
|
createdById: stringType().optional(),
|
|
46489
46489
|
updatedById: stringType().optional(),
|
|
46490
46490
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46491
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
46491
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).transform((v2) => v2.toISOString())
|
|
46492
46492
|
}).transform((v2) => {
|
|
46493
46493
|
return remap(v2, {
|
|
46494
46494
|
id: "_id",
|
|
@@ -46596,7 +46596,7 @@ var init_listdatasets = __esm(() => {
|
|
|
46596
46596
|
updated_by_id: stringType().optional(),
|
|
46597
46597
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
46598
46598
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46599
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
46599
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").transform((v2) => new Date(v2))
|
|
46600
46600
|
}).transform((v2) => {
|
|
46601
46601
|
return remap(v2, {
|
|
46602
46602
|
_id: "id",
|
|
@@ -46616,7 +46616,7 @@ var init_listdatasets = __esm(() => {
|
|
|
46616
46616
|
updatedById: stringType().optional(),
|
|
46617
46617
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
46618
46618
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46619
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
46619
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).transform((v2) => v2.toISOString())
|
|
46620
46620
|
}).transform((v2) => {
|
|
46621
46621
|
return remap(v2, {
|
|
46622
46622
|
id: "_id",
|
|
@@ -46721,7 +46721,7 @@ var init_listdatasources = __esm(() => {
|
|
|
46721
46721
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
46722
46722
|
})(ListDatasourcesStatus$ ||= {});
|
|
46723
46723
|
ListDatasourcesData$inboundSchema = objectType({
|
|
46724
|
-
_id: stringType().default("
|
|
46724
|
+
_id: stringType().default("01JQPKBGKQ0YN3BN71Z0P51P3C"),
|
|
46725
46725
|
display_name: stringType(),
|
|
46726
46726
|
description: stringType().optional(),
|
|
46727
46727
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -46744,7 +46744,7 @@ var init_listdatasources = __esm(() => {
|
|
|
46744
46744
|
});
|
|
46745
46745
|
});
|
|
46746
46746
|
ListDatasourcesData$outboundSchema = objectType({
|
|
46747
|
-
id: stringType().default("
|
|
46747
|
+
id: stringType().default("01JQPKBGKQ0YN3BN71Z0P51P3C"),
|
|
46748
46748
|
displayName: stringType(),
|
|
46749
46749
|
description: stringType().optional(),
|
|
46750
46750
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -47835,7 +47835,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
47835
47835
|
created_by_id: stringType().optional(),
|
|
47836
47836
|
updated_by_id: stringType().optional(),
|
|
47837
47837
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
47838
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
47838
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").transform((v2) => new Date(v2))
|
|
47839
47839
|
}).transform((v2) => {
|
|
47840
47840
|
return remap(v2, {
|
|
47841
47841
|
_id: "id",
|
|
@@ -47856,7 +47856,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
47856
47856
|
createdById: stringType().optional(),
|
|
47857
47857
|
updatedById: stringType().optional(),
|
|
47858
47858
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
47859
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
47859
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).transform((v2) => v2.toISOString())
|
|
47860
47860
|
}).transform((v2) => {
|
|
47861
47861
|
return remap(v2, {
|
|
47862
47862
|
id: "_id",
|
|
@@ -47927,7 +47927,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
47927
47927
|
updated_by_id: stringType().optional(),
|
|
47928
47928
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
47929
47929
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
47930
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
47930
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").transform((v2) => new Date(v2))
|
|
47931
47931
|
}).transform((v2) => {
|
|
47932
47932
|
return remap(v2, {
|
|
47933
47933
|
_id: "id",
|
|
@@ -47947,7 +47947,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
47947
47947
|
updatedById: stringType().optional(),
|
|
47948
47948
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
47949
47949
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
47950
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
47950
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).transform((v2) => v2.toISOString())
|
|
47951
47951
|
}).transform((v2) => {
|
|
47952
47952
|
return remap(v2, {
|
|
47953
47953
|
id: "_id",
|
|
@@ -48005,7 +48005,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48005
48005
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
48006
48006
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
48007
48007
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
48008
|
-
_id: stringType().default("
|
|
48008
|
+
_id: stringType().default("01JQPKBGKRCYSQVPTTD4E2CD21"),
|
|
48009
48009
|
display_name: stringType(),
|
|
48010
48010
|
description: stringType().optional(),
|
|
48011
48011
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -48028,7 +48028,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
48028
48028
|
});
|
|
48029
48029
|
});
|
|
48030
48030
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
48031
|
-
id: stringType().default("
|
|
48031
|
+
id: stringType().default("01JQPKBGKRCYSQVPTTD4E2CD21"),
|
|
48032
48032
|
displayName: stringType(),
|
|
48033
48033
|
description: stringType().optional(),
|
|
48034
48034
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -49092,7 +49092,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
49092
49092
|
created_by_id: stringType().optional(),
|
|
49093
49093
|
updated_by_id: stringType().optional(),
|
|
49094
49094
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49095
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
49095
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").transform((v2) => new Date(v2))
|
|
49096
49096
|
}).transform((v2) => {
|
|
49097
49097
|
return remap(v2, {
|
|
49098
49098
|
_id: "id",
|
|
@@ -49113,7 +49113,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
49113
49113
|
createdById: stringType().optional(),
|
|
49114
49114
|
updatedById: stringType().optional(),
|
|
49115
49115
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49116
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
49116
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).transform((v2) => v2.toISOString())
|
|
49117
49117
|
}).transform((v2) => {
|
|
49118
49118
|
return remap(v2, {
|
|
49119
49119
|
id: "_id",
|
|
@@ -49136,17 +49136,23 @@ var init_updatedataset = __esm(() => {
|
|
|
49136
49136
|
init_lib();
|
|
49137
49137
|
init_primitives();
|
|
49138
49138
|
UpdateDatasetRequestBody$inboundSchema = objectType({
|
|
49139
|
-
display_name: stringType()
|
|
49139
|
+
display_name: stringType().optional(),
|
|
49140
|
+
project_id: stringType().optional(),
|
|
49141
|
+
path: stringType().optional()
|
|
49140
49142
|
}).transform((v2) => {
|
|
49141
49143
|
return remap(v2, {
|
|
49142
|
-
display_name: "displayName"
|
|
49144
|
+
display_name: "displayName",
|
|
49145
|
+
project_id: "projectId"
|
|
49143
49146
|
});
|
|
49144
49147
|
});
|
|
49145
49148
|
UpdateDatasetRequestBody$outboundSchema = objectType({
|
|
49146
|
-
displayName: stringType()
|
|
49149
|
+
displayName: stringType().optional(),
|
|
49150
|
+
projectId: stringType().optional(),
|
|
49151
|
+
path: stringType().optional()
|
|
49147
49152
|
}).transform((v2) => {
|
|
49148
49153
|
return remap(v2, {
|
|
49149
|
-
displayName: "display_name"
|
|
49154
|
+
displayName: "display_name",
|
|
49155
|
+
projectId: "project_id"
|
|
49150
49156
|
});
|
|
49151
49157
|
});
|
|
49152
49158
|
((UpdateDatasetRequestBody$) => {
|
|
@@ -49208,7 +49214,7 @@ var init_updatedataset = __esm(() => {
|
|
|
49208
49214
|
parent_id: stringType().optional(),
|
|
49209
49215
|
version: stringType().optional(),
|
|
49210
49216
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
49211
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
49217
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-31T17:17:52.525Z").transform((v2) => new Date(v2))
|
|
49212
49218
|
}).transform((v2) => {
|
|
49213
49219
|
return remap(v2, {
|
|
49214
49220
|
_id: "id",
|
|
@@ -49231,7 +49237,7 @@ var init_updatedataset = __esm(() => {
|
|
|
49231
49237
|
parentId: stringType().optional(),
|
|
49232
49238
|
version: stringType().optional(),
|
|
49233
49239
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
49234
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
49240
|
+
updated: dateType().default(() => new Date("2025-03-31T17:17:52.525Z")).transform((v2) => v2.toISOString())
|
|
49235
49241
|
}).transform((v2) => {
|
|
49236
49242
|
return remap(v2, {
|
|
49237
49243
|
id: "_id",
|
|
@@ -50094,7 +50100,8 @@ var init_updateprompt = __esm(() => {
|
|
|
50094
50100
|
display_name: stringType().optional(),
|
|
50095
50101
|
description: nullableType(stringType()).optional(),
|
|
50096
50102
|
prompt_config: lazyType(() => UpdatePromptPromptConfig$inboundSchema).optional(),
|
|
50097
|
-
metadata: lazyType(() => UpdatePromptMetadata$inboundSchema).optional()
|
|
50103
|
+
metadata: lazyType(() => UpdatePromptMetadata$inboundSchema).optional(),
|
|
50104
|
+
path: stringType().optional()
|
|
50098
50105
|
}).transform((v2) => {
|
|
50099
50106
|
return remap(v2, {
|
|
50100
50107
|
domain_id: "domainId",
|
|
@@ -50114,7 +50121,8 @@ var init_updateprompt = __esm(() => {
|
|
|
50114
50121
|
displayName: stringType().optional(),
|
|
50115
50122
|
description: nullableType(stringType()).optional(),
|
|
50116
50123
|
promptConfig: lazyType(() => UpdatePromptPromptConfig$outboundSchema).optional(),
|
|
50117
|
-
metadata: lazyType(() => UpdatePromptMetadata$outboundSchema).optional()
|
|
50124
|
+
metadata: lazyType(() => UpdatePromptMetadata$outboundSchema).optional(),
|
|
50125
|
+
path: stringType().optional()
|
|
50118
50126
|
}).transform((v2) => {
|
|
50119
50127
|
return remap(v2, {
|
|
50120
50128
|
domainId: "domain_id",
|
|
@@ -56572,7 +56580,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
56572
56580
|
function createMCPServer(deps) {
|
|
56573
56581
|
const server = new McpServer({
|
|
56574
56582
|
name: "Orq",
|
|
56575
|
-
version: "3.3.0-rc.
|
|
56583
|
+
version: "3.3.0-rc.17"
|
|
56576
56584
|
});
|
|
56577
56585
|
const client = new OrqCore({
|
|
56578
56586
|
apiKey: deps.apiKey,
|
|
@@ -57895,7 +57903,7 @@ var routes = rn({
|
|
|
57895
57903
|
var app = Ve(routes, {
|
|
57896
57904
|
name: "mcp",
|
|
57897
57905
|
versionInfo: {
|
|
57898
|
-
currentVersion: "3.3.0-rc.
|
|
57906
|
+
currentVersion: "3.3.0-rc.17"
|
|
57899
57907
|
}
|
|
57900
57908
|
});
|
|
57901
57909
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -57903,5 +57911,5 @@ export {
|
|
|
57903
57911
|
app
|
|
57904
57912
|
};
|
|
57905
57913
|
|
|
57906
|
-
//# debugId=
|
|
57914
|
+
//# debugId=8C624B3B77B91A0164756E2164756E21
|
|
57907
57915
|
//# sourceMappingURL=mcp-server.js.map
|