@orq-ai/node 4.9.11 → 4.9.12

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 (188) hide show
  1. package/jsr.json +1 -1
  2. package/lib/config.d.ts +2 -2
  3. package/lib/config.js +2 -2
  4. package/models/components/reasoningpart.js +1 -1
  5. package/models/operations/createcontact.js +1 -1
  6. package/models/operations/createdataset.js +1 -1
  7. package/models/operations/createdatasetitem.js +4 -4
  8. package/models/operations/createdatasource.js +1 -1
  9. package/models/operations/createeval.js +16 -16
  10. package/models/operations/createidentity.js +1 -1
  11. package/models/operations/createtool.js +6 -6
  12. package/models/operations/getalltools.js +6 -6
  13. package/models/operations/getevals.js +16 -16
  14. package/models/operations/getv2humanevalsets.js +2 -2
  15. package/models/operations/getv2humanevalsetsid.js +2 -2
  16. package/models/operations/listdatasetdatapoints.js +4 -4
  17. package/models/operations/listdatasets.js +1 -1
  18. package/models/operations/listdatasources.js +1 -1
  19. package/models/operations/listidentities.js +1 -1
  20. package/models/operations/patchv2humanevalsetsid.js +2 -2
  21. package/models/operations/postv2feedbackevaluation.js +3 -3
  22. package/models/operations/postv2humanevalsets.js +2 -2
  23. package/models/operations/retrievedatapoint.js +4 -4
  24. package/models/operations/retrievedataset.js +1 -1
  25. package/models/operations/retrievedatasource.js +1 -1
  26. package/models/operations/retrieveidentity.js +1 -1
  27. package/models/operations/retrievetool.js +6 -6
  28. package/models/operations/runagent.js +1 -1
  29. package/models/operations/streamrunagent.js +1 -1
  30. package/models/operations/updatedatapoint.js +4 -4
  31. package/models/operations/updatedataset.js +1 -1
  32. package/models/operations/updatedatasource.js +1 -1
  33. package/models/operations/updateeval.js +16 -16
  34. package/models/operations/updateidentity.js +1 -1
  35. package/models/operations/updatetool.js +7 -7
  36. package/package.json +7 -7
  37. package/packages/orq-rc/src/funcs/{reportingQuery.ts → contactsCreate.ts} +13 -13
  38. package/packages/orq-rc/src/funcs/identitiesCreate.ts +15 -10
  39. package/packages/orq-rc/src/funcs/identitiesDelete.ts +16 -7
  40. package/packages/orq-rc/src/funcs/identitiesList.ts +5 -6
  41. package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +18 -6
  42. package/packages/orq-rc/src/funcs/identitiesUpdate.ts +15 -9
  43. package/packages/orq-rc/src/funcs/projectsCreate.ts +1 -1
  44. package/packages/orq-rc/src/funcs/projectsDelete.ts +0 -3
  45. package/packages/orq-rc/src/funcs/projectsList.ts +1 -1
  46. package/packages/orq-rc/src/funcs/remoteconfigsRetrieve.ts +163 -0
  47. package/packages/orq-rc/src/funcs/skillsCreate.ts +1 -1
  48. package/packages/orq-rc/src/funcs/skillsDelete.ts +0 -3
  49. package/packages/orq-rc/src/funcs/skillsGet.ts +1 -1
  50. package/packages/orq-rc/src/funcs/skillsList.ts +1 -1
  51. package/packages/orq-rc/src/funcs/skillsUpdate.ts +1 -1
  52. package/packages/orq-rc/src/lib/config.ts +2 -2
  53. package/packages/orq-rc/src/models/components/createprojectrequest.ts +0 -6
  54. package/packages/orq-rc/src/models/components/createprojectresponse.ts +0 -3
  55. package/packages/orq-rc/src/models/components/createskillrequest.ts +0 -18
  56. package/packages/orq-rc/src/models/components/createskillresponse.ts +0 -3
  57. package/packages/orq-rc/src/models/components/file.ts +3 -0
  58. package/packages/orq-rc/src/models/components/getprojectresponse.ts +0 -3
  59. package/packages/orq-rc/src/models/components/getskillresponse.ts +0 -3
  60. package/packages/orq-rc/src/models/components/index.ts +0 -15
  61. package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +10 -17
  62. package/packages/orq-rc/src/models/components/listprojectsresponse.ts +0 -12
  63. package/packages/orq-rc/src/models/components/listskillsresponse.ts +0 -12
  64. package/packages/orq-rc/src/models/components/modelref.ts +0 -6
  65. package/packages/orq-rc/src/models/components/project.ts +3 -42
  66. package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
  67. package/packages/orq-rc/src/models/components/skill.ts +3 -37
  68. package/packages/orq-rc/src/models/components/updateprojectrequest.ts +0 -12
  69. package/packages/orq-rc/src/models/components/updateprojectresponse.ts +0 -3
  70. package/packages/orq-rc/src/models/components/updateskillrequest.ts +0 -21
  71. package/packages/orq-rc/src/models/components/updateskillresponse.ts +0 -3
  72. package/packages/orq-rc/src/models/errors/deleteidentity.ts +62 -0
  73. package/packages/orq-rc/src/models/errors/index.ts +3 -0
  74. package/packages/orq-rc/src/models/errors/retrieveidentity.ts +118 -0
  75. package/packages/orq-rc/src/models/errors/updateidentity.ts +54 -0
  76. package/packages/orq-rc/src/models/operations/createagentrequest.ts +3 -3
  77. package/packages/orq-rc/src/models/operations/createannotation.ts +11 -7
  78. package/packages/orq-rc/src/models/operations/createcontact.ts +156 -0
  79. package/packages/orq-rc/src/models/operations/createdataset.ts +4 -4
  80. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
  81. package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
  82. package/packages/orq-rc/src/models/operations/createeval.ts +31 -45
  83. package/packages/orq-rc/src/models/operations/createidentity.ts +162 -0
  84. package/packages/orq-rc/src/models/operations/createknowledge.ts +9 -9
  85. package/packages/orq-rc/src/models/operations/creatememorystore.ts +3 -3
  86. package/packages/orq-rc/src/models/operations/createprompt.ts +3 -3
  87. package/packages/orq-rc/src/models/operations/createtool.ts +36 -36
  88. package/packages/orq-rc/src/models/operations/deleteidentity.ts +3 -0
  89. package/packages/orq-rc/src/models/operations/getalltools.ts +21 -21
  90. package/packages/orq-rc/src/models/operations/getevals.ts +16 -22
  91. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +6 -6
  92. package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
  93. package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
  94. package/packages/orq-rc/src/models/operations/index.ts +3 -0
  95. package/packages/orq-rc/src/models/operations/invokeeval.ts +80 -83
  96. package/packages/orq-rc/src/models/operations/listagents.ts +3 -3
  97. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
  98. package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
  99. package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
  100. package/packages/orq-rc/src/models/operations/listidentities.ts +230 -9
  101. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +6 -6
  102. package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  103. package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +17 -14
  104. package/packages/orq-rc/src/models/operations/postv2feedback.ts +27 -34
  105. package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
  106. package/packages/orq-rc/src/models/operations/postv2feedbackremove.ts +17 -14
  107. package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
  108. package/packages/orq-rc/src/models/operations/projectdelete.ts +0 -3
  109. package/packages/orq-rc/src/models/operations/projectget.ts +0 -3
  110. package/packages/orq-rc/src/models/operations/projectlist.ts +0 -15
  111. package/packages/orq-rc/src/models/operations/projectupdate.ts +0 -3
  112. package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +108 -0
  113. package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +3 -3
  114. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
  115. package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
  116. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
  117. package/packages/orq-rc/src/models/operations/retrieveidentity.ts +138 -3
  118. package/packages/orq-rc/src/models/operations/retrievetool.ts +21 -21
  119. package/packages/orq-rc/src/models/operations/runagent.ts +4 -4
  120. package/packages/orq-rc/src/models/operations/skilldelete.ts +0 -3
  121. package/packages/orq-rc/src/models/operations/skilllist.ts +0 -12
  122. package/packages/orq-rc/src/models/operations/skillupdate.ts +0 -3
  123. package/packages/orq-rc/src/models/operations/streamrunagent.ts +4 -4
  124. package/packages/orq-rc/src/models/operations/updateagent.ts +6 -6
  125. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
  126. package/packages/orq-rc/src/models/operations/updatedataset.ts +4 -4
  127. package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
  128. package/packages/orq-rc/src/models/operations/updateeval.ts +23 -30
  129. package/packages/orq-rc/src/models/operations/updateidentity.ts +154 -5
  130. package/packages/orq-rc/src/models/operations/updateknowledge.ts +12 -12
  131. package/packages/orq-rc/src/models/operations/updateprompt.ts +3 -3
  132. package/packages/orq-rc/src/models/operations/updatetool.ts +37 -37
  133. package/packages/orq-rc/src/sdk/contacts.ts +27 -0
  134. package/packages/orq-rc/src/sdk/feedback.ts +8 -8
  135. package/packages/orq-rc/src/sdk/identities.ts +17 -18
  136. package/packages/orq-rc/src/sdk/projects.ts +2 -5
  137. package/packages/orq-rc/src/sdk/remoteconfigs.ts +24 -0
  138. package/packages/orq-rc/src/sdk/sdk.ts +22 -16
  139. package/packages/orq-rc/src/sdk/skills.ts +4 -7
  140. package/src/lib/config.ts +2 -2
  141. package/src/models/components/reasoningpart.ts +1 -1
  142. package/src/models/operations/createcontact.ts +1 -1
  143. package/src/models/operations/createdataset.ts +1 -1
  144. package/src/models/operations/createdatasetitem.ts +4 -4
  145. package/src/models/operations/createdatasource.ts +1 -1
  146. package/src/models/operations/createeval.ts +16 -16
  147. package/src/models/operations/createidentity.ts +1 -1
  148. package/src/models/operations/createtool.ts +6 -6
  149. package/src/models/operations/getalltools.ts +6 -6
  150. package/src/models/operations/getevals.ts +16 -16
  151. package/src/models/operations/getv2humanevalsets.ts +2 -2
  152. package/src/models/operations/getv2humanevalsetsid.ts +2 -2
  153. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  154. package/src/models/operations/listdatasets.ts +1 -1
  155. package/src/models/operations/listdatasources.ts +1 -1
  156. package/src/models/operations/listidentities.ts +1 -1
  157. package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  158. package/src/models/operations/postv2feedbackevaluation.ts +3 -3
  159. package/src/models/operations/postv2humanevalsets.ts +2 -2
  160. package/src/models/operations/retrievedatapoint.ts +4 -4
  161. package/src/models/operations/retrievedataset.ts +1 -1
  162. package/src/models/operations/retrievedatasource.ts +1 -1
  163. package/src/models/operations/retrieveidentity.ts +1 -1
  164. package/src/models/operations/retrievetool.ts +6 -6
  165. package/src/models/operations/runagent.ts +1 -1
  166. package/src/models/operations/streamrunagent.ts +1 -1
  167. package/src/models/operations/updatedatapoint.ts +4 -4
  168. package/src/models/operations/updatedataset.ts +1 -1
  169. package/src/models/operations/updatedatasource.ts +1 -1
  170. package/src/models/operations/updateeval.ts +16 -16
  171. package/src/models/operations/updateidentity.ts +1 -1
  172. package/src/models/operations/updatetool.ts +7 -7
  173. package/packages/orq-rc/src/models/components/createidentityrequest.ts +0 -76
  174. package/packages/orq-rc/src/models/components/createidentityresponse.ts +0 -32
  175. package/packages/orq-rc/src/models/components/datapoint.ts +0 -60
  176. package/packages/orq-rc/src/models/components/deleteidentityresponse.ts +0 -27
  177. package/packages/orq-rc/src/models/components/filter.ts +0 -137
  178. package/packages/orq-rc/src/models/components/identity.ts +0 -83
  179. package/packages/orq-rc/src/models/components/identitymetrics.ts +0 -45
  180. package/packages/orq-rc/src/models/components/listidentitiesresponse.ts +0 -41
  181. package/packages/orq-rc/src/models/components/queryreportrequest.ts +0 -237
  182. package/packages/orq-rc/src/models/components/queryreportresponse.ts +0 -96
  183. package/packages/orq-rc/src/models/components/responsemeta.ts +0 -103
  184. package/packages/orq-rc/src/models/components/retrieveidentityresponse.ts +0 -32
  185. package/packages/orq-rc/src/models/components/totals.ts +0 -34
  186. package/packages/orq-rc/src/models/components/updateidentityrequest.ts +0 -75
  187. package/packages/orq-rc/src/models/components/updateidentityresponse.ts +0 -32
  188. package/packages/orq-rc/src/sdk/reporting.ts +0 -27
@@ -93,13 +93,13 @@ export type UpdateToolRequestBodyToolsRequest5VersionIncrement = ClosedEnum<
93
93
  */
94
94
  export type UpdateCodeExecutionTool = {
95
95
  /**
96
- * Entity storage path.
96
+ * Entity storage path in the format: `project/folder/subfolder/...`
97
97
  *
98
98
  * @remarks
99
99
  *
100
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
100
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
101
101
  *
102
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
102
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
103
103
  */
104
104
  path?: string | undefined;
105
105
  /**
@@ -214,13 +214,13 @@ export type UpdateToolRequestBodyToolsRequestVersionIncrement = ClosedEnum<
214
214
  */
215
215
  export type UpdateMCPTool = {
216
216
  /**
217
- * Entity storage path.
217
+ * Entity storage path in the format: `project/folder/subfolder/...`
218
218
  *
219
219
  * @remarks
220
220
  *
221
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
221
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
222
222
  *
223
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
223
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
224
224
  */
225
225
  path?: string | undefined;
226
226
  /**
@@ -373,13 +373,13 @@ export type UpdateToolRequestBodyToolsVersionIncrement = ClosedEnum<
373
373
  */
374
374
  export type UpdateHTTPTool = {
375
375
  /**
376
- * Entity storage path.
376
+ * Entity storage path in the format: `project/folder/subfolder/...`
377
377
  *
378
378
  * @remarks
379
379
  *
380
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
380
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
381
381
  *
382
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
382
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
383
383
  */
384
384
  path?: string | undefined;
385
385
  /**
@@ -472,13 +472,13 @@ export type UpdateToolRequestBodyVersionIncrement = ClosedEnum<
472
472
  */
473
473
  export type UpdateJSONSchemaTool = {
474
474
  /**
475
- * Entity storage path.
475
+ * Entity storage path in the format: `project/folder/subfolder/...`
476
476
  *
477
477
  * @remarks
478
478
  *
479
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
479
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
480
480
  *
481
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
481
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
482
482
  */
483
483
  path?: string | undefined;
484
484
  /**
@@ -584,13 +584,13 @@ export type RequestBodyVersionIncrement = ClosedEnum<
584
584
  */
585
585
  export type UpdateFunctionTool = {
586
586
  /**
587
- * Entity storage path.
587
+ * Entity storage path in the format: `project/folder/subfolder/...`
588
588
  *
589
589
  * @remarks
590
590
  *
591
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
591
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
592
592
  *
593
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
593
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
594
594
  */
595
595
  path?: string | undefined;
596
596
  /**
@@ -712,13 +712,13 @@ export type UpdateToolResponseBodyCodeTool = {
712
712
  export type UpdateToolResponseBodyCodeExecutionTool = {
713
713
  id: string;
714
714
  /**
715
- * Entity storage path.
715
+ * Entity storage path in the format: `project/folder/subfolder/...`
716
716
  *
717
717
  * @remarks
718
718
  *
719
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
719
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
720
720
  *
721
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
721
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
722
722
  */
723
723
  path: string;
724
724
  /**
@@ -836,13 +836,13 @@ export type UpdateToolResponseBodyMcp = {
836
836
  export type UpdateToolResponseBodyMCPTool = {
837
837
  id: string;
838
838
  /**
839
- * Entity storage path.
839
+ * Entity storage path in the format: `project/folder/subfolder/...`
840
840
  *
841
841
  * @remarks
842
842
  *
843
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
843
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
844
844
  *
845
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
845
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
846
846
  */
847
847
  path: string;
848
848
  /**
@@ -995,13 +995,13 @@ export type UpdateToolResponseBodyHttp = {
995
995
  export type UpdateToolResponseBodyHTTPTool = {
996
996
  id: string;
997
997
  /**
998
- * Entity storage path.
998
+ * Entity storage path in the format: `project/folder/subfolder/...`
999
999
  *
1000
1000
  * @remarks
1001
1001
  *
1002
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
1002
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
1003
1003
  *
1004
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
1004
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
1005
1005
  */
1006
1006
  path: string;
1007
1007
  /**
@@ -1096,13 +1096,13 @@ export type UpdateToolResponseBodyJsonSchema = {
1096
1096
  export type UpdateToolResponseBodyJSONSchemaTool = {
1097
1097
  id: string;
1098
1098
  /**
1099
- * Entity storage path.
1099
+ * Entity storage path in the format: `project/folder/subfolder/...`
1100
1100
  *
1101
1101
  * @remarks
1102
1102
  *
1103
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
1103
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
1104
1104
  *
1105
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
1105
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
1106
1106
  */
1107
1107
  path: string;
1108
1108
  /**
@@ -1209,13 +1209,13 @@ export type UpdateToolResponseBodyFunction = {
1209
1209
  export type UpdateToolResponseBodyFunctionTool = {
1210
1210
  id: string;
1211
1211
  /**
1212
- * Entity storage path.
1212
+ * Entity storage path in the format: `project/folder/subfolder/...`
1213
1213
  *
1214
1214
  * @remarks
1215
1215
  *
1216
- * With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
1216
+ * The first element identifies the project, followed by nested folders (auto-created as needed).
1217
1217
  *
1218
- * With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
1218
+ * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
1219
1219
  */
1220
1220
  path: string;
1221
1221
  /**
@@ -1472,7 +1472,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
1472
1472
  z.ZodTypeDef,
1473
1473
  RequestBodyTools
1474
1474
  > = z.object({
1475
- id: z.string().default("01KRZW3QDSDN97X7YHMY4HVPH9"),
1475
+ id: z.string().default("01KS0ARZ33R0NSK5KTEKK1MMHA"),
1476
1476
  name: z.string(),
1477
1477
  description: z.string().optional(),
1478
1478
  schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
@@ -2193,7 +2193,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
2193
2193
  z.ZodTypeDef,
2194
2194
  unknown
2195
2195
  > = z.object({
2196
- _id: z.string().default("tool_01KRZW3QDMTS76H77V4WTVC0YT"),
2196
+ _id: z.string().default("tool_01KS0ARZ2QE5XG90BZR7WNC4RW"),
2197
2197
  path: z.string(),
2198
2198
  key: z.string(),
2199
2199
  display_name: z.string().optional(),
@@ -2296,7 +2296,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
2296
2296
  z.ZodTypeDef,
2297
2297
  unknown
2298
2298
  > = z.object({
2299
- id: z.string().default("01KRZW3QDMT5TCZK5GZHG1EQTV"),
2299
+ id: z.string().default("01KS0ARZ2PH1VE8PY509W9KSJQ"),
2300
2300
  name: z.string(),
2301
2301
  description: z.string().optional(),
2302
2302
  schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
@@ -2354,7 +2354,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
2354
2354
  z.ZodTypeDef,
2355
2355
  unknown
2356
2356
  > = z.object({
2357
- _id: z.string().default("tool_01KRZW3QDK3Z9WHC5VWDM7QGA0"),
2357
+ _id: z.string().default("tool_01KS0ARZ2NP4XKRCCR08SFQJWM"),
2358
2358
  path: z.string(),
2359
2359
  key: z.string(),
2360
2360
  display_name: z.string().optional(),
@@ -2543,7 +2543,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
2543
2543
  z.ZodTypeDef,
2544
2544
  unknown
2545
2545
  > = z.object({
2546
- _id: z.string().default("tool_01KRZW3QDHS0QBW9B6EHW1NZRH"),
2546
+ _id: z.string().default("tool_01KS0ARZ2M9G6PHY6BV9JAPYHH"),
2547
2547
  path: z.string(),
2548
2548
  key: z.string(),
2549
2549
  display_name: z.string().optional(),
@@ -2638,7 +2638,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2638
2638
  z.ZodTypeDef,
2639
2639
  unknown
2640
2640
  > = z.object({
2641
- _id: z.string().default("tool_01KRZW3QDG4MERVTXNXRW0PPTR"),
2641
+ _id: z.string().default("tool_01KS0ARZ2KK024YRJ4TFTNTNR6"),
2642
2642
  path: z.string(),
2643
2643
  key: z.string(),
2644
2644
  display_name: z.string().optional(),
@@ -2741,7 +2741,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
2741
2741
  z.ZodTypeDef,
2742
2742
  unknown
2743
2743
  > = z.object({
2744
- _id: z.string().default("tool_01KRZW3QDF0D55F0SBMV7FCXRQ"),
2744
+ _id: z.string().default("tool_01KS0ARZ2JNAC524EQ8TNSBPAZ"),
2745
2745
  path: z.string(),
2746
2746
  key: z.string(),
2747
2747
  display_name: z.string().optional(),
@@ -0,0 +1,27 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { contactsCreate } from "../funcs/contactsCreate.js";
6
+ import { ClientSDK, RequestOptions } from "../lib/sdks.js";
7
+ import * as operations from "../models/operations/index.js";
8
+ import { unwrapAsync } from "../types/fp.js";
9
+
10
+ export class Contacts extends ClientSDK {
11
+ /**
12
+ * Update user information
13
+ *
14
+ * @remarks
15
+ * Update or add user information to workspace
16
+ */
17
+ async create(
18
+ request: operations.CreateContactRequestBody,
19
+ options?: RequestOptions,
20
+ ): Promise<operations.CreateContactResponseBody> {
21
+ return unwrapAsync(contactsCreate(
22
+ this,
23
+ request,
24
+ options,
25
+ ));
26
+ }
27
+ }
@@ -9,22 +9,22 @@ import * as operations from "../models/operations/index.js";
9
9
  import { unwrapAsync } from "../types/fp.js";
10
10
 
11
11
  export class Feedback extends ClientSDK {
12
- async postV2FeedbackRemove(
13
- request?: operations.PostV2FeedbackRemoveRequestBody | undefined,
12
+ async postV2Feedback(
13
+ request?: operations.PostV2FeedbackRequestBody | undefined,
14
14
  options?: RequestOptions,
15
- ): Promise<operations.PostV2FeedbackRemoveResponseBody> {
16
- return unwrapAsync(feedbackPostV2FeedbackRemove(
15
+ ): Promise<operations.PostV2FeedbackResponseBody> {
16
+ return unwrapAsync(feedbackPostV2Feedback(
17
17
  this,
18
18
  request,
19
19
  options,
20
20
  ));
21
21
  }
22
22
 
23
- async postV2Feedback(
24
- request?: operations.PostV2FeedbackRequestBody | undefined,
23
+ async postV2FeedbackRemove(
24
+ request?: operations.PostV2FeedbackRemoveRequestBody | undefined,
25
25
  options?: RequestOptions,
26
- ): Promise<operations.PostV2FeedbackResponseBody> {
27
- return unwrapAsync(feedbackPostV2Feedback(
26
+ ): Promise<operations.PostV2FeedbackRemoveResponseBody> {
27
+ return unwrapAsync(feedbackPostV2FeedbackRemove(
28
28
  this,
29
29
  request,
30
30
  options,
@@ -8,7 +8,6 @@ import { identitiesList } from "../funcs/identitiesList.js";
8
8
  import { identitiesRetrieve } from "../funcs/identitiesRetrieve.js";
9
9
  import { identitiesUpdate } from "../funcs/identitiesUpdate.js";
10
10
  import { ClientSDK, RequestOptions } from "../lib/sdks.js";
11
- import * as components from "../models/components/index.js";
12
11
  import * as operations from "../models/operations/index.js";
13
12
  import { unwrapAsync } from "../types/fp.js";
14
13
 
@@ -22,7 +21,7 @@ export class Identities extends ClientSDK {
22
21
  async list(
23
22
  request?: operations.ListIdentitiesRequest | undefined,
24
23
  options?: RequestOptions,
25
- ): Promise<components.ListIdentitiesResponse> {
24
+ ): Promise<operations.ListIdentitiesResponseBody> {
26
25
  return unwrapAsync(identitiesList(
27
26
  this,
28
27
  request,
@@ -34,12 +33,12 @@ export class Identities extends ClientSDK {
34
33
  * Create an identity
35
34
  *
36
35
  * @remarks
37
- * Creates a new identity with a unique external_id. If an identity with the same external_id already exists, the operation will fail.
36
+ * Creates a new identity with a unique external_id. If an identity with the same external_id already exists, the operation will fail. Use this endpoint to add users from your system to orq.ai for tracking their usage and engagement.
38
37
  */
39
38
  async create(
40
- request: components.CreateIdentityRequest,
39
+ request?: operations.CreateIdentityRequestBody | undefined,
41
40
  options?: RequestOptions,
42
- ): Promise<components.CreateIdentityResponse> {
41
+ ): Promise<operations.CreateIdentityResponseBody> {
43
42
  return unwrapAsync(identitiesCreate(
44
43
  this,
45
44
  request,
@@ -56,7 +55,7 @@ export class Identities extends ClientSDK {
56
55
  async retrieve(
57
56
  request: operations.RetrieveIdentityRequest,
58
57
  options?: RequestOptions,
59
- ): Promise<components.RetrieveIdentityResponse> {
58
+ ): Promise<operations.RetrieveIdentityResponseBody> {
60
59
  return unwrapAsync(identitiesRetrieve(
61
60
  this,
62
61
  request,
@@ -65,16 +64,16 @@ export class Identities extends ClientSDK {
65
64
  }
66
65
 
67
66
  /**
68
- * Delete an identity
67
+ * Update an identity
69
68
  *
70
69
  * @remarks
71
- * Permanently deletes an identity from your workspace and cleans up associated budget configurations.
70
+ * Updates specific fields of an existing identity. Only the fields provided in the request body will be updated.
72
71
  */
73
- async delete(
74
- request: operations.DeleteIdentityRequest,
72
+ async update(
73
+ request: operations.UpdateIdentityRequest,
75
74
  options?: RequestOptions,
76
- ): Promise<components.DeleteIdentityResponse> {
77
- return unwrapAsync(identitiesDelete(
75
+ ): Promise<operations.UpdateIdentityResponseBody> {
76
+ return unwrapAsync(identitiesUpdate(
78
77
  this,
79
78
  request,
80
79
  options,
@@ -82,16 +81,16 @@ export class Identities extends ClientSDK {
82
81
  }
83
82
 
84
83
  /**
85
- * Update an identity
84
+ * Delete an identity
86
85
  *
87
86
  * @remarks
88
- * Updates specific fields of an existing identity. Only the fields provided in the request body will be updated.
87
+ * Permanently deletes an identity from your workspace and cleans up associated budget configurations. This action cannot be undone.
89
88
  */
90
- async update(
91
- request: operations.UpdateIdentityRequest,
89
+ async delete(
90
+ request: operations.DeleteIdentityRequest,
92
91
  options?: RequestOptions,
93
- ): Promise<components.UpdateIdentityResponse> {
94
- return unwrapAsync(identitiesUpdate(
92
+ ): Promise<void> {
93
+ return unwrapAsync(identitiesDelete(
95
94
  this,
96
95
  request,
97
96
  options,
@@ -17,7 +17,7 @@ export class Projects extends ClientSDK {
17
17
  * List all projects
18
18
  *
19
19
  * @remarks
20
- * Returns projects visible to the current workspace, ordered by creation time with the newest project first. Use `starting_after` or `ending_before` to page through large collections.
20
+ * Returns a list of projects. Projects are sorted by creation date, with the most recently created projects appearing first.
21
21
  */
22
22
  async list(
23
23
  request?: operations.ProjectListRequest | undefined,
@@ -34,7 +34,7 @@ export class Projects extends ClientSDK {
34
34
  * Create a new project
35
35
  *
36
36
  * @remarks
37
- * Creates a project in the current workspace. Projects are workspace-level containers for resources such as skills, deployments, datasets, rules, and related team access.
37
+ * Creates a new project within the workspace. Projects organize resources like skills, deployments, and datasets.
38
38
  */
39
39
  async create(
40
40
  request: components.CreateProjectRequest,
@@ -66,9 +66,6 @@ export class Projects extends ClientSDK {
66
66
 
67
67
  /**
68
68
  * Delete a project
69
- *
70
- * @remarks
71
- * Deletes a project from the workspace. The response body is empty when the delete succeeds.
72
69
  */
73
70
  async delete(
74
71
  request: operations.ProjectDeleteRequest,
@@ -0,0 +1,24 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { remoteconfigsRetrieve } from "../funcs/remoteconfigsRetrieve.js";
6
+ import { ClientSDK, RequestOptions } from "../lib/sdks.js";
7
+ import * as operations from "../models/operations/index.js";
8
+ import { unwrapAsync } from "../types/fp.js";
9
+
10
+ export class Remoteconfigs extends ClientSDK {
11
+ /**
12
+ * Retrieve a remote config
13
+ */
14
+ async retrieve(
15
+ request?: operations.RemoteConfigsGetConfigRequestBody | undefined,
16
+ options?: RequestOptions,
17
+ ): Promise<operations.RemoteConfigsGetConfigResponseBody> {
18
+ return unwrapAsync(remoteconfigsRetrieve(
19
+ this,
20
+ request,
21
+ options,
22
+ ));
23
+ }
24
+ }
@@ -10,6 +10,7 @@ import { unwrapAsync } from "../types/fp.js";
10
10
  import { Agents } from "./agents.js";
11
11
  import { Annotations } from "./annotations.js";
12
12
  import { Chunking } from "./chunking.js";
13
+ import { Contacts } from "./contacts.js";
13
14
  import { Datasets } from "./datasets.js";
14
15
  import { Deployments } from "./deployments.js";
15
16
  import { Evals } from "./evals.js";
@@ -23,7 +24,7 @@ import { MemoryStores } from "./memorystores.js";
23
24
  import { Policies } from "./policies.js";
24
25
  import { Projects } from "./projects.js";
25
26
  import { Prompts } from "./prompts.js";
26
- import { Reporting } from "./reporting.js";
27
+ import { Remoteconfigs } from "./remoteconfigs.js";
27
28
  import { Responses } from "./responses.js";
28
29
  import { Router } from "./router.js";
29
30
  import { RoutingRules } from "./routingrules.js";
@@ -32,11 +33,26 @@ import { Skills } from "./skills.js";
32
33
  import { Tools } from "./tools.js";
33
34
 
34
35
  export class Orq extends ClientSDK {
36
+ private _contacts?: Contacts;
37
+ get contacts(): Contacts {
38
+ return (this._contacts ??= new Contacts(this._options));
39
+ }
40
+
41
+ private _feedback?: Feedback;
42
+ get feedback(): Feedback {
43
+ return (this._feedback ??= new Feedback(this._options));
44
+ }
45
+
35
46
  private _evals?: Evals;
36
47
  get evals(): Evals {
37
48
  return (this._evals ??= new Evals(this._options));
38
49
  }
39
50
 
51
+ private _identities?: Identities;
52
+ get identities(): Identities {
53
+ return (this._identities ??= new Identities(this._options));
54
+ }
55
+
40
56
  private _deployments?: Deployments;
41
57
  get deployments(): Deployments {
42
58
  return (this._deployments ??= new Deployments(this._options));
@@ -52,6 +68,11 @@ export class Orq extends ClientSDK {
52
68
  return (this._prompts ??= new Prompts(this._options));
53
69
  }
54
70
 
71
+ private _remoteconfigs?: Remoteconfigs;
72
+ get remoteconfigs(): Remoteconfigs {
73
+ return (this._remoteconfigs ??= new Remoteconfigs(this._options));
74
+ }
75
+
55
76
  private _tools?: Tools;
56
77
  get tools(): Tools {
57
78
  return (this._tools ??= new Tools(this._options));
@@ -87,11 +108,6 @@ export class Orq extends ClientSDK {
87
108
  return (this._annotations ??= new Annotations(this._options));
88
109
  }
89
110
 
90
- private _feedback?: Feedback;
91
- get feedback(): Feedback {
92
- return (this._feedback ??= new Feedback(this._options));
93
- }
94
-
95
111
  private _humanReviewSets?: HumanReviewSets;
96
112
  get humanReviewSets(): HumanReviewSets {
97
113
  return (this._humanReviewSets ??= new HumanReviewSets(this._options));
@@ -117,11 +133,6 @@ export class Orq extends ClientSDK {
117
133
  return (this._files ??= new Files(this._options));
118
134
  }
119
135
 
120
- private _identities?: Identities;
121
- get identities(): Identities {
122
- return (this._identities ??= new Identities(this._options));
123
- }
124
-
125
136
  private _projects?: Projects;
126
137
  get projects(): Projects {
127
138
  return (this._projects ??= new Projects(this._options));
@@ -142,11 +153,6 @@ export class Orq extends ClientSDK {
142
153
  return (this._responses ??= new Responses(this._options));
143
154
  }
144
155
 
145
- private _reporting?: Reporting;
146
- get reporting(): Reporting {
147
- return (this._reporting ??= new Reporting(this._options));
148
- }
149
-
150
156
  async postV2FeedbackEvaluationRemove(
151
157
  request?: operations.PostV2FeedbackEvaluationRemoveRequestBody | undefined,
152
158
  options?: RequestOptions,
@@ -17,7 +17,7 @@ export class Skills extends ClientSDK {
17
17
  * List all skills
18
18
  *
19
19
  * @remarks
20
- * Returns the skills visible to the current workspace, ordered by creation time with the newest skill first. Use `starting_after` or `ending_before` to page through large collections.
20
+ * Returns a list of skills. Skills are sorted by creation date, with the most recently created skills appearing first.
21
21
  */
22
22
  async list(
23
23
  request?: operations.SkillListRequest | undefined,
@@ -34,7 +34,7 @@ export class Skills extends ClientSDK {
34
34
  * Create a new skill
35
35
  *
36
36
  * @remarks
37
- * Creates a reusable skill in the workspace. Skills store instructions, metadata, and an optional project location so teams can standardize repeatable AI workflows.
37
+ * Skills are modular instructions you can use to codify processes and conventions
38
38
  */
39
39
  async create(
40
40
  request: components.CreateSkillRequest,
@@ -51,7 +51,7 @@ export class Skills extends ClientSDK {
51
51
  * Retrieve a skill
52
52
  *
53
53
  * @remarks
54
- * Retrieves an existing skill by skill ID. Display names are also accepted for compatibility because they are unique within a workspace.
54
+ * Retrieves an existing skill by its unique skill ID or its display name (display names are unique within a workspace).
55
55
  */
56
56
  async get(
57
57
  request: operations.SkillGetRequest,
@@ -66,9 +66,6 @@ export class Skills extends ClientSDK {
66
66
 
67
67
  /**
68
68
  * Delete a skill
69
- *
70
- * @remarks
71
- * Deletes a skill from the workspace. The response body is empty when the delete succeeds.
72
69
  */
73
70
  async delete(
74
71
  request: operations.SkillDeleteRequest,
@@ -85,7 +82,7 @@ export class Skills extends ClientSDK {
85
82
  * Update a skill
86
83
  *
87
84
  * @remarks
88
- * Updates mutable skill fields. Omitted optional fields keep their current values. Repeated fields such as `tags` replace the existing collection when provided.
85
+ * Updates the specified skill by setting the values of the parameters passed.
89
86
  */
90
87
  async update(
91
88
  request: operations.SkillUpdateRequest,
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: "4.9.11",
71
+ sdkVersion: "4.9.12",
72
72
  genVersion: "2.884.4",
73
- userAgent: "speakeasy-sdk/typescript 4.9.11 2.884.4 2.0 @orq-ai/node",
73
+ userAgent: "speakeasy-sdk/typescript 4.9.12 2.884.4 2.0 @orq-ai/node",
74
74
  } as const;
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
40
40
  z.ZodTypeDef,
41
41
  unknown
42
42
  > = z.object({
43
- _id: z.string().default("reasoning_01ks03g4cz5g7ggwttw1y3xzhf"),
43
+ _id: z.string().default("reasoning_01ks0arypeqctv4tqd6cvfeqtv"),
44
44
  metadata: z.record(z.any()).optional(),
45
45
  kind: z.literal("reasoning"),
46
46
  reasoning: z.string(),
@@ -134,7 +134,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
134
134
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
135
135
  .optional(),
136
136
  updated: z.string().datetime({ offset: true }).default(
137
- "2026-05-19T12:31:01.501Z",
137
+ "2026-05-19T14:38:12.201Z",
138
138
  ).transform(v => new Date(v)),
139
139
  }).transform((v) => {
140
140
  return remap$(v, {
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
138
138
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
139
139
  .optional(),
140
140
  updated: z.string().datetime({ offset: true }).default(
141
- "2026-05-19T12:31:01.501Z",
141
+ "2026-05-19T14:38:12.201Z",
142
142
  ).transform(v => new Date(v)),
143
143
  }).transform((v) => {
144
144
  return remap$(v, {
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
2355
2355
  ),
2356
2356
  reviewed_by_id: z.string(),
2357
2357
  reviewed_at: z.string().datetime({ offset: true }).default(
2358
- "2026-05-19T12:31:17.547Z",
2358
+ "2026-05-19T14:38:26.551Z",
2359
2359
  ).transform(v => new Date(v)),
2360
2360
  type: z.literal("string_array"),
2361
2361
  values: z.array(z.string()),
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
2400
2400
  source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
2401
2401
  reviewed_by_id: z.string(),
2402
2402
  reviewed_at: z.string().datetime({ offset: true }).default(
2403
- "2026-05-19T12:31:17.547Z",
2403
+ "2026-05-19T14:38:26.550Z",
2404
2404
  ).transform(v => new Date(v)),
2405
2405
  type: z.literal("number"),
2406
2406
  value: z.number(),
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
2446
2446
  source: EvaluationsSource$inboundSchema.default("orq"),
2447
2447
  reviewed_by_id: z.string(),
2448
2448
  reviewed_at: z.string().datetime({ offset: true }).default(
2449
- "2026-05-19T12:31:17.546Z",
2449
+ "2026-05-19T14:38:26.550Z",
2450
2450
  ).transform(v => new Date(v)),
2451
2451
  type: z.literal("string"),
2452
2452
  value: z.string(),
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
2529
2529
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2530
2530
  .optional(),
2531
2531
  updated: z.string().datetime({ offset: true }).default(
2532
- "2026-05-19T12:31:01.501Z",
2532
+ "2026-05-19T14:38:12.201Z",
2533
2533
  ).transform(v => new Date(v)),
2534
2534
  }).transform((v) => {
2535
2535
  return remap$(v, {
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
403
403
  z.ZodTypeDef,
404
404
  unknown
405
405
  > = z.object({
406
- _id: z.string().default("01KS03G4Z9KYG9PWS09X8KN003"),
406
+ _id: z.string().default("01KS0ARZ5XB7XJZPAJZ3N78150"),
407
407
  display_name: z.string(),
408
408
  description: z.string().optional(),
409
409
  status: CreateDatasourceStatus$inboundSchema,