@orq-ai/node 3.3.6 → 3.3.7

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 (57) hide show
  1. package/bin/mcp-server.js +55 -55
  2. package/bin/mcp-server.js.map +22 -22
  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.d.ts +4 -4
  13. package/models/operations/createdatasource.d.ts.map +1 -1
  14. package/models/operations/createdatasource.js +6 -6
  15. package/models/operations/createdatasource.js.map +1 -1
  16. package/models/operations/fileget.js +2 -2
  17. package/models/operations/filelist.js +2 -2
  18. package/models/operations/fileupload.js +2 -2
  19. package/models/operations/listdatasetdatapoints.js +2 -2
  20. package/models/operations/listdatasets.js +2 -2
  21. package/models/operations/listdatasources.d.ts +4 -4
  22. package/models/operations/listdatasources.d.ts.map +1 -1
  23. package/models/operations/listdatasources.js +6 -6
  24. package/models/operations/listdatasources.js.map +1 -1
  25. package/models/operations/retrievedatapoint.js +2 -2
  26. package/models/operations/retrievedataset.js +2 -2
  27. package/models/operations/retrievedatasource.d.ts +4 -4
  28. package/models/operations/retrievedatasource.d.ts.map +1 -1
  29. package/models/operations/retrievedatasource.js +6 -6
  30. package/models/operations/retrievedatasource.js.map +1 -1
  31. package/models/operations/updatedatapoint.js +2 -2
  32. package/models/operations/updatedataset.js +2 -2
  33. package/models/operations/updatedatasource.d.ts +4 -4
  34. package/models/operations/updatedatasource.d.ts.map +1 -1
  35. package/models/operations/updatedatasource.js +6 -6
  36. package/models/operations/updatedatasource.js.map +1 -1
  37. package/package.json +1 -1
  38. package/src/lib/config.ts +2 -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 +10 -10
  46. package/src/models/operations/fileget.ts +2 -2
  47. package/src/models/operations/filelist.ts +2 -2
  48. package/src/models/operations/fileupload.ts +2 -2
  49. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  50. package/src/models/operations/listdatasets.ts +2 -2
  51. package/src/models/operations/listdatasources.ts +10 -10
  52. package/src/models/operations/retrievedatapoint.ts +2 -2
  53. package/src/models/operations/retrievedataset.ts +2 -2
  54. package/src/models/operations/retrievedatasource.ts +10 -10
  55. package/src/models/operations/updatedatapoint.ts +2 -2
  56. package/src/models/operations/updatedataset.ts +2 -2
  57. package/src/models/operations/updatedatasource.ts +10 -10
package/bin/mcp-server.js CHANGED
@@ -34228,9 +34228,9 @@ var init_config = __esm(() => {
34228
34228
  SDK_METADATA = {
34229
34229
  language: "typescript",
34230
34230
  openapiDocVersion: "2.0",
34231
- sdkVersion: "3.3.6",
34231
+ sdkVersion: "3.3.7",
34232
34232
  genVersion: "2.568.2",
34233
- userAgent: "speakeasy-sdk/typescript 3.3.6 2.568.2 2.0 @orq-ai/node"
34233
+ userAgent: "speakeasy-sdk/typescript 3.3.7 2.568.2 2.0 @orq-ai/node"
34234
34234
  };
34235
34235
  });
34236
34236
 
@@ -36274,7 +36274,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36274
36274
  created_by_id: stringType().optional(),
36275
36275
  updated_by_id: stringType().optional(),
36276
36276
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36277
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
36277
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
36278
36278
  }).transform((v2) => {
36279
36279
  return remap(v2, {
36280
36280
  _id: "id",
@@ -36295,7 +36295,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36295
36295
  createdById: stringType().optional(),
36296
36296
  updatedById: stringType().optional(),
36297
36297
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36298
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
36298
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
36299
36299
  }).transform((v2) => {
36300
36300
  return remap(v2, {
36301
36301
  id: "_id",
@@ -36499,7 +36499,7 @@ var init_createcontact = __esm(() => {
36499
36499
  tags: arrayType(stringType()).optional(),
36500
36500
  metadata: recordType(anyType()).optional(),
36501
36501
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36502
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
36502
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
36503
36503
  }).transform((v2) => {
36504
36504
  return remap(v2, {
36505
36505
  external_id: "externalId",
@@ -36516,7 +36516,7 @@ var init_createcontact = __esm(() => {
36516
36516
  tags: arrayType(stringType()).optional(),
36517
36517
  metadata: recordType(anyType()).optional(),
36518
36518
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36519
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
36519
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
36520
36520
  }).transform((v2) => {
36521
36521
  return remap(v2, {
36522
36522
  externalId: "external_id",
@@ -36586,7 +36586,7 @@ var init_createdataset = __esm(() => {
36586
36586
  updated_by_id: stringType().optional(),
36587
36587
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36588
36588
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36589
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
36589
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
36590
36590
  }).transform((v2) => {
36591
36591
  return remap(v2, {
36592
36592
  _id: "id",
@@ -36606,7 +36606,7 @@ var init_createdataset = __esm(() => {
36606
36606
  updatedById: stringType().optional(),
36607
36607
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36608
36608
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36609
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
36609
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
36610
36610
  }).transform((v2) => {
36611
36611
  return remap(v2, {
36612
36612
  id: "_id",
@@ -37042,7 +37042,7 @@ var init_createdatasetitem = __esm(() => {
37042
37042
  created_by_id: stringType().optional(),
37043
37043
  updated_by_id: stringType().optional(),
37044
37044
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37045
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
37045
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
37046
37046
  }).transform((v2) => {
37047
37047
  return remap(v2, {
37048
37048
  _id: "id",
@@ -37063,7 +37063,7 @@ var init_createdatasetitem = __esm(() => {
37063
37063
  createdById: stringType().optional(),
37064
37064
  updatedById: stringType().optional(),
37065
37065
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37066
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
37066
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
37067
37067
  }).transform((v2) => {
37068
37068
  return remap(v2, {
37069
37069
  id: "_id",
@@ -37285,15 +37285,15 @@ var init_createdatasource = __esm(() => {
37285
37285
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37286
37286
  })(CreateDatasourceStatus$ ||= {});
37287
37287
  CreateDatasourceResponseBody$inboundSchema = objectType({
37288
- _id: stringType().default("01JRA4NJPA2WF544HT4T54Z69K"),
37288
+ _id: stringType().default("01JRBK3G4RXV43W3CQE1WV8YWJ"),
37289
37289
  display_name: stringType(),
37290
37290
  description: stringType().optional(),
37291
37291
  status: CreateDatasourceStatus$inboundSchema,
37292
37292
  file_id: nullableType(stringType()).optional(),
37293
37293
  created: stringType(),
37294
37294
  updated: stringType(),
37295
- created_by_id: stringType().optional(),
37296
- update_by_id: stringType().optional(),
37295
+ created_by_id: nullableType(stringType()).optional(),
37296
+ update_by_id: nullableType(stringType()).optional(),
37297
37297
  knowledge_id: stringType(),
37298
37298
  chunks_count: numberType()
37299
37299
  }).transform((v2) => {
@@ -37308,15 +37308,15 @@ var init_createdatasource = __esm(() => {
37308
37308
  });
37309
37309
  });
37310
37310
  CreateDatasourceResponseBody$outboundSchema = objectType({
37311
- id: stringType().default("01JRA4NJPA2WF544HT4T54Z69K"),
37311
+ id: stringType().default("01JRBK3G4RXV43W3CQE1WV8YWJ"),
37312
37312
  displayName: stringType(),
37313
37313
  description: stringType().optional(),
37314
37314
  status: CreateDatasourceStatus$outboundSchema,
37315
37315
  fileId: nullableType(stringType()).optional(),
37316
37316
  created: stringType(),
37317
37317
  updated: stringType(),
37318
- createdById: stringType().optional(),
37319
- updateById: stringType().optional(),
37318
+ createdById: nullableType(stringType()).optional(),
37319
+ updateById: nullableType(stringType()).optional(),
37320
37320
  knowledgeId: stringType(),
37321
37321
  chunksCount: numberType()
37322
37322
  }).transform((v2) => {
@@ -43835,7 +43835,7 @@ var init_fileget = __esm(() => {
43835
43835
  bytes: numberType(),
43836
43836
  file_name: stringType(),
43837
43837
  workspace_id: stringType(),
43838
- created: stringType().datetime({ offset: true }).default("2025-04-08T07:26:03.819Z").transform((v2) => new Date(v2))
43838
+ created: stringType().datetime({ offset: true }).default("2025-04-08T20:57:34.432Z").transform((v2) => new Date(v2))
43839
43839
  }).transform((v2) => {
43840
43840
  return remap(v2, {
43841
43841
  _id: "id",
@@ -43851,7 +43851,7 @@ var init_fileget = __esm(() => {
43851
43851
  bytes: numberType(),
43852
43852
  fileName: stringType(),
43853
43853
  workspaceId: stringType(),
43854
- created: dateType().default(() => new Date("2025-04-08T07:26:03.819Z")).transform((v2) => v2.toISOString())
43854
+ created: dateType().default(() => new Date("2025-04-08T20:57:34.432Z")).transform((v2) => v2.toISOString())
43855
43855
  }).transform((v2) => {
43856
43856
  return remap(v2, {
43857
43857
  id: "_id",
@@ -43922,7 +43922,7 @@ var init_filelist = __esm(() => {
43922
43922
  bytes: numberType(),
43923
43923
  file_name: stringType(),
43924
43924
  workspace_id: stringType(),
43925
- created: stringType().datetime({ offset: true }).default("2025-04-08T07:26:03.819Z").transform((v2) => new Date(v2))
43925
+ created: stringType().datetime({ offset: true }).default("2025-04-08T20:57:34.432Z").transform((v2) => new Date(v2))
43926
43926
  }).transform((v2) => {
43927
43927
  return remap(v2, {
43928
43928
  _id: "id",
@@ -43938,7 +43938,7 @@ var init_filelist = __esm(() => {
43938
43938
  bytes: numberType(),
43939
43939
  fileName: stringType(),
43940
43940
  workspaceId: stringType(),
43941
- created: dateType().default(() => new Date("2025-04-08T07:26:03.819Z")).transform((v2) => v2.toISOString())
43941
+ created: dateType().default(() => new Date("2025-04-08T20:57:34.432Z")).transform((v2) => v2.toISOString())
43942
43942
  }).transform((v2) => {
43943
43943
  return remap(v2, {
43944
43944
  id: "_id",
@@ -44070,7 +44070,7 @@ var init_fileupload = __esm(() => {
44070
44070
  bytes: numberType(),
44071
44071
  file_name: stringType(),
44072
44072
  workspace_id: stringType(),
44073
- created: stringType().datetime({ offset: true }).default("2025-04-08T07:26:03.819Z").transform((v2) => new Date(v2))
44073
+ created: stringType().datetime({ offset: true }).default("2025-04-08T20:57:34.432Z").transform((v2) => new Date(v2))
44074
44074
  }).transform((v2) => {
44075
44075
  return remap(v2, {
44076
44076
  _id: "id",
@@ -44086,7 +44086,7 @@ var init_fileupload = __esm(() => {
44086
44086
  bytes: numberType(),
44087
44087
  fileName: stringType(),
44088
44088
  workspaceId: stringType(),
44089
- created: dateType().default(() => new Date("2025-04-08T07:26:03.819Z")).transform((v2) => v2.toISOString())
44089
+ created: dateType().default(() => new Date("2025-04-08T20:57:34.432Z")).transform((v2) => v2.toISOString())
44090
44090
  }).transform((v2) => {
44091
44091
  return remap(v2, {
44092
44092
  id: "_id",
@@ -46469,7 +46469,7 @@ var init_listdatasetdatapoints = __esm(() => {
46469
46469
  created_by_id: stringType().optional(),
46470
46470
  updated_by_id: stringType().optional(),
46471
46471
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
46472
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
46472
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
46473
46473
  }).transform((v2) => {
46474
46474
  return remap(v2, {
46475
46475
  _id: "id",
@@ -46490,7 +46490,7 @@ var init_listdatasetdatapoints = __esm(() => {
46490
46490
  createdById: stringType().optional(),
46491
46491
  updatedById: stringType().optional(),
46492
46492
  created: dateType().transform((v2) => v2.toISOString()).optional(),
46493
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
46493
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
46494
46494
  }).transform((v2) => {
46495
46495
  return remap(v2, {
46496
46496
  id: "_id",
@@ -46598,7 +46598,7 @@ var init_listdatasets = __esm(() => {
46598
46598
  updated_by_id: stringType().optional(),
46599
46599
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
46600
46600
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
46601
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
46601
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
46602
46602
  }).transform((v2) => {
46603
46603
  return remap(v2, {
46604
46604
  _id: "id",
@@ -46618,7 +46618,7 @@ var init_listdatasets = __esm(() => {
46618
46618
  updatedById: stringType().optional(),
46619
46619
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
46620
46620
  created: dateType().transform((v2) => v2.toISOString()).optional(),
46621
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
46621
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
46622
46622
  }).transform((v2) => {
46623
46623
  return remap(v2, {
46624
46624
  id: "_id",
@@ -46723,15 +46723,15 @@ var init_listdatasources = __esm(() => {
46723
46723
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
46724
46724
  })(ListDatasourcesStatus$ ||= {});
46725
46725
  ListDatasourcesData$inboundSchema = objectType({
46726
- _id: stringType().default("01JRA4NJP83ZKJQPVT4N99YMNV"),
46726
+ _id: stringType().default("01JRBK3G4QR8D5S0BQ1PX4YF4X"),
46727
46727
  display_name: stringType(),
46728
46728
  description: stringType().optional(),
46729
46729
  status: ListDatasourcesStatus$inboundSchema,
46730
46730
  file_id: nullableType(stringType()).optional(),
46731
46731
  created: stringType(),
46732
46732
  updated: stringType(),
46733
- created_by_id: stringType().optional(),
46734
- update_by_id: stringType().optional(),
46733
+ created_by_id: nullableType(stringType()).optional(),
46734
+ update_by_id: nullableType(stringType()).optional(),
46735
46735
  knowledge_id: stringType(),
46736
46736
  chunks_count: numberType()
46737
46737
  }).transform((v2) => {
@@ -46746,15 +46746,15 @@ var init_listdatasources = __esm(() => {
46746
46746
  });
46747
46747
  });
46748
46748
  ListDatasourcesData$outboundSchema = objectType({
46749
- id: stringType().default("01JRA4NJP83ZKJQPVT4N99YMNV"),
46749
+ id: stringType().default("01JRBK3G4QR8D5S0BQ1PX4YF4X"),
46750
46750
  displayName: stringType(),
46751
46751
  description: stringType().optional(),
46752
46752
  status: ListDatasourcesStatus$outboundSchema,
46753
46753
  fileId: nullableType(stringType()).optional(),
46754
46754
  created: stringType(),
46755
46755
  updated: stringType(),
46756
- createdById: stringType().optional(),
46757
- updateById: stringType().optional(),
46756
+ createdById: nullableType(stringType()).optional(),
46757
+ updateById: nullableType(stringType()).optional(),
46758
46758
  knowledgeId: stringType(),
46759
46759
  chunksCount: numberType()
46760
46760
  }).transform((v2) => {
@@ -47838,7 +47838,7 @@ var init_retrievedatapoint = __esm(() => {
47838
47838
  created_by_id: stringType().optional(),
47839
47839
  updated_by_id: stringType().optional(),
47840
47840
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
47841
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
47841
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
47842
47842
  }).transform((v2) => {
47843
47843
  return remap(v2, {
47844
47844
  _id: "id",
@@ -47859,7 +47859,7 @@ var init_retrievedatapoint = __esm(() => {
47859
47859
  createdById: stringType().optional(),
47860
47860
  updatedById: stringType().optional(),
47861
47861
  created: dateType().transform((v2) => v2.toISOString()).optional(),
47862
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
47862
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
47863
47863
  }).transform((v2) => {
47864
47864
  return remap(v2, {
47865
47865
  id: "_id",
@@ -47930,7 +47930,7 @@ var init_retrievedataset = __esm(() => {
47930
47930
  updated_by_id: stringType().optional(),
47931
47931
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
47932
47932
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
47933
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
47933
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
47934
47934
  }).transform((v2) => {
47935
47935
  return remap(v2, {
47936
47936
  _id: "id",
@@ -47950,7 +47950,7 @@ var init_retrievedataset = __esm(() => {
47950
47950
  updatedById: stringType().optional(),
47951
47951
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
47952
47952
  created: dateType().transform((v2) => v2.toISOString()).optional(),
47953
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
47953
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
47954
47954
  }).transform((v2) => {
47955
47955
  return remap(v2, {
47956
47956
  id: "_id",
@@ -48008,15 +48008,15 @@ var init_retrievedatasource = __esm(() => {
48008
48008
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
48009
48009
  })(RetrieveDatasourceStatus$ ||= {});
48010
48010
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
48011
- _id: stringType().default("01JRA4NJP9JEKHJJQ54BPS6EDP"),
48011
+ _id: stringType().default("01JRBK3G4RE6YCS4V3T5KFV6SF"),
48012
48012
  display_name: stringType(),
48013
48013
  description: stringType().optional(),
48014
48014
  status: RetrieveDatasourceStatus$inboundSchema,
48015
48015
  file_id: nullableType(stringType()).optional(),
48016
48016
  created: stringType(),
48017
48017
  updated: stringType(),
48018
- created_by_id: stringType().optional(),
48019
- update_by_id: stringType().optional(),
48018
+ created_by_id: nullableType(stringType()).optional(),
48019
+ update_by_id: nullableType(stringType()).optional(),
48020
48020
  knowledge_id: stringType(),
48021
48021
  chunks_count: numberType()
48022
48022
  }).transform((v2) => {
@@ -48031,15 +48031,15 @@ var init_retrievedatasource = __esm(() => {
48031
48031
  });
48032
48032
  });
48033
48033
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
48034
- id: stringType().default("01JRA4NJP9JEKHJJQ54BPS6EDP"),
48034
+ id: stringType().default("01JRBK3G4RE6YCS4V3T5KFV6SF"),
48035
48035
  displayName: stringType(),
48036
48036
  description: stringType().optional(),
48037
48037
  status: RetrieveDatasourceStatus$outboundSchema,
48038
48038
  fileId: nullableType(stringType()).optional(),
48039
48039
  created: stringType(),
48040
48040
  updated: stringType(),
48041
- createdById: stringType().optional(),
48042
- updateById: stringType().optional(),
48041
+ createdById: nullableType(stringType()).optional(),
48042
+ updateById: nullableType(stringType()).optional(),
48043
48043
  knowledgeId: stringType(),
48044
48044
  chunksCount: numberType()
48045
48045
  }).transform((v2) => {
@@ -49095,7 +49095,7 @@ var init_updatedatapoint = __esm(() => {
49095
49095
  created_by_id: stringType().optional(),
49096
49096
  updated_by_id: stringType().optional(),
49097
49097
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49098
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
49098
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
49099
49099
  }).transform((v2) => {
49100
49100
  return remap(v2, {
49101
49101
  _id: "id",
@@ -49116,7 +49116,7 @@ var init_updatedatapoint = __esm(() => {
49116
49116
  createdById: stringType().optional(),
49117
49117
  updatedById: stringType().optional(),
49118
49118
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49119
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
49119
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
49120
49120
  }).transform((v2) => {
49121
49121
  return remap(v2, {
49122
49122
  id: "_id",
@@ -49217,7 +49217,7 @@ var init_updatedataset = __esm(() => {
49217
49217
  parent_id: stringType().optional(),
49218
49218
  version: stringType().optional(),
49219
49219
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49220
- updated: stringType().datetime({ offset: true }).default("2025-04-08T07:26:02.282Z").transform((v2) => new Date(v2))
49220
+ updated: stringType().datetime({ offset: true }).default("2025-04-08T20:57:32.878Z").transform((v2) => new Date(v2))
49221
49221
  }).transform((v2) => {
49222
49222
  return remap(v2, {
49223
49223
  _id: "id",
@@ -49240,7 +49240,7 @@ var init_updatedataset = __esm(() => {
49240
49240
  parentId: stringType().optional(),
49241
49241
  version: stringType().optional(),
49242
49242
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49243
- updated: dateType().default(() => new Date("2025-04-08T07:26:02.282Z")).transform((v2) => v2.toISOString())
49243
+ updated: dateType().default(() => new Date("2025-04-08T20:57:32.878Z")).transform((v2) => v2.toISOString())
49244
49244
  }).transform((v2) => {
49245
49245
  return remap(v2, {
49246
49246
  id: "_id",
@@ -49321,15 +49321,15 @@ var init_updatedatasource = __esm(() => {
49321
49321
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
49322
49322
  })(UpdateDatasourceStatus$ ||= {});
49323
49323
  UpdateDatasourceResponseBody$inboundSchema = objectType({
49324
- _id: stringType().default("01JRA4NJPBJ28VRVB78R49Q40P"),
49324
+ _id: stringType().default("01JRBK3G4SN7QQAZA52K8XKP56"),
49325
49325
  display_name: stringType(),
49326
49326
  description: stringType().optional(),
49327
49327
  status: UpdateDatasourceStatus$inboundSchema,
49328
49328
  file_id: nullableType(stringType()).optional(),
49329
49329
  created: stringType(),
49330
49330
  updated: stringType(),
49331
- created_by_id: stringType().optional(),
49332
- update_by_id: stringType().optional(),
49331
+ created_by_id: nullableType(stringType()).optional(),
49332
+ update_by_id: nullableType(stringType()).optional(),
49333
49333
  knowledge_id: stringType(),
49334
49334
  chunks_count: numberType()
49335
49335
  }).transform((v2) => {
@@ -49344,15 +49344,15 @@ var init_updatedatasource = __esm(() => {
49344
49344
  });
49345
49345
  });
49346
49346
  UpdateDatasourceResponseBody$outboundSchema = objectType({
49347
- id: stringType().default("01JRA4NJPBJ28VRVB78R49Q40P"),
49347
+ id: stringType().default("01JRBK3G4SN7QQAZA52K8XKP56"),
49348
49348
  displayName: stringType(),
49349
49349
  description: stringType().optional(),
49350
49350
  status: UpdateDatasourceStatus$outboundSchema,
49351
49351
  fileId: nullableType(stringType()).optional(),
49352
49352
  created: stringType(),
49353
49353
  updated: stringType(),
49354
- createdById: stringType().optional(),
49355
- updateById: stringType().optional(),
49354
+ createdById: nullableType(stringType()).optional(),
49355
+ updateById: nullableType(stringType()).optional(),
49356
49356
  knowledgeId: stringType(),
49357
49357
  chunksCount: numberType()
49358
49358
  }).transform((v2) => {
@@ -56914,7 +56914,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
56914
56914
  function createMCPServer(deps) {
56915
56915
  const server = new McpServer({
56916
56916
  name: "Orq",
56917
- version: "3.3.6"
56917
+ version: "3.3.7"
56918
56918
  });
56919
56919
  const client = new OrqCore({
56920
56920
  apiKey: deps.apiKey,
@@ -58244,7 +58244,7 @@ var routes = rn({
58244
58244
  var app = Ve(routes, {
58245
58245
  name: "mcp",
58246
58246
  versionInfo: {
58247
- currentVersion: "3.3.6"
58247
+ currentVersion: "3.3.7"
58248
58248
  }
58249
58249
  });
58250
58250
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -58252,5 +58252,5 @@ export {
58252
58252
  app
58253
58253
  };
58254
58254
 
58255
- //# debugId=5C7F343C5027C19364756E2164756E21
58255
+ //# debugId=FFF98FAA70F2FA4C64756E2164756E21
58256
58256
  //# sourceMappingURL=mcp-server.js.map