@orq-ai/node 3.2.0 → 3.2.2
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 +38 -33
- package/bin/mcp-server.js.map +19 -19
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/security.d.ts +4 -3
- package/lib/security.d.ts.map +1 -1
- package/lib/security.js +6 -1
- package/lib/security.js.map +1 -1
- 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/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/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/security.ts +11 -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/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.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/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
package/bin/mcp-server.js
CHANGED
|
@@ -34234,9 +34234,9 @@ var init_config = __esm(() => {
|
|
|
34234
34234
|
SDK_METADATA = {
|
|
34235
34235
|
language: "typescript",
|
|
34236
34236
|
openapiDocVersion: "2.0",
|
|
34237
|
-
sdkVersion: "3.2.
|
|
34238
|
-
genVersion: "2.
|
|
34239
|
-
userAgent: "speakeasy-sdk/typescript 3.2.
|
|
34237
|
+
sdkVersion: "3.2.2",
|
|
34238
|
+
genVersion: "2.558.2",
|
|
34239
|
+
userAgent: "speakeasy-sdk/typescript 3.2.2 2.558.2 2.0 @orq-ai/node"
|
|
34240
34240
|
};
|
|
34241
34241
|
});
|
|
34242
34242
|
|
|
@@ -35530,6 +35530,9 @@ function resolveSecurity(...options) {
|
|
|
35530
35530
|
} else if (o.type === "oauth2:password") {
|
|
35531
35531
|
return typeof o.value === "string" && !!o.value;
|
|
35532
35532
|
} else if (o.type === "oauth2:client_credentials") {
|
|
35533
|
+
if (typeof o.value == "string") {
|
|
35534
|
+
return !!o.value;
|
|
35535
|
+
}
|
|
35533
35536
|
return o.value.clientID != null || o.value.clientSecret != null;
|
|
35534
35537
|
} else if (typeof o.value === "string") {
|
|
35535
35538
|
return !!o.value;
|
|
@@ -35595,7 +35598,9 @@ function applyBearer(state, spec) {
|
|
|
35595
35598
|
if (value.slice(0, 7).toLowerCase() !== "bearer ") {
|
|
35596
35599
|
value = `Bearer ${value}`;
|
|
35597
35600
|
}
|
|
35598
|
-
|
|
35601
|
+
if (spec.fieldName !== undefined) {
|
|
35602
|
+
state.headers[spec.fieldName] = value;
|
|
35603
|
+
}
|
|
35599
35604
|
}
|
|
35600
35605
|
function resolveGlobalSecurity(security) {
|
|
35601
35606
|
return resolveSecurity([
|
|
@@ -36060,7 +36065,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36060
36065
|
created_by_id: stringType().optional(),
|
|
36061
36066
|
updated_by_id: stringType().optional(),
|
|
36062
36067
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36063
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
36068
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
36064
36069
|
}).transform((v2) => {
|
|
36065
36070
|
return remap(v2, {
|
|
36066
36071
|
_id: "id",
|
|
@@ -36081,7 +36086,7 @@ var init_bulkcreatedatapoints = __esm(() => {
|
|
|
36081
36086
|
createdById: stringType().optional(),
|
|
36082
36087
|
updatedById: stringType().optional(),
|
|
36083
36088
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36084
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
36089
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
36085
36090
|
}).transform((v2) => {
|
|
36086
36091
|
return remap(v2, {
|
|
36087
36092
|
id: "_id",
|
|
@@ -36169,7 +36174,7 @@ var init_createcontact = __esm(() => {
|
|
|
36169
36174
|
tags: arrayType(stringType()).optional(),
|
|
36170
36175
|
metadata: recordType(anyType()).optional(),
|
|
36171
36176
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36172
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
36177
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
36173
36178
|
}).transform((v2) => {
|
|
36174
36179
|
return remap(v2, {
|
|
36175
36180
|
external_id: "externalId",
|
|
@@ -36186,7 +36191,7 @@ var init_createcontact = __esm(() => {
|
|
|
36186
36191
|
tags: arrayType(stringType()).optional(),
|
|
36187
36192
|
metadata: recordType(anyType()).optional(),
|
|
36188
36193
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36189
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
36194
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
36190
36195
|
}).transform((v2) => {
|
|
36191
36196
|
return remap(v2, {
|
|
36192
36197
|
externalId: "external_id",
|
|
@@ -36256,7 +36261,7 @@ var init_createdataset = __esm(() => {
|
|
|
36256
36261
|
updated_by_id: stringType().optional(),
|
|
36257
36262
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36258
36263
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36259
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
36264
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
36260
36265
|
}).transform((v2) => {
|
|
36261
36266
|
return remap(v2, {
|
|
36262
36267
|
_id: "id",
|
|
@@ -36276,7 +36281,7 @@ var init_createdataset = __esm(() => {
|
|
|
36276
36281
|
updatedById: stringType().optional(),
|
|
36277
36282
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36278
36283
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36279
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
36284
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
36280
36285
|
}).transform((v2) => {
|
|
36281
36286
|
return remap(v2, {
|
|
36282
36287
|
id: "_id",
|
|
@@ -36712,7 +36717,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
36712
36717
|
created_by_id: stringType().optional(),
|
|
36713
36718
|
updated_by_id: stringType().optional(),
|
|
36714
36719
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36715
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
36720
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
36716
36721
|
}).transform((v2) => {
|
|
36717
36722
|
return remap(v2, {
|
|
36718
36723
|
_id: "id",
|
|
@@ -36733,7 +36738,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
36733
36738
|
createdById: stringType().optional(),
|
|
36734
36739
|
updatedById: stringType().optional(),
|
|
36735
36740
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36736
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
36741
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
36737
36742
|
}).transform((v2) => {
|
|
36738
36743
|
return remap(v2, {
|
|
36739
36744
|
id: "_id",
|
|
@@ -41571,7 +41576,7 @@ var init_fileget = __esm(() => {
|
|
|
41571
41576
|
bytes: numberType(),
|
|
41572
41577
|
file_name: stringType(),
|
|
41573
41578
|
workspace_id: stringType(),
|
|
41574
|
-
created: stringType().datetime({ offset: true }).default("2025-03-
|
|
41579
|
+
created: stringType().datetime({ offset: true }).default("2025-03-19T18:17:52.060Z").transform((v2) => new Date(v2))
|
|
41575
41580
|
}).transform((v2) => {
|
|
41576
41581
|
return remap(v2, {
|
|
41577
41582
|
_id: "id",
|
|
@@ -41587,7 +41592,7 @@ var init_fileget = __esm(() => {
|
|
|
41587
41592
|
bytes: numberType(),
|
|
41588
41593
|
fileName: stringType(),
|
|
41589
41594
|
workspaceId: stringType(),
|
|
41590
|
-
created: dateType().default(() => new Date("2025-03-
|
|
41595
|
+
created: dateType().default(() => new Date("2025-03-19T18:17:52.060Z")).transform((v2) => v2.toISOString())
|
|
41591
41596
|
}).transform((v2) => {
|
|
41592
41597
|
return remap(v2, {
|
|
41593
41598
|
id: "_id",
|
|
@@ -41670,7 +41675,7 @@ var init_filelist = __esm(() => {
|
|
|
41670
41675
|
bytes: numberType(),
|
|
41671
41676
|
file_name: stringType(),
|
|
41672
41677
|
workspace_id: stringType(),
|
|
41673
|
-
created: stringType().datetime({ offset: true }).default("2025-03-
|
|
41678
|
+
created: stringType().datetime({ offset: true }).default("2025-03-19T18:17:52.060Z").transform((v2) => new Date(v2))
|
|
41674
41679
|
}).transform((v2) => {
|
|
41675
41680
|
return remap(v2, {
|
|
41676
41681
|
_id: "id",
|
|
@@ -41686,7 +41691,7 @@ var init_filelist = __esm(() => {
|
|
|
41686
41691
|
bytes: numberType(),
|
|
41687
41692
|
fileName: stringType(),
|
|
41688
41693
|
workspaceId: stringType(),
|
|
41689
|
-
created: dateType().default(() => new Date("2025-03-
|
|
41694
|
+
created: dateType().default(() => new Date("2025-03-19T18:17:52.060Z")).transform((v2) => v2.toISOString())
|
|
41690
41695
|
}).transform((v2) => {
|
|
41691
41696
|
return remap(v2, {
|
|
41692
41697
|
id: "_id",
|
|
@@ -41818,7 +41823,7 @@ var init_fileupload = __esm(() => {
|
|
|
41818
41823
|
bytes: numberType(),
|
|
41819
41824
|
file_name: stringType(),
|
|
41820
41825
|
workspace_id: stringType(),
|
|
41821
|
-
created: stringType().datetime({ offset: true }).default("2025-03-
|
|
41826
|
+
created: stringType().datetime({ offset: true }).default("2025-03-19T18:17:52.060Z").transform((v2) => new Date(v2))
|
|
41822
41827
|
}).transform((v2) => {
|
|
41823
41828
|
return remap(v2, {
|
|
41824
41829
|
_id: "id",
|
|
@@ -41834,7 +41839,7 @@ var init_fileupload = __esm(() => {
|
|
|
41834
41839
|
bytes: numberType(),
|
|
41835
41840
|
fileName: stringType(),
|
|
41836
41841
|
workspaceId: stringType(),
|
|
41837
|
-
created: dateType().default(() => new Date("2025-03-
|
|
41842
|
+
created: dateType().default(() => new Date("2025-03-19T18:17:52.060Z")).transform((v2) => v2.toISOString())
|
|
41838
41843
|
}).transform((v2) => {
|
|
41839
41844
|
return remap(v2, {
|
|
41840
41845
|
id: "_id",
|
|
@@ -43886,7 +43891,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
43886
43891
|
created_by_id: stringType().optional(),
|
|
43887
43892
|
updated_by_id: stringType().optional(),
|
|
43888
43893
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43889
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
43894
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
43890
43895
|
}).transform((v2) => {
|
|
43891
43896
|
return remap(v2, {
|
|
43892
43897
|
_id: "id",
|
|
@@ -43907,7 +43912,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
43907
43912
|
createdById: stringType().optional(),
|
|
43908
43913
|
updatedById: stringType().optional(),
|
|
43909
43914
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43910
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
43915
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
43911
43916
|
}).transform((v2) => {
|
|
43912
43917
|
return remap(v2, {
|
|
43913
43918
|
id: "_id",
|
|
@@ -44027,7 +44032,7 @@ var init_listdatasets = __esm(() => {
|
|
|
44027
44032
|
updated_by_id: stringType().optional(),
|
|
44028
44033
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
44029
44034
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44030
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
44035
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
44031
44036
|
}).transform((v2) => {
|
|
44032
44037
|
return remap(v2, {
|
|
44033
44038
|
_id: "id",
|
|
@@ -44047,7 +44052,7 @@ var init_listdatasets = __esm(() => {
|
|
|
44047
44052
|
updatedById: stringType().optional(),
|
|
44048
44053
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
44049
44054
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44050
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
44055
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
44051
44056
|
}).transform((v2) => {
|
|
44052
44057
|
return remap(v2, {
|
|
44053
44058
|
id: "_id",
|
|
@@ -44971,7 +44976,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
44971
44976
|
created_by_id: stringType().optional(),
|
|
44972
44977
|
updated_by_id: stringType().optional(),
|
|
44973
44978
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44974
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
44979
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
44975
44980
|
}).transform((v2) => {
|
|
44976
44981
|
return remap(v2, {
|
|
44977
44982
|
_id: "id",
|
|
@@ -44992,7 +44997,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
44992
44997
|
createdById: stringType().optional(),
|
|
44993
44998
|
updatedById: stringType().optional(),
|
|
44994
44999
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44995
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
45000
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
44996
45001
|
}).transform((v2) => {
|
|
44997
45002
|
return remap(v2, {
|
|
44998
45003
|
id: "_id",
|
|
@@ -45063,7 +45068,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
45063
45068
|
updated_by_id: stringType().optional(),
|
|
45064
45069
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
45065
45070
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
45066
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
45071
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
45067
45072
|
}).transform((v2) => {
|
|
45068
45073
|
return remap(v2, {
|
|
45069
45074
|
_id: "id",
|
|
@@ -45083,7 +45088,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
45083
45088
|
updatedById: stringType().optional(),
|
|
45084
45089
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
45085
45090
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
45086
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
45091
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
45087
45092
|
}).transform((v2) => {
|
|
45088
45093
|
return remap(v2, {
|
|
45089
45094
|
id: "_id",
|
|
@@ -45523,7 +45528,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
45523
45528
|
created_by_id: stringType().optional(),
|
|
45524
45529
|
updated_by_id: stringType().optional(),
|
|
45525
45530
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
45526
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
45531
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
45527
45532
|
}).transform((v2) => {
|
|
45528
45533
|
return remap(v2, {
|
|
45529
45534
|
_id: "id",
|
|
@@ -45544,7 +45549,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
45544
45549
|
createdById: stringType().optional(),
|
|
45545
45550
|
updatedById: stringType().optional(),
|
|
45546
45551
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
45547
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
45552
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
45548
45553
|
}).transform((v2) => {
|
|
45549
45554
|
return remap(v2, {
|
|
45550
45555
|
id: "_id",
|
|
@@ -45639,7 +45644,7 @@ var init_updatedataset = __esm(() => {
|
|
|
45639
45644
|
parent_id: stringType().optional(),
|
|
45640
45645
|
version: stringType().optional(),
|
|
45641
45646
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
45642
|
-
updated: stringType().datetime({ offset: true }).default("2025-03-
|
|
45647
|
+
updated: stringType().datetime({ offset: true }).default("2025-03-19T18:17:50.588Z").transform((v2) => new Date(v2))
|
|
45643
45648
|
}).transform((v2) => {
|
|
45644
45649
|
return remap(v2, {
|
|
45645
45650
|
_id: "id",
|
|
@@ -45662,7 +45667,7 @@ var init_updatedataset = __esm(() => {
|
|
|
45662
45667
|
parentId: stringType().optional(),
|
|
45663
45668
|
version: stringType().optional(),
|
|
45664
45669
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
45665
|
-
updated: dateType().default(() => new Date("2025-03-
|
|
45670
|
+
updated: dateType().default(() => new Date("2025-03-19T18:17:50.588Z")).transform((v2) => v2.toISOString())
|
|
45666
45671
|
}).transform((v2) => {
|
|
45667
45672
|
return remap(v2, {
|
|
45668
45673
|
id: "_id",
|
|
@@ -51199,7 +51204,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
51199
51204
|
function createMCPServer(deps) {
|
|
51200
51205
|
const server = new McpServer({
|
|
51201
51206
|
name: "Orq",
|
|
51202
|
-
version: "3.2.
|
|
51207
|
+
version: "3.2.2"
|
|
51203
51208
|
});
|
|
51204
51209
|
const client = new OrqCore({
|
|
51205
51210
|
apiKey: deps.apiKey,
|
|
@@ -52492,7 +52497,7 @@ var routes = rn({
|
|
|
52492
52497
|
var app = Ve(routes, {
|
|
52493
52498
|
name: "mcp",
|
|
52494
52499
|
versionInfo: {
|
|
52495
|
-
currentVersion: "3.2.
|
|
52500
|
+
currentVersion: "3.2.2"
|
|
52496
52501
|
}
|
|
52497
52502
|
});
|
|
52498
52503
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -52500,5 +52505,5 @@ export {
|
|
|
52500
52505
|
app
|
|
52501
52506
|
};
|
|
52502
52507
|
|
|
52503
|
-
//# debugId=
|
|
52508
|
+
//# debugId=794869F34C1DB62364756E2164756E21
|
|
52504
52509
|
//# sourceMappingURL=mcp-server.js.map
|