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

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 (53) hide show
  1. package/bin/mcp-server.js +63 -63
  2. package/bin/mcp-server.js.map +25 -25
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +2 -2
  5. package/lib/config.js +2 -2
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/operations/bulkcreatedatapoints.js +2 -2
  9. package/models/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/createtool.js +6 -6
  14. package/models/operations/fileget.js +2 -2
  15. package/models/operations/filelist.js +2 -2
  16. package/models/operations/fileupload.js +2 -2
  17. package/models/operations/getalltools.js +6 -6
  18. package/models/operations/listdatasetdatapoints.js +2 -2
  19. package/models/operations/listdatasets.js +2 -2
  20. package/models/operations/listdatasources.js +2 -2
  21. package/models/operations/retrievedatapoint.js +2 -2
  22. package/models/operations/retrievedataset.js +2 -2
  23. package/models/operations/retrievedatasource.js +2 -2
  24. package/models/operations/retrievetool.js +6 -6
  25. package/models/operations/updatedatapoint.js +2 -2
  26. package/models/operations/updatedataset.js +2 -2
  27. package/models/operations/updatedatasource.js +2 -2
  28. package/models/operations/updatetool.js +6 -6
  29. package/package.json +1 -1
  30. package/src/lib/config.ts +2 -2
  31. package/src/mcp-server/mcp-server.ts +1 -1
  32. package/src/mcp-server/server.ts +1 -1
  33. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  34. package/src/models/operations/createcontact.ts +2 -2
  35. package/src/models/operations/createdataset.ts +2 -2
  36. package/src/models/operations/createdatasetitem.ts +2 -2
  37. package/src/models/operations/createdatasource.ts +2 -2
  38. package/src/models/operations/createtool.ts +6 -6
  39. package/src/models/operations/fileget.ts +2 -2
  40. package/src/models/operations/filelist.ts +2 -2
  41. package/src/models/operations/fileupload.ts +2 -2
  42. package/src/models/operations/getalltools.ts +6 -6
  43. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  44. package/src/models/operations/listdatasets.ts +2 -2
  45. package/src/models/operations/listdatasources.ts +2 -2
  46. package/src/models/operations/retrievedatapoint.ts +2 -2
  47. package/src/models/operations/retrievedataset.ts +2 -2
  48. package/src/models/operations/retrievedatasource.ts +2 -2
  49. package/src/models/operations/retrievetool.ts +6 -6
  50. package/src/models/operations/updatedatapoint.ts +2 -2
  51. package/src/models/operations/updatedataset.ts +2 -2
  52. package/src/models/operations/updatedatasource.ts +2 -2
  53. 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.23",
34228
+ sdkVersion: "3.4.0-rc.24",
34229
34229
  genVersion: "2.570.4",
34230
- userAgent: "speakeasy-sdk/typescript 3.4.0-rc.23 2.570.4 2.0 @orq-ai/node"
34230
+ userAgent: "speakeasy-sdk/typescript 3.4.0-rc.24 2.570.4 2.0 @orq-ai/node"
34231
34231
  };
34232
34232
  });
34233
34233
 
@@ -36271,7 +36271,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36271
36271
  created_by_id: stringType().optional(),
36272
36272
  updated_by_id: stringType().optional(),
36273
36273
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36274
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
36274
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
36275
36275
  }).transform((v2) => {
36276
36276
  return remap(v2, {
36277
36277
  _id: "id",
@@ -36292,7 +36292,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36292
36292
  createdById: stringType().optional(),
36293
36293
  updatedById: stringType().optional(),
36294
36294
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36295
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
36295
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
36296
36296
  }).transform((v2) => {
36297
36297
  return remap(v2, {
36298
36298
  id: "_id",
@@ -36506,7 +36506,7 @@ var init_createcontact = __esm(() => {
36506
36506
  tags: arrayType(stringType()).optional(),
36507
36507
  metadata: recordType(anyType()).optional(),
36508
36508
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36509
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
36509
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
36510
36510
  }).transform((v2) => {
36511
36511
  return remap(v2, {
36512
36512
  external_id: "externalId",
@@ -36523,7 +36523,7 @@ var init_createcontact = __esm(() => {
36523
36523
  tags: arrayType(stringType()).optional(),
36524
36524
  metadata: recordType(anyType()).optional(),
36525
36525
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36526
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
36526
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
36527
36527
  }).transform((v2) => {
36528
36528
  return remap(v2, {
36529
36529
  externalId: "external_id",
@@ -36593,7 +36593,7 @@ var init_createdataset = __esm(() => {
36593
36593
  updated_by_id: stringType().optional(),
36594
36594
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36595
36595
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36596
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
36596
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
36597
36597
  }).transform((v2) => {
36598
36598
  return remap(v2, {
36599
36599
  _id: "id",
@@ -36613,7 +36613,7 @@ var init_createdataset = __esm(() => {
36613
36613
  updatedById: stringType().optional(),
36614
36614
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36615
36615
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36616
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
36616
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
36617
36617
  }).transform((v2) => {
36618
36618
  return remap(v2, {
36619
36619
  id: "_id",
@@ -37049,7 +37049,7 @@ var init_createdatasetitem = __esm(() => {
37049
37049
  created_by_id: stringType().optional(),
37050
37050
  updated_by_id: stringType().optional(),
37051
37051
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37052
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
37052
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
37053
37053
  }).transform((v2) => {
37054
37054
  return remap(v2, {
37055
37055
  _id: "id",
@@ -37070,7 +37070,7 @@ var init_createdatasetitem = __esm(() => {
37070
37070
  createdById: stringType().optional(),
37071
37071
  updatedById: stringType().optional(),
37072
37072
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37073
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
37073
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
37074
37074
  }).transform((v2) => {
37075
37075
  return remap(v2, {
37076
37076
  id: "_id",
@@ -37292,7 +37292,7 @@ var init_createdatasource = __esm(() => {
37292
37292
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37293
37293
  })(CreateDatasourceStatus$ ||= {});
37294
37294
  CreateDatasourceResponseBody$inboundSchema = objectType({
37295
- _id: stringType().default("01JRWS1XVQ9XGXKQA9QNDRWZ3R"),
37295
+ _id: stringType().default("01JRWZ21DQVC2S2G3H85DJYQF5"),
37296
37296
  display_name: stringType(),
37297
37297
  description: stringType().optional(),
37298
37298
  status: CreateDatasourceStatus$inboundSchema,
@@ -37315,7 +37315,7 @@ var init_createdatasource = __esm(() => {
37315
37315
  });
37316
37316
  });
37317
37317
  CreateDatasourceResponseBody$outboundSchema = objectType({
37318
- id: stringType().default("01JRWS1XVQ9XGXKQA9QNDRWZ3R"),
37318
+ id: stringType().default("01JRWZ21DQVC2S2G3H85DJYQF5"),
37319
37319
  displayName: stringType(),
37320
37320
  description: stringType().optional(),
37321
37321
  status: CreateDatasourceStatus$outboundSchema,
@@ -40103,7 +40103,7 @@ var init_createtool = __esm(() => {
40103
40103
  ResponseBodyHttp$.outboundSchema = ResponseBodyHttp$outboundSchema;
40104
40104
  })(ResponseBodyHttp$ ||= {});
40105
40105
  ResponseBody3$inboundSchema = objectType({
40106
- _id: stringType().default("tool_01JRWS1XSG738EYB2WZ0BCRACR"),
40106
+ _id: stringType().default("tool_01JRWZ21C6MS35H6G2JF3NPF0G"),
40107
40107
  path: stringType(),
40108
40108
  key: stringType(),
40109
40109
  description: stringType(),
@@ -40128,7 +40128,7 @@ var init_createtool = __esm(() => {
40128
40128
  });
40129
40129
  });
40130
40130
  ResponseBody3$outboundSchema = objectType({
40131
- id: stringType().default("tool_01JRWS1XSG738EYB2WZ0BCRACR"),
40131
+ id: stringType().default("tool_01JRWZ21C6MS35H6G2JF3NPF0G"),
40132
40132
  path: stringType(),
40133
40133
  key: stringType(),
40134
40134
  description: stringType(),
@@ -40185,7 +40185,7 @@ var init_createtool = __esm(() => {
40185
40185
  ResponseBodyJsonSchema$.outboundSchema = ResponseBodyJsonSchema$outboundSchema;
40186
40186
  })(ResponseBodyJsonSchema$ ||= {});
40187
40187
  ResponseBody2$inboundSchema = objectType({
40188
- _id: stringType().default("tool_01JRWS1XSFFCHCQK6KKWHK3SCX"),
40188
+ _id: stringType().default("tool_01JRWZ21C5N59XY6BRSFG3VMMK"),
40189
40189
  path: stringType(),
40190
40190
  key: stringType(),
40191
40191
  description: stringType(),
@@ -40211,7 +40211,7 @@ var init_createtool = __esm(() => {
40211
40211
  });
40212
40212
  });
40213
40213
  ResponseBody2$outboundSchema = objectType({
40214
- id: stringType().default("tool_01JRWS1XSFFCHCQK6KKWHK3SCX"),
40214
+ id: stringType().default("tool_01JRWZ21C5N59XY6BRSFG3VMMK"),
40215
40215
  path: stringType(),
40216
40216
  key: stringType(),
40217
40217
  description: stringType(),
@@ -40269,7 +40269,7 @@ var init_createtool = __esm(() => {
40269
40269
  ResponseBodyFunction$.outboundSchema = ResponseBodyFunction$outboundSchema;
40270
40270
  })(ResponseBodyFunction$ ||= {});
40271
40271
  ResponseBody1$inboundSchema = objectType({
40272
- _id: stringType().default("tool_01JRWS1XSFW68M39HVETSCVF5Z"),
40272
+ _id: stringType().default("tool_01JRWZ21C5RRD7ANTA7A3MNM4Y"),
40273
40273
  path: stringType(),
40274
40274
  key: stringType(),
40275
40275
  description: stringType(),
@@ -40294,7 +40294,7 @@ var init_createtool = __esm(() => {
40294
40294
  });
40295
40295
  });
40296
40296
  ResponseBody1$outboundSchema = objectType({
40297
- id: stringType().default("tool_01JRWS1XSFW68M39HVETSCVF5Z"),
40297
+ id: stringType().default("tool_01JRWZ21C5RRD7ANTA7A3MNM4Y"),
40298
40298
  path: stringType(),
40299
40299
  key: stringType(),
40300
40300
  description: stringType(),
@@ -45640,7 +45640,7 @@ var init_fileget = __esm(() => {
45640
45640
  bytes: numberType(),
45641
45641
  file_name: stringType(),
45642
45642
  workspace_id: stringType(),
45643
- created: stringType().datetime({ offset: true }).default("2025-04-15T13:08:40.195Z").transform((v2) => new Date(v2))
45643
+ created: stringType().datetime({ offset: true }).default("2025-04-15T14:53:35.371Z").transform((v2) => new Date(v2))
45644
45644
  }).transform((v2) => {
45645
45645
  return remap(v2, {
45646
45646
  _id: "id",
@@ -45656,7 +45656,7 @@ var init_fileget = __esm(() => {
45656
45656
  bytes: numberType(),
45657
45657
  fileName: stringType(),
45658
45658
  workspaceId: stringType(),
45659
- created: dateType().default(() => new Date("2025-04-15T13:08:40.195Z")).transform((v2) => v2.toISOString())
45659
+ created: dateType().default(() => new Date("2025-04-15T14:53:35.371Z")).transform((v2) => v2.toISOString())
45660
45660
  }).transform((v2) => {
45661
45661
  return remap(v2, {
45662
45662
  id: "_id",
@@ -45727,7 +45727,7 @@ var init_filelist = __esm(() => {
45727
45727
  bytes: numberType(),
45728
45728
  file_name: stringType(),
45729
45729
  workspace_id: stringType(),
45730
- created: stringType().datetime({ offset: true }).default("2025-04-15T13:08:40.195Z").transform((v2) => new Date(v2))
45730
+ created: stringType().datetime({ offset: true }).default("2025-04-15T14:53:35.371Z").transform((v2) => new Date(v2))
45731
45731
  }).transform((v2) => {
45732
45732
  return remap(v2, {
45733
45733
  _id: "id",
@@ -45743,7 +45743,7 @@ var init_filelist = __esm(() => {
45743
45743
  bytes: numberType(),
45744
45744
  fileName: stringType(),
45745
45745
  workspaceId: stringType(),
45746
- created: dateType().default(() => new Date("2025-04-15T13:08:40.195Z")).transform((v2) => v2.toISOString())
45746
+ created: dateType().default(() => new Date("2025-04-15T14:53:35.371Z")).transform((v2) => v2.toISOString())
45747
45747
  }).transform((v2) => {
45748
45748
  return remap(v2, {
45749
45749
  id: "_id",
@@ -45875,7 +45875,7 @@ var init_fileupload = __esm(() => {
45875
45875
  bytes: numberType(),
45876
45876
  file_name: stringType(),
45877
45877
  workspace_id: stringType(),
45878
- created: stringType().datetime({ offset: true }).default("2025-04-15T13:08:40.195Z").transform((v2) => new Date(v2))
45878
+ created: stringType().datetime({ offset: true }).default("2025-04-15T14:53:35.371Z").transform((v2) => new Date(v2))
45879
45879
  }).transform((v2) => {
45880
45880
  return remap(v2, {
45881
45881
  _id: "id",
@@ -45891,7 +45891,7 @@ var init_fileupload = __esm(() => {
45891
45891
  bytes: numberType(),
45892
45892
  fileName: stringType(),
45893
45893
  workspaceId: stringType(),
45894
- created: dateType().default(() => new Date("2025-04-15T13:08:40.195Z")).transform((v2) => v2.toISOString())
45894
+ created: dateType().default(() => new Date("2025-04-15T14:53:35.371Z")).transform((v2) => v2.toISOString())
45895
45895
  }).transform((v2) => {
45896
45896
  return remap(v2, {
45897
45897
  id: "_id",
@@ -47267,7 +47267,7 @@ var init_getalltools = __esm(() => {
47267
47267
  DataHttp$.outboundSchema = DataHttp$outboundSchema;
47268
47268
  })(DataHttp$ ||= {});
47269
47269
  Data3$inboundSchema = objectType({
47270
- _id: stringType().default("tool_01JRWS1XSD5ZA7TW9PDZHDBVEF"),
47270
+ _id: stringType().default("tool_01JRWZ21C33FCYJWQM4KPJSV12"),
47271
47271
  path: stringType(),
47272
47272
  key: stringType(),
47273
47273
  description: stringType(),
@@ -47292,7 +47292,7 @@ var init_getalltools = __esm(() => {
47292
47292
  });
47293
47293
  });
47294
47294
  Data3$outboundSchema = objectType({
47295
- id: stringType().default("tool_01JRWS1XSD5ZA7TW9PDZHDBVEF"),
47295
+ id: stringType().default("tool_01JRWZ21C33FCYJWQM4KPJSV12"),
47296
47296
  path: stringType(),
47297
47297
  key: stringType(),
47298
47298
  description: stringType(),
@@ -47349,7 +47349,7 @@ var init_getalltools = __esm(() => {
47349
47349
  DataJsonSchema$.outboundSchema = DataJsonSchema$outboundSchema;
47350
47350
  })(DataJsonSchema$ ||= {});
47351
47351
  Data2$inboundSchema = objectType({
47352
- _id: stringType().default("tool_01JRWS1XSCEEXP4MS1384366HB"),
47352
+ _id: stringType().default("tool_01JRWZ21C3N0BFKSHFCSXY64HA"),
47353
47353
  path: stringType(),
47354
47354
  key: stringType(),
47355
47355
  description: stringType(),
@@ -47375,7 +47375,7 @@ var init_getalltools = __esm(() => {
47375
47375
  });
47376
47376
  });
47377
47377
  Data2$outboundSchema = objectType({
47378
- id: stringType().default("tool_01JRWS1XSCEEXP4MS1384366HB"),
47378
+ id: stringType().default("tool_01JRWZ21C3N0BFKSHFCSXY64HA"),
47379
47379
  path: stringType(),
47380
47380
  key: stringType(),
47381
47381
  description: stringType(),
@@ -47433,7 +47433,7 @@ var init_getalltools = __esm(() => {
47433
47433
  DataFunction$.outboundSchema = DataFunction$outboundSchema;
47434
47434
  })(DataFunction$ ||= {});
47435
47435
  Data1$inboundSchema = objectType({
47436
- _id: stringType().default("tool_01JRWS1XSBJX4YRSQTK152AEF7"),
47436
+ _id: stringType().default("tool_01JRWZ21C216SNKSCD00KQG2E6"),
47437
47437
  path: stringType(),
47438
47438
  key: stringType(),
47439
47439
  description: stringType(),
@@ -47458,7 +47458,7 @@ var init_getalltools = __esm(() => {
47458
47458
  });
47459
47459
  });
47460
47460
  Data1$outboundSchema = objectType({
47461
- id: stringType().default("tool_01JRWS1XSBJX4YRSQTK152AEF7"),
47461
+ id: stringType().default("tool_01JRWZ21C216SNKSCD00KQG2E6"),
47462
47462
  path: stringType(),
47463
47463
  key: stringType(),
47464
47464
  description: stringType(),
@@ -49414,7 +49414,7 @@ var init_listdatasetdatapoints = __esm(() => {
49414
49414
  created_by_id: stringType().optional(),
49415
49415
  updated_by_id: stringType().optional(),
49416
49416
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49417
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
49417
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
49418
49418
  }).transform((v2) => {
49419
49419
  return remap(v2, {
49420
49420
  _id: "id",
@@ -49435,7 +49435,7 @@ var init_listdatasetdatapoints = __esm(() => {
49435
49435
  createdById: stringType().optional(),
49436
49436
  updatedById: stringType().optional(),
49437
49437
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49438
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
49438
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
49439
49439
  }).transform((v2) => {
49440
49440
  return remap(v2, {
49441
49441
  id: "_id",
@@ -49543,7 +49543,7 @@ var init_listdatasets = __esm(() => {
49543
49543
  updated_by_id: stringType().optional(),
49544
49544
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
49545
49545
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49546
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
49546
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
49547
49547
  }).transform((v2) => {
49548
49548
  return remap(v2, {
49549
49549
  _id: "id",
@@ -49563,7 +49563,7 @@ var init_listdatasets = __esm(() => {
49563
49563
  updatedById: stringType().optional(),
49564
49564
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
49565
49565
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49566
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
49566
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
49567
49567
  }).transform((v2) => {
49568
49568
  return remap(v2, {
49569
49569
  id: "_id",
@@ -49668,7 +49668,7 @@ var init_listdatasources = __esm(() => {
49668
49668
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
49669
49669
  })(ListDatasourcesStatus$ ||= {});
49670
49670
  ListDatasourcesData$inboundSchema = objectType({
49671
- _id: stringType().default("01JRWS1XVK8J3DS8D81N6R9FQM"),
49671
+ _id: stringType().default("01JRWZ21DPMZWQW2HGQYMZ50AX"),
49672
49672
  display_name: stringType(),
49673
49673
  description: stringType().optional(),
49674
49674
  status: ListDatasourcesStatus$inboundSchema,
@@ -49691,7 +49691,7 @@ var init_listdatasources = __esm(() => {
49691
49691
  });
49692
49692
  });
49693
49693
  ListDatasourcesData$outboundSchema = objectType({
49694
- id: stringType().default("01JRWS1XVK8J3DS8D81N6R9FQM"),
49694
+ id: stringType().default("01JRWZ21DPMZWQW2HGQYMZ50AX"),
49695
49695
  displayName: stringType(),
49696
49696
  description: stringType().optional(),
49697
49697
  status: ListDatasourcesStatus$outboundSchema,
@@ -55081,7 +55081,7 @@ var init_retrievedatapoint = __esm(() => {
55081
55081
  created_by_id: stringType().optional(),
55082
55082
  updated_by_id: stringType().optional(),
55083
55083
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55084
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
55084
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
55085
55085
  }).transform((v2) => {
55086
55086
  return remap(v2, {
55087
55087
  _id: "id",
@@ -55102,7 +55102,7 @@ var init_retrievedatapoint = __esm(() => {
55102
55102
  createdById: stringType().optional(),
55103
55103
  updatedById: stringType().optional(),
55104
55104
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55105
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
55105
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
55106
55106
  }).transform((v2) => {
55107
55107
  return remap(v2, {
55108
55108
  id: "_id",
@@ -55173,7 +55173,7 @@ var init_retrievedataset = __esm(() => {
55173
55173
  updated_by_id: stringType().optional(),
55174
55174
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
55175
55175
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55176
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
55176
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
55177
55177
  }).transform((v2) => {
55178
55178
  return remap(v2, {
55179
55179
  _id: "id",
@@ -55193,7 +55193,7 @@ var init_retrievedataset = __esm(() => {
55193
55193
  updatedById: stringType().optional(),
55194
55194
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
55195
55195
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55196
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
55196
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
55197
55197
  }).transform((v2) => {
55198
55198
  return remap(v2, {
55199
55199
  id: "_id",
@@ -55251,7 +55251,7 @@ var init_retrievedatasource = __esm(() => {
55251
55251
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
55252
55252
  })(RetrieveDatasourceStatus$ ||= {});
55253
55253
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
55254
- _id: stringType().default("01JRWS1XVPG5VE123B4E37VYT2"),
55254
+ _id: stringType().default("01JRWZ21DQ25E99GBXD2ZR1ZSF"),
55255
55255
  display_name: stringType(),
55256
55256
  description: stringType().optional(),
55257
55257
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -55274,7 +55274,7 @@ var init_retrievedatasource = __esm(() => {
55274
55274
  });
55275
55275
  });
55276
55276
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
55277
- id: stringType().default("01JRWS1XVPG5VE123B4E37VYT2"),
55277
+ id: stringType().default("01JRWZ21DQ25E99GBXD2ZR1ZSF"),
55278
55278
  displayName: stringType(),
55279
55279
  description: stringType().optional(),
55280
55280
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -55906,7 +55906,7 @@ var init_retrievetool = __esm(() => {
55906
55906
  RetrieveToolResponseBodyHttp$.outboundSchema = RetrieveToolResponseBodyHttp$outboundSchema;
55907
55907
  })(RetrieveToolResponseBodyHttp$ ||= {});
55908
55908
  RetrieveToolResponseBody3$inboundSchema = objectType({
55909
- _id: stringType().default("tool_01JRWS1XST8EG6XTJTTD4W1TE1"),
55909
+ _id: stringType().default("tool_01JRWZ21CF1SJQKXG8NR8RGSF1"),
55910
55910
  path: stringType(),
55911
55911
  key: stringType(),
55912
55912
  description: stringType(),
@@ -55931,7 +55931,7 @@ var init_retrievetool = __esm(() => {
55931
55931
  });
55932
55932
  });
55933
55933
  RetrieveToolResponseBody3$outboundSchema = objectType({
55934
- id: stringType().default("tool_01JRWS1XST8EG6XTJTTD4W1TE1"),
55934
+ id: stringType().default("tool_01JRWZ21CF1SJQKXG8NR8RGSF1"),
55935
55935
  path: stringType(),
55936
55936
  key: stringType(),
55937
55937
  description: stringType(),
@@ -55988,7 +55988,7 @@ var init_retrievetool = __esm(() => {
55988
55988
  RetrieveToolResponseBodyJsonSchema$.outboundSchema = RetrieveToolResponseBodyJsonSchema$outboundSchema;
55989
55989
  })(RetrieveToolResponseBodyJsonSchema$ ||= {});
55990
55990
  RetrieveToolResponseBody2$inboundSchema = objectType({
55991
- _id: stringType().default("tool_01JRWS1XSSRM2KGR7VHHQ9GV56"),
55991
+ _id: stringType().default("tool_01JRWZ21CEYZYW4Y4XVBTRBTX3"),
55992
55992
  path: stringType(),
55993
55993
  key: stringType(),
55994
55994
  description: stringType(),
@@ -56014,7 +56014,7 @@ var init_retrievetool = __esm(() => {
56014
56014
  });
56015
56015
  });
56016
56016
  RetrieveToolResponseBody2$outboundSchema = objectType({
56017
- id: stringType().default("tool_01JRWS1XSSRM2KGR7VHHQ9GV56"),
56017
+ id: stringType().default("tool_01JRWZ21CEYZYW4Y4XVBTRBTX3"),
56018
56018
  path: stringType(),
56019
56019
  key: stringType(),
56020
56020
  description: stringType(),
@@ -56072,7 +56072,7 @@ var init_retrievetool = __esm(() => {
56072
56072
  RetrieveToolResponseBodyFunction$.outboundSchema = RetrieveToolResponseBodyFunction$outboundSchema;
56073
56073
  })(RetrieveToolResponseBodyFunction$ ||= {});
56074
56074
  RetrieveToolResponseBody1$inboundSchema = objectType({
56075
- _id: stringType().default("tool_01JRWS1XSR09JJWCBHDFVN53RF"),
56075
+ _id: stringType().default("tool_01JRWZ21CE6C7K0MZ5RKCVPXAP"),
56076
56076
  path: stringType(),
56077
56077
  key: stringType(),
56078
56078
  description: stringType(),
@@ -56097,7 +56097,7 @@ var init_retrievetool = __esm(() => {
56097
56097
  });
56098
56098
  });
56099
56099
  RetrieveToolResponseBody1$outboundSchema = objectType({
56100
- id: stringType().default("tool_01JRWS1XSR09JJWCBHDFVN53RF"),
56100
+ id: stringType().default("tool_01JRWZ21CE6C7K0MZ5RKCVPXAP"),
56101
56101
  path: stringType(),
56102
56102
  key: stringType(),
56103
56103
  description: stringType(),
@@ -56684,7 +56684,7 @@ var init_updatedatapoint = __esm(() => {
56684
56684
  created_by_id: stringType().optional(),
56685
56685
  updated_by_id: stringType().optional(),
56686
56686
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56687
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
56687
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
56688
56688
  }).transform((v2) => {
56689
56689
  return remap(v2, {
56690
56690
  _id: "id",
@@ -56705,7 +56705,7 @@ var init_updatedatapoint = __esm(() => {
56705
56705
  createdById: stringType().optional(),
56706
56706
  updatedById: stringType().optional(),
56707
56707
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56708
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
56708
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
56709
56709
  }).transform((v2) => {
56710
56710
  return remap(v2, {
56711
56711
  id: "_id",
@@ -56806,7 +56806,7 @@ var init_updatedataset = __esm(() => {
56806
56806
  parent_id: stringType().optional(),
56807
56807
  version: stringType().optional(),
56808
56808
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56809
- updated: stringType().datetime({ offset: true }).default("2025-04-15T13:08:37.542Z").transform((v2) => new Date(v2))
56809
+ updated: stringType().datetime({ offset: true }).default("2025-04-15T14:53:32.746Z").transform((v2) => new Date(v2))
56810
56810
  }).transform((v2) => {
56811
56811
  return remap(v2, {
56812
56812
  _id: "id",
@@ -56829,7 +56829,7 @@ var init_updatedataset = __esm(() => {
56829
56829
  parentId: stringType().optional(),
56830
56830
  version: stringType().optional(),
56831
56831
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56832
- updated: dateType().default(() => new Date("2025-04-15T13:08:37.542Z")).transform((v2) => v2.toISOString())
56832
+ updated: dateType().default(() => new Date("2025-04-15T14:53:32.746Z")).transform((v2) => v2.toISOString())
56833
56833
  }).transform((v2) => {
56834
56834
  return remap(v2, {
56835
56835
  id: "_id",
@@ -56910,7 +56910,7 @@ var init_updatedatasource = __esm(() => {
56910
56910
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
56911
56911
  })(UpdateDatasourceStatus$ ||= {});
56912
56912
  UpdateDatasourceResponseBody$inboundSchema = objectType({
56913
- _id: stringType().default("01JRWS1XVV7Z63R543HSSNS4KB"),
56913
+ _id: stringType().default("01JRWZ21DR5VHHQZRNGM5QA9FJ"),
56914
56914
  display_name: stringType(),
56915
56915
  description: stringType().optional(),
56916
56916
  status: UpdateDatasourceStatus$inboundSchema,
@@ -56933,7 +56933,7 @@ var init_updatedatasource = __esm(() => {
56933
56933
  });
56934
56934
  });
56935
56935
  UpdateDatasourceResponseBody$outboundSchema = objectType({
56936
- id: stringType().default("01JRWS1XVV7Z63R543HSSNS4KB"),
56936
+ id: stringType().default("01JRWZ21DR5VHHQZRNGM5QA9FJ"),
56937
56937
  displayName: stringType(),
56938
56938
  description: stringType().optional(),
56939
56939
  status: UpdateDatasourceStatus$outboundSchema,
@@ -59611,7 +59611,7 @@ var init_updatetool = __esm(() => {
59611
59611
  UpdateToolResponseBodyHttp$.outboundSchema = UpdateToolResponseBodyHttp$outboundSchema;
59612
59612
  })(UpdateToolResponseBodyHttp$ ||= {});
59613
59613
  UpdateToolResponseBody3$inboundSchema = objectType({
59614
- _id: stringType().default("tool_01JRWS1XSNP80TJ5VTGJ5CH579"),
59614
+ _id: stringType().default("tool_01JRWZ21CBPQW755E4ZG2AZCKD"),
59615
59615
  path: stringType(),
59616
59616
  key: stringType(),
59617
59617
  description: stringType(),
@@ -59636,7 +59636,7 @@ var init_updatetool = __esm(() => {
59636
59636
  });
59637
59637
  });
59638
59638
  UpdateToolResponseBody3$outboundSchema = objectType({
59639
- id: stringType().default("tool_01JRWS1XSNP80TJ5VTGJ5CH579"),
59639
+ id: stringType().default("tool_01JRWZ21CBPQW755E4ZG2AZCKD"),
59640
59640
  path: stringType(),
59641
59641
  key: stringType(),
59642
59642
  description: stringType(),
@@ -59693,7 +59693,7 @@ var init_updatetool = __esm(() => {
59693
59693
  UpdateToolResponseBodyJsonSchema$.outboundSchema = UpdateToolResponseBodyJsonSchema$outboundSchema;
59694
59694
  })(UpdateToolResponseBodyJsonSchema$ ||= {});
59695
59695
  UpdateToolResponseBody2$inboundSchema = objectType({
59696
- _id: stringType().default("tool_01JRWS1XSMW0JTGDJ8ZV7P0RE2"),
59696
+ _id: stringType().default("tool_01JRWZ21CBZ5EC5RKQ9KGG1VC0"),
59697
59697
  path: stringType(),
59698
59698
  key: stringType(),
59699
59699
  description: stringType(),
@@ -59719,7 +59719,7 @@ var init_updatetool = __esm(() => {
59719
59719
  });
59720
59720
  });
59721
59721
  UpdateToolResponseBody2$outboundSchema = objectType({
59722
- id: stringType().default("tool_01JRWS1XSMW0JTGDJ8ZV7P0RE2"),
59722
+ id: stringType().default("tool_01JRWZ21CBZ5EC5RKQ9KGG1VC0"),
59723
59723
  path: stringType(),
59724
59724
  key: stringType(),
59725
59725
  description: stringType(),
@@ -59777,7 +59777,7 @@ var init_updatetool = __esm(() => {
59777
59777
  UpdateToolResponseBodyFunction$.outboundSchema = UpdateToolResponseBodyFunction$outboundSchema;
59778
59778
  })(UpdateToolResponseBodyFunction$ ||= {});
59779
59779
  UpdateToolResponseBody1$inboundSchema = objectType({
59780
- _id: stringType().default("tool_01JRWS1XSK8290157X2NP4HW78"),
59780
+ _id: stringType().default("tool_01JRWZ21CA45GPTNKEA1W3TXA9"),
59781
59781
  path: stringType(),
59782
59782
  key: stringType(),
59783
59783
  description: stringType(),
@@ -59802,7 +59802,7 @@ var init_updatetool = __esm(() => {
59802
59802
  });
59803
59803
  });
59804
59804
  UpdateToolResponseBody1$outboundSchema = objectType({
59805
- id: stringType().default("tool_01JRWS1XSK8290157X2NP4HW78"),
59805
+ id: stringType().default("tool_01JRWZ21CA45GPTNKEA1W3TXA9"),
59806
59806
  path: stringType(),
59807
59807
  key: stringType(),
59808
59808
  description: stringType(),
@@ -68654,7 +68654,7 @@ Updates a tool in the workspace.`,
68654
68654
  function createMCPServer(deps) {
68655
68655
  const server = new McpServer({
68656
68656
  name: "Orq",
68657
- version: "3.4.0-rc.23"
68657
+ version: "3.4.0-rc.24"
68658
68658
  });
68659
68659
  const client = new OrqCore({
68660
68660
  apiKey: deps.apiKey,
@@ -70034,7 +70034,7 @@ var routes = rn({
70034
70034
  var app = Ve(routes, {
70035
70035
  name: "mcp",
70036
70036
  versionInfo: {
70037
- currentVersion: "3.4.0-rc.23"
70037
+ currentVersion: "3.4.0-rc.24"
70038
70038
  }
70039
70039
  });
70040
70040
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -70042,5 +70042,5 @@ export {
70042
70042
  app
70043
70043
  };
70044
70044
 
70045
- //# debugId=789AF05D8217DC0B64756E2164756E21
70045
+ //# debugId=98A1701C7C88885564756E2164756E21
70046
70046
  //# sourceMappingURL=mcp-server.js.map