@orq-ai/node 3.4.0-rc.24 → 3.4.0-rc.26

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.
Files changed (61) hide show
  1. package/bin/mcp-server.js +75 -67
  2. package/bin/mcp-server.js.map +28 -28
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/matchers.d.ts +3 -1
  7. package/lib/matchers.d.ts.map +1 -1
  8. package/lib/matchers.js +12 -0
  9. package/lib/matchers.js.map +1 -1
  10. package/lib/sdks.js +7 -2
  11. package/lib/sdks.js.map +1 -1
  12. package/mcp-server/mcp-server.js +1 -1
  13. package/mcp-server/server.js +1 -1
  14. package/models/operations/bulkcreatedatapoints.js +2 -2
  15. package/models/operations/createcontact.js +2 -2
  16. package/models/operations/createdataset.js +2 -2
  17. package/models/operations/createdatasetitem.js +2 -2
  18. package/models/operations/createdatasource.js +2 -2
  19. package/models/operations/createtool.js +6 -6
  20. package/models/operations/fileget.js +2 -2
  21. package/models/operations/filelist.js +2 -2
  22. package/models/operations/fileupload.js +2 -2
  23. package/models/operations/getalltools.js +6 -6
  24. package/models/operations/listdatasetdatapoints.js +2 -2
  25. package/models/operations/listdatasets.js +2 -2
  26. package/models/operations/listdatasources.js +2 -2
  27. package/models/operations/retrievedatapoint.js +2 -2
  28. package/models/operations/retrievedataset.js +2 -2
  29. package/models/operations/retrievedatasource.js +2 -2
  30. package/models/operations/retrievetool.js +6 -6
  31. package/models/operations/updatedatapoint.js +2 -2
  32. package/models/operations/updatedataset.js +2 -2
  33. package/models/operations/updatedatasource.js +2 -2
  34. package/models/operations/updatetool.js +6 -6
  35. package/package.json +1 -1
  36. package/src/lib/config.ts +3 -3
  37. package/src/lib/matchers.ts +20 -0
  38. package/src/lib/sdks.ts +8 -2
  39. package/src/mcp-server/mcp-server.ts +1 -1
  40. package/src/mcp-server/server.ts +1 -1
  41. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  42. package/src/models/operations/createcontact.ts +2 -2
  43. package/src/models/operations/createdataset.ts +2 -2
  44. package/src/models/operations/createdatasetitem.ts +2 -2
  45. package/src/models/operations/createdatasource.ts +2 -2
  46. package/src/models/operations/createtool.ts +6 -6
  47. package/src/models/operations/fileget.ts +2 -2
  48. package/src/models/operations/filelist.ts +2 -2
  49. package/src/models/operations/fileupload.ts +2 -2
  50. package/src/models/operations/getalltools.ts +6 -6
  51. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  52. package/src/models/operations/listdatasets.ts +2 -2
  53. package/src/models/operations/listdatasources.ts +2 -2
  54. package/src/models/operations/retrievedatapoint.ts +2 -2
  55. package/src/models/operations/retrievedataset.ts +2 -2
  56. package/src/models/operations/retrievedatasource.ts +2 -2
  57. package/src/models/operations/retrievetool.ts +6 -6
  58. package/src/models/operations/updatedatapoint.ts +2 -2
  59. package/src/models/operations/updatedataset.ts +2 -2
  60. package/src/models/operations/updatedatasource.ts +2 -2
  61. package/src/models/operations/updatetool.ts +6 -6
package/bin/mcp-server.js CHANGED
@@ -34225,9 +34225,9 @@ var init_config = __esm(() => {
34225
34225
  SDK_METADATA = {
34226
34226
  language: "typescript",
34227
34227
  openapiDocVersion: "2.0",
34228
- sdkVersion: "3.4.0-rc.24",
34229
- genVersion: "2.570.4",
34230
- userAgent: "speakeasy-sdk/typescript 3.4.0-rc.24 2.570.4 2.0 @orq-ai/node"
34228
+ sdkVersion: "3.4.0-rc.26",
34229
+ genVersion: "2.578.0",
34230
+ userAgent: "speakeasy-sdk/typescript 3.4.0-rc.26 2.578.0 2.0 @orq-ai/node"
34231
34231
  };
34232
34232
  });
34233
34233
 
@@ -35004,9 +35004,12 @@ async function logResponse(logger, res, req) {
35004
35004
  logger.groupEnd();
35005
35005
  logger.group("Body:");
35006
35006
  switch (true) {
35007
- case (matchContentType(res, "application/json") || jsonLikeContentTypeRE.test(ct)):
35007
+ case (matchContentType(res, "application/json") || jsonLikeContentTypeRE.test(ct) && !jsonlLikeContentTypeRE.test(ct)):
35008
35008
  logger.log(await res.clone().json());
35009
35009
  break;
35010
+ case (matchContentType(res, "application/jsonl") || jsonlLikeContentTypeRE.test(ct)):
35011
+ logger.log(await res.clone().text());
35012
+ break;
35010
35013
  case matchContentType(res, "text/event-stream"):
35011
35014
  logger.log(`<${contentType2}>`);
35012
35015
  break;
@@ -35028,7 +35031,7 @@ async function logResponse(logger, res, req) {
35028
35031
  logger.groupEnd();
35029
35032
  logger.groupEnd();
35030
35033
  }
35031
- var gt, webWorkerLike, isBrowserLike, jsonLikeContentTypeRE;
35034
+ var gt, webWorkerLike, isBrowserLike, jsonLikeContentTypeRE, jsonlLikeContentTypeRE;
35032
35035
  var init_sdks = __esm(() => {
35033
35036
  init_hooks();
35034
35037
  init_httpclienterrors();
@@ -35041,7 +35044,8 @@ var init_sdks = __esm(() => {
35041
35044
  gt = typeof globalThis === "undefined" ? null : globalThis;
35042
35045
  webWorkerLike = typeof gt === "object" && gt != null && "importScripts" in gt && typeof gt["importScripts"] === "function";
35043
35046
  isBrowserLike = webWorkerLike || typeof navigator !== "undefined" && "serviceWorker" in navigator || typeof window === "object" && typeof window.document !== "undefined";
35044
- jsonLikeContentTypeRE = /^application\/(?:.{0,100}\+)?json/;
35047
+ jsonLikeContentTypeRE = /(application|text)\/.*?\+*json.*/;
35048
+ jsonlLikeContentTypeRE = /(application|text)\/(.*?\+*\bjsonl\b.*|.*?\+*\bx-ndjson\b.*)/;
35045
35049
  });
35046
35050
 
35047
35051
  // src/core.ts
@@ -35587,6 +35591,9 @@ function match(...matchers) {
35587
35591
  case "json":
35588
35592
  raw = await response.json();
35589
35593
  break;
35594
+ case "jsonl":
35595
+ raw = response.body;
35596
+ break;
35590
35597
  case "bytes":
35591
35598
  raw = new Uint8Array(await response.arrayBuffer());
35592
35599
  break;
@@ -35677,6 +35684,7 @@ var init_matchers = __esm(() => {
35677
35684
  init_http();
35678
35685
  init_schemas();
35679
35686
  DEFAULT_CONTENT_TYPES = {
35687
+ jsonl: "application/jsonl",
35680
35688
  json: "application/json",
35681
35689
  text: "text/plain",
35682
35690
  bytes: "application/octet-stream",
@@ -36271,7 +36279,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36271
36279
  created_by_id: stringType().optional(),
36272
36280
  updated_by_id: stringType().optional(),
36273
36281
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36274
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
36282
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
36275
36283
  }).transform((v2) => {
36276
36284
  return remap(v2, {
36277
36285
  _id: "id",
@@ -36292,7 +36300,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36292
36300
  createdById: stringType().optional(),
36293
36301
  updatedById: stringType().optional(),
36294
36302
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36295
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
36303
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
36296
36304
  }).transform((v2) => {
36297
36305
  return remap(v2, {
36298
36306
  id: "_id",
@@ -36506,7 +36514,7 @@ var init_createcontact = __esm(() => {
36506
36514
  tags: arrayType(stringType()).optional(),
36507
36515
  metadata: recordType(anyType()).optional(),
36508
36516
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36509
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
36517
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
36510
36518
  }).transform((v2) => {
36511
36519
  return remap(v2, {
36512
36520
  external_id: "externalId",
@@ -36523,7 +36531,7 @@ var init_createcontact = __esm(() => {
36523
36531
  tags: arrayType(stringType()).optional(),
36524
36532
  metadata: recordType(anyType()).optional(),
36525
36533
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36526
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
36534
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
36527
36535
  }).transform((v2) => {
36528
36536
  return remap(v2, {
36529
36537
  externalId: "external_id",
@@ -36593,7 +36601,7 @@ var init_createdataset = __esm(() => {
36593
36601
  updated_by_id: stringType().optional(),
36594
36602
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36595
36603
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36596
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
36604
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
36597
36605
  }).transform((v2) => {
36598
36606
  return remap(v2, {
36599
36607
  _id: "id",
@@ -36613,7 +36621,7 @@ var init_createdataset = __esm(() => {
36613
36621
  updatedById: stringType().optional(),
36614
36622
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36615
36623
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36616
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
36624
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
36617
36625
  }).transform((v2) => {
36618
36626
  return remap(v2, {
36619
36627
  id: "_id",
@@ -37049,7 +37057,7 @@ var init_createdatasetitem = __esm(() => {
37049
37057
  created_by_id: stringType().optional(),
37050
37058
  updated_by_id: stringType().optional(),
37051
37059
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37052
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
37060
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
37053
37061
  }).transform((v2) => {
37054
37062
  return remap(v2, {
37055
37063
  _id: "id",
@@ -37070,7 +37078,7 @@ var init_createdatasetitem = __esm(() => {
37070
37078
  createdById: stringType().optional(),
37071
37079
  updatedById: stringType().optional(),
37072
37080
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37073
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
37081
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
37074
37082
  }).transform((v2) => {
37075
37083
  return remap(v2, {
37076
37084
  id: "_id",
@@ -37292,7 +37300,7 @@ var init_createdatasource = __esm(() => {
37292
37300
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37293
37301
  })(CreateDatasourceStatus$ ||= {});
37294
37302
  CreateDatasourceResponseBody$inboundSchema = objectType({
37295
- _id: stringType().default("01JRWZ21DQVC2S2G3H85DJYQF5"),
37303
+ _id: stringType().default("01JRXNDRK8Z9JPSQ5Z1QFRNW7K"),
37296
37304
  display_name: stringType(),
37297
37305
  description: stringType().optional(),
37298
37306
  status: CreateDatasourceStatus$inboundSchema,
@@ -37315,7 +37323,7 @@ var init_createdatasource = __esm(() => {
37315
37323
  });
37316
37324
  });
37317
37325
  CreateDatasourceResponseBody$outboundSchema = objectType({
37318
- id: stringType().default("01JRWZ21DQVC2S2G3H85DJYQF5"),
37326
+ id: stringType().default("01JRXNDRK8Z9JPSQ5Z1QFRNW7K"),
37319
37327
  displayName: stringType(),
37320
37328
  description: stringType().optional(),
37321
37329
  status: CreateDatasourceStatus$outboundSchema,
@@ -40103,7 +40111,7 @@ var init_createtool = __esm(() => {
40103
40111
  ResponseBodyHttp$.outboundSchema = ResponseBodyHttp$outboundSchema;
40104
40112
  })(ResponseBodyHttp$ ||= {});
40105
40113
  ResponseBody3$inboundSchema = objectType({
40106
- _id: stringType().default("tool_01JRWZ21C6MS35H6G2JF3NPF0G"),
40114
+ _id: stringType().default("tool_01JRXNDRGC760JZWE8V21BK7NX"),
40107
40115
  path: stringType(),
40108
40116
  key: stringType(),
40109
40117
  description: stringType(),
@@ -40128,7 +40136,7 @@ var init_createtool = __esm(() => {
40128
40136
  });
40129
40137
  });
40130
40138
  ResponseBody3$outboundSchema = objectType({
40131
- id: stringType().default("tool_01JRWZ21C6MS35H6G2JF3NPF0G"),
40139
+ id: stringType().default("tool_01JRXNDRGC760JZWE8V21BK7NX"),
40132
40140
  path: stringType(),
40133
40141
  key: stringType(),
40134
40142
  description: stringType(),
@@ -40185,7 +40193,7 @@ var init_createtool = __esm(() => {
40185
40193
  ResponseBodyJsonSchema$.outboundSchema = ResponseBodyJsonSchema$outboundSchema;
40186
40194
  })(ResponseBodyJsonSchema$ ||= {});
40187
40195
  ResponseBody2$inboundSchema = objectType({
40188
- _id: stringType().default("tool_01JRWZ21C5N59XY6BRSFG3VMMK"),
40196
+ _id: stringType().default("tool_01JRXNDRGBJR77VEG9GYBH8BHR"),
40189
40197
  path: stringType(),
40190
40198
  key: stringType(),
40191
40199
  description: stringType(),
@@ -40211,7 +40219,7 @@ var init_createtool = __esm(() => {
40211
40219
  });
40212
40220
  });
40213
40221
  ResponseBody2$outboundSchema = objectType({
40214
- id: stringType().default("tool_01JRWZ21C5N59XY6BRSFG3VMMK"),
40222
+ id: stringType().default("tool_01JRXNDRGBJR77VEG9GYBH8BHR"),
40215
40223
  path: stringType(),
40216
40224
  key: stringType(),
40217
40225
  description: stringType(),
@@ -40269,7 +40277,7 @@ var init_createtool = __esm(() => {
40269
40277
  ResponseBodyFunction$.outboundSchema = ResponseBodyFunction$outboundSchema;
40270
40278
  })(ResponseBodyFunction$ ||= {});
40271
40279
  ResponseBody1$inboundSchema = objectType({
40272
- _id: stringType().default("tool_01JRWZ21C5RRD7ANTA7A3MNM4Y"),
40280
+ _id: stringType().default("tool_01JRXNDRG9HG2G48N6QGTEP756"),
40273
40281
  path: stringType(),
40274
40282
  key: stringType(),
40275
40283
  description: stringType(),
@@ -40294,7 +40302,7 @@ var init_createtool = __esm(() => {
40294
40302
  });
40295
40303
  });
40296
40304
  ResponseBody1$outboundSchema = objectType({
40297
- id: stringType().default("tool_01JRWZ21C5RRD7ANTA7A3MNM4Y"),
40305
+ id: stringType().default("tool_01JRXNDRG9HG2G48N6QGTEP756"),
40298
40306
  path: stringType(),
40299
40307
  key: stringType(),
40300
40308
  description: stringType(),
@@ -45640,7 +45648,7 @@ var init_fileget = __esm(() => {
45640
45648
  bytes: numberType(),
45641
45649
  file_name: stringType(),
45642
45650
  workspace_id: stringType(),
45643
- created: stringType().datetime({ offset: true }).default("2025-04-15T14:53:35.371Z").transform((v2) => new Date(v2))
45651
+ created: stringType().datetime({ offset: true }).default("2025-04-15T21:24:26.918Z").transform((v2) => new Date(v2))
45644
45652
  }).transform((v2) => {
45645
45653
  return remap(v2, {
45646
45654
  _id: "id",
@@ -45656,7 +45664,7 @@ var init_fileget = __esm(() => {
45656
45664
  bytes: numberType(),
45657
45665
  fileName: stringType(),
45658
45666
  workspaceId: stringType(),
45659
- created: dateType().default(() => new Date("2025-04-15T14:53:35.371Z")).transform((v2) => v2.toISOString())
45667
+ created: dateType().default(() => new Date("2025-04-15T21:24:26.918Z")).transform((v2) => v2.toISOString())
45660
45668
  }).transform((v2) => {
45661
45669
  return remap(v2, {
45662
45670
  id: "_id",
@@ -45727,7 +45735,7 @@ var init_filelist = __esm(() => {
45727
45735
  bytes: numberType(),
45728
45736
  file_name: stringType(),
45729
45737
  workspace_id: stringType(),
45730
- created: stringType().datetime({ offset: true }).default("2025-04-15T14:53:35.371Z").transform((v2) => new Date(v2))
45738
+ created: stringType().datetime({ offset: true }).default("2025-04-15T21:24:26.918Z").transform((v2) => new Date(v2))
45731
45739
  }).transform((v2) => {
45732
45740
  return remap(v2, {
45733
45741
  _id: "id",
@@ -45743,7 +45751,7 @@ var init_filelist = __esm(() => {
45743
45751
  bytes: numberType(),
45744
45752
  fileName: stringType(),
45745
45753
  workspaceId: stringType(),
45746
- created: dateType().default(() => new Date("2025-04-15T14:53:35.371Z")).transform((v2) => v2.toISOString())
45754
+ created: dateType().default(() => new Date("2025-04-15T21:24:26.918Z")).transform((v2) => v2.toISOString())
45747
45755
  }).transform((v2) => {
45748
45756
  return remap(v2, {
45749
45757
  id: "_id",
@@ -45875,7 +45883,7 @@ var init_fileupload = __esm(() => {
45875
45883
  bytes: numberType(),
45876
45884
  file_name: stringType(),
45877
45885
  workspace_id: stringType(),
45878
- created: stringType().datetime({ offset: true }).default("2025-04-15T14:53:35.371Z").transform((v2) => new Date(v2))
45886
+ created: stringType().datetime({ offset: true }).default("2025-04-15T21:24:26.918Z").transform((v2) => new Date(v2))
45879
45887
  }).transform((v2) => {
45880
45888
  return remap(v2, {
45881
45889
  _id: "id",
@@ -45891,7 +45899,7 @@ var init_fileupload = __esm(() => {
45891
45899
  bytes: numberType(),
45892
45900
  fileName: stringType(),
45893
45901
  workspaceId: stringType(),
45894
- created: dateType().default(() => new Date("2025-04-15T14:53:35.371Z")).transform((v2) => v2.toISOString())
45902
+ created: dateType().default(() => new Date("2025-04-15T21:24:26.918Z")).transform((v2) => v2.toISOString())
45895
45903
  }).transform((v2) => {
45896
45904
  return remap(v2, {
45897
45905
  id: "_id",
@@ -47267,7 +47275,7 @@ var init_getalltools = __esm(() => {
47267
47275
  DataHttp$.outboundSchema = DataHttp$outboundSchema;
47268
47276
  })(DataHttp$ ||= {});
47269
47277
  Data3$inboundSchema = objectType({
47270
- _id: stringType().default("tool_01JRWZ21C33FCYJWQM4KPJSV12"),
47278
+ _id: stringType().default("tool_01JRXNDRG8ARCY726E5EWPCFKK"),
47271
47279
  path: stringType(),
47272
47280
  key: stringType(),
47273
47281
  description: stringType(),
@@ -47292,7 +47300,7 @@ var init_getalltools = __esm(() => {
47292
47300
  });
47293
47301
  });
47294
47302
  Data3$outboundSchema = objectType({
47295
- id: stringType().default("tool_01JRWZ21C33FCYJWQM4KPJSV12"),
47303
+ id: stringType().default("tool_01JRXNDRG8ARCY726E5EWPCFKK"),
47296
47304
  path: stringType(),
47297
47305
  key: stringType(),
47298
47306
  description: stringType(),
@@ -47349,7 +47357,7 @@ var init_getalltools = __esm(() => {
47349
47357
  DataJsonSchema$.outboundSchema = DataJsonSchema$outboundSchema;
47350
47358
  })(DataJsonSchema$ ||= {});
47351
47359
  Data2$inboundSchema = objectType({
47352
- _id: stringType().default("tool_01JRWZ21C3N0BFKSHFCSXY64HA"),
47360
+ _id: stringType().default("tool_01JRXNDRG7DTQP5HWY5T2MBQB4"),
47353
47361
  path: stringType(),
47354
47362
  key: stringType(),
47355
47363
  description: stringType(),
@@ -47375,7 +47383,7 @@ var init_getalltools = __esm(() => {
47375
47383
  });
47376
47384
  });
47377
47385
  Data2$outboundSchema = objectType({
47378
- id: stringType().default("tool_01JRWZ21C3N0BFKSHFCSXY64HA"),
47386
+ id: stringType().default("tool_01JRXNDRG7DTQP5HWY5T2MBQB4"),
47379
47387
  path: stringType(),
47380
47388
  key: stringType(),
47381
47389
  description: stringType(),
@@ -47433,7 +47441,7 @@ var init_getalltools = __esm(() => {
47433
47441
  DataFunction$.outboundSchema = DataFunction$outboundSchema;
47434
47442
  })(DataFunction$ ||= {});
47435
47443
  Data1$inboundSchema = objectType({
47436
- _id: stringType().default("tool_01JRWZ21C216SNKSCD00KQG2E6"),
47444
+ _id: stringType().default("tool_01JRXNDRG70GC6TJJH6TBZ1NJC"),
47437
47445
  path: stringType(),
47438
47446
  key: stringType(),
47439
47447
  description: stringType(),
@@ -47458,7 +47466,7 @@ var init_getalltools = __esm(() => {
47458
47466
  });
47459
47467
  });
47460
47468
  Data1$outboundSchema = objectType({
47461
- id: stringType().default("tool_01JRWZ21C216SNKSCD00KQG2E6"),
47469
+ id: stringType().default("tool_01JRXNDRG70GC6TJJH6TBZ1NJC"),
47462
47470
  path: stringType(),
47463
47471
  key: stringType(),
47464
47472
  description: stringType(),
@@ -49414,7 +49422,7 @@ var init_listdatasetdatapoints = __esm(() => {
49414
49422
  created_by_id: stringType().optional(),
49415
49423
  updated_by_id: stringType().optional(),
49416
49424
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49417
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
49425
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
49418
49426
  }).transform((v2) => {
49419
49427
  return remap(v2, {
49420
49428
  _id: "id",
@@ -49435,7 +49443,7 @@ var init_listdatasetdatapoints = __esm(() => {
49435
49443
  createdById: stringType().optional(),
49436
49444
  updatedById: stringType().optional(),
49437
49445
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49438
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
49446
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
49439
49447
  }).transform((v2) => {
49440
49448
  return remap(v2, {
49441
49449
  id: "_id",
@@ -49543,7 +49551,7 @@ var init_listdatasets = __esm(() => {
49543
49551
  updated_by_id: stringType().optional(),
49544
49552
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
49545
49553
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49546
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
49554
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
49547
49555
  }).transform((v2) => {
49548
49556
  return remap(v2, {
49549
49557
  _id: "id",
@@ -49563,7 +49571,7 @@ var init_listdatasets = __esm(() => {
49563
49571
  updatedById: stringType().optional(),
49564
49572
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
49565
49573
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49566
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
49574
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
49567
49575
  }).transform((v2) => {
49568
49576
  return remap(v2, {
49569
49577
  id: "_id",
@@ -49668,7 +49676,7 @@ var init_listdatasources = __esm(() => {
49668
49676
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
49669
49677
  })(ListDatasourcesStatus$ ||= {});
49670
49678
  ListDatasourcesData$inboundSchema = objectType({
49671
- _id: stringType().default("01JRWZ21DPMZWQW2HGQYMZ50AX"),
49679
+ _id: stringType().default("01JRXNDRK6KMHHSS0N5MP1B80K"),
49672
49680
  display_name: stringType(),
49673
49681
  description: stringType().optional(),
49674
49682
  status: ListDatasourcesStatus$inboundSchema,
@@ -49691,7 +49699,7 @@ var init_listdatasources = __esm(() => {
49691
49699
  });
49692
49700
  });
49693
49701
  ListDatasourcesData$outboundSchema = objectType({
49694
- id: stringType().default("01JRWZ21DPMZWQW2HGQYMZ50AX"),
49702
+ id: stringType().default("01JRXNDRK6KMHHSS0N5MP1B80K"),
49695
49703
  displayName: stringType(),
49696
49704
  description: stringType().optional(),
49697
49705
  status: ListDatasourcesStatus$outboundSchema,
@@ -55081,7 +55089,7 @@ var init_retrievedatapoint = __esm(() => {
55081
55089
  created_by_id: stringType().optional(),
55082
55090
  updated_by_id: stringType().optional(),
55083
55091
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55084
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
55092
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
55085
55093
  }).transform((v2) => {
55086
55094
  return remap(v2, {
55087
55095
  _id: "id",
@@ -55102,7 +55110,7 @@ var init_retrievedatapoint = __esm(() => {
55102
55110
  createdById: stringType().optional(),
55103
55111
  updatedById: stringType().optional(),
55104
55112
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55105
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
55113
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
55106
55114
  }).transform((v2) => {
55107
55115
  return remap(v2, {
55108
55116
  id: "_id",
@@ -55173,7 +55181,7 @@ var init_retrievedataset = __esm(() => {
55173
55181
  updated_by_id: stringType().optional(),
55174
55182
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
55175
55183
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55176
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
55184
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
55177
55185
  }).transform((v2) => {
55178
55186
  return remap(v2, {
55179
55187
  _id: "id",
@@ -55193,7 +55201,7 @@ var init_retrievedataset = __esm(() => {
55193
55201
  updatedById: stringType().optional(),
55194
55202
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
55195
55203
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55196
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
55204
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
55197
55205
  }).transform((v2) => {
55198
55206
  return remap(v2, {
55199
55207
  id: "_id",
@@ -55251,7 +55259,7 @@ var init_retrievedatasource = __esm(() => {
55251
55259
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
55252
55260
  })(RetrieveDatasourceStatus$ ||= {});
55253
55261
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
55254
- _id: stringType().default("01JRWZ21DQ25E99GBXD2ZR1ZSF"),
55262
+ _id: stringType().default("01JRXNDRK7P9VET4P7EWYP1WC1"),
55255
55263
  display_name: stringType(),
55256
55264
  description: stringType().optional(),
55257
55265
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -55274,7 +55282,7 @@ var init_retrievedatasource = __esm(() => {
55274
55282
  });
55275
55283
  });
55276
55284
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
55277
- id: stringType().default("01JRWZ21DQ25E99GBXD2ZR1ZSF"),
55285
+ id: stringType().default("01JRXNDRK7P9VET4P7EWYP1WC1"),
55278
55286
  displayName: stringType(),
55279
55287
  description: stringType().optional(),
55280
55288
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -55906,7 +55914,7 @@ var init_retrievetool = __esm(() => {
55906
55914
  RetrieveToolResponseBodyHttp$.outboundSchema = RetrieveToolResponseBodyHttp$outboundSchema;
55907
55915
  })(RetrieveToolResponseBodyHttp$ ||= {});
55908
55916
  RetrieveToolResponseBody3$inboundSchema = objectType({
55909
- _id: stringType().default("tool_01JRWZ21CF1SJQKXG8NR8RGSF1"),
55917
+ _id: stringType().default("tool_01JRXNDRGTS1FFAW4PYMD7G1WH"),
55910
55918
  path: stringType(),
55911
55919
  key: stringType(),
55912
55920
  description: stringType(),
@@ -55931,7 +55939,7 @@ var init_retrievetool = __esm(() => {
55931
55939
  });
55932
55940
  });
55933
55941
  RetrieveToolResponseBody3$outboundSchema = objectType({
55934
- id: stringType().default("tool_01JRWZ21CF1SJQKXG8NR8RGSF1"),
55942
+ id: stringType().default("tool_01JRXNDRGTS1FFAW4PYMD7G1WH"),
55935
55943
  path: stringType(),
55936
55944
  key: stringType(),
55937
55945
  description: stringType(),
@@ -55988,7 +55996,7 @@ var init_retrievetool = __esm(() => {
55988
55996
  RetrieveToolResponseBodyJsonSchema$.outboundSchema = RetrieveToolResponseBodyJsonSchema$outboundSchema;
55989
55997
  })(RetrieveToolResponseBodyJsonSchema$ ||= {});
55990
55998
  RetrieveToolResponseBody2$inboundSchema = objectType({
55991
- _id: stringType().default("tool_01JRWZ21CEYZYW4Y4XVBTRBTX3"),
55999
+ _id: stringType().default("tool_01JRXNDRGT4W4M14P3E7HM6YBC"),
55992
56000
  path: stringType(),
55993
56001
  key: stringType(),
55994
56002
  description: stringType(),
@@ -56014,7 +56022,7 @@ var init_retrievetool = __esm(() => {
56014
56022
  });
56015
56023
  });
56016
56024
  RetrieveToolResponseBody2$outboundSchema = objectType({
56017
- id: stringType().default("tool_01JRWZ21CEYZYW4Y4XVBTRBTX3"),
56025
+ id: stringType().default("tool_01JRXNDRGT4W4M14P3E7HM6YBC"),
56018
56026
  path: stringType(),
56019
56027
  key: stringType(),
56020
56028
  description: stringType(),
@@ -56072,7 +56080,7 @@ var init_retrievetool = __esm(() => {
56072
56080
  RetrieveToolResponseBodyFunction$.outboundSchema = RetrieveToolResponseBodyFunction$outboundSchema;
56073
56081
  })(RetrieveToolResponseBodyFunction$ ||= {});
56074
56082
  RetrieveToolResponseBody1$inboundSchema = objectType({
56075
- _id: stringType().default("tool_01JRWZ21CE6C7K0MZ5RKCVPXAP"),
56083
+ _id: stringType().default("tool_01JRXNDRGQKDN3WYA6WH0Z675T"),
56076
56084
  path: stringType(),
56077
56085
  key: stringType(),
56078
56086
  description: stringType(),
@@ -56097,7 +56105,7 @@ var init_retrievetool = __esm(() => {
56097
56105
  });
56098
56106
  });
56099
56107
  RetrieveToolResponseBody1$outboundSchema = objectType({
56100
- id: stringType().default("tool_01JRWZ21CE6C7K0MZ5RKCVPXAP"),
56108
+ id: stringType().default("tool_01JRXNDRGQKDN3WYA6WH0Z675T"),
56101
56109
  path: stringType(),
56102
56110
  key: stringType(),
56103
56111
  description: stringType(),
@@ -56684,7 +56692,7 @@ var init_updatedatapoint = __esm(() => {
56684
56692
  created_by_id: stringType().optional(),
56685
56693
  updated_by_id: stringType().optional(),
56686
56694
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56687
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
56695
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
56688
56696
  }).transform((v2) => {
56689
56697
  return remap(v2, {
56690
56698
  _id: "id",
@@ -56705,7 +56713,7 @@ var init_updatedatapoint = __esm(() => {
56705
56713
  createdById: stringType().optional(),
56706
56714
  updatedById: stringType().optional(),
56707
56715
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56708
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
56716
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
56709
56717
  }).transform((v2) => {
56710
56718
  return remap(v2, {
56711
56719
  id: "_id",
@@ -56806,7 +56814,7 @@ var init_updatedataset = __esm(() => {
56806
56814
  parent_id: stringType().optional(),
56807
56815
  version: stringType().optional(),
56808
56816
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56809
- updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
56817
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T21:24:24.287Z").transform((v2) => new Date(v2))
56810
56818
  }).transform((v2) => {
56811
56819
  return remap(v2, {
56812
56820
  _id: "id",
@@ -56829,7 +56837,7 @@ var init_updatedataset = __esm(() => {
56829
56837
  parentId: stringType().optional(),
56830
56838
  version: stringType().optional(),
56831
56839
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56832
- updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
56840
+ updated: dateType().default(() => new Date("2025-04-15T21:24:24.287Z")).transform((v2) => v2.toISOString())
56833
56841
  }).transform((v2) => {
56834
56842
  return remap(v2, {
56835
56843
  id: "_id",
@@ -56910,7 +56918,7 @@ var init_updatedatasource = __esm(() => {
56910
56918
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
56911
56919
  })(UpdateDatasourceStatus$ ||= {});
56912
56920
  UpdateDatasourceResponseBody$inboundSchema = objectType({
56913
- _id: stringType().default("01JRWZ21DR5VHHQZRNGM5QA9FJ"),
56921
+ _id: stringType().default("01JRXNDRK980EBS0CY1BRKEBXA"),
56914
56922
  display_name: stringType(),
56915
56923
  description: stringType().optional(),
56916
56924
  status: UpdateDatasourceStatus$inboundSchema,
@@ -56933,7 +56941,7 @@ var init_updatedatasource = __esm(() => {
56933
56941
  });
56934
56942
  });
56935
56943
  UpdateDatasourceResponseBody$outboundSchema = objectType({
56936
- id: stringType().default("01JRWZ21DR5VHHQZRNGM5QA9FJ"),
56944
+ id: stringType().default("01JRXNDRK980EBS0CY1BRKEBXA"),
56937
56945
  displayName: stringType(),
56938
56946
  description: stringType().optional(),
56939
56947
  status: UpdateDatasourceStatus$outboundSchema,
@@ -59611,7 +59619,7 @@ var init_updatetool = __esm(() => {
59611
59619
  UpdateToolResponseBodyHttp$.outboundSchema = UpdateToolResponseBodyHttp$outboundSchema;
59612
59620
  })(UpdateToolResponseBodyHttp$ ||= {});
59613
59621
  UpdateToolResponseBody3$inboundSchema = objectType({
59614
- _id: stringType().default("tool_01JRWZ21CBPQW755E4ZG2AZCKD"),
59622
+ _id: stringType().default("tool_01JRXNDRGKG38CBZBVYYP7MEK4"),
59615
59623
  path: stringType(),
59616
59624
  key: stringType(),
59617
59625
  description: stringType(),
@@ -59636,7 +59644,7 @@ var init_updatetool = __esm(() => {
59636
59644
  });
59637
59645
  });
59638
59646
  UpdateToolResponseBody3$outboundSchema = objectType({
59639
- id: stringType().default("tool_01JRWZ21CBPQW755E4ZG2AZCKD"),
59647
+ id: stringType().default("tool_01JRXNDRGKG38CBZBVYYP7MEK4"),
59640
59648
  path: stringType(),
59641
59649
  key: stringType(),
59642
59650
  description: stringType(),
@@ -59693,7 +59701,7 @@ var init_updatetool = __esm(() => {
59693
59701
  UpdateToolResponseBodyJsonSchema$.outboundSchema = UpdateToolResponseBodyJsonSchema$outboundSchema;
59694
59702
  })(UpdateToolResponseBodyJsonSchema$ ||= {});
59695
59703
  UpdateToolResponseBody2$inboundSchema = objectType({
59696
- _id: stringType().default("tool_01JRWZ21CBZ5EC5RKQ9KGG1VC0"),
59704
+ _id: stringType().default("tool_01JRXNDRGJ7ZFCZBG9CP7XEA20"),
59697
59705
  path: stringType(),
59698
59706
  key: stringType(),
59699
59707
  description: stringType(),
@@ -59719,7 +59727,7 @@ var init_updatetool = __esm(() => {
59719
59727
  });
59720
59728
  });
59721
59729
  UpdateToolResponseBody2$outboundSchema = objectType({
59722
- id: stringType().default("tool_01JRWZ21CBZ5EC5RKQ9KGG1VC0"),
59730
+ id: stringType().default("tool_01JRXNDRGJ7ZFCZBG9CP7XEA20"),
59723
59731
  path: stringType(),
59724
59732
  key: stringType(),
59725
59733
  description: stringType(),
@@ -59777,7 +59785,7 @@ var init_updatetool = __esm(() => {
59777
59785
  UpdateToolResponseBodyFunction$.outboundSchema = UpdateToolResponseBodyFunction$outboundSchema;
59778
59786
  })(UpdateToolResponseBodyFunction$ ||= {});
59779
59787
  UpdateToolResponseBody1$inboundSchema = objectType({
59780
- _id: stringType().default("tool_01JRWZ21CA45GPTNKEA1W3TXA9"),
59788
+ _id: stringType().default("tool_01JRXNDRGJDD0Q8P89TFGRA5NG"),
59781
59789
  path: stringType(),
59782
59790
  key: stringType(),
59783
59791
  description: stringType(),
@@ -59802,7 +59810,7 @@ var init_updatetool = __esm(() => {
59802
59810
  });
59803
59811
  });
59804
59812
  UpdateToolResponseBody1$outboundSchema = objectType({
59805
- id: stringType().default("tool_01JRWZ21CA45GPTNKEA1W3TXA9"),
59813
+ id: stringType().default("tool_01JRXNDRGJDD0Q8P89TFGRA5NG"),
59806
59814
  path: stringType(),
59807
59815
  key: stringType(),
59808
59816
  description: stringType(),
@@ -68654,7 +68662,7 @@ Updates a tool in the workspace.`,
68654
68662
  function createMCPServer(deps) {
68655
68663
  const server = new McpServer({
68656
68664
  name: "Orq",
68657
- version: "3.4.0-rc.24"
68665
+ version: "3.4.0-rc.26"
68658
68666
  });
68659
68667
  const client = new OrqCore({
68660
68668
  apiKey: deps.apiKey,
@@ -70034,7 +70042,7 @@ var routes = rn({
70034
70042
  var app = Ve(routes, {
70035
70043
  name: "mcp",
70036
70044
  versionInfo: {
70037
- currentVersion: "3.4.0-rc.24"
70045
+ currentVersion: "3.4.0-rc.26"
70038
70046
  }
70039
70047
  });
70040
70048
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -70042,5 +70050,5 @@ export {
70042
70050
  app
70043
70051
  };
70044
70052
 
70045
- //# debugId=98A1701C7C88885564756E2164756E21
70053
+ //# debugId=022689241A97DDBC64756E2164756E21
70046
70054
  //# sourceMappingURL=mcp-server.js.map