@orq-ai/node 3.8.0-rc.0 → 3.8.0-rc.1
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 +59 -59
- package/bin/mcp-server.js.map +24 -24
- 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/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listcontacts.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/retrievecontact.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/updatecontact.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/createeval.ts +16 -16
- 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/listcontacts.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/retrievecontact.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/updatecontact.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.8.0-rc.
|
|
34275
|
+
sdkVersion: "3.8.0-rc.1",
|
|
34276
34276
|
genVersion: "2.620.2",
|
|
34277
|
-
userAgent: "speakeasy-sdk/typescript 3.8.0-rc.
|
|
34277
|
+
userAgent: "speakeasy-sdk/typescript 3.8.0-rc.1 2.620.2 2.0 @orq-ai/node"
|
|
34278
34278
|
};
|
|
34279
34279
|
});
|
|
34280
34280
|
|
|
@@ -36075,7 +36075,7 @@ var init_createcontact = __esm(() => {
|
|
|
36075
36075
|
tags: arrayType(stringType()).optional(),
|
|
36076
36076
|
metadata: recordType(anyType()).optional(),
|
|
36077
36077
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36078
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
36078
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
36079
36079
|
}).transform((v2) => {
|
|
36080
36080
|
return remap(v2, {
|
|
36081
36081
|
_id: "id",
|
|
@@ -36095,7 +36095,7 @@ var init_createcontact = __esm(() => {
|
|
|
36095
36095
|
tags: arrayType(stringType()).optional(),
|
|
36096
36096
|
metadata: recordType(anyType()).optional(),
|
|
36097
36097
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36098
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
36098
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
36099
36099
|
}).transform((v2) => {
|
|
36100
36100
|
return remap(v2, {
|
|
36101
36101
|
id: "_id",
|
|
@@ -36167,7 +36167,7 @@ var init_createdataset = __esm(() => {
|
|
|
36167
36167
|
updated_by_id: stringType().optional(),
|
|
36168
36168
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36169
36169
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36170
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
36170
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
36171
36171
|
}).transform((v2) => {
|
|
36172
36172
|
return remap(v2, {
|
|
36173
36173
|
_id: "id",
|
|
@@ -36187,7 +36187,7 @@ var init_createdataset = __esm(() => {
|
|
|
36187
36187
|
updatedById: stringType().optional(),
|
|
36188
36188
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36189
36189
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36190
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
36190
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
36191
36191
|
}).transform((v2) => {
|
|
36192
36192
|
return remap(v2, {
|
|
36193
36193
|
id: "_id",
|
|
@@ -37409,7 +37409,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37409
37409
|
created_by_id: stringType().optional(),
|
|
37410
37410
|
updated_by_id: stringType().optional(),
|
|
37411
37411
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37412
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
37412
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
37413
37413
|
}).transform((v2) => {
|
|
37414
37414
|
return remap(v2, {
|
|
37415
37415
|
_id: "id",
|
|
@@ -37436,7 +37436,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37436
37436
|
createdById: stringType().optional(),
|
|
37437
37437
|
updatedById: stringType().optional(),
|
|
37438
37438
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37439
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
37439
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
37440
37440
|
}).transform((v2) => {
|
|
37441
37441
|
return remap(v2, {
|
|
37442
37442
|
id: "_id",
|
|
@@ -37658,7 +37658,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37658
37658
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37659
37659
|
})(CreateDatasourceStatus$ ||= {});
|
|
37660
37660
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37661
|
-
_id: stringType().default("
|
|
37661
|
+
_id: stringType().default("01JWWX75X1DQ5C4K058TB9AHJP"),
|
|
37662
37662
|
display_name: stringType(),
|
|
37663
37663
|
description: stringType().optional(),
|
|
37664
37664
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37681,7 +37681,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37681
37681
|
});
|
|
37682
37682
|
});
|
|
37683
37683
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37684
|
-
id: stringType().default("
|
|
37684
|
+
id: stringType().default("01JWWX75X1DQ5C4K058TB9AHJP"),
|
|
37685
37685
|
displayName: stringType(),
|
|
37686
37686
|
description: stringType().optional(),
|
|
37687
37687
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -38449,8 +38449,8 @@ var init_createeval = __esm(() => {
|
|
|
38449
38449
|
ResponseBodyPython$inboundSchema = objectType({
|
|
38450
38450
|
_id: stringType(),
|
|
38451
38451
|
description: stringType(),
|
|
38452
|
-
created: stringType().default("2025-06-
|
|
38453
|
-
updated: stringType().default("2025-06-
|
|
38452
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38453
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38454
38454
|
guardrail_config: unionType([
|
|
38455
38455
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
38456
38456
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -38467,8 +38467,8 @@ var init_createeval = __esm(() => {
|
|
|
38467
38467
|
ResponseBodyPython$outboundSchema = objectType({
|
|
38468
38468
|
id: stringType(),
|
|
38469
38469
|
description: stringType(),
|
|
38470
|
-
created: stringType().default("2025-06-
|
|
38471
|
-
updated: stringType().default("2025-06-
|
|
38470
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38471
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38472
38472
|
guardrailConfig: unionType([
|
|
38473
38473
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
38474
38474
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -38561,8 +38561,8 @@ var init_createeval = __esm(() => {
|
|
|
38561
38561
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
38562
38562
|
_id: stringType(),
|
|
38563
38563
|
description: stringType(),
|
|
38564
|
-
created: stringType().default("2025-06-
|
|
38565
|
-
updated: stringType().default("2025-06-
|
|
38564
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38565
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38566
38566
|
guardrail_config: unionType([
|
|
38567
38567
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
38568
38568
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -38582,8 +38582,8 @@ var init_createeval = __esm(() => {
|
|
|
38582
38582
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
38583
38583
|
id: stringType(),
|
|
38584
38584
|
description: stringType(),
|
|
38585
|
-
created: stringType().default("2025-06-
|
|
38586
|
-
updated: stringType().default("2025-06-
|
|
38585
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38586
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38587
38587
|
guardrailConfig: unionType([
|
|
38588
38588
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
38589
38589
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -38673,8 +38673,8 @@ var init_createeval = __esm(() => {
|
|
|
38673
38673
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
38674
38674
|
_id: stringType(),
|
|
38675
38675
|
description: stringType(),
|
|
38676
|
-
created: stringType().default("2025-06-
|
|
38677
|
-
updated: stringType().default("2025-06-
|
|
38676
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38677
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38678
38678
|
guardrail_config: unionType([
|
|
38679
38679
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
38680
38680
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -38691,8 +38691,8 @@ var init_createeval = __esm(() => {
|
|
|
38691
38691
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
38692
38692
|
id: stringType(),
|
|
38693
38693
|
description: stringType(),
|
|
38694
|
-
created: stringType().default("2025-06-
|
|
38695
|
-
updated: stringType().default("2025-06-
|
|
38694
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38695
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38696
38696
|
guardrailConfig: unionType([
|
|
38697
38697
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
38698
38698
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -38779,8 +38779,8 @@ var init_createeval = __esm(() => {
|
|
|
38779
38779
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
38780
38780
|
_id: stringType(),
|
|
38781
38781
|
description: stringType(),
|
|
38782
|
-
created: stringType().default("2025-06-
|
|
38783
|
-
updated: stringType().default("2025-06-
|
|
38782
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38783
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38784
38784
|
guardrail_config: unionType([
|
|
38785
38785
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
38786
38786
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -38798,8 +38798,8 @@ var init_createeval = __esm(() => {
|
|
|
38798
38798
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
38799
38799
|
id: stringType(),
|
|
38800
38800
|
description: stringType(),
|
|
38801
|
-
created: stringType().default("2025-06-
|
|
38802
|
-
updated: stringType().default("2025-06-
|
|
38801
|
+
created: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38802
|
+
updated: stringType().default("2025-06-04T07:24:12.605Z"),
|
|
38803
38803
|
guardrailConfig: unionType([
|
|
38804
38804
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
38805
38805
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -48433,7 +48433,7 @@ var init_fileget = __esm(() => {
|
|
|
48433
48433
|
bytes: numberType(),
|
|
48434
48434
|
file_name: stringType(),
|
|
48435
48435
|
workspace_id: stringType(),
|
|
48436
|
-
created: stringType().datetime({ offset: true }).default("2025-06-
|
|
48436
|
+
created: stringType().datetime({ offset: true }).default("2025-06-04T07:24:13.399Z").transform((v2) => new Date(v2))
|
|
48437
48437
|
}).transform((v2) => {
|
|
48438
48438
|
return remap(v2, {
|
|
48439
48439
|
_id: "id",
|
|
@@ -48449,7 +48449,7 @@ var init_fileget = __esm(() => {
|
|
|
48449
48449
|
bytes: numberType(),
|
|
48450
48450
|
fileName: stringType(),
|
|
48451
48451
|
workspaceId: stringType(),
|
|
48452
|
-
created: dateType().default(() => new Date("2025-06-
|
|
48452
|
+
created: dateType().default(() => new Date("2025-06-04T07:24:13.399Z")).transform((v2) => v2.toISOString())
|
|
48453
48453
|
}).transform((v2) => {
|
|
48454
48454
|
return remap(v2, {
|
|
48455
48455
|
id: "_id",
|
|
@@ -48520,7 +48520,7 @@ var init_filelist = __esm(() => {
|
|
|
48520
48520
|
bytes: numberType(),
|
|
48521
48521
|
file_name: stringType(),
|
|
48522
48522
|
workspace_id: stringType(),
|
|
48523
|
-
created: stringType().datetime({ offset: true }).default("2025-06-
|
|
48523
|
+
created: stringType().datetime({ offset: true }).default("2025-06-04T07:24:13.399Z").transform((v2) => new Date(v2))
|
|
48524
48524
|
}).transform((v2) => {
|
|
48525
48525
|
return remap(v2, {
|
|
48526
48526
|
_id: "id",
|
|
@@ -48536,7 +48536,7 @@ var init_filelist = __esm(() => {
|
|
|
48536
48536
|
bytes: numberType(),
|
|
48537
48537
|
fileName: stringType(),
|
|
48538
48538
|
workspaceId: stringType(),
|
|
48539
|
-
created: dateType().default(() => new Date("2025-06-
|
|
48539
|
+
created: dateType().default(() => new Date("2025-06-04T07:24:13.399Z")).transform((v2) => v2.toISOString())
|
|
48540
48540
|
}).transform((v2) => {
|
|
48541
48541
|
return remap(v2, {
|
|
48542
48542
|
id: "_id",
|
|
@@ -48668,7 +48668,7 @@ var init_fileupload = __esm(() => {
|
|
|
48668
48668
|
bytes: numberType(),
|
|
48669
48669
|
file_name: stringType(),
|
|
48670
48670
|
workspace_id: stringType(),
|
|
48671
|
-
created: stringType().datetime({ offset: true }).default("2025-06-
|
|
48671
|
+
created: stringType().datetime({ offset: true }).default("2025-06-04T07:24:13.399Z").transform((v2) => new Date(v2))
|
|
48672
48672
|
}).transform((v2) => {
|
|
48673
48673
|
return remap(v2, {
|
|
48674
48674
|
_id: "id",
|
|
@@ -48684,7 +48684,7 @@ var init_fileupload = __esm(() => {
|
|
|
48684
48684
|
bytes: numberType(),
|
|
48685
48685
|
fileName: stringType(),
|
|
48686
48686
|
workspaceId: stringType(),
|
|
48687
|
-
created: dateType().default(() => new Date("2025-06-
|
|
48687
|
+
created: dateType().default(() => new Date("2025-06-04T07:24:13.399Z")).transform((v2) => v2.toISOString())
|
|
48688
48688
|
}).transform((v2) => {
|
|
48689
48689
|
return remap(v2, {
|
|
48690
48690
|
id: "_id",
|
|
@@ -51082,7 +51082,7 @@ var init_listcontacts = __esm(() => {
|
|
|
51082
51082
|
tags: arrayType(stringType()).optional(),
|
|
51083
51083
|
metadata: recordType(anyType()).optional(),
|
|
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-04T07:24:10.431Z").transform((v2) => new Date(v2)),
|
|
51086
51086
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
51087
51087
|
}).transform((v2) => {
|
|
51088
51088
|
return remap(v2, {
|
|
@@ -51101,7 +51101,7 @@ var init_listcontacts = __esm(() => {
|
|
|
51101
51101
|
tags: arrayType(stringType()).optional(),
|
|
51102
51102
|
metadata: recordType(anyType()).optional(),
|
|
51103
51103
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51104
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
51104
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString()),
|
|
51105
51105
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
51106
51106
|
}).transform((v2) => {
|
|
51107
51107
|
return remap(v2, {
|
|
@@ -51716,7 +51716,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
51716
51716
|
created_by_id: stringType().optional(),
|
|
51717
51717
|
updated_by_id: stringType().optional(),
|
|
51718
51718
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51719
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
51719
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
51720
51720
|
}).transform((v2) => {
|
|
51721
51721
|
return remap(v2, {
|
|
51722
51722
|
_id: "id",
|
|
@@ -51743,7 +51743,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
51743
51743
|
createdById: stringType().optional(),
|
|
51744
51744
|
updatedById: stringType().optional(),
|
|
51745
51745
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51746
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
51746
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
51747
51747
|
}).transform((v2) => {
|
|
51748
51748
|
return remap(v2, {
|
|
51749
51749
|
id: "_id",
|
|
@@ -51851,7 +51851,7 @@ var init_listdatasets = __esm(() => {
|
|
|
51851
51851
|
updated_by_id: stringType().optional(),
|
|
51852
51852
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
51853
51853
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
51854
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
51854
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
51855
51855
|
}).transform((v2) => {
|
|
51856
51856
|
return remap(v2, {
|
|
51857
51857
|
_id: "id",
|
|
@@ -51871,7 +51871,7 @@ var init_listdatasets = __esm(() => {
|
|
|
51871
51871
|
updatedById: stringType().optional(),
|
|
51872
51872
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
51873
51873
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
51874
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
51874
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
51875
51875
|
}).transform((v2) => {
|
|
51876
51876
|
return remap(v2, {
|
|
51877
51877
|
id: "_id",
|
|
@@ -51976,7 +51976,7 @@ var init_listdatasources = __esm(() => {
|
|
|
51976
51976
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
51977
51977
|
})(ListDatasourcesStatus$ ||= {});
|
|
51978
51978
|
ListDatasourcesData$inboundSchema = objectType({
|
|
51979
|
-
_id: stringType().default("
|
|
51979
|
+
_id: stringType().default("01JWWX75X074W828JMKWDHCNAH"),
|
|
51980
51980
|
display_name: stringType(),
|
|
51981
51981
|
description: stringType().optional(),
|
|
51982
51982
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -51999,7 +51999,7 @@ var init_listdatasources = __esm(() => {
|
|
|
51999
51999
|
});
|
|
52000
52000
|
});
|
|
52001
52001
|
ListDatasourcesData$outboundSchema = objectType({
|
|
52002
|
-
id: stringType().default("
|
|
52002
|
+
id: stringType().default("01JWWX75X074W828JMKWDHCNAH"),
|
|
52003
52003
|
displayName: stringType(),
|
|
52004
52004
|
description: stringType().optional(),
|
|
52005
52005
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -53045,7 +53045,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
53045
53045
|
tags: arrayType(stringType()).optional(),
|
|
53046
53046
|
metadata: recordType(anyType()).optional(),
|
|
53047
53047
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53048
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
53048
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
53049
53049
|
}).transform((v2) => {
|
|
53050
53050
|
return remap(v2, {
|
|
53051
53051
|
_id: "id",
|
|
@@ -53063,7 +53063,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
53063
53063
|
tags: arrayType(stringType()).optional(),
|
|
53064
53064
|
metadata: recordType(anyType()).optional(),
|
|
53065
53065
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53066
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
53066
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
53067
53067
|
}).transform((v2) => {
|
|
53068
53068
|
return remap(v2, {
|
|
53069
53069
|
id: "_id",
|
|
@@ -53640,7 +53640,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
53640
53640
|
created_by_id: stringType().optional(),
|
|
53641
53641
|
updated_by_id: stringType().optional(),
|
|
53642
53642
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53643
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
53643
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
53644
53644
|
}).transform((v2) => {
|
|
53645
53645
|
return remap(v2, {
|
|
53646
53646
|
_id: "id",
|
|
@@ -53667,7 +53667,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
53667
53667
|
createdById: stringType().optional(),
|
|
53668
53668
|
updatedById: stringType().optional(),
|
|
53669
53669
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53670
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
53670
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
53671
53671
|
}).transform((v2) => {
|
|
53672
53672
|
return remap(v2, {
|
|
53673
53673
|
id: "_id",
|
|
@@ -53738,7 +53738,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
53738
53738
|
updated_by_id: stringType().optional(),
|
|
53739
53739
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
53740
53740
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53741
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
53741
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
53742
53742
|
}).transform((v2) => {
|
|
53743
53743
|
return remap(v2, {
|
|
53744
53744
|
_id: "id",
|
|
@@ -53758,7 +53758,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
53758
53758
|
updatedById: stringType().optional(),
|
|
53759
53759
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
53760
53760
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53761
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
53761
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
53762
53762
|
}).transform((v2) => {
|
|
53763
53763
|
return remap(v2, {
|
|
53764
53764
|
id: "_id",
|
|
@@ -53816,7 +53816,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
53816
53816
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
53817
53817
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
53818
53818
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
53819
|
-
_id: stringType().default("
|
|
53819
|
+
_id: stringType().default("01JWWX75X1YJCF5754KBYQJ6QA"),
|
|
53820
53820
|
display_name: stringType(),
|
|
53821
53821
|
description: stringType().optional(),
|
|
53822
53822
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -53839,7 +53839,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
53839
53839
|
});
|
|
53840
53840
|
});
|
|
53841
53841
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
53842
|
-
id: stringType().default("
|
|
53842
|
+
id: stringType().default("01JWWX75X1YJCF5754KBYQJ6QA"),
|
|
53843
53843
|
displayName: stringType(),
|
|
53844
53844
|
description: stringType().optional(),
|
|
53845
53845
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -54762,7 +54762,7 @@ var init_updatecontact = __esm(() => {
|
|
|
54762
54762
|
tags: arrayType(stringType()).optional(),
|
|
54763
54763
|
metadata: recordType(anyType()).optional(),
|
|
54764
54764
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54765
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
54765
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
54766
54766
|
}).transform((v2) => {
|
|
54767
54767
|
return remap(v2, {
|
|
54768
54768
|
_id: "id",
|
|
@@ -54780,7 +54780,7 @@ var init_updatecontact = __esm(() => {
|
|
|
54780
54780
|
tags: arrayType(stringType()).optional(),
|
|
54781
54781
|
metadata: recordType(anyType()).optional(),
|
|
54782
54782
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54783
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
54783
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
54784
54784
|
}).transform((v2) => {
|
|
54785
54785
|
return remap(v2, {
|
|
54786
54786
|
id: "_id",
|
|
@@ -55914,7 +55914,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
55914
55914
|
created_by_id: stringType().optional(),
|
|
55915
55915
|
updated_by_id: stringType().optional(),
|
|
55916
55916
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55917
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
55917
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
55918
55918
|
}).transform((v2) => {
|
|
55919
55919
|
return remap(v2, {
|
|
55920
55920
|
_id: "id",
|
|
@@ -55941,7 +55941,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
55941
55941
|
createdById: stringType().optional(),
|
|
55942
55942
|
updatedById: stringType().optional(),
|
|
55943
55943
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55944
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
55944
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
55945
55945
|
}).transform((v2) => {
|
|
55946
55946
|
return remap(v2, {
|
|
55947
55947
|
id: "_id",
|
|
@@ -56042,7 +56042,7 @@ var init_updatedataset = __esm(() => {
|
|
|
56042
56042
|
parent_id: stringType().optional(),
|
|
56043
56043
|
version: stringType().optional(),
|
|
56044
56044
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56045
|
-
updated: stringType().datetime({ offset: true }).default("2025-06-
|
|
56045
|
+
updated: stringType().datetime({ offset: true }).default("2025-06-04T07:24:10.431Z").transform((v2) => new Date(v2))
|
|
56046
56046
|
}).transform((v2) => {
|
|
56047
56047
|
return remap(v2, {
|
|
56048
56048
|
_id: "id",
|
|
@@ -56065,7 +56065,7 @@ var init_updatedataset = __esm(() => {
|
|
|
56065
56065
|
parentId: stringType().optional(),
|
|
56066
56066
|
version: stringType().optional(),
|
|
56067
56067
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56068
|
-
updated: dateType().default(() => new Date("2025-06-
|
|
56068
|
+
updated: dateType().default(() => new Date("2025-06-04T07:24:10.431Z")).transform((v2) => v2.toISOString())
|
|
56069
56069
|
}).transform((v2) => {
|
|
56070
56070
|
return remap(v2, {
|
|
56071
56071
|
id: "_id",
|
|
@@ -56146,7 +56146,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
56146
56146
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
56147
56147
|
})(UpdateDatasourceStatus$ ||= {});
|
|
56148
56148
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
56149
|
-
_id: stringType().default("
|
|
56149
|
+
_id: stringType().default("01JWWX75X2MVN8R8143WNM7DS6"),
|
|
56150
56150
|
display_name: stringType(),
|
|
56151
56151
|
description: stringType().optional(),
|
|
56152
56152
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -56169,7 +56169,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
56169
56169
|
});
|
|
56170
56170
|
});
|
|
56171
56171
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
56172
|
-
id: stringType().default("
|
|
56172
|
+
id: stringType().default("01JWWX75X2MVN8R8143WNM7DS6"),
|
|
56173
56173
|
displayName: stringType(),
|
|
56174
56174
|
description: stringType().optional(),
|
|
56175
56175
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -70616,7 +70616,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
70616
70616
|
function createMCPServer(deps) {
|
|
70617
70617
|
const server = new McpServer({
|
|
70618
70618
|
name: "Orq",
|
|
70619
|
-
version: "3.8.0-rc.
|
|
70619
|
+
version: "3.8.0-rc.1"
|
|
70620
70620
|
});
|
|
70621
70621
|
const client = new OrqCore({
|
|
70622
70622
|
apiKey: deps.apiKey,
|
|
@@ -72028,7 +72028,7 @@ var routes = rn({
|
|
|
72028
72028
|
var app = Ve(routes, {
|
|
72029
72029
|
name: "mcp",
|
|
72030
72030
|
versionInfo: {
|
|
72031
|
-
currentVersion: "3.8.0-rc.
|
|
72031
|
+
currentVersion: "3.8.0-rc.1"
|
|
72032
72032
|
}
|
|
72033
72033
|
});
|
|
72034
72034
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -72036,5 +72036,5 @@ export {
|
|
|
72036
72036
|
app
|
|
72037
72037
|
};
|
|
72038
72038
|
|
|
72039
|
-
//# debugId=
|
|
72039
|
+
//# debugId=AC839FEE2A2FB1BA64756E2164756E21
|
|
72040
72040
|
//# sourceMappingURL=mcp-server.js.map
|