@orq-ai/node 3.13.7 → 3.13.9

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 (170) hide show
  1. package/bin/mcp-server.js +215 -229
  2. package/bin/mcp-server.js.map +44 -44
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/deployments.d.ts +0 -6
  10. package/models/components/deployments.d.ts.map +1 -1
  11. package/models/components/deployments.js +0 -2
  12. package/models/components/deployments.js.map +1 -1
  13. package/models/operations/createbudget.js +2 -2
  14. package/models/operations/createcontact.js +2 -2
  15. package/models/operations/createdataset.js +2 -2
  16. package/models/operations/createdatasetitem.d.ts +0 -6
  17. package/models/operations/createdatasetitem.d.ts.map +1 -1
  18. package/models/operations/createdatasetitem.js +2 -4
  19. package/models/operations/createdatasetitem.js.map +1 -1
  20. package/models/operations/createdatasource.js +2 -2
  21. package/models/operations/createeval.js +28 -28
  22. package/models/operations/createtool.js +14 -14
  23. package/models/operations/deploymentcreatemetric.d.ts +0 -6
  24. package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
  25. package/models/operations/deploymentcreatemetric.js +0 -2
  26. package/models/operations/deploymentcreatemetric.js.map +1 -1
  27. package/models/operations/deploymentgetconfig.d.ts +0 -6
  28. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  29. package/models/operations/deploymentgetconfig.js +0 -2
  30. package/models/operations/deploymentgetconfig.js.map +1 -1
  31. package/models/operations/deploymentstream.d.ts +0 -6
  32. package/models/operations/deploymentstream.d.ts.map +1 -1
  33. package/models/operations/deploymentstream.js +0 -2
  34. package/models/operations/deploymentstream.js.map +1 -1
  35. package/models/operations/duplicatetool.js +10 -10
  36. package/models/operations/fileget.js +2 -2
  37. package/models/operations/filelist.js +2 -2
  38. package/models/operations/fileupload.js +2 -2
  39. package/models/operations/getagent.js +2 -2
  40. package/models/operations/getalltools.js +10 -10
  41. package/models/operations/getbudget.js +2 -2
  42. package/models/operations/getevals.js +28 -28
  43. package/models/operations/listagents.js +2 -2
  44. package/models/operations/listbudgets.js +2 -2
  45. package/models/operations/listcontacts.js +2 -2
  46. package/models/operations/listdatasetdatapoints.d.ts +0 -3
  47. package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
  48. package/models/operations/listdatasetdatapoints.js +2 -3
  49. package/models/operations/listdatasetdatapoints.js.map +1 -1
  50. package/models/operations/listdatasets.js +2 -2
  51. package/models/operations/listdatasources.js +2 -2
  52. package/models/operations/retrievecontact.js +2 -2
  53. package/models/operations/retrievedatapoint.d.ts +0 -3
  54. package/models/operations/retrievedatapoint.d.ts.map +1 -1
  55. package/models/operations/retrievedatapoint.js +2 -3
  56. package/models/operations/retrievedatapoint.js.map +1 -1
  57. package/models/operations/retrievedataset.js +2 -2
  58. package/models/operations/retrievedatasource.js +2 -2
  59. package/models/operations/retrievetool.js +10 -10
  60. package/models/operations/runagent.js +2 -2
  61. package/models/operations/streamrunagent.js +2 -2
  62. package/models/operations/updatebudget.js +2 -2
  63. package/models/operations/updatecontact.js +2 -2
  64. package/models/operations/updatedatapoint.d.ts +0 -6
  65. package/models/operations/updatedatapoint.d.ts.map +1 -1
  66. package/models/operations/updatedatapoint.js +2 -4
  67. package/models/operations/updatedatapoint.js.map +1 -1
  68. package/models/operations/updatedataset.js +2 -2
  69. package/models/operations/updatedatasource.js +2 -2
  70. package/models/operations/updateeval.js +28 -28
  71. package/models/operations/updatetool.js +14 -14
  72. package/package.json +1 -1
  73. package/packages/orq-rc/docs/sdks/knowledge/README.md +6 -0
  74. package/packages/orq-rc/examples/package-lock.json +1 -1
  75. package/packages/orq-rc/jsr.json +1 -1
  76. package/packages/orq-rc/package-lock.json +2 -2
  77. package/packages/orq-rc/package.json +1 -1
  78. package/packages/orq-rc/src/lib/config.ts +2 -2
  79. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  80. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  81. package/packages/orq-rc/src/models/components/deployments.ts +0 -2
  82. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  84. package/packages/orq-rc/src/models/operations/createdataset.ts +9 -3
  85. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -10
  86. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  87. package/packages/orq-rc/src/models/operations/createeval.ts +236 -201
  88. package/packages/orq-rc/src/models/operations/createknowledge.ts +1231 -275
  89. package/packages/orq-rc/src/models/operations/creatememorystore.ts +7 -1
  90. package/packages/orq-rc/src/models/operations/createprompt.ts +7 -1
  91. package/packages/orq-rc/src/models/operations/createtool.ts +192 -116
  92. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2
  93. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +0 -2
  94. package/packages/orq-rc/src/models/operations/deploymentstream.ts +0 -2
  95. package/packages/orq-rc/src/models/operations/duplicatetool.ts +45 -15
  96. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  97. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/getagent.ts +9 -3
  100. package/packages/orq-rc/src/models/operations/getalltools.ts +167 -118
  101. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  102. package/packages/orq-rc/src/models/operations/getevals.ts +157 -143
  103. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +912 -166
  104. package/packages/orq-rc/src/models/operations/listagents.ts +9 -3
  105. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  106. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  107. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -9
  108. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  109. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  110. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +755 -150
  111. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  112. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -9
  113. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  114. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/retrievetool.ts +45 -15
  116. package/packages/orq-rc/src/models/operations/runagent.ts +7 -1
  117. package/packages/orq-rc/src/models/operations/searchknowledge.ts +49 -62
  118. package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -1
  119. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  120. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -10
  122. package/packages/orq-rc/src/models/operations/updatedataset.ts +9 -3
  123. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  124. package/packages/orq-rc/src/models/operations/updateeval.ts +56 -32
  125. package/packages/orq-rc/src/models/operations/updateknowledge.ts +1710 -367
  126. package/packages/orq-rc/src/models/operations/updatememorystore.ts +7 -1
  127. package/packages/orq-rc/src/models/operations/updateprompt.ts +7 -1
  128. package/packages/orq-rc/src/models/operations/updatetool.ts +80 -20
  129. package/src/lib/config.ts +2 -2
  130. package/src/mcp-server/mcp-server.ts +1 -1
  131. package/src/mcp-server/server.ts +1 -1
  132. package/src/models/components/deployments.ts +0 -2
  133. package/src/models/operations/createbudget.ts +2 -2
  134. package/src/models/operations/createcontact.ts +2 -2
  135. package/src/models/operations/createdataset.ts +2 -2
  136. package/src/models/operations/createdatasetitem.ts +2 -4
  137. package/src/models/operations/createdatasource.ts +2 -2
  138. package/src/models/operations/createeval.ts +28 -28
  139. package/src/models/operations/createtool.ts +14 -14
  140. package/src/models/operations/deploymentcreatemetric.ts +0 -2
  141. package/src/models/operations/deploymentgetconfig.ts +0 -2
  142. package/src/models/operations/deploymentstream.ts +0 -2
  143. package/src/models/operations/duplicatetool.ts +10 -10
  144. package/src/models/operations/fileget.ts +2 -2
  145. package/src/models/operations/filelist.ts +2 -2
  146. package/src/models/operations/fileupload.ts +2 -2
  147. package/src/models/operations/getagent.ts +2 -2
  148. package/src/models/operations/getalltools.ts +10 -10
  149. package/src/models/operations/getbudget.ts +2 -2
  150. package/src/models/operations/getevals.ts +28 -28
  151. package/src/models/operations/listagents.ts +2 -2
  152. package/src/models/operations/listbudgets.ts +2 -2
  153. package/src/models/operations/listcontacts.ts +2 -2
  154. package/src/models/operations/listdatasetdatapoints.ts +2 -3
  155. package/src/models/operations/listdatasets.ts +2 -2
  156. package/src/models/operations/listdatasources.ts +2 -2
  157. package/src/models/operations/retrievecontact.ts +2 -2
  158. package/src/models/operations/retrievedatapoint.ts +2 -3
  159. package/src/models/operations/retrievedataset.ts +2 -2
  160. package/src/models/operations/retrievedatasource.ts +2 -2
  161. package/src/models/operations/retrievetool.ts +10 -10
  162. package/src/models/operations/runagent.ts +2 -2
  163. package/src/models/operations/streamrunagent.ts +2 -2
  164. package/src/models/operations/updatebudget.ts +2 -2
  165. package/src/models/operations/updatecontact.ts +2 -2
  166. package/src/models/operations/updatedatapoint.ts +2 -4
  167. package/src/models/operations/updatedataset.ts +2 -2
  168. package/src/models/operations/updatedatasource.ts +2 -2
  169. package/src/models/operations/updateeval.ts +28 -28
  170. package/src/models/operations/updatetool.ts +14 -14
@@ -188,7 +188,13 @@ export type UpdateMemoryStoreRequestBody = {
188
188
  */
189
189
  ttl?: number | undefined;
190
190
  /**
191
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
191
+ * Entity storage path in the format: `project/folder/subfolder/...`
192
+ *
193
+ * @remarks
194
+ *
195
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
196
+ *
197
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
192
198
  */
193
199
  path: string;
194
200
  };
@@ -536,7 +536,13 @@ export type UpdatePromptRequestBody = {
536
536
  promptConfig?: UpdatePromptPromptConfig | undefined;
537
537
  metadata?: UpdatePromptMetadata | undefined;
538
538
  /**
539
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
539
+ * Entity storage path in the format: `project/folder/subfolder/...`
540
+ *
541
+ * @remarks
542
+ *
543
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
544
+ *
545
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
540
546
  */
541
547
  path?: string | undefined;
542
548
  };
@@ -53,7 +53,13 @@ export type UpdateToolRequestBodyCodeTool = {
53
53
 
54
54
  export type UpdateToolRequestBody5 = {
55
55
  /**
56
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
56
+ * Entity storage path in the format: `project/folder/subfolder/...`
57
+ *
58
+ * @remarks
59
+ *
60
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
61
+ *
62
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
57
63
  */
58
64
  path?: string | undefined;
59
65
  /**
@@ -159,7 +165,13 @@ export type RequestBodyMcp = {
159
165
 
160
166
  export type UpdateToolRequestBody4 = {
161
167
  /**
162
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
168
+ * Entity storage path in the format: `project/folder/subfolder/...`
169
+ *
170
+ * @remarks
171
+ *
172
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
173
+ *
174
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
163
175
  */
164
176
  path?: string | undefined;
165
177
  /**
@@ -295,7 +307,13 @@ export type UpdateToolRequestBodyHttp = {
295
307
 
296
308
  export type UpdateToolRequestBody3 = {
297
309
  /**
298
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
310
+ * Entity storage path in the format: `project/folder/subfolder/...`
311
+ *
312
+ * @remarks
313
+ *
314
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
315
+ *
316
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
299
317
  */
300
318
  path?: string | undefined;
301
319
  /**
@@ -362,7 +380,13 @@ export type UpdateToolRequestBodyJsonSchema = {
362
380
 
363
381
  export type UpdateToolRequestBody2 = {
364
382
  /**
365
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
383
+ * Entity storage path in the format: `project/folder/subfolder/...`
384
+ *
385
+ * @remarks
386
+ *
387
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
388
+ *
389
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
366
390
  */
367
391
  path?: string | undefined;
368
392
  /**
@@ -429,7 +453,13 @@ export type UpdateToolRequestBodyFunction = {
429
453
 
430
454
  export type UpdateToolRequestBody1 = {
431
455
  /**
432
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
456
+ * Entity storage path in the format: `project/folder/subfolder/...`
457
+ *
458
+ * @remarks
459
+ *
460
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
461
+ *
462
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
433
463
  */
434
464
  path?: string | undefined;
435
465
  /**
@@ -521,7 +551,13 @@ export type UpdateToolResponseBodyCodeTool = {
521
551
  export type UpdateToolResponseBody5 = {
522
552
  id?: string | undefined;
523
553
  /**
524
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
554
+ * Entity storage path in the format: `project/folder/subfolder/...`
555
+ *
556
+ * @remarks
557
+ *
558
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
559
+ *
560
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
525
561
  */
526
562
  path: string;
527
563
  /**
@@ -646,7 +682,13 @@ export type UpdateToolResponseBodyMcp = {
646
682
  export type UpdateToolResponseBody4 = {
647
683
  id?: string | undefined;
648
684
  /**
649
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
685
+ * Entity storage path in the format: `project/folder/subfolder/...`
686
+ *
687
+ * @remarks
688
+ *
689
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
690
+ *
691
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
650
692
  */
651
693
  path: string;
652
694
  /**
@@ -795,7 +837,13 @@ export type UpdateToolResponseBodyHttp = {
795
837
  export type UpdateToolResponseBody3 = {
796
838
  id?: string | undefined;
797
839
  /**
798
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
840
+ * Entity storage path in the format: `project/folder/subfolder/...`
841
+ *
842
+ * @remarks
843
+ *
844
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
845
+ *
846
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
799
847
  */
800
848
  path: string;
801
849
  /**
@@ -876,7 +924,13 @@ export type UpdateToolResponseBodyJsonSchema = {
876
924
  export type UpdateToolResponseBody2 = {
877
925
  id?: string | undefined;
878
926
  /**
879
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
927
+ * Entity storage path in the format: `project/folder/subfolder/...`
928
+ *
929
+ * @remarks
930
+ *
931
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
932
+ *
933
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
880
934
  */
881
935
  path: string;
882
936
  /**
@@ -957,7 +1011,13 @@ export type UpdateToolResponseBodyFunction = {
957
1011
  export type UpdateToolResponseBody1 = {
958
1012
  id?: string | undefined;
959
1013
  /**
960
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
1014
+ * Entity storage path in the format: `project/folder/subfolder/...`
1015
+ *
1016
+ * @remarks
1017
+ *
1018
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
1019
+ *
1020
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
961
1021
  */
962
1022
  path: string;
963
1023
  /**
@@ -2691,7 +2751,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
2691
2751
  z.ZodTypeDef,
2692
2752
  unknown
2693
2753
  > = z.object({
2694
- _id: z.string().default("01K7GJX61XHHHXWPSXF7JXJVCX"),
2754
+ _id: z.string().default("01K7K4ZPHND97KSSZ4DPJWT4AS"),
2695
2755
  path: z.string(),
2696
2756
  key: z.string(),
2697
2757
  display_name: z.string(),
@@ -2746,7 +2806,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
2746
2806
  z.ZodTypeDef,
2747
2807
  UpdateToolResponseBody5
2748
2808
  > = z.object({
2749
- id: z.string().default("01K7GJX61XHHHXWPSXF7JXJVCX"),
2809
+ id: z.string().default("01K7K4ZPHND97KSSZ4DPJWT4AS"),
2750
2810
  path: z.string(),
2751
2811
  key: z.string(),
2752
2812
  displayName: z.string(),
@@ -3120,7 +3180,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
3120
3180
  z.ZodTypeDef,
3121
3181
  unknown
3122
3182
  > = z.object({
3123
- _id: z.string().default("01K7GJX61XSNQXN06GX21ZFE9R"),
3183
+ _id: z.string().default("01K7K4ZPHNS1TWS2Q9K6A9285J"),
3124
3184
  path: z.string(),
3125
3185
  key: z.string(),
3126
3186
  display_name: z.string(),
@@ -3174,7 +3234,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
3174
3234
  z.ZodTypeDef,
3175
3235
  UpdateToolResponseBody4
3176
3236
  > = z.object({
3177
- id: z.string().default("01K7GJX61XSNQXN06GX21ZFE9R"),
3237
+ id: z.string().default("01K7K4ZPHNS1TWS2Q9K6A9285J"),
3178
3238
  path: z.string(),
3179
3239
  key: z.string(),
3180
3240
  displayName: z.string(),
@@ -3592,7 +3652,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
3592
3652
  z.ZodTypeDef,
3593
3653
  unknown
3594
3654
  > = z.object({
3595
- _id: z.string().default("01K7GJX61W8QWNC69NECBMQ48R"),
3655
+ _id: z.string().default("01K7K4ZPHM3VMNE8QCY7XNVHRF"),
3596
3656
  path: z.string(),
3597
3657
  key: z.string(),
3598
3658
  display_name: z.string(),
@@ -3646,7 +3706,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
3646
3706
  z.ZodTypeDef,
3647
3707
  UpdateToolResponseBody3
3648
3708
  > = z.object({
3649
- id: z.string().default("01K7GJX61W8QWNC69NECBMQ48R"),
3709
+ id: z.string().default("01K7K4ZPHM3VMNE8QCY7XNVHRF"),
3650
3710
  path: z.string(),
3651
3711
  key: z.string(),
3652
3712
  displayName: z.string(),
@@ -3820,7 +3880,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
3820
3880
  z.ZodTypeDef,
3821
3881
  unknown
3822
3882
  > = z.object({
3823
- _id: z.string().default("01K7GJX61WTNCPT9HTVKPTH4ZY"),
3883
+ _id: z.string().default("01K7K4ZPHMMRXQGQBSPTT99NXC"),
3824
3884
  path: z.string(),
3825
3885
  key: z.string(),
3826
3886
  display_name: z.string(),
@@ -3873,7 +3933,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
3873
3933
  z.ZodTypeDef,
3874
3934
  UpdateToolResponseBody2
3875
3935
  > = z.object({
3876
- id: z.string().default("01K7GJX61WTNCPT9HTVKPTH4ZY"),
3936
+ id: z.string().default("01K7K4ZPHMMRXQGQBSPTT99NXC"),
3877
3937
  path: z.string(),
3878
3938
  key: z.string(),
3879
3939
  displayName: z.string(),
@@ -4045,7 +4105,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
4045
4105
  z.ZodTypeDef,
4046
4106
  unknown
4047
4107
  > = z.object({
4048
- _id: z.string().default("01K7GJX61WTC9CFY0KVE7W944A"),
4108
+ _id: z.string().default("01K7K4ZPHK95ZQRH14JCYKJAZ6"),
4049
4109
  path: z.string(),
4050
4110
  key: z.string(),
4051
4111
  display_name: z.string(),
@@ -4097,7 +4157,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
4097
4157
  z.ZodTypeDef,
4098
4158
  UpdateToolResponseBody1
4099
4159
  > = z.object({
4100
- id: z.string().default("01K7GJX61WTC9CFY0KVE7W944A"),
4160
+ id: z.string().default("01K7K4ZPHK95ZQRH14JCYKJAZ6"),
4101
4161
  path: z.string(),
4102
4162
  key: z.string(),
4103
4163
  displayName: z.string(),
package/src/lib/config.ts CHANGED
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
68
68
  export const SDK_METADATA = {
69
69
  language: "typescript",
70
70
  openapiDocVersion: "2.0",
71
- sdkVersion: "3.13.7",
71
+ sdkVersion: "3.13.9",
72
72
  genVersion: "2.723.11",
73
- userAgent: "speakeasy-sdk/typescript 3.13.7 2.723.11 2.0 @orq-ai/node",
73
+ userAgent: "speakeasy-sdk/typescript 3.13.9 2.723.11 2.0 @orq-ai/node",
74
74
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "3.13.7",
22
+ currentVersion: "3.13.9",
23
23
  },
24
24
  });
25
25
 
@@ -154,7 +154,7 @@ export function createMCPServer(deps: {
154
154
  }) {
155
155
  const server = new McpServer({
156
156
  name: "Orq",
157
- version: "3.13.7",
157
+ version: "3.13.9",
158
158
  });
159
159
 
160
160
  const client = new OrqCore({
@@ -147,7 +147,6 @@ export type PrefixMessagesContent =
147
147
  */
148
148
  export const DeploymentsPrefixMessages4Role = {
149
149
  Assistant: "assistant",
150
- Exception: "exception",
151
150
  } as const;
152
151
  /**
153
152
  * The role of the messages author, in this case `assistant` or `exception`.
@@ -594,7 +593,6 @@ export type DeploymentsMessagesContent =
594
593
  */
595
594
  export const DeploymentsMessages4Role = {
596
595
  Assistant: "assistant",
597
- Exception: "exception",
598
596
  } as const;
599
597
  /**
600
598
  * The role of the messages author, in this case `assistant` or `exception`.
@@ -658,7 +658,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
658
658
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
659
659
  .optional(),
660
660
  updated: z.string().datetime({ offset: true }).default(
661
- "2025-10-14T07:14:29.280Z",
661
+ "2025-10-15T07:53:42.182Z",
662
662
  ).transform(v => new Date(v)),
663
663
  }).transform((v) => {
664
664
  return remap$(v, {
@@ -693,7 +693,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
693
693
  isActive: z.boolean(),
694
694
  consumption: z.lazy(() => Consumption$outboundSchema).optional(),
695
695
  created: z.date().transform(v => v.toISOString()).optional(),
696
- updated: z.date().default(() => new Date("2025-10-14T07:14:29.280Z"))
696
+ updated: z.date().default(() => new Date("2025-10-15T07:53:42.182Z"))
697
697
  .transform(v => v.toISOString()),
698
698
  }).transform((v) => {
699
699
  return remap$(v, {
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
182
182
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
183
183
  .optional(),
184
184
  updated: z.string().datetime({ offset: true }).default(
185
- "2025-10-14T07:14:29.280Z",
185
+ "2025-10-15T07:53:42.182Z",
186
186
  ).transform(v => new Date(v)),
187
187
  }).transform((v) => {
188
188
  return remap$(v, {
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
223
223
  tags: z.array(z.string()).optional(),
224
224
  metadata: z.record(z.any()).optional(),
225
225
  created: z.date().transform(v => v.toISOString()).optional(),
226
- updated: z.date().default(() => new Date("2025-10-14T07:14:29.280Z"))
226
+ updated: z.date().default(() => new Date("2025-10-15T07:53:42.182Z"))
227
227
  .transform(v => v.toISOString()),
228
228
  }).transform((v) => {
229
229
  return remap$(v, {
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
211
211
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
212
212
  .optional(),
213
213
  updated: z.string().datetime({ offset: true }).default(
214
- "2025-10-14T07:14:29.280Z",
214
+ "2025-10-15T07:53:42.182Z",
215
215
  ).transform(v => new Date(v)),
216
216
  }).transform((v) => {
217
217
  return remap$(v, {
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
251
251
  updatedById: z.string().optional(),
252
252
  metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
253
253
  created: z.date().transform(v => v.toISOString()).optional(),
254
- updated: z.date().default(() => new Date("2025-10-14T07:14:29.280Z"))
254
+ updated: z.date().default(() => new Date("2025-10-15T07:53:42.182Z"))
255
255
  .transform(v => v.toISOString()),
256
256
  }).transform((v) => {
257
257
  return remap$(v, {
@@ -156,7 +156,6 @@ export type CreateDatasetItemMessagesDatasetsContent =
156
156
  */
157
157
  export const CreateDatasetItemMessagesDatasetsRequestRequestBodyRole = {
158
158
  Assistant: "assistant",
159
- Exception: "exception",
160
159
  } as const;
161
160
  /**
162
161
  * The role of the messages author, in this case `assistant` or `exception`.
@@ -677,7 +676,6 @@ export type CreateDatasetItemMessagesDatasetsResponse200Content =
677
676
  export const CreateDatasetItemMessagesDatasetsResponse200ApplicationJSONResponseBodyRole =
678
677
  {
679
678
  Assistant: "assistant",
680
- Exception: "exception",
681
679
  } as const;
682
680
  /**
683
681
  * The role of the messages author, in this case `assistant` or `exception`.
@@ -6083,7 +6081,7 @@ export const ResponseBody$inboundSchema: z.ZodType<
6083
6081
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
6084
6082
  .optional(),
6085
6083
  updated: z.string().datetime({ offset: true }).default(
6086
- "2025-10-14T07:14:29.280Z",
6084
+ "2025-10-15T07:53:42.182Z",
6087
6085
  ).transform(v => new Date(v)),
6088
6086
  }).transform((v) => {
6089
6087
  return remap$(v, {
@@ -6147,7 +6145,7 @@ export const ResponseBody$outboundSchema: z.ZodType<
6147
6145
  createdById: z.string().optional(),
6148
6146
  updatedById: z.string().optional(),
6149
6147
  created: z.date().transform(v => v.toISOString()).optional(),
6150
- updated: z.date().default(() => new Date("2025-10-14T07:14:29.280Z"))
6148
+ updated: z.date().default(() => new Date("2025-10-15T07:53:42.182Z"))
6151
6149
  .transform(v => v.toISOString()),
6152
6150
  }).transform((v) => {
6153
6151
  return remap$(v, {
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
751
751
  z.ZodTypeDef,
752
752
  unknown
753
753
  > = z.object({
754
- _id: z.string().default("01K7GS4BZ30TGZG4BCHV5HQ0C2"),
754
+ _id: z.string().default("01K7KDRXNVGDNYY5SYHSCXY4BX"),
755
755
  display_name: z.string(),
756
756
  description: z.string().optional(),
757
757
  status: CreateDatasourceStatus$inboundSchema,
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
795
795
  z.ZodTypeDef,
796
796
  CreateDatasourceResponseBody
797
797
  > = z.object({
798
- id: z.string().default("01K7GS4BZ30TGZG4BCHV5HQ0C2"),
798
+ id: z.string().default("01K7KDRXNVGDNYY5SYHSCXY4BX"),
799
799
  displayName: z.string(),
800
800
  description: z.string().optional(),
801
801
  status: CreateDatasourceStatus$outboundSchema,
@@ -3347,8 +3347,8 @@ export const Typescript$inboundSchema: z.ZodType<
3347
3347
  > = z.object({
3348
3348
  _id: z.string(),
3349
3349
  description: z.string(),
3350
- created: z.string().default("2025-10-14T07:14:31.544Z"),
3351
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
3350
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
3351
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
3352
3352
  guardrail_config: z.union([
3353
3353
  z.lazy(() =>
3354
3354
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
@@ -3391,8 +3391,8 @@ export const Typescript$outboundSchema: z.ZodType<
3391
3391
  > = z.object({
3392
3392
  id: z.string(),
3393
3393
  description: z.string(),
3394
- created: z.string().default("2025-10-14T07:14:31.544Z"),
3395
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
3394
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
3395
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
3396
3396
  guardrailConfig: z.union([
3397
3397
  z.lazy(() =>
3398
3398
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
@@ -3809,8 +3809,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
3809
3809
  .object({
3810
3810
  _id: z.string(),
3811
3811
  description: z.string(),
3812
- created: z.string().default("2025-10-14T07:14:31.544Z"),
3813
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
3812
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
3813
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
3814
3814
  guardrail_config: z.union([
3815
3815
  z.lazy(() =>
3816
3816
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
@@ -3856,8 +3856,8 @@ export const Ragas$outboundSchema: z.ZodType<
3856
3856
  > = z.object({
3857
3857
  id: z.string(),
3858
3858
  description: z.string(),
3859
- created: z.string().default("2025-10-14T07:14:31.544Z"),
3860
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
3859
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
3860
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
3861
3861
  guardrailConfig: z.union([
3862
3862
  z.lazy(() =>
3863
3863
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
@@ -7281,8 +7281,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
7281
7281
  > = z.object({
7282
7282
  _id: z.string(),
7283
7283
  description: z.string(),
7284
- created: z.string().default("2025-10-14T07:14:31.544Z"),
7285
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
7284
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
7285
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
7286
7286
  guardrail_config: z.union([
7287
7287
  z.lazy(() =>
7288
7288
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
@@ -7396,8 +7396,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
7396
7396
  > = z.object({
7397
7397
  id: z.string(),
7398
7398
  description: z.string(),
7399
- created: z.string().default("2025-10-14T07:14:31.544Z"),
7400
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
7399
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
7400
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
7401
7401
  guardrailConfig: z.union([
7402
7402
  z.lazy(() =>
7403
7403
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
@@ -7836,8 +7836,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
7836
7836
  > = z.object({
7837
7837
  _id: z.string(),
7838
7838
  description: z.string(),
7839
- created: z.string().default("2025-10-14T07:14:31.544Z"),
7840
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
7839
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
7840
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
7841
7841
  guardrail_config: z.union([
7842
7842
  z.lazy(() =>
7843
7843
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -7879,8 +7879,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
7879
7879
  > = z.object({
7880
7880
  id: z.string(),
7881
7881
  description: z.string(),
7882
- created: z.string().default("2025-10-14T07:14:31.544Z"),
7883
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
7882
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
7883
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
7884
7884
  guardrailConfig: z.union([
7885
7885
  z.lazy(() =>
7886
7886
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -8293,8 +8293,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
8293
8293
  > = z.object({
8294
8294
  _id: z.string(),
8295
8295
  description: z.string(),
8296
- created: z.string().default("2025-10-14T07:14:31.544Z"),
8297
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
8296
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
8297
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
8298
8298
  guardrail_config: z.union([
8299
8299
  z.lazy(() =>
8300
8300
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -8342,8 +8342,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
8342
8342
  > = z.object({
8343
8343
  id: z.string(),
8344
8344
  description: z.string(),
8345
- created: z.string().default("2025-10-14T07:14:31.544Z"),
8346
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
8345
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
8346
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
8347
8347
  guardrailConfig: z.union([
8348
8348
  z.lazy(() =>
8349
8349
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -8720,8 +8720,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
8720
8720
  > = z.object({
8721
8721
  _id: z.string(),
8722
8722
  description: z.string(),
8723
- created: z.string().default("2025-10-14T07:14:31.544Z"),
8724
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
8723
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
8724
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
8725
8725
  guardrail_config: z.union([
8726
8726
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
8727
8727
  z.lazy(() =>
@@ -8761,8 +8761,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
8761
8761
  > = z.object({
8762
8762
  id: z.string(),
8763
8763
  description: z.string(),
8764
- created: z.string().default("2025-10-14T07:14:31.544Z"),
8765
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
8764
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
8765
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
8766
8766
  guardrailConfig: z.union([
8767
8767
  z.lazy(() =>
8768
8768
  CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -9117,8 +9117,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
9117
9117
  > = z.object({
9118
9118
  _id: z.string(),
9119
9119
  description: z.string(),
9120
- created: z.string().default("2025-10-14T07:14:31.544Z"),
9121
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
9120
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
9121
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
9122
9122
  guardrail_config: z.union([
9123
9123
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
9124
9124
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -9158,8 +9158,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
9158
9158
  > = z.object({
9159
9159
  id: z.string(),
9160
9160
  description: z.string(),
9161
- created: z.string().default("2025-10-14T07:14:31.544Z"),
9162
- updated: z.string().default("2025-10-14T07:14:31.544Z"),
9161
+ created: z.string().default("2025-10-15T07:53:44.726Z"),
9162
+ updated: z.string().default("2025-10-15T07:53:44.726Z"),
9163
9163
  guardrailConfig: z.union([
9164
9164
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
9165
9165
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),