@orq-ai/node 3.3.0-rc.24 → 3.3.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 (77) hide show
  1. package/bin/mcp-server.js +81 -73
  2. package/bin/mcp-server.js.map +29 -29
  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/createchunk.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createprompt.d.ts +24 -18
  15. package/models/operations/createprompt.d.ts.map +1 -1
  16. package/models/operations/createprompt.js +8 -6
  17. package/models/operations/createprompt.js.map +1 -1
  18. package/models/operations/fileget.js +2 -2
  19. package/models/operations/filelist.js +2 -2
  20. package/models/operations/fileupload.js +2 -2
  21. package/models/operations/getallprompts.d.ts +12 -9
  22. package/models/operations/getallprompts.d.ts.map +1 -1
  23. package/models/operations/getallprompts.js +4 -3
  24. package/models/operations/getallprompts.js.map +1 -1
  25. package/models/operations/getoneprompt.d.ts +12 -9
  26. package/models/operations/getoneprompt.d.ts.map +1 -1
  27. package/models/operations/getoneprompt.js +4 -3
  28. package/models/operations/getoneprompt.js.map +1 -1
  29. package/models/operations/getpromptversion.d.ts +12 -9
  30. package/models/operations/getpromptversion.d.ts.map +1 -1
  31. package/models/operations/getpromptversion.js +4 -3
  32. package/models/operations/getpromptversion.js.map +1 -1
  33. package/models/operations/listdatasetdatapoints.js +2 -2
  34. package/models/operations/listdatasets.js +2 -2
  35. package/models/operations/listdatasources.js +2 -2
  36. package/models/operations/listpromptversions.d.ts +12 -9
  37. package/models/operations/listpromptversions.d.ts.map +1 -1
  38. package/models/operations/listpromptversions.js +4 -3
  39. package/models/operations/listpromptversions.js.map +1 -1
  40. package/models/operations/retrievedatapoint.js +2 -2
  41. package/models/operations/retrievedataset.js +2 -2
  42. package/models/operations/retrievedatasource.js +2 -2
  43. package/models/operations/updatedatapoint.js +2 -2
  44. package/models/operations/updatedataset.js +2 -2
  45. package/models/operations/updatedatasource.js +2 -2
  46. package/models/operations/updateprompt.d.ts +24 -18
  47. package/models/operations/updateprompt.d.ts.map +1 -1
  48. package/models/operations/updateprompt.js +8 -6
  49. package/models/operations/updateprompt.js.map +1 -1
  50. package/package.json +1 -1
  51. package/src/lib/config.ts +2 -2
  52. package/src/mcp-server/mcp-server.ts +1 -1
  53. package/src/mcp-server/server.ts +1 -1
  54. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  55. package/src/models/operations/createchunk.ts +2 -2
  56. package/src/models/operations/createcontact.ts +2 -2
  57. package/src/models/operations/createdataset.ts +2 -2
  58. package/src/models/operations/createdatasetitem.ts +2 -2
  59. package/src/models/operations/createdatasource.ts +2 -2
  60. package/src/models/operations/createprompt.ts +8 -6
  61. package/src/models/operations/fileget.ts +2 -2
  62. package/src/models/operations/filelist.ts +2 -2
  63. package/src/models/operations/fileupload.ts +2 -2
  64. package/src/models/operations/getallprompts.ts +4 -3
  65. package/src/models/operations/getoneprompt.ts +4 -3
  66. package/src/models/operations/getpromptversion.ts +4 -3
  67. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  68. package/src/models/operations/listdatasets.ts +2 -2
  69. package/src/models/operations/listdatasources.ts +2 -2
  70. package/src/models/operations/listpromptversions.ts +4 -3
  71. package/src/models/operations/retrievedatapoint.ts +2 -2
  72. package/src/models/operations/retrievedataset.ts +2 -2
  73. package/src/models/operations/retrievedatasource.ts +2 -2
  74. package/src/models/operations/updatedatapoint.ts +2 -2
  75. package/src/models/operations/updatedataset.ts +2 -2
  76. package/src/models/operations/updatedatasource.ts +2 -2
  77. package/src/models/operations/updateprompt.ts +8 -6
package/bin/mcp-server.js CHANGED
@@ -34231,9 +34231,9 @@ var init_config = __esm(() => {
34231
34231
  SDK_METADATA = {
34232
34232
  language: "typescript",
34233
34233
  openapiDocVersion: "2.0",
34234
- sdkVersion: "3.3.0-rc.24",
34234
+ sdkVersion: "3.3.0-rc.26",
34235
34235
  genVersion: "2.564.5",
34236
- userAgent: "speakeasy-sdk/typescript 3.3.0-rc.24 2.564.5 2.0 @orq-ai/node"
34236
+ userAgent: "speakeasy-sdk/typescript 3.3.0-rc.26 2.564.5 2.0 @orq-ai/node"
34237
34237
  };
34238
34238
  });
34239
34239
 
@@ -36268,7 +36268,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36268
36268
  created_by_id: stringType().optional(),
36269
36269
  updated_by_id: stringType().optional(),
36270
36270
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36271
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
36271
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
36272
36272
  }).transform((v2) => {
36273
36273
  return remap(v2, {
36274
36274
  _id: "id",
@@ -36289,7 +36289,7 @@ var init_bulkcreatedatapoints = __esm(() => {
36289
36289
  createdById: stringType().optional(),
36290
36290
  updatedById: stringType().optional(),
36291
36291
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36292
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
36292
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
36293
36293
  }).transform((v2) => {
36294
36294
  return remap(v2, {
36295
36295
  id: "_id",
@@ -36492,7 +36492,7 @@ var init_createchunk = __esm(() => {
36492
36492
  knowledge_id: stringType(),
36493
36493
  workspace_id: stringType(),
36494
36494
  data_source_id: stringType(),
36495
- id: stringType().default("chunk_01JQTM2A46TPRZBYMFT3QHM9BB"),
36495
+ id: stringType().default("chunk_01JQTTXB133A23MQBW96KPPXMW"),
36496
36496
  text: stringType(),
36497
36497
  enabled: booleanType().default(true),
36498
36498
  metadata: lazyType(() => CreateChunkKnowledgeMetadata$inboundSchema).optional(),
@@ -36515,7 +36515,7 @@ var init_createchunk = __esm(() => {
36515
36515
  knowledgeId: stringType(),
36516
36516
  workspaceId: stringType(),
36517
36517
  dataSourceId: stringType(),
36518
- id: stringType().default("chunk_01JQTM2A46TPRZBYMFT3QHM9BB"),
36518
+ id: stringType().default("chunk_01JQTTXB133A23MQBW96KPPXMW"),
36519
36519
  text: stringType(),
36520
36520
  enabled: booleanType().default(true),
36521
36521
  metadata: lazyType(() => CreateChunkKnowledgeMetadata$outboundSchema).optional(),
@@ -36586,7 +36586,7 @@ var init_createcontact = __esm(() => {
36586
36586
  tags: arrayType(stringType()).optional(),
36587
36587
  metadata: recordType(anyType()).optional(),
36588
36588
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36589
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
36589
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
36590
36590
  }).transform((v2) => {
36591
36591
  return remap(v2, {
36592
36592
  external_id: "externalId",
@@ -36603,7 +36603,7 @@ var init_createcontact = __esm(() => {
36603
36603
  tags: arrayType(stringType()).optional(),
36604
36604
  metadata: recordType(anyType()).optional(),
36605
36605
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36606
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
36606
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
36607
36607
  }).transform((v2) => {
36608
36608
  return remap(v2, {
36609
36609
  externalId: "external_id",
@@ -36673,7 +36673,7 @@ var init_createdataset = __esm(() => {
36673
36673
  updated_by_id: stringType().optional(),
36674
36674
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36675
36675
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36676
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
36676
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
36677
36677
  }).transform((v2) => {
36678
36678
  return remap(v2, {
36679
36679
  _id: "id",
@@ -36693,7 +36693,7 @@ var init_createdataset = __esm(() => {
36693
36693
  updatedById: stringType().optional(),
36694
36694
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36695
36695
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36696
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
36696
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
36697
36697
  }).transform((v2) => {
36698
36698
  return remap(v2, {
36699
36699
  id: "_id",
@@ -37129,7 +37129,7 @@ var init_createdatasetitem = __esm(() => {
37129
37129
  created_by_id: stringType().optional(),
37130
37130
  updated_by_id: stringType().optional(),
37131
37131
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37132
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
37132
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
37133
37133
  }).transform((v2) => {
37134
37134
  return remap(v2, {
37135
37135
  _id: "id",
@@ -37150,7 +37150,7 @@ var init_createdatasetitem = __esm(() => {
37150
37150
  createdById: stringType().optional(),
37151
37151
  updatedById: stringType().optional(),
37152
37152
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37153
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
37153
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
37154
37154
  }).transform((v2) => {
37155
37155
  return remap(v2, {
37156
37156
  id: "_id",
@@ -37372,7 +37372,7 @@ var init_createdatasource = __esm(() => {
37372
37372
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37373
37373
  })(CreateDatasourceStatus$ ||= {});
37374
37374
  CreateDatasourceResponseBody$inboundSchema = objectType({
37375
- _id: stringType().default("01JQTM2A44KBMR21ZBH7ES59M1"),
37375
+ _id: stringType().default("01JQTTXB11QF8M06BKM4E49WJ0"),
37376
37376
  display_name: stringType(),
37377
37377
  description: stringType().optional(),
37378
37378
  status: CreateDatasourceStatus$inboundSchema,
@@ -37395,7 +37395,7 @@ var init_createdatasource = __esm(() => {
37395
37395
  });
37396
37396
  });
37397
37397
  CreateDatasourceResponseBody$outboundSchema = objectType({
37398
- id: stringType().default("01JQTM2A44KBMR21ZBH7ES59M1"),
37398
+ id: stringType().default("01JQTTXB11QF8M06BKM4E49WJ0"),
37399
37399
  displayName: stringType(),
37400
37400
  description: stringType().optional(),
37401
37401
  status: CreateDatasourceStatus$outboundSchema,
@@ -37774,25 +37774,26 @@ var init_createprompt = __esm(() => {
37774
37774
  Function: "function"
37775
37775
  };
37776
37776
  UseCases = {
37777
- Agents: "Agents",
37778
37777
  AgentsSimulations: "Agents simulations",
37778
+ Agents: "Agents",
37779
37779
  APIInteraction: "API interaction",
37780
37780
  AutonomousAgents: "Autonomous Agents",
37781
37781
  Chatbots: "Chatbots",
37782
37782
  Classification: "Classification",
37783
37783
  CodeUnderstanding: "Code understanding",
37784
37784
  CodeWriting: "Code writing",
37785
- DocumentsQA: "Documents QA",
37786
37785
  Conversation: "Conversation",
37786
+ DocumentsQA: "Documents QA",
37787
+ Evaluation: "Evaluation",
37787
37788
  Extraction: "Extraction",
37788
37789
  MultiModal: "Multi-modal",
37789
37790
  SelfChecking: "Self-checking",
37791
+ SentimentAnalysis: "Sentiment analysis",
37790
37792
  Sql: "SQL",
37791
37793
  Summarization: "Summarization",
37792
37794
  Tagging: "Tagging",
37793
37795
  TranslationDocument: "Translation (document)",
37794
- TranslationSentences: "Translation (sentences)",
37795
- SentimentAnalysis: "Sentiment analysis"
37796
+ TranslationSentences: "Translation (sentences)"
37796
37797
  };
37797
37798
  Language = {
37798
37799
  Chinese: "Chinese",
@@ -37886,25 +37887,26 @@ var init_createprompt = __esm(() => {
37886
37887
  Function: "function"
37887
37888
  };
37888
37889
  CreatePromptUseCases = {
37889
- Agents: "Agents",
37890
37890
  AgentsSimulations: "Agents simulations",
37891
+ Agents: "Agents",
37891
37892
  APIInteraction: "API interaction",
37892
37893
  AutonomousAgents: "Autonomous Agents",
37893
37894
  Chatbots: "Chatbots",
37894
37895
  Classification: "Classification",
37895
37896
  CodeUnderstanding: "Code understanding",
37896
37897
  CodeWriting: "Code writing",
37897
- DocumentsQA: "Documents QA",
37898
37898
  Conversation: "Conversation",
37899
+ DocumentsQA: "Documents QA",
37900
+ Evaluation: "Evaluation",
37899
37901
  Extraction: "Extraction",
37900
37902
  MultiModal: "Multi-modal",
37901
37903
  SelfChecking: "Self-checking",
37904
+ SentimentAnalysis: "Sentiment analysis",
37902
37905
  Sql: "SQL",
37903
37906
  Summarization: "Summarization",
37904
37907
  Tagging: "Tagging",
37905
37908
  TranslationDocument: "Translation (document)",
37906
- TranslationSentences: "Translation (sentences)",
37907
- SentimentAnalysis: "Sentiment analysis"
37909
+ TranslationSentences: "Translation (sentences)"
37908
37910
  };
37909
37911
  CreatePromptLanguage = {
37910
37912
  Chinese: "Chinese",
@@ -43920,7 +43922,7 @@ var init_fileget = __esm(() => {
43920
43922
  bytes: numberType(),
43921
43923
  file_name: stringType(),
43922
43924
  workspace_id: stringType(),
43923
- created: stringType().datetime({ offset: true }).default("2025-04-02T06:47:18.639Z").transform((v2) => new Date(v2))
43925
+ created: stringType().datetime({ offset: true }).default("2025-04-02T08:46:55.819Z").transform((v2) => new Date(v2))
43924
43926
  }).transform((v2) => {
43925
43927
  return remap(v2, {
43926
43928
  _id: "id",
@@ -43936,7 +43938,7 @@ var init_fileget = __esm(() => {
43936
43938
  bytes: numberType(),
43937
43939
  fileName: stringType(),
43938
43940
  workspaceId: stringType(),
43939
- created: dateType().default(() => new Date("2025-04-02T06:47:18.639Z")).transform((v2) => v2.toISOString())
43941
+ created: dateType().default(() => new Date("2025-04-02T08:46:55.819Z")).transform((v2) => v2.toISOString())
43940
43942
  }).transform((v2) => {
43941
43943
  return remap(v2, {
43942
43944
  id: "_id",
@@ -44007,7 +44009,7 @@ var init_filelist = __esm(() => {
44007
44009
  bytes: numberType(),
44008
44010
  file_name: stringType(),
44009
44011
  workspace_id: stringType(),
44010
- created: stringType().datetime({ offset: true }).default("2025-04-02T06:47:18.639Z").transform((v2) => new Date(v2))
44012
+ created: stringType().datetime({ offset: true }).default("2025-04-02T08:46:55.819Z").transform((v2) => new Date(v2))
44011
44013
  }).transform((v2) => {
44012
44014
  return remap(v2, {
44013
44015
  _id: "id",
@@ -44023,7 +44025,7 @@ var init_filelist = __esm(() => {
44023
44025
  bytes: numberType(),
44024
44026
  fileName: stringType(),
44025
44027
  workspaceId: stringType(),
44026
- created: dateType().default(() => new Date("2025-04-02T06:47:18.639Z")).transform((v2) => v2.toISOString())
44028
+ created: dateType().default(() => new Date("2025-04-02T08:46:55.819Z")).transform((v2) => v2.toISOString())
44027
44029
  }).transform((v2) => {
44028
44030
  return remap(v2, {
44029
44031
  id: "_id",
@@ -44155,7 +44157,7 @@ var init_fileupload = __esm(() => {
44155
44157
  bytes: numberType(),
44156
44158
  file_name: stringType(),
44157
44159
  workspace_id: stringType(),
44158
- created: stringType().datetime({ offset: true }).default("2025-04-02T06:47:18.639Z").transform((v2) => new Date(v2))
44160
+ created: stringType().datetime({ offset: true }).default("2025-04-02T08:46:55.819Z").transform((v2) => new Date(v2))
44159
44161
  }).transform((v2) => {
44160
44162
  return remap(v2, {
44161
44163
  _id: "id",
@@ -44171,7 +44173,7 @@ var init_fileupload = __esm(() => {
44171
44173
  bytes: numberType(),
44172
44174
  fileName: stringType(),
44173
44175
  workspaceId: stringType(),
44174
- created: dateType().default(() => new Date("2025-04-02T06:47:18.639Z")).transform((v2) => v2.toISOString())
44176
+ created: dateType().default(() => new Date("2025-04-02T08:46:55.819Z")).transform((v2) => v2.toISOString())
44175
44177
  }).transform((v2) => {
44176
44178
  return remap(v2, {
44177
44179
  id: "_id",
@@ -44277,25 +44279,26 @@ var init_getallprompts = __esm(() => {
44277
44279
  Function: "function"
44278
44280
  };
44279
44281
  GetAllPromptsUseCases = {
44280
- Agents: "Agents",
44281
44282
  AgentsSimulations: "Agents simulations",
44283
+ Agents: "Agents",
44282
44284
  APIInteraction: "API interaction",
44283
44285
  AutonomousAgents: "Autonomous Agents",
44284
44286
  Chatbots: "Chatbots",
44285
44287
  Classification: "Classification",
44286
44288
  CodeUnderstanding: "Code understanding",
44287
44289
  CodeWriting: "Code writing",
44288
- DocumentsQA: "Documents QA",
44289
44290
  Conversation: "Conversation",
44291
+ DocumentsQA: "Documents QA",
44292
+ Evaluation: "Evaluation",
44290
44293
  Extraction: "Extraction",
44291
44294
  MultiModal: "Multi-modal",
44292
44295
  SelfChecking: "Self-checking",
44296
+ SentimentAnalysis: "Sentiment analysis",
44293
44297
  Sql: "SQL",
44294
44298
  Summarization: "Summarization",
44295
44299
  Tagging: "Tagging",
44296
44300
  TranslationDocument: "Translation (document)",
44297
- TranslationSentences: "Translation (sentences)",
44298
- SentimentAnalysis: "Sentiment analysis"
44301
+ TranslationSentences: "Translation (sentences)"
44299
44302
  };
44300
44303
  GetAllPromptsLanguage = {
44301
44304
  Chinese: "Chinese",
@@ -45116,25 +45119,26 @@ var init_getoneprompt = __esm(() => {
45116
45119
  Function: "function"
45117
45120
  };
45118
45121
  GetOnePromptUseCases = {
45119
- Agents: "Agents",
45120
45122
  AgentsSimulations: "Agents simulations",
45123
+ Agents: "Agents",
45121
45124
  APIInteraction: "API interaction",
45122
45125
  AutonomousAgents: "Autonomous Agents",
45123
45126
  Chatbots: "Chatbots",
45124
45127
  Classification: "Classification",
45125
45128
  CodeUnderstanding: "Code understanding",
45126
45129
  CodeWriting: "Code writing",
45127
- DocumentsQA: "Documents QA",
45128
45130
  Conversation: "Conversation",
45131
+ DocumentsQA: "Documents QA",
45132
+ Evaluation: "Evaluation",
45129
45133
  Extraction: "Extraction",
45130
45134
  MultiModal: "Multi-modal",
45131
45135
  SelfChecking: "Self-checking",
45136
+ SentimentAnalysis: "Sentiment analysis",
45132
45137
  Sql: "SQL",
45133
45138
  Summarization: "Summarization",
45134
45139
  Tagging: "Tagging",
45135
45140
  TranslationDocument: "Translation (document)",
45136
- TranslationSentences: "Translation (sentences)",
45137
- SentimentAnalysis: "Sentiment analysis"
45141
+ TranslationSentences: "Translation (sentences)"
45138
45142
  };
45139
45143
  GetOnePromptLanguage = {
45140
45144
  Chinese: "Chinese",
@@ -45698,25 +45702,26 @@ var init_getpromptversion = __esm(() => {
45698
45702
  Function: "function"
45699
45703
  };
45700
45704
  GetPromptVersionUseCases = {
45701
- Agents: "Agents",
45702
45705
  AgentsSimulations: "Agents simulations",
45706
+ Agents: "Agents",
45703
45707
  APIInteraction: "API interaction",
45704
45708
  AutonomousAgents: "Autonomous Agents",
45705
45709
  Chatbots: "Chatbots",
45706
45710
  Classification: "Classification",
45707
45711
  CodeUnderstanding: "Code understanding",
45708
45712
  CodeWriting: "Code writing",
45709
- DocumentsQA: "Documents QA",
45710
45713
  Conversation: "Conversation",
45714
+ DocumentsQA: "Documents QA",
45715
+ Evaluation: "Evaluation",
45711
45716
  Extraction: "Extraction",
45712
45717
  MultiModal: "Multi-modal",
45713
45718
  SelfChecking: "Self-checking",
45719
+ SentimentAnalysis: "Sentiment analysis",
45714
45720
  Sql: "SQL",
45715
45721
  Summarization: "Summarization",
45716
45722
  Tagging: "Tagging",
45717
45723
  TranslationDocument: "Translation (document)",
45718
- TranslationSentences: "Translation (sentences)",
45719
- SentimentAnalysis: "Sentiment analysis"
45724
+ TranslationSentences: "Translation (sentences)"
45720
45725
  };
45721
45726
  GetPromptVersionLanguage = {
45722
45727
  Chinese: "Chinese",
@@ -46551,7 +46556,7 @@ var init_listdatasetdatapoints = __esm(() => {
46551
46556
  created_by_id: stringType().optional(),
46552
46557
  updated_by_id: stringType().optional(),
46553
46558
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
46554
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
46559
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
46555
46560
  }).transform((v2) => {
46556
46561
  return remap(v2, {
46557
46562
  _id: "id",
@@ -46572,7 +46577,7 @@ var init_listdatasetdatapoints = __esm(() => {
46572
46577
  createdById: stringType().optional(),
46573
46578
  updatedById: stringType().optional(),
46574
46579
  created: dateType().transform((v2) => v2.toISOString()).optional(),
46575
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
46580
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
46576
46581
  }).transform((v2) => {
46577
46582
  return remap(v2, {
46578
46583
  id: "_id",
@@ -46680,7 +46685,7 @@ var init_listdatasets = __esm(() => {
46680
46685
  updated_by_id: stringType().optional(),
46681
46686
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
46682
46687
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
46683
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
46688
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
46684
46689
  }).transform((v2) => {
46685
46690
  return remap(v2, {
46686
46691
  _id: "id",
@@ -46700,7 +46705,7 @@ var init_listdatasets = __esm(() => {
46700
46705
  updatedById: stringType().optional(),
46701
46706
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
46702
46707
  created: dateType().transform((v2) => v2.toISOString()).optional(),
46703
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
46708
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
46704
46709
  }).transform((v2) => {
46705
46710
  return remap(v2, {
46706
46711
  id: "_id",
@@ -46805,7 +46810,7 @@ var init_listdatasources = __esm(() => {
46805
46810
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
46806
46811
  })(ListDatasourcesStatus$ ||= {});
46807
46812
  ListDatasourcesData$inboundSchema = objectType({
46808
- _id: stringType().default("01JQTM2A43J2GP905VX38SRJ50"),
46813
+ _id: stringType().default("01JQTTXB10M2VYPJZFQMEE4D25"),
46809
46814
  display_name: stringType(),
46810
46815
  description: stringType().optional(),
46811
46816
  status: ListDatasourcesStatus$inboundSchema,
@@ -46828,7 +46833,7 @@ var init_listdatasources = __esm(() => {
46828
46833
  });
46829
46834
  });
46830
46835
  ListDatasourcesData$outboundSchema = objectType({
46831
- id: stringType().default("01JQTM2A43J2GP905VX38SRJ50"),
46836
+ id: stringType().default("01JQTTXB10M2VYPJZFQMEE4D25"),
46832
46837
  displayName: stringType(),
46833
46838
  description: stringType().optional(),
46834
46839
  status: ListDatasourcesStatus$outboundSchema,
@@ -47131,25 +47136,26 @@ var init_listpromptversions = __esm(() => {
47131
47136
  Function: "function"
47132
47137
  };
47133
47138
  ListPromptVersionsUseCases = {
47134
- Agents: "Agents",
47135
47139
  AgentsSimulations: "Agents simulations",
47140
+ Agents: "Agents",
47136
47141
  APIInteraction: "API interaction",
47137
47142
  AutonomousAgents: "Autonomous Agents",
47138
47143
  Chatbots: "Chatbots",
47139
47144
  Classification: "Classification",
47140
47145
  CodeUnderstanding: "Code understanding",
47141
47146
  CodeWriting: "Code writing",
47142
- DocumentsQA: "Documents QA",
47143
47147
  Conversation: "Conversation",
47148
+ DocumentsQA: "Documents QA",
47149
+ Evaluation: "Evaluation",
47144
47150
  Extraction: "Extraction",
47145
47151
  MultiModal: "Multi-modal",
47146
47152
  SelfChecking: "Self-checking",
47153
+ SentimentAnalysis: "Sentiment analysis",
47147
47154
  Sql: "SQL",
47148
47155
  Summarization: "Summarization",
47149
47156
  Tagging: "Tagging",
47150
47157
  TranslationDocument: "Translation (document)",
47151
- TranslationSentences: "Translation (sentences)",
47152
- SentimentAnalysis: "Sentiment analysis"
47158
+ TranslationSentences: "Translation (sentences)"
47153
47159
  };
47154
47160
  ListPromptVersionsLanguage = {
47155
47161
  Chinese: "Chinese",
@@ -47919,7 +47925,7 @@ var init_retrievedatapoint = __esm(() => {
47919
47925
  created_by_id: stringType().optional(),
47920
47926
  updated_by_id: stringType().optional(),
47921
47927
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
47922
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
47928
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
47923
47929
  }).transform((v2) => {
47924
47930
  return remap(v2, {
47925
47931
  _id: "id",
@@ -47940,7 +47946,7 @@ var init_retrievedatapoint = __esm(() => {
47940
47946
  createdById: stringType().optional(),
47941
47947
  updatedById: stringType().optional(),
47942
47948
  created: dateType().transform((v2) => v2.toISOString()).optional(),
47943
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
47949
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
47944
47950
  }).transform((v2) => {
47945
47951
  return remap(v2, {
47946
47952
  id: "_id",
@@ -48011,7 +48017,7 @@ var init_retrievedataset = __esm(() => {
48011
48017
  updated_by_id: stringType().optional(),
48012
48018
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
48013
48019
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
48014
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
48020
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
48015
48021
  }).transform((v2) => {
48016
48022
  return remap(v2, {
48017
48023
  _id: "id",
@@ -48031,7 +48037,7 @@ var init_retrievedataset = __esm(() => {
48031
48037
  updatedById: stringType().optional(),
48032
48038
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
48033
48039
  created: dateType().transform((v2) => v2.toISOString()).optional(),
48034
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
48040
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
48035
48041
  }).transform((v2) => {
48036
48042
  return remap(v2, {
48037
48043
  id: "_id",
@@ -48089,7 +48095,7 @@ var init_retrievedatasource = __esm(() => {
48089
48095
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
48090
48096
  })(RetrieveDatasourceStatus$ ||= {});
48091
48097
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
48092
- _id: stringType().default("01JQTM2A4498CDHN6KG816XEER"),
48098
+ _id: stringType().default("01JQTTXB11ZDBCBN0VS23RKRYV"),
48093
48099
  display_name: stringType(),
48094
48100
  description: stringType().optional(),
48095
48101
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -48112,7 +48118,7 @@ var init_retrievedatasource = __esm(() => {
48112
48118
  });
48113
48119
  });
48114
48120
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
48115
- id: stringType().default("01JQTM2A4498CDHN6KG816XEER"),
48121
+ id: stringType().default("01JQTTXB11ZDBCBN0VS23RKRYV"),
48116
48122
  displayName: stringType(),
48117
48123
  description: stringType().optional(),
48118
48124
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -49176,7 +49182,7 @@ var init_updatedatapoint = __esm(() => {
49176
49182
  created_by_id: stringType().optional(),
49177
49183
  updated_by_id: stringType().optional(),
49178
49184
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49179
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
49185
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
49180
49186
  }).transform((v2) => {
49181
49187
  return remap(v2, {
49182
49188
  _id: "id",
@@ -49197,7 +49203,7 @@ var init_updatedatapoint = __esm(() => {
49197
49203
  createdById: stringType().optional(),
49198
49204
  updatedById: stringType().optional(),
49199
49205
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49200
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
49206
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
49201
49207
  }).transform((v2) => {
49202
49208
  return remap(v2, {
49203
49209
  id: "_id",
@@ -49298,7 +49304,7 @@ var init_updatedataset = __esm(() => {
49298
49304
  parent_id: stringType().optional(),
49299
49305
  version: stringType().optional(),
49300
49306
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
49301
- updated: stringType().datetime({ offset: true }).default("2025-04-02T06:47:17.059Z").transform((v2) => new Date(v2))
49307
+ updated: stringType().datetime({ offset: true }).default("2025-04-02T08:46:54.224Z").transform((v2) => new Date(v2))
49302
49308
  }).transform((v2) => {
49303
49309
  return remap(v2, {
49304
49310
  _id: "id",
@@ -49321,7 +49327,7 @@ var init_updatedataset = __esm(() => {
49321
49327
  parentId: stringType().optional(),
49322
49328
  version: stringType().optional(),
49323
49329
  created: dateType().transform((v2) => v2.toISOString()).optional(),
49324
- updated: dateType().default(() => new Date("2025-04-02T06:47:17.059Z")).transform((v2) => v2.toISOString())
49330
+ updated: dateType().default(() => new Date("2025-04-02T08:46:54.224Z")).transform((v2) => v2.toISOString())
49325
49331
  }).transform((v2) => {
49326
49332
  return remap(v2, {
49327
49333
  id: "_id",
@@ -49402,7 +49408,7 @@ var init_updatedatasource = __esm(() => {
49402
49408
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
49403
49409
  })(UpdateDatasourceStatus$ ||= {});
49404
49410
  UpdateDatasourceResponseBody$inboundSchema = objectType({
49405
- _id: stringType().default("01JQTM2A4514ZFBEHGM2EHDP6T"),
49411
+ _id: stringType().default("01JQTTXB13GNAX2WJ2CQZA8SNC"),
49406
49412
  display_name: stringType(),
49407
49413
  description: stringType().optional(),
49408
49414
  status: UpdateDatasourceStatus$inboundSchema,
@@ -49425,7 +49431,7 @@ var init_updatedatasource = __esm(() => {
49425
49431
  });
49426
49432
  });
49427
49433
  UpdateDatasourceResponseBody$outboundSchema = objectType({
49428
- id: stringType().default("01JQTM2A4514ZFBEHGM2EHDP6T"),
49434
+ id: stringType().default("01JQTTXB13GNAX2WJ2CQZA8SNC"),
49429
49435
  displayName: stringType(),
49430
49436
  description: stringType().optional(),
49431
49437
  status: UpdateDatasourceStatus$outboundSchema,
@@ -49757,25 +49763,26 @@ var init_updateprompt = __esm(() => {
49757
49763
  Function: "function"
49758
49764
  };
49759
49765
  UpdatePromptUseCases = {
49760
- Agents: "Agents",
49761
49766
  AgentsSimulations: "Agents simulations",
49767
+ Agents: "Agents",
49762
49768
  APIInteraction: "API interaction",
49763
49769
  AutonomousAgents: "Autonomous Agents",
49764
49770
  Chatbots: "Chatbots",
49765
49771
  Classification: "Classification",
49766
49772
  CodeUnderstanding: "Code understanding",
49767
49773
  CodeWriting: "Code writing",
49768
- DocumentsQA: "Documents QA",
49769
49774
  Conversation: "Conversation",
49775
+ DocumentsQA: "Documents QA",
49776
+ Evaluation: "Evaluation",
49770
49777
  Extraction: "Extraction",
49771
49778
  MultiModal: "Multi-modal",
49772
49779
  SelfChecking: "Self-checking",
49780
+ SentimentAnalysis: "Sentiment analysis",
49773
49781
  Sql: "SQL",
49774
49782
  Summarization: "Summarization",
49775
49783
  Tagging: "Tagging",
49776
49784
  TranslationDocument: "Translation (document)",
49777
- TranslationSentences: "Translation (sentences)",
49778
- SentimentAnalysis: "Sentiment analysis"
49785
+ TranslationSentences: "Translation (sentences)"
49779
49786
  };
49780
49787
  UpdatePromptLanguage = {
49781
49788
  Chinese: "Chinese",
@@ -49869,25 +49876,26 @@ var init_updateprompt = __esm(() => {
49869
49876
  Function: "function"
49870
49877
  };
49871
49878
  UpdatePromptPromptsUseCases = {
49872
- Agents: "Agents",
49873
49879
  AgentsSimulations: "Agents simulations",
49880
+ Agents: "Agents",
49874
49881
  APIInteraction: "API interaction",
49875
49882
  AutonomousAgents: "Autonomous Agents",
49876
49883
  Chatbots: "Chatbots",
49877
49884
  Classification: "Classification",
49878
49885
  CodeUnderstanding: "Code understanding",
49879
49886
  CodeWriting: "Code writing",
49880
- DocumentsQA: "Documents QA",
49881
49887
  Conversation: "Conversation",
49888
+ DocumentsQA: "Documents QA",
49889
+ Evaluation: "Evaluation",
49882
49890
  Extraction: "Extraction",
49883
49891
  MultiModal: "Multi-modal",
49884
49892
  SelfChecking: "Self-checking",
49893
+ SentimentAnalysis: "Sentiment analysis",
49885
49894
  Sql: "SQL",
49886
49895
  Summarization: "Summarization",
49887
49896
  Tagging: "Tagging",
49888
49897
  TranslationDocument: "Translation (document)",
49889
- TranslationSentences: "Translation (sentences)",
49890
- SentimentAnalysis: "Sentiment analysis"
49898
+ TranslationSentences: "Translation (sentences)"
49891
49899
  };
49892
49900
  UpdatePromptPromptsLanguage = {
49893
49901
  Chinese: "Chinese",
@@ -56993,7 +57001,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
56993
57001
  function createMCPServer(deps) {
56994
57002
  const server = new McpServer({
56995
57003
  name: "Orq",
56996
- version: "3.3.0-rc.24"
57004
+ version: "3.3.0-rc.26"
56997
57005
  });
56998
57006
  const client = new OrqCore({
56999
57007
  apiKey: deps.apiKey,
@@ -58320,7 +58328,7 @@ var routes = rn({
58320
58328
  var app = Ve(routes, {
58321
58329
  name: "mcp",
58322
58330
  versionInfo: {
58323
- currentVersion: "3.3.0-rc.24"
58331
+ currentVersion: "3.3.0-rc.26"
58324
58332
  }
58325
58333
  });
58326
58334
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -58328,5 +58336,5 @@ export {
58328
58336
  app
58329
58337
  };
58330
58338
 
58331
- //# debugId=42FD637F558A999764756E2164756E21
58339
+ //# debugId=E4925EB0E32415EC64756E2164756E21
58332
58340
  //# sourceMappingURL=mcp-server.js.map