@versori/run 0.4.0-alpha.1 → 0.4.0-alpha.11

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 (908) hide show
  1. package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts +35 -0
  2. package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts.map +1 -0
  3. package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.js +113 -0
  4. package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts +4 -0
  5. package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts.map +1 -0
  6. package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.js +13 -0
  7. package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts +9 -0
  8. package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts.map +1 -0
  9. package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.js +2 -0
  10. package/esm/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts +40 -0
  11. package/esm/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts.map +1 -0
  12. package/esm/deps/jsr.io/@std/encoding/1.0.10/base64.js +82 -0
  13. package/{script/deps/jsr.io/@std/fs/1.0.19 → esm/deps/jsr.io/@std/fs/1.0.20}/exists.d.ts.map +1 -1
  14. package/esm/deps/jsr.io/@std/log/0.224.14/rotating_file_handler.js +1 -1
  15. package/esm/mod.d.ts +66 -1
  16. package/esm/mod.d.ts.map +1 -1
  17. package/esm/mod.js +78 -1
  18. package/esm/src/connection/CredentialsProvider.d.ts +23 -0
  19. package/esm/src/connection/CredentialsProvider.d.ts.map +1 -0
  20. package/esm/src/connection/CredentialsProvider.js +130 -0
  21. package/esm/src/connection/DirectConnectionFactory.d.ts +3 -3
  22. package/esm/src/connection/DirectConnectionFactory.d.ts.map +1 -1
  23. package/esm/src/connection/DirectConnectionFactory.js +21 -3
  24. package/esm/src/connection/DynamicFetchFactory.d.ts.map +1 -1
  25. package/esm/src/connection/DynamicFetchFactory.js +12 -0
  26. package/esm/src/connection/StaticFetchFactory.d.ts.map +1 -1
  27. package/esm/src/connection/StaticFetchFactory.js +12 -0
  28. package/esm/src/connection/internal/CredentialHolder.d.ts +2 -2
  29. package/esm/src/connection/internal/CredentialHolder.d.ts.map +1 -1
  30. package/esm/src/connection/internal/CredentialHolder.js +20 -7
  31. package/esm/src/connection/internal/FetchBuilder.d.ts +2 -3
  32. package/esm/src/connection/internal/FetchBuilder.d.ts.map +1 -1
  33. package/esm/src/connection/internal/FetchBuilder.js +17 -104
  34. package/esm/src/connection/internal/HttpClientFactory.d.ts.map +1 -1
  35. package/esm/src/connection/internal/HttpClientFactory.js +12 -0
  36. package/esm/src/connection/internal/InboundConnectionFactory.d.ts.map +1 -1
  37. package/esm/src/connection/internal/InboundConnectionFactory.js +12 -0
  38. package/esm/src/connection/internal/OutboundConnectionFactory.d.ts.map +1 -1
  39. package/esm/src/connection/internal/OutboundConnectionFactory.js +22 -5
  40. package/esm/src/connection/types.d.ts +1 -5
  41. package/esm/src/connection/types.d.ts.map +1 -1
  42. package/esm/src/connection/types.js +12 -0
  43. package/esm/src/context/ActivationImpl.d.ts.map +1 -1
  44. package/esm/src/context/ActivationImpl.js +13 -1
  45. package/esm/src/context/AsyncWorkflow.d.ts +30 -0
  46. package/esm/src/context/AsyncWorkflow.d.ts.map +1 -1
  47. package/esm/src/context/AsyncWorkflow.js +44 -8
  48. package/esm/src/context/Context.d.ts +58 -10
  49. package/esm/src/context/Context.d.ts.map +1 -1
  50. package/esm/src/context/Context.js +25 -3
  51. package/esm/src/context/ContextFunc.d.ts +22 -0
  52. package/esm/src/context/ContextFunc.d.ts.map +1 -1
  53. package/esm/src/context/ContextFunc.js +12 -0
  54. package/esm/src/context/ContextProvider.d.ts +3 -1
  55. package/esm/src/context/ContextProvider.d.ts.map +1 -1
  56. package/esm/src/context/ContextProvider.js +17 -2
  57. package/esm/src/context/WorkflowsClient.d.ts +28 -0
  58. package/esm/src/context/WorkflowsClient.d.ts.map +1 -0
  59. package/esm/src/context/WorkflowsClient.js +107 -0
  60. package/esm/src/context/mod.d.ts +9 -2
  61. package/esm/src/context/mod.d.ts.map +1 -1
  62. package/esm/src/context/mod.js +12 -2
  63. package/esm/src/credentials/CredentialsProvider.d.ts +49 -0
  64. package/esm/src/credentials/CredentialsProvider.d.ts.map +1 -0
  65. package/esm/src/credentials/CredentialsProvider.js +102 -0
  66. package/esm/src/dsl/Task.d.ts +46 -1
  67. package/esm/src/dsl/Task.d.ts.map +1 -1
  68. package/esm/src/dsl/Task.js +15 -0
  69. package/esm/src/dsl/Trigger.d.ts +16 -0
  70. package/esm/src/dsl/Trigger.d.ts.map +1 -1
  71. package/esm/src/dsl/Trigger.js +15 -0
  72. package/esm/src/dsl/Workflow.d.ts +24 -0
  73. package/esm/src/dsl/Workflow.d.ts.map +1 -1
  74. package/esm/src/dsl/Workflow.js +12 -2
  75. package/esm/src/dsl/ensureTask.d.ts.map +1 -1
  76. package/esm/src/dsl/ensureTask.js +12 -0
  77. package/esm/src/dsl/http/mod.d.ts +3 -0
  78. package/esm/src/dsl/http/mod.d.ts.map +1 -0
  79. package/esm/src/dsl/http/mod.js +13 -0
  80. package/esm/src/dsl/http/types.d.ts +45 -1
  81. package/esm/src/dsl/http/types.d.ts.map +1 -1
  82. package/esm/src/dsl/http/types.js +12 -0
  83. package/esm/src/dsl/http/versori/configloader.d.ts.map +1 -1
  84. package/esm/src/dsl/http/versori/configloader.js +13 -1
  85. package/esm/src/dsl/http/versori/constants.d.ts +21 -0
  86. package/esm/src/dsl/http/versori/constants.d.ts.map +1 -0
  87. package/esm/src/dsl/http/versori/constants.js +38 -0
  88. package/esm/src/dsl/http/versori/contextcredentials.d.ts +44 -0
  89. package/esm/src/dsl/http/versori/contextcredentials.d.ts.map +1 -1
  90. package/esm/src/dsl/http/versori/contextcredentials.js +12 -0
  91. package/esm/src/dsl/http/versori/credential/oauth1/v1/authorization_metadata_pb.d.ts.map +1 -1
  92. package/esm/src/dsl/http/versori/credential/oauth1/v1/authorization_metadata_pb.js +3 -3
  93. package/esm/src/dsl/http/versori/credential/oauth1/v1/authorization_service_pb.d.ts.map +1 -1
  94. package/esm/src/dsl/http/versori/credential/oauth1/v1/authorization_service_pb.js +7 -4
  95. package/esm/src/dsl/http/versori/credential/v1alpha1/credential_pb.d.ts.map +1 -1
  96. package/esm/src/dsl/http/versori/credential/v1alpha1/credential_pb.js +3 -3
  97. package/esm/src/dsl/http/versori/cronapi.d.ts +3 -2
  98. package/esm/src/dsl/http/versori/cronapi.d.ts.map +1 -1
  99. package/esm/src/dsl/http/versori/cronapi.js +27 -14
  100. package/esm/src/dsl/http/versori/helpers.d.ts.map +1 -1
  101. package/esm/src/dsl/http/versori/helpers.js +12 -0
  102. package/esm/src/dsl/http/versori/kvapi/core/ApiError.d.ts.map +1 -1
  103. package/esm/src/dsl/http/versori/kvapi/core/ApiError.js +12 -0
  104. package/esm/src/dsl/http/versori/kvapi/core/ApiRequestOptions.d.ts.map +1 -1
  105. package/esm/src/dsl/http/versori/kvapi/core/ApiRequestOptions.js +12 -0
  106. package/esm/src/dsl/http/versori/kvapi/core/ApiResult.d.ts.map +1 -1
  107. package/esm/src/dsl/http/versori/kvapi/core/ApiResult.js +12 -0
  108. package/esm/src/dsl/http/versori/kvapi/core/CancelablePromise.d.ts.map +1 -1
  109. package/esm/src/dsl/http/versori/kvapi/core/CancelablePromise.js +13 -1
  110. package/esm/src/dsl/http/versori/kvapi/core/OpenAPI.d.ts.map +1 -1
  111. package/esm/src/dsl/http/versori/kvapi/core/OpenAPI.js +13 -1
  112. package/esm/src/dsl/http/versori/kvapi/core/request.d.ts.map +1 -1
  113. package/esm/src/dsl/http/versori/kvapi/core/request.js +19 -7
  114. package/esm/src/dsl/http/versori/kvapi/index.d.ts.map +1 -1
  115. package/esm/src/dsl/http/versori/kvapi/index.js +12 -0
  116. package/esm/src/dsl/http/versori/kvapi/models/BatchDeleteKVResponse.d.ts.map +1 -1
  117. package/esm/src/dsl/http/versori/kvapi/models/BatchDeleteKVResponse.js +12 -0
  118. package/esm/src/dsl/http/versori/kvapi/models/BatchEntries.d.ts.map +1 -1
  119. package/esm/src/dsl/http/versori/kvapi/models/BatchEntries.js +12 -0
  120. package/esm/src/dsl/http/versori/kvapi/models/BatchEntry.d.ts.map +1 -1
  121. package/esm/src/dsl/http/versori/kvapi/models/BatchEntry.js +12 -0
  122. package/esm/src/dsl/http/versori/kvapi/models/BatchGetKVResponse.d.ts.map +1 -1
  123. package/esm/src/dsl/http/versori/kvapi/models/BatchGetKVResponse.js +12 -0
  124. package/esm/src/dsl/http/versori/kvapi/models/BatchSetKVRequest.d.ts.map +1 -1
  125. package/esm/src/dsl/http/versori/kvapi/models/BatchSetKVRequest.js +12 -0
  126. package/esm/src/dsl/http/versori/kvapi/models/BatchSetKVResponse.d.ts.map +1 -1
  127. package/esm/src/dsl/http/versori/kvapi/models/BatchSetKVResponse.js +12 -0
  128. package/esm/src/dsl/http/versori/kvapi/models/CountKVRequest.d.ts.map +1 -1
  129. package/esm/src/dsl/http/versori/kvapi/models/CountKVRequest.js +12 -0
  130. package/esm/src/dsl/http/versori/kvapi/models/CountKVResponse.d.ts.map +1 -1
  131. package/esm/src/dsl/http/versori/kvapi/models/CountKVResponse.js +12 -0
  132. package/esm/src/dsl/http/versori/kvapi/models/CountSelector.d.ts.map +1 -1
  133. package/esm/src/dsl/http/versori/kvapi/models/CountSelector.js +12 -0
  134. package/esm/src/dsl/http/versori/kvapi/models/CreateStoreRequest.d.ts.map +1 -1
  135. package/esm/src/dsl/http/versori/kvapi/models/CreateStoreRequest.js +12 -0
  136. package/esm/src/dsl/http/versori/kvapi/models/CreateStoreResponse.d.ts.map +1 -1
  137. package/esm/src/dsl/http/versori/kvapi/models/CreateStoreResponse.js +12 -0
  138. package/esm/src/dsl/http/versori/kvapi/models/DeleteKVResponse.d.ts.map +1 -1
  139. package/esm/src/dsl/http/versori/kvapi/models/DeleteKVResponse.js +12 -0
  140. package/esm/src/dsl/http/versori/kvapi/models/DeleteOptions.d.ts.map +1 -1
  141. package/esm/src/dsl/http/versori/kvapi/models/DeleteOptions.js +12 -0
  142. package/esm/src/dsl/http/versori/kvapi/models/Error.d.ts.map +1 -1
  143. package/esm/src/dsl/http/versori/kvapi/models/Error.js +12 -0
  144. package/esm/src/dsl/http/versori/kvapi/models/ErrorField.d.ts +0 -1
  145. package/esm/src/dsl/http/versori/kvapi/models/ErrorField.d.ts.map +1 -1
  146. package/esm/src/dsl/http/versori/kvapi/models/ErrorField.js +12 -0
  147. package/esm/src/dsl/http/versori/kvapi/models/GetKVResponse.d.ts +1 -1
  148. package/esm/src/dsl/http/versori/kvapi/models/GetKVResponse.d.ts.map +1 -1
  149. package/esm/src/dsl/http/versori/kvapi/models/GetKVResponse.js +12 -0
  150. package/esm/src/dsl/http/versori/kvapi/models/GetOptions.d.ts.map +1 -1
  151. package/esm/src/dsl/http/versori/kvapi/models/GetOptions.js +12 -0
  152. package/esm/src/dsl/http/versori/kvapi/models/KVBatchFailure.d.ts.map +1 -1
  153. package/esm/src/dsl/http/versori/kvapi/models/KVBatchFailure.js +12 -0
  154. package/esm/src/dsl/http/versori/kvapi/models/KVBatchResult.d.ts.map +1 -1
  155. package/esm/src/dsl/http/versori/kvapi/models/KVBatchResult.js +12 -0
  156. package/esm/src/dsl/http/versori/kvapi/models/KVCommitResult.d.ts.map +1 -1
  157. package/esm/src/dsl/http/versori/kvapi/models/KVCommitResult.js +12 -0
  158. package/esm/src/dsl/http/versori/kvapi/models/KVEntry.d.ts.map +1 -1
  159. package/esm/src/dsl/http/versori/kvapi/models/KVEntry.js +12 -0
  160. package/esm/src/dsl/http/versori/kvapi/models/KVFilter.d.ts.map +1 -1
  161. package/esm/src/dsl/http/versori/kvapi/models/KVFilter.js +12 -0
  162. package/esm/src/dsl/http/versori/kvapi/models/KVKey.d.ts.map +1 -1
  163. package/esm/src/dsl/http/versori/kvapi/models/KVKey.js +12 -0
  164. package/esm/src/dsl/http/versori/kvapi/models/ListKVRequest.d.ts.map +1 -1
  165. package/esm/src/dsl/http/versori/kvapi/models/ListKVRequest.js +12 -0
  166. package/esm/src/dsl/http/versori/kvapi/models/ListKVResponse.d.ts.map +1 -1
  167. package/esm/src/dsl/http/versori/kvapi/models/ListKVResponse.js +12 -0
  168. package/esm/src/dsl/http/versori/kvapi/models/ListOptions.d.ts.map +1 -1
  169. package/esm/src/dsl/http/versori/kvapi/models/ListOptions.js +12 -0
  170. package/esm/src/dsl/http/versori/kvapi/models/ListSelector.d.ts.map +1 -1
  171. package/esm/src/dsl/http/versori/kvapi/models/ListSelector.js +12 -0
  172. package/esm/src/dsl/http/versori/kvapi/models/ListStoresResponse.d.ts.map +1 -1
  173. package/esm/src/dsl/http/versori/kvapi/models/ListStoresResponse.js +12 -0
  174. package/esm/src/dsl/http/versori/kvapi/models/Pagination.d.ts.map +1 -1
  175. package/esm/src/dsl/http/versori/kvapi/models/Pagination.js +12 -0
  176. package/esm/src/dsl/http/versori/kvapi/models/SetKVResponse.d.ts.map +1 -1
  177. package/esm/src/dsl/http/versori/kvapi/models/SetKVResponse.js +12 -0
  178. package/esm/src/dsl/http/versori/kvapi/models/SetOptions.d.ts.map +1 -1
  179. package/esm/src/dsl/http/versori/kvapi/models/SetOptions.js +12 -0
  180. package/esm/src/dsl/http/versori/kvapi/models/Store.d.ts.map +1 -1
  181. package/esm/src/dsl/http/versori/kvapi/models/Store.js +12 -0
  182. package/esm/src/dsl/http/versori/kvapi/services/BatchOperationsService.d.ts.map +1 -1
  183. package/esm/src/dsl/http/versori/kvapi/services/BatchOperationsService.js +12 -0
  184. package/esm/src/dsl/http/versori/kvapi/services/KvOperationsService.d.ts.map +1 -1
  185. package/esm/src/dsl/http/versori/kvapi/services/KvOperationsService.js +12 -0
  186. package/esm/src/dsl/http/versori/kvapi/services/QueryOperationsService.d.ts.map +1 -1
  187. package/esm/src/dsl/http/versori/kvapi/services/QueryOperationsService.js +12 -0
  188. package/esm/src/dsl/http/versori/kvapi/services/StoresService.d.ts.map +1 -1
  189. package/esm/src/dsl/http/versori/kvapi/services/StoresService.js +12 -0
  190. package/esm/src/dsl/http/versori/webhookmiddleware.d.ts +2 -2
  191. package/esm/src/dsl/http/versori/webhookmiddleware.d.ts.map +1 -1
  192. package/esm/src/dsl/http/versori/webhookmiddleware.js +99 -64
  193. package/esm/src/dsl/mod.d.ts +17 -1
  194. package/esm/src/dsl/mod.d.ts.map +1 -1
  195. package/esm/src/dsl/mod.js +26 -1
  196. package/esm/src/dsl/tasks/BackgroundTask.d.ts.map +1 -1
  197. package/esm/src/dsl/tasks/BackgroundTask.js +12 -0
  198. package/esm/src/dsl/tasks/CatchTask.d.ts.map +1 -1
  199. package/esm/src/dsl/tasks/CatchTask.js +12 -0
  200. package/esm/src/dsl/tasks/ChainTask.d.ts.map +1 -1
  201. package/esm/src/dsl/tasks/ChainTask.js +14 -2
  202. package/esm/src/dsl/tasks/FnTask.d.ts +25 -1
  203. package/esm/src/dsl/tasks/FnTask.d.ts.map +1 -1
  204. package/esm/src/dsl/tasks/FnTask.js +36 -0
  205. package/esm/src/dsl/tasks/HttpTask.d.ts +84 -7
  206. package/esm/src/dsl/tasks/HttpTask.d.ts.map +1 -1
  207. package/esm/src/dsl/tasks/HttpTask.js +40 -0
  208. package/esm/src/dsl/tasks/ParallelTask.d.ts.map +1 -1
  209. package/esm/src/dsl/tasks/ParallelTask.js +12 -0
  210. package/esm/src/dsl/tasks/SerialTask.d.ts.map +1 -1
  211. package/esm/src/dsl/tasks/SerialTask.js +12 -0
  212. package/esm/src/dsl/tasks/UnpackTask.d.ts.map +1 -1
  213. package/esm/src/dsl/tasks/UnpackTask.js +12 -0
  214. package/esm/src/dsl/tasks/mod.d.ts +1 -9
  215. package/esm/src/dsl/tasks/mod.d.ts.map +1 -1
  216. package/esm/src/dsl/tasks/mod.js +13 -1
  217. package/esm/src/dsl/triggers/DurableTrigger.d.ts +38 -2
  218. package/esm/src/dsl/triggers/DurableTrigger.d.ts.map +1 -1
  219. package/esm/src/dsl/triggers/DurableTrigger.js +35 -1
  220. package/esm/src/dsl/triggers/ScheduleTrigger.d.ts +35 -1
  221. package/esm/src/dsl/triggers/ScheduleTrigger.d.ts.map +1 -1
  222. package/esm/src/dsl/triggers/ScheduleTrigger.js +37 -2
  223. package/esm/src/dsl/triggers/WebhookTrigger.d.ts +71 -1
  224. package/esm/src/dsl/triggers/WebhookTrigger.d.ts.map +1 -1
  225. package/esm/src/dsl/triggers/WebhookTrigger.js +37 -4
  226. package/esm/src/dsl/triggers/mod.d.ts +3 -5
  227. package/esm/src/dsl/triggers/mod.d.ts.map +1 -1
  228. package/esm/src/dsl/triggers/mod.js +15 -3
  229. package/esm/src/internal/InternalAuth.d.ts +2 -0
  230. package/esm/src/internal/InternalAuth.d.ts.map +1 -1
  231. package/esm/src/internal/InternalAuth.js +45 -1
  232. package/esm/src/internal/cli.d.ts +2 -0
  233. package/esm/src/internal/cli.d.ts.map +1 -0
  234. package/esm/src/internal/cli.js +32 -0
  235. package/esm/src/internal/constants.d.ts +2 -3
  236. package/esm/src/internal/constants.d.ts.map +1 -1
  237. package/esm/src/internal/constants.js +14 -4
  238. package/esm/src/interpreter/durable/DurableInterpreter.d.ts +46 -16
  239. package/esm/src/interpreter/durable/DurableInterpreter.d.ts.map +1 -1
  240. package/esm/src/interpreter/durable/DurableInterpreter.js +58 -68
  241. package/esm/src/interpreter/durable/ExecutionError.d.ts +17 -0
  242. package/esm/src/interpreter/durable/ExecutionError.d.ts.map +1 -1
  243. package/esm/src/interpreter/durable/ExecutionError.js +29 -0
  244. package/esm/src/interpreter/durable/ObservableCompiler.d.ts +1 -6
  245. package/esm/src/interpreter/durable/ObservableCompiler.d.ts.map +1 -1
  246. package/esm/src/interpreter/durable/ObservableCompiler.js +12 -0
  247. package/esm/src/interpreter/durable/Queue.d.ts +24 -16
  248. package/esm/src/interpreter/durable/Queue.d.ts.map +1 -1
  249. package/esm/src/interpreter/durable/Queue.js +16 -5
  250. package/esm/src/interpreter/durable/compilers/background.d.ts.map +1 -1
  251. package/esm/src/interpreter/durable/compilers/background.js +12 -0
  252. package/esm/src/interpreter/durable/compilers/catch.d.ts.map +1 -1
  253. package/esm/src/interpreter/durable/compilers/catch.js +19 -6
  254. package/esm/src/interpreter/durable/compilers/chain.d.ts.map +1 -1
  255. package/esm/src/interpreter/durable/compilers/chain.js +12 -0
  256. package/esm/src/interpreter/durable/compilers/durableworkflow.d.ts +2 -2
  257. package/esm/src/interpreter/durable/compilers/durableworkflow.d.ts.map +1 -1
  258. package/esm/src/interpreter/durable/compilers/durableworkflow.js +31 -19
  259. package/esm/src/interpreter/durable/compilers/fn.d.ts.map +1 -1
  260. package/esm/src/interpreter/durable/compilers/fn.js +17 -18
  261. package/esm/src/interpreter/durable/compilers/http.d.ts.map +1 -1
  262. package/esm/src/interpreter/durable/compilers/http.js +15 -9
  263. package/esm/src/interpreter/durable/compilers/mod.d.ts.map +1 -1
  264. package/esm/src/interpreter/durable/compilers/mod.js +12 -0
  265. package/esm/src/interpreter/durable/compilers/parallel.d.ts.map +1 -1
  266. package/esm/src/interpreter/durable/compilers/parallel.js +12 -0
  267. package/esm/src/interpreter/durable/compilers/schedule.d.ts.map +1 -1
  268. package/esm/src/interpreter/durable/compilers/schedule.js +13 -2
  269. package/esm/src/interpreter/durable/compilers/serial.d.ts.map +1 -1
  270. package/esm/src/interpreter/durable/compilers/serial.js +13 -1
  271. package/esm/src/interpreter/durable/compilers/types.d.ts +2 -2
  272. package/esm/src/interpreter/durable/compilers/types.d.ts.map +1 -1
  273. package/esm/src/interpreter/durable/compilers/types.js +12 -0
  274. package/esm/src/interpreter/durable/compilers/unpack.d.ts.map +1 -1
  275. package/esm/src/interpreter/durable/compilers/unpack.js +13 -1
  276. package/esm/src/interpreter/durable/compilers/webhook.d.ts.map +1 -1
  277. package/esm/src/interpreter/durable/compilers/webhook.js +16 -7
  278. package/esm/src/interpreter/durable/mod.d.ts +0 -2
  279. package/esm/src/interpreter/durable/mod.d.ts.map +1 -1
  280. package/esm/src/interpreter/durable/mod.js +12 -2
  281. package/esm/src/interpreter/memory/ExecutionError.d.ts +17 -0
  282. package/esm/src/interpreter/memory/ExecutionError.d.ts.map +1 -1
  283. package/esm/src/interpreter/memory/ExecutionError.js +29 -0
  284. package/esm/src/interpreter/memory/MemoryInterpreter.d.ts +42 -8
  285. package/esm/src/interpreter/memory/MemoryInterpreter.d.ts.map +1 -1
  286. package/esm/src/interpreter/memory/MemoryInterpreter.js +51 -53
  287. package/esm/src/interpreter/memory/ObservableCompiler.d.ts +1 -6
  288. package/esm/src/interpreter/memory/ObservableCompiler.d.ts.map +1 -1
  289. package/esm/src/interpreter/memory/ObservableCompiler.js +12 -0
  290. package/esm/src/interpreter/memory/compilers/background.d.ts.map +1 -1
  291. package/esm/src/interpreter/memory/compilers/background.js +12 -0
  292. package/esm/src/interpreter/memory/compilers/catch.d.ts.map +1 -1
  293. package/esm/src/interpreter/memory/compilers/catch.js +19 -6
  294. package/esm/src/interpreter/memory/compilers/chain.d.ts.map +1 -1
  295. package/esm/src/interpreter/memory/compilers/chain.js +12 -0
  296. package/esm/src/interpreter/memory/compilers/fn.d.ts.map +1 -1
  297. package/esm/src/interpreter/memory/compilers/fn.js +17 -18
  298. package/esm/src/interpreter/memory/compilers/http.d.ts.map +1 -1
  299. package/esm/src/interpreter/memory/compilers/http.js +16 -34
  300. package/esm/src/interpreter/memory/compilers/parallel.d.ts.map +1 -1
  301. package/esm/src/interpreter/memory/compilers/parallel.js +12 -0
  302. package/esm/src/interpreter/memory/compilers/schedule.d.ts.map +1 -1
  303. package/esm/src/interpreter/memory/compilers/schedule.js +13 -2
  304. package/esm/src/interpreter/memory/compilers/serial.d.ts.map +1 -1
  305. package/esm/src/interpreter/memory/compilers/serial.js +13 -1
  306. package/esm/src/interpreter/memory/compilers/types.d.ts +2 -2
  307. package/esm/src/interpreter/memory/compilers/types.d.ts.map +1 -1
  308. package/esm/src/interpreter/memory/compilers/types.js +12 -0
  309. package/esm/src/interpreter/memory/compilers/unpack.d.ts.map +1 -1
  310. package/esm/src/interpreter/memory/compilers/unpack.js +13 -1
  311. package/esm/src/interpreter/memory/compilers/webhook.d.ts.map +1 -1
  312. package/esm/src/interpreter/memory/compilers/webhook.js +16 -8
  313. package/esm/src/interpreter/memory/mod.d.ts +0 -2
  314. package/esm/src/interpreter/memory/mod.d.ts.map +1 -1
  315. package/esm/src/interpreter/memory/mod.js +12 -2
  316. package/esm/src/interpreter/mod.d.ts +13 -0
  317. package/esm/src/interpreter/mod.d.ts.map +1 -1
  318. package/esm/src/interpreter/mod.js +25 -0
  319. package/esm/src/issues/Issues.d.ts +1 -1
  320. package/esm/src/issues/Issues.d.ts.map +1 -1
  321. package/esm/src/issues/Issues.js +14 -2
  322. package/esm/src/kv/KVNotFoundError.d.ts +10 -0
  323. package/esm/src/kv/KVNotFoundError.d.ts.map +1 -1
  324. package/esm/src/kv/KVNotFoundError.js +22 -0
  325. package/esm/src/kv/KeyValue.d.ts +75 -6
  326. package/esm/src/kv/KeyValue.d.ts.map +1 -1
  327. package/esm/src/kv/KeyValue.js +13 -5
  328. package/esm/src/kv/isKVOptionsExecution.d.ts +3 -0
  329. package/esm/src/kv/isKVOptionsExecution.d.ts.map +1 -0
  330. package/esm/src/kv/isKVOptionsExecution.js +17 -0
  331. package/esm/src/kv/memory/MemoryKeyValue.d.ts.map +1 -1
  332. package/esm/src/kv/memory/MemoryKeyValue.js +12 -0
  333. package/esm/src/kv/memory/MemoryKeyValueProvider.d.ts.map +1 -1
  334. package/esm/src/kv/memory/MemoryKeyValueProvider.js +12 -0
  335. package/esm/src/kv/mod.d.ts +5 -2
  336. package/esm/src/kv/mod.d.ts.map +1 -1
  337. package/esm/src/kv/mod.js +17 -2
  338. package/esm/src/kv/nats/NatsKeyValue.d.ts.map +1 -1
  339. package/esm/src/kv/nats/NatsKeyValue.js +12 -0
  340. package/esm/src/kv/nats/NatsKeyValueProvider.d.ts.map +1 -1
  341. package/esm/src/kv/nats/NatsKeyValueProvider.js +14 -2
  342. package/esm/src/kv/sdk/SDKKeyValue.d.ts +2 -2
  343. package/esm/src/kv/sdk/SDKKeyValue.d.ts.map +1 -1
  344. package/esm/src/kv/sdk/SDKKeyValue.js +26 -7
  345. package/esm/src/kv/sdk/SDKKeyValueProvider.d.ts.map +1 -1
  346. package/esm/src/kv/sdk/SDKKeyValueProvider.js +25 -13
  347. package/esm/src/mod.d.ts +6 -5
  348. package/esm/src/mod.d.ts.map +1 -1
  349. package/esm/src/mod.js +18 -5
  350. package/esm/src/observability/logging/ConsoleLogger.d.ts +4 -1
  351. package/esm/src/observability/logging/ConsoleLogger.d.ts.map +1 -1
  352. package/esm/src/observability/logging/ConsoleLogger.js +16 -1
  353. package/esm/src/observability/logging/Logger.d.ts +45 -0
  354. package/esm/src/observability/logging/Logger.d.ts.map +1 -1
  355. package/esm/src/observability/logging/Logger.js +12 -0
  356. package/esm/src/observability/logging/mod.d.ts.map +1 -1
  357. package/esm/src/observability/logging/mod.js +12 -0
  358. package/esm/src/observability/mod.d.ts +7 -0
  359. package/esm/src/observability/mod.d.ts.map +1 -1
  360. package/esm/src/observability/mod.js +19 -0
  361. package/esm/src/services/createConnectRpcClient.d.ts.map +1 -1
  362. package/esm/src/services/createConnectRpcClient.js +12 -0
  363. package/esm/src/services/credentials/credential-v1alpha1.d.ts.map +1 -1
  364. package/esm/src/services/credentials/credential-v1alpha1.js +12 -0
  365. package/esm/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_metadata_pb.d.ts +3 -3
  366. package/esm/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_metadata_pb.d.ts.map +1 -1
  367. package/esm/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_metadata_pb.js +3 -3
  368. package/esm/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_service_pb.d.ts +13 -13
  369. package/esm/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_service_pb.d.ts.map +1 -1
  370. package/esm/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_service_pb.js +7 -4
  371. package/esm/src/services/credentials/generated/versori/credential/oauth2/v1/token_pb.d.ts +4 -4
  372. package/esm/src/services/credentials/generated/versori/credential/oauth2/v1/token_pb.d.ts.map +1 -1
  373. package/esm/src/services/credentials/generated/versori/credential/oauth2/v1/token_pb.js +3 -3
  374. package/esm/src/services/credentials/generated/versori/credential/oauth2/v1/token_service_pb.d.ts +21 -21
  375. package/esm/src/services/credentials/generated/versori/credential/oauth2/v1/token_service_pb.d.ts.map +1 -1
  376. package/esm/src/services/credentials/generated/versori/credential/oauth2/v1/token_service_pb.js +10 -5
  377. package/esm/src/services/credentials/generated/versori/credential/tokens/v1/token_pb.d.ts +4 -4
  378. package/esm/src/services/credentials/generated/versori/credential/tokens/v1/token_pb.d.ts.map +1 -1
  379. package/esm/src/services/credentials/generated/versori/credential/tokens/v1/token_pb.js +3 -3
  380. package/esm/src/services/credentials/generated/versori/credential/tokens/v1/token_service_pb.d.ts +10 -10
  381. package/esm/src/services/credentials/generated/versori/credential/tokens/v1/token_service_pb.d.ts.map +1 -1
  382. package/esm/src/services/credentials/generated/versori/credential/tokens/v1/token_service_pb.js +10 -5
  383. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/common_pb.d.ts +5 -5
  384. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/common_pb.d.ts.map +1 -1
  385. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/common_pb.js +2 -2
  386. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/credential_pb.d.ts +41 -41
  387. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/credential_pb.d.ts.map +1 -1
  388. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/credential_pb.js +3 -3
  389. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/credential_service_pb.d.ts +27 -27
  390. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/credential_service_pb.d.ts.map +1 -1
  391. package/esm/src/services/credentials/generated/versori/credential/v1alpha1/credential_service_pb.js +9 -5
  392. package/esm/src/services/credentials/isTokenValid.d.ts.map +1 -1
  393. package/esm/src/services/credentials/isTokenValid.js +13 -1
  394. package/esm/src/services/credentials/mod.d.ts +6 -0
  395. package/esm/src/services/credentials/mod.d.ts.map +1 -1
  396. package/esm/src/services/credentials/mod.js +18 -0
  397. package/esm/src/services/credentials/oauth1-v1.d.ts.map +1 -1
  398. package/esm/src/services/credentials/oauth1-v1.js +12 -0
  399. package/esm/src/services/credentials/oauth2-v1.d.ts.map +1 -1
  400. package/esm/src/services/credentials/oauth2-v1.js +12 -0
  401. package/esm/src/services/credentials/tokens-v1.d.ts.map +1 -1
  402. package/esm/src/services/credentials/tokens-v1.js +12 -0
  403. package/esm/src/services/mod.d.ts +11 -0
  404. package/esm/src/services/mod.d.ts.map +1 -0
  405. package/esm/src/services/mod.js +22 -0
  406. package/esm/src/services/platform/PlatformApi.d.ts +23 -1
  407. package/esm/src/services/platform/PlatformApi.d.ts.map +1 -1
  408. package/esm/src/services/platform/PlatformApi.js +39 -8
  409. package/esm/src/services/platform/generated/client/client.gen.d.ts.map +1 -1
  410. package/esm/src/services/platform/generated/client/client.gen.js +16 -24
  411. package/esm/src/services/platform/generated/client/index.d.ts.map +1 -1
  412. package/esm/src/services/platform/generated/client/index.js +12 -1
  413. package/esm/src/services/platform/generated/client/types.gen.d.ts.map +1 -1
  414. package/esm/src/services/platform/generated/client/utils.gen.d.ts.map +1 -1
  415. package/esm/src/services/platform/generated/client.gen.d.ts +1 -1
  416. package/esm/src/services/platform/generated/client.gen.d.ts.map +1 -1
  417. package/esm/src/services/platform/generated/client.gen.js +2 -2
  418. package/esm/src/services/platform/generated/core/auth.gen.d.ts.map +1 -1
  419. package/esm/src/services/platform/generated/core/bodySerializer.gen.d.ts.map +1 -1
  420. package/esm/src/services/platform/generated/core/params.gen.d.ts.map +1 -1
  421. package/esm/src/services/platform/generated/core/pathSerializer.gen.d.ts.map +1 -1
  422. package/esm/src/services/platform/generated/core/pathSerializer.gen.js +2 -6
  423. package/esm/src/services/platform/generated/core/serverSentEvents.gen.d.ts.map +1 -1
  424. package/esm/src/services/platform/generated/core/serverSentEvents.gen.js +2 -1
  425. package/esm/src/services/platform/generated/core/types.gen.d.ts.map +1 -1
  426. package/esm/src/services/platform/generated/core/utils.gen.d.ts.map +1 -1
  427. package/esm/src/services/platform/generated/sdk.gen.d.ts +2 -57
  428. package/esm/src/services/platform/generated/sdk.gen.d.ts.map +1 -1
  429. package/esm/src/services/platform/generated/sdk.gen.js +357 -412
  430. package/esm/src/services/platform/generated/types.gen.d.ts +0 -128
  431. package/esm/src/services/platform/generated/types.gen.d.ts.map +1 -1
  432. package/esm/src/services/platform/mod.d.ts +14 -1
  433. package/esm/src/services/platform/mod.d.ts.map +1 -1
  434. package/esm/src/services/platform/mod.js +13 -1
  435. package/package.json +2 -6
  436. package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts +35 -0
  437. package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts.map +1 -0
  438. package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.js +119 -0
  439. package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts +4 -0
  440. package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts.map +1 -0
  441. package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.js +16 -0
  442. package/script/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts +9 -0
  443. package/script/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts.map +1 -0
  444. package/script/{src/interpreter/memory/compilers/mod.js → deps/jsr.io/@std/encoding/1.0.10/_types.js} +1 -0
  445. package/script/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts +40 -0
  446. package/script/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts.map +1 -0
  447. package/script/deps/jsr.io/@std/encoding/1.0.10/base64.js +86 -0
  448. package/{esm/deps/jsr.io/@std/fs/1.0.19 → script/deps/jsr.io/@std/fs/1.0.20}/exists.d.ts.map +1 -1
  449. package/script/deps/jsr.io/@std/log/0.224.14/rotating_file_handler.js +1 -1
  450. package/script/mod.d.ts +66 -1
  451. package/script/mod.d.ts.map +1 -1
  452. package/script/mod.js +82 -1
  453. package/script/src/connection/CredentialsProvider.d.ts +23 -0
  454. package/script/src/connection/CredentialsProvider.d.ts.map +1 -0
  455. package/script/src/connection/CredentialsProvider.js +134 -0
  456. package/script/src/connection/DirectConnectionFactory.d.ts +3 -3
  457. package/script/src/connection/DirectConnectionFactory.d.ts.map +1 -1
  458. package/script/src/connection/DirectConnectionFactory.js +21 -3
  459. package/script/src/connection/DynamicFetchFactory.d.ts.map +1 -1
  460. package/script/src/connection/DynamicFetchFactory.js +12 -0
  461. package/script/src/connection/StaticFetchFactory.d.ts.map +1 -1
  462. package/script/src/connection/StaticFetchFactory.js +12 -0
  463. package/script/src/connection/internal/CredentialHolder.d.ts +2 -2
  464. package/script/src/connection/internal/CredentialHolder.d.ts.map +1 -1
  465. package/script/src/connection/internal/CredentialHolder.js +20 -7
  466. package/script/src/connection/internal/FetchBuilder.d.ts +2 -3
  467. package/script/src/connection/internal/FetchBuilder.d.ts.map +1 -1
  468. package/script/src/connection/internal/FetchBuilder.js +17 -127
  469. package/script/src/connection/internal/HttpClientFactory.d.ts.map +1 -1
  470. package/script/src/connection/internal/HttpClientFactory.js +12 -0
  471. package/script/src/connection/internal/InboundConnectionFactory.d.ts.map +1 -1
  472. package/script/src/connection/internal/InboundConnectionFactory.js +12 -0
  473. package/script/src/connection/internal/OutboundConnectionFactory.d.ts.map +1 -1
  474. package/script/src/connection/internal/OutboundConnectionFactory.js +22 -5
  475. package/script/src/connection/types.d.ts +1 -5
  476. package/script/src/connection/types.d.ts.map +1 -1
  477. package/script/src/connection/types.js +12 -0
  478. package/script/src/context/ActivationImpl.d.ts.map +1 -1
  479. package/script/src/context/ActivationImpl.js +13 -1
  480. package/script/src/context/AsyncWorkflow.d.ts +30 -0
  481. package/script/src/context/AsyncWorkflow.d.ts.map +1 -1
  482. package/script/src/context/AsyncWorkflow.js +44 -8
  483. package/script/src/context/Context.d.ts +58 -10
  484. package/script/src/context/Context.d.ts.map +1 -1
  485. package/script/src/context/Context.js +25 -3
  486. package/script/src/context/ContextFunc.d.ts +22 -0
  487. package/script/src/context/ContextFunc.d.ts.map +1 -1
  488. package/script/src/context/ContextFunc.js +12 -0
  489. package/script/src/context/ContextProvider.d.ts +3 -1
  490. package/script/src/context/ContextProvider.d.ts.map +1 -1
  491. package/script/src/context/ContextProvider.js +17 -2
  492. package/script/src/context/WorkflowsClient.d.ts +28 -0
  493. package/script/src/context/WorkflowsClient.d.ts.map +1 -0
  494. package/script/src/context/WorkflowsClient.js +111 -0
  495. package/script/src/context/mod.d.ts +9 -2
  496. package/script/src/context/mod.d.ts.map +1 -1
  497. package/script/src/context/mod.js +12 -2
  498. package/script/src/credentials/CredentialsProvider.d.ts +49 -0
  499. package/script/src/credentials/CredentialsProvider.d.ts.map +1 -0
  500. package/script/src/credentials/CredentialsProvider.js +106 -0
  501. package/script/src/dsl/Task.d.ts +46 -1
  502. package/script/src/dsl/Task.d.ts.map +1 -1
  503. package/script/src/dsl/Task.js +15 -0
  504. package/script/src/dsl/Trigger.d.ts +16 -0
  505. package/script/src/dsl/Trigger.d.ts.map +1 -1
  506. package/script/src/dsl/Trigger.js +15 -0
  507. package/script/src/dsl/Workflow.d.ts +24 -0
  508. package/script/src/dsl/Workflow.d.ts.map +1 -1
  509. package/script/src/dsl/Workflow.js +12 -2
  510. package/script/src/dsl/ensureTask.d.ts.map +1 -1
  511. package/script/src/dsl/ensureTask.js +12 -0
  512. package/script/src/dsl/http/mod.d.ts +3 -0
  513. package/script/src/dsl/http/mod.d.ts.map +1 -0
  514. package/script/src/dsl/http/mod.js +14 -0
  515. package/script/src/dsl/http/types.d.ts +45 -1
  516. package/script/src/dsl/http/types.d.ts.map +1 -1
  517. package/script/src/dsl/http/types.js +12 -0
  518. package/script/src/dsl/http/versori/configloader.d.ts.map +1 -1
  519. package/script/src/dsl/http/versori/configloader.js +13 -1
  520. package/script/src/dsl/http/versori/constants.d.ts +21 -0
  521. package/script/src/dsl/http/versori/constants.d.ts.map +1 -0
  522. package/script/src/dsl/http/versori/constants.js +41 -0
  523. package/script/src/dsl/http/versori/contextcredentials.d.ts +44 -0
  524. package/script/src/dsl/http/versori/contextcredentials.d.ts.map +1 -1
  525. package/script/src/dsl/http/versori/contextcredentials.js +12 -0
  526. package/script/src/dsl/http/versori/credential/oauth1/v1/authorization_metadata_pb.d.ts.map +1 -1
  527. package/script/src/dsl/http/versori/credential/oauth1/v1/authorization_metadata_pb.js +1 -1
  528. package/script/src/dsl/http/versori/credential/oauth1/v1/authorization_service_pb.d.ts.map +1 -1
  529. package/script/src/dsl/http/versori/credential/oauth1/v1/authorization_service_pb.js +4 -1
  530. package/script/src/dsl/http/versori/credential/v1alpha1/credential_pb.d.ts.map +1 -1
  531. package/script/src/dsl/http/versori/credential/v1alpha1/credential_pb.js +1 -1
  532. package/script/src/dsl/http/versori/cronapi.d.ts +3 -2
  533. package/script/src/dsl/http/versori/cronapi.d.ts.map +1 -1
  534. package/script/src/dsl/http/versori/cronapi.js +27 -14
  535. package/script/src/dsl/http/versori/helpers.d.ts.map +1 -1
  536. package/script/src/dsl/http/versori/helpers.js +12 -0
  537. package/script/src/dsl/http/versori/kvapi/core/ApiError.d.ts.map +1 -1
  538. package/script/src/dsl/http/versori/kvapi/core/ApiError.js +12 -0
  539. package/script/src/dsl/http/versori/kvapi/core/ApiRequestOptions.d.ts.map +1 -1
  540. package/script/src/dsl/http/versori/kvapi/core/ApiRequestOptions.js +12 -0
  541. package/script/src/dsl/http/versori/kvapi/core/ApiResult.d.ts.map +1 -1
  542. package/script/src/dsl/http/versori/kvapi/core/ApiResult.js +12 -0
  543. package/script/src/dsl/http/versori/kvapi/core/CancelablePromise.d.ts.map +1 -1
  544. package/script/src/dsl/http/versori/kvapi/core/CancelablePromise.js +13 -1
  545. package/script/src/dsl/http/versori/kvapi/core/OpenAPI.d.ts.map +1 -1
  546. package/script/src/dsl/http/versori/kvapi/core/OpenAPI.js +13 -1
  547. package/script/src/dsl/http/versori/kvapi/core/request.d.ts.map +1 -1
  548. package/script/src/dsl/http/versori/kvapi/core/request.js +18 -6
  549. package/script/src/dsl/http/versori/kvapi/index.d.ts.map +1 -1
  550. package/script/src/dsl/http/versori/kvapi/index.js +12 -0
  551. package/script/src/dsl/http/versori/kvapi/models/BatchDeleteKVResponse.d.ts.map +1 -1
  552. package/script/src/dsl/http/versori/kvapi/models/BatchDeleteKVResponse.js +12 -0
  553. package/script/src/dsl/http/versori/kvapi/models/BatchEntries.d.ts.map +1 -1
  554. package/script/src/dsl/http/versori/kvapi/models/BatchEntries.js +12 -0
  555. package/script/src/dsl/http/versori/kvapi/models/BatchEntry.d.ts.map +1 -1
  556. package/script/src/dsl/http/versori/kvapi/models/BatchEntry.js +12 -0
  557. package/script/src/dsl/http/versori/kvapi/models/BatchGetKVResponse.d.ts.map +1 -1
  558. package/script/src/dsl/http/versori/kvapi/models/BatchGetKVResponse.js +12 -0
  559. package/script/src/dsl/http/versori/kvapi/models/BatchSetKVRequest.d.ts.map +1 -1
  560. package/script/src/dsl/http/versori/kvapi/models/BatchSetKVRequest.js +12 -0
  561. package/script/src/dsl/http/versori/kvapi/models/BatchSetKVResponse.d.ts.map +1 -1
  562. package/script/src/dsl/http/versori/kvapi/models/BatchSetKVResponse.js +12 -0
  563. package/script/src/dsl/http/versori/kvapi/models/CountKVRequest.d.ts.map +1 -1
  564. package/script/src/dsl/http/versori/kvapi/models/CountKVRequest.js +12 -0
  565. package/script/src/dsl/http/versori/kvapi/models/CountKVResponse.d.ts.map +1 -1
  566. package/script/src/dsl/http/versori/kvapi/models/CountKVResponse.js +12 -0
  567. package/script/src/dsl/http/versori/kvapi/models/CountSelector.d.ts.map +1 -1
  568. package/script/src/dsl/http/versori/kvapi/models/CountSelector.js +12 -0
  569. package/script/src/dsl/http/versori/kvapi/models/CreateStoreRequest.d.ts.map +1 -1
  570. package/script/src/dsl/http/versori/kvapi/models/CreateStoreRequest.js +12 -0
  571. package/script/src/dsl/http/versori/kvapi/models/CreateStoreResponse.d.ts.map +1 -1
  572. package/script/src/dsl/http/versori/kvapi/models/CreateStoreResponse.js +12 -0
  573. package/script/src/dsl/http/versori/kvapi/models/DeleteKVResponse.d.ts.map +1 -1
  574. package/script/src/dsl/http/versori/kvapi/models/DeleteKVResponse.js +12 -0
  575. package/script/src/dsl/http/versori/kvapi/models/DeleteOptions.d.ts.map +1 -1
  576. package/script/src/dsl/http/versori/kvapi/models/DeleteOptions.js +12 -0
  577. package/script/src/dsl/http/versori/kvapi/models/Error.d.ts.map +1 -1
  578. package/script/src/dsl/http/versori/kvapi/models/Error.js +12 -0
  579. package/script/src/dsl/http/versori/kvapi/models/ErrorField.d.ts +0 -1
  580. package/script/src/dsl/http/versori/kvapi/models/ErrorField.d.ts.map +1 -1
  581. package/script/src/dsl/http/versori/kvapi/models/ErrorField.js +12 -0
  582. package/script/src/dsl/http/versori/kvapi/models/GetKVResponse.d.ts +1 -1
  583. package/script/src/dsl/http/versori/kvapi/models/GetKVResponse.d.ts.map +1 -1
  584. package/script/src/dsl/http/versori/kvapi/models/GetKVResponse.js +12 -0
  585. package/script/src/dsl/http/versori/kvapi/models/GetOptions.d.ts.map +1 -1
  586. package/script/src/dsl/http/versori/kvapi/models/GetOptions.js +12 -0
  587. package/script/src/dsl/http/versori/kvapi/models/KVBatchFailure.d.ts.map +1 -1
  588. package/script/src/dsl/http/versori/kvapi/models/KVBatchFailure.js +12 -0
  589. package/script/src/dsl/http/versori/kvapi/models/KVBatchResult.d.ts.map +1 -1
  590. package/script/src/dsl/http/versori/kvapi/models/KVBatchResult.js +12 -0
  591. package/script/src/dsl/http/versori/kvapi/models/KVCommitResult.d.ts.map +1 -1
  592. package/script/src/dsl/http/versori/kvapi/models/KVCommitResult.js +12 -0
  593. package/script/src/dsl/http/versori/kvapi/models/KVEntry.d.ts.map +1 -1
  594. package/script/src/dsl/http/versori/kvapi/models/KVEntry.js +12 -0
  595. package/script/src/dsl/http/versori/kvapi/models/KVFilter.d.ts.map +1 -1
  596. package/script/src/dsl/http/versori/kvapi/models/KVFilter.js +12 -0
  597. package/script/src/dsl/http/versori/kvapi/models/KVKey.d.ts.map +1 -1
  598. package/script/src/dsl/http/versori/kvapi/models/KVKey.js +12 -0
  599. package/script/src/dsl/http/versori/kvapi/models/ListKVRequest.d.ts.map +1 -1
  600. package/script/src/dsl/http/versori/kvapi/models/ListKVRequest.js +12 -0
  601. package/script/src/dsl/http/versori/kvapi/models/ListKVResponse.d.ts.map +1 -1
  602. package/script/src/dsl/http/versori/kvapi/models/ListKVResponse.js +12 -0
  603. package/script/src/dsl/http/versori/kvapi/models/ListOptions.d.ts.map +1 -1
  604. package/script/src/dsl/http/versori/kvapi/models/ListOptions.js +12 -0
  605. package/script/src/dsl/http/versori/kvapi/models/ListSelector.d.ts.map +1 -1
  606. package/script/src/dsl/http/versori/kvapi/models/ListSelector.js +12 -0
  607. package/script/src/dsl/http/versori/kvapi/models/ListStoresResponse.d.ts.map +1 -1
  608. package/script/src/dsl/http/versori/kvapi/models/ListStoresResponse.js +12 -0
  609. package/script/src/dsl/http/versori/kvapi/models/Pagination.d.ts.map +1 -1
  610. package/script/src/dsl/http/versori/kvapi/models/Pagination.js +12 -0
  611. package/script/src/dsl/http/versori/kvapi/models/SetKVResponse.d.ts.map +1 -1
  612. package/script/src/dsl/http/versori/kvapi/models/SetKVResponse.js +12 -0
  613. package/script/src/dsl/http/versori/kvapi/models/SetOptions.d.ts.map +1 -1
  614. package/script/src/dsl/http/versori/kvapi/models/SetOptions.js +12 -0
  615. package/script/src/dsl/http/versori/kvapi/models/Store.d.ts.map +1 -1
  616. package/script/src/dsl/http/versori/kvapi/models/Store.js +12 -0
  617. package/script/src/dsl/http/versori/kvapi/services/BatchOperationsService.d.ts.map +1 -1
  618. package/script/src/dsl/http/versori/kvapi/services/BatchOperationsService.js +12 -0
  619. package/script/src/dsl/http/versori/kvapi/services/KvOperationsService.d.ts.map +1 -1
  620. package/script/src/dsl/http/versori/kvapi/services/KvOperationsService.js +12 -0
  621. package/script/src/dsl/http/versori/kvapi/services/QueryOperationsService.d.ts.map +1 -1
  622. package/script/src/dsl/http/versori/kvapi/services/QueryOperationsService.js +12 -0
  623. package/script/src/dsl/http/versori/kvapi/services/StoresService.d.ts.map +1 -1
  624. package/script/src/dsl/http/versori/kvapi/services/StoresService.js +12 -0
  625. package/script/src/dsl/http/versori/webhookmiddleware.d.ts +2 -2
  626. package/script/src/dsl/http/versori/webhookmiddleware.d.ts.map +1 -1
  627. package/script/src/dsl/http/versori/webhookmiddleware.js +99 -64
  628. package/script/src/dsl/mod.d.ts +17 -1
  629. package/script/src/dsl/mod.d.ts.map +1 -1
  630. package/script/src/dsl/mod.js +26 -1
  631. package/script/src/dsl/tasks/BackgroundTask.d.ts.map +1 -1
  632. package/script/src/dsl/tasks/BackgroundTask.js +12 -0
  633. package/script/src/dsl/tasks/CatchTask.d.ts.map +1 -1
  634. package/script/src/dsl/tasks/CatchTask.js +12 -0
  635. package/script/src/dsl/tasks/ChainTask.d.ts.map +1 -1
  636. package/script/src/dsl/tasks/ChainTask.js +14 -2
  637. package/script/src/dsl/tasks/FnTask.d.ts +25 -1
  638. package/script/src/dsl/tasks/FnTask.d.ts.map +1 -1
  639. package/script/src/dsl/tasks/FnTask.js +36 -0
  640. package/script/src/dsl/tasks/HttpTask.d.ts +84 -7
  641. package/script/src/dsl/tasks/HttpTask.d.ts.map +1 -1
  642. package/script/src/dsl/tasks/HttpTask.js +40 -0
  643. package/script/src/dsl/tasks/ParallelTask.d.ts.map +1 -1
  644. package/script/src/dsl/tasks/ParallelTask.js +12 -0
  645. package/script/src/dsl/tasks/SerialTask.d.ts.map +1 -1
  646. package/script/src/dsl/tasks/SerialTask.js +12 -0
  647. package/script/src/dsl/tasks/UnpackTask.d.ts.map +1 -1
  648. package/script/src/dsl/tasks/UnpackTask.js +12 -0
  649. package/script/src/dsl/tasks/mod.d.ts +1 -9
  650. package/script/src/dsl/tasks/mod.d.ts.map +1 -1
  651. package/script/src/dsl/tasks/mod.js +12 -0
  652. package/script/src/dsl/triggers/DurableTrigger.d.ts +38 -2
  653. package/script/src/dsl/triggers/DurableTrigger.d.ts.map +1 -1
  654. package/script/src/dsl/triggers/DurableTrigger.js +35 -1
  655. package/script/src/dsl/triggers/ScheduleTrigger.d.ts +35 -1
  656. package/script/src/dsl/triggers/ScheduleTrigger.d.ts.map +1 -1
  657. package/script/src/dsl/triggers/ScheduleTrigger.js +36 -1
  658. package/script/src/dsl/triggers/WebhookTrigger.d.ts +71 -1
  659. package/script/src/dsl/triggers/WebhookTrigger.d.ts.map +1 -1
  660. package/script/src/dsl/triggers/WebhookTrigger.js +36 -3
  661. package/script/src/dsl/triggers/mod.d.ts +3 -5
  662. package/script/src/dsl/triggers/mod.d.ts.map +1 -1
  663. package/script/src/dsl/triggers/mod.js +12 -0
  664. package/script/src/internal/InternalAuth.d.ts +2 -0
  665. package/script/src/internal/InternalAuth.d.ts.map +1 -1
  666. package/script/src/internal/InternalAuth.js +44 -0
  667. package/script/src/internal/cli.d.ts +2 -0
  668. package/script/src/internal/cli.d.ts.map +1 -0
  669. package/script/src/internal/cli.js +35 -0
  670. package/script/src/internal/constants.d.ts +2 -3
  671. package/script/src/internal/constants.d.ts.map +1 -1
  672. package/script/src/internal/constants.js +15 -5
  673. package/script/src/interpreter/durable/DurableInterpreter.d.ts +46 -16
  674. package/script/src/interpreter/durable/DurableInterpreter.d.ts.map +1 -1
  675. package/script/src/interpreter/durable/DurableInterpreter.js +58 -68
  676. package/script/src/interpreter/durable/ExecutionError.d.ts +17 -0
  677. package/script/src/interpreter/durable/ExecutionError.d.ts.map +1 -1
  678. package/script/src/interpreter/durable/ExecutionError.js +29 -0
  679. package/script/src/interpreter/durable/ObservableCompiler.d.ts +1 -6
  680. package/script/src/interpreter/durable/ObservableCompiler.d.ts.map +1 -1
  681. package/script/src/interpreter/durable/ObservableCompiler.js +12 -0
  682. package/script/src/interpreter/durable/Queue.d.ts +24 -16
  683. package/script/src/interpreter/durable/Queue.d.ts.map +1 -1
  684. package/script/src/interpreter/durable/Queue.js +16 -5
  685. package/script/src/interpreter/durable/compilers/background.d.ts.map +1 -1
  686. package/script/src/interpreter/durable/compilers/background.js +12 -0
  687. package/script/src/interpreter/durable/compilers/catch.d.ts.map +1 -1
  688. package/script/src/interpreter/durable/compilers/catch.js +19 -6
  689. package/script/src/interpreter/durable/compilers/chain.d.ts.map +1 -1
  690. package/script/src/interpreter/durable/compilers/chain.js +12 -0
  691. package/script/src/interpreter/durable/compilers/durableworkflow.d.ts +2 -2
  692. package/script/src/interpreter/durable/compilers/durableworkflow.d.ts.map +1 -1
  693. package/script/src/interpreter/durable/compilers/durableworkflow.js +31 -19
  694. package/script/src/interpreter/durable/compilers/fn.d.ts.map +1 -1
  695. package/script/src/interpreter/durable/compilers/fn.js +17 -18
  696. package/script/src/interpreter/durable/compilers/http.d.ts.map +1 -1
  697. package/script/src/interpreter/durable/compilers/http.js +15 -9
  698. package/script/src/interpreter/durable/compilers/mod.d.ts.map +1 -1
  699. package/script/src/interpreter/durable/compilers/mod.js +12 -0
  700. package/script/src/interpreter/durable/compilers/parallel.d.ts.map +1 -1
  701. package/script/src/interpreter/durable/compilers/parallel.js +12 -0
  702. package/script/src/interpreter/durable/compilers/schedule.d.ts.map +1 -1
  703. package/script/src/interpreter/durable/compilers/schedule.js +13 -2
  704. package/script/src/interpreter/durable/compilers/serial.d.ts.map +1 -1
  705. package/script/src/interpreter/durable/compilers/serial.js +12 -0
  706. package/script/src/interpreter/durable/compilers/types.d.ts +2 -2
  707. package/script/src/interpreter/durable/compilers/types.d.ts.map +1 -1
  708. package/script/src/interpreter/durable/compilers/types.js +12 -0
  709. package/script/src/interpreter/durable/compilers/unpack.d.ts.map +1 -1
  710. package/script/src/interpreter/durable/compilers/unpack.js +13 -1
  711. package/script/src/interpreter/durable/compilers/webhook.d.ts.map +1 -1
  712. package/script/src/interpreter/durable/compilers/webhook.js +16 -7
  713. package/script/src/interpreter/durable/mod.d.ts +0 -2
  714. package/script/src/interpreter/durable/mod.d.ts.map +1 -1
  715. package/script/src/interpreter/durable/mod.js +12 -2
  716. package/script/src/interpreter/memory/ExecutionError.d.ts +17 -0
  717. package/script/src/interpreter/memory/ExecutionError.d.ts.map +1 -1
  718. package/script/src/interpreter/memory/ExecutionError.js +29 -0
  719. package/script/src/interpreter/memory/MemoryInterpreter.d.ts +42 -8
  720. package/script/src/interpreter/memory/MemoryInterpreter.d.ts.map +1 -1
  721. package/script/src/interpreter/memory/MemoryInterpreter.js +50 -52
  722. package/script/src/interpreter/memory/ObservableCompiler.d.ts +1 -6
  723. package/script/src/interpreter/memory/ObservableCompiler.d.ts.map +1 -1
  724. package/script/src/interpreter/memory/ObservableCompiler.js +12 -0
  725. package/script/src/interpreter/memory/compilers/background.d.ts.map +1 -1
  726. package/script/src/interpreter/memory/compilers/background.js +12 -0
  727. package/script/src/interpreter/memory/compilers/catch.d.ts.map +1 -1
  728. package/script/src/interpreter/memory/compilers/catch.js +19 -6
  729. package/script/src/interpreter/memory/compilers/chain.d.ts.map +1 -1
  730. package/script/src/interpreter/memory/compilers/chain.js +12 -0
  731. package/script/src/interpreter/memory/compilers/fn.d.ts.map +1 -1
  732. package/script/src/interpreter/memory/compilers/fn.js +17 -18
  733. package/script/src/interpreter/memory/compilers/http.d.ts.map +1 -1
  734. package/script/src/interpreter/memory/compilers/http.js +16 -34
  735. package/script/src/interpreter/memory/compilers/parallel.d.ts.map +1 -1
  736. package/script/src/interpreter/memory/compilers/parallel.js +12 -0
  737. package/script/src/interpreter/memory/compilers/schedule.d.ts.map +1 -1
  738. package/script/src/interpreter/memory/compilers/schedule.js +13 -2
  739. package/script/src/interpreter/memory/compilers/serial.d.ts.map +1 -1
  740. package/script/src/interpreter/memory/compilers/serial.js +12 -0
  741. package/script/src/interpreter/memory/compilers/types.d.ts +2 -2
  742. package/script/src/interpreter/memory/compilers/types.d.ts.map +1 -1
  743. package/script/src/interpreter/memory/compilers/types.js +12 -0
  744. package/script/src/interpreter/memory/compilers/unpack.d.ts.map +1 -1
  745. package/script/src/interpreter/memory/compilers/unpack.js +13 -1
  746. package/script/src/interpreter/memory/compilers/webhook.d.ts.map +1 -1
  747. package/script/src/interpreter/memory/compilers/webhook.js +16 -8
  748. package/script/src/interpreter/memory/mod.d.ts +0 -2
  749. package/script/src/interpreter/memory/mod.d.ts.map +1 -1
  750. package/script/src/interpreter/memory/mod.js +12 -2
  751. package/script/src/interpreter/mod.d.ts +13 -0
  752. package/script/src/interpreter/mod.d.ts.map +1 -1
  753. package/script/src/interpreter/mod.js +25 -0
  754. package/script/src/issues/Issues.d.ts +1 -1
  755. package/script/src/issues/Issues.d.ts.map +1 -1
  756. package/script/src/issues/Issues.js +14 -2
  757. package/script/src/kv/KVNotFoundError.d.ts +10 -0
  758. package/script/src/kv/KVNotFoundError.d.ts.map +1 -1
  759. package/script/src/kv/KVNotFoundError.js +22 -0
  760. package/script/src/kv/KeyValue.d.ts +75 -6
  761. package/script/src/kv/KeyValue.d.ts.map +1 -1
  762. package/script/src/kv/KeyValue.js +12 -6
  763. package/script/src/kv/isKVOptionsExecution.d.ts +3 -0
  764. package/script/src/kv/isKVOptionsExecution.d.ts.map +1 -0
  765. package/script/src/kv/isKVOptionsExecution.js +20 -0
  766. package/script/src/kv/memory/MemoryKeyValue.d.ts.map +1 -1
  767. package/script/src/kv/memory/MemoryKeyValue.js +12 -0
  768. package/script/src/kv/memory/MemoryKeyValueProvider.d.ts.map +1 -1
  769. package/script/src/kv/memory/MemoryKeyValueProvider.js +12 -0
  770. package/script/src/kv/mod.d.ts +5 -2
  771. package/script/src/kv/mod.d.ts.map +1 -1
  772. package/script/src/kv/mod.js +17 -2
  773. package/script/src/kv/nats/NatsKeyValue.d.ts.map +1 -1
  774. package/script/src/kv/nats/NatsKeyValue.js +12 -0
  775. package/script/src/kv/nats/NatsKeyValueProvider.d.ts.map +1 -1
  776. package/script/src/kv/nats/NatsKeyValueProvider.js +15 -3
  777. package/script/src/kv/sdk/SDKKeyValue.d.ts +2 -2
  778. package/script/src/kv/sdk/SDKKeyValue.d.ts.map +1 -1
  779. package/script/src/kv/sdk/SDKKeyValue.js +26 -7
  780. package/script/src/kv/sdk/SDKKeyValueProvider.d.ts.map +1 -1
  781. package/script/src/kv/sdk/SDKKeyValueProvider.js +26 -14
  782. package/script/src/mod.d.ts +6 -5
  783. package/script/src/mod.d.ts.map +1 -1
  784. package/script/src/mod.js +13 -0
  785. package/script/src/observability/logging/ConsoleLogger.d.ts +4 -1
  786. package/script/src/observability/logging/ConsoleLogger.d.ts.map +1 -1
  787. package/script/src/observability/logging/ConsoleLogger.js +16 -1
  788. package/script/src/observability/logging/Logger.d.ts +45 -0
  789. package/script/src/observability/logging/Logger.d.ts.map +1 -1
  790. package/script/src/observability/logging/Logger.js +12 -0
  791. package/script/src/observability/logging/mod.d.ts.map +1 -1
  792. package/script/src/observability/logging/mod.js +12 -0
  793. package/script/src/observability/mod.d.ts +7 -0
  794. package/script/src/observability/mod.d.ts.map +1 -1
  795. package/script/src/observability/mod.js +19 -0
  796. package/script/src/services/createConnectRpcClient.d.ts.map +1 -1
  797. package/script/src/services/createConnectRpcClient.js +12 -0
  798. package/script/src/services/credentials/credential-v1alpha1.d.ts.map +1 -1
  799. package/script/src/services/credentials/credential-v1alpha1.js +12 -0
  800. package/script/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_metadata_pb.d.ts +3 -3
  801. package/script/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_metadata_pb.d.ts.map +1 -1
  802. package/script/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_metadata_pb.js +1 -1
  803. package/script/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_service_pb.d.ts +13 -13
  804. package/script/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_service_pb.d.ts.map +1 -1
  805. package/script/src/services/credentials/generated/versori/credential/oauth1/v1/authorization_service_pb.js +4 -1
  806. package/script/src/services/credentials/generated/versori/credential/oauth2/v1/token_pb.d.ts +4 -4
  807. package/script/src/services/credentials/generated/versori/credential/oauth2/v1/token_pb.d.ts.map +1 -1
  808. package/script/src/services/credentials/generated/versori/credential/oauth2/v1/token_pb.js +1 -1
  809. package/script/src/services/credentials/generated/versori/credential/oauth2/v1/token_service_pb.d.ts +21 -21
  810. package/script/src/services/credentials/generated/versori/credential/oauth2/v1/token_service_pb.d.ts.map +1 -1
  811. package/script/src/services/credentials/generated/versori/credential/oauth2/v1/token_service_pb.js +6 -1
  812. package/script/src/services/credentials/generated/versori/credential/tokens/v1/token_pb.d.ts +4 -4
  813. package/script/src/services/credentials/generated/versori/credential/tokens/v1/token_pb.d.ts.map +1 -1
  814. package/script/src/services/credentials/generated/versori/credential/tokens/v1/token_pb.js +1 -1
  815. package/script/src/services/credentials/generated/versori/credential/tokens/v1/token_service_pb.d.ts +10 -10
  816. package/script/src/services/credentials/generated/versori/credential/tokens/v1/token_service_pb.d.ts.map +1 -1
  817. package/script/src/services/credentials/generated/versori/credential/tokens/v1/token_service_pb.js +6 -1
  818. package/script/src/services/credentials/generated/versori/credential/v1alpha1/common_pb.d.ts +5 -5
  819. package/script/src/services/credentials/generated/versori/credential/v1alpha1/common_pb.d.ts.map +1 -1
  820. package/script/src/services/credentials/generated/versori/credential/v1alpha1/common_pb.js +1 -1
  821. package/script/src/services/credentials/generated/versori/credential/v1alpha1/credential_pb.d.ts +41 -41
  822. package/script/src/services/credentials/generated/versori/credential/v1alpha1/credential_pb.d.ts.map +1 -1
  823. package/script/src/services/credentials/generated/versori/credential/v1alpha1/credential_pb.js +1 -1
  824. package/script/src/services/credentials/generated/versori/credential/v1alpha1/credential_service_pb.d.ts +27 -27
  825. package/script/src/services/credentials/generated/versori/credential/v1alpha1/credential_service_pb.d.ts.map +1 -1
  826. package/script/src/services/credentials/generated/versori/credential/v1alpha1/credential_service_pb.js +5 -1
  827. package/script/src/services/credentials/isTokenValid.d.ts.map +1 -1
  828. package/script/src/services/credentials/isTokenValid.js +13 -1
  829. package/script/src/services/credentials/mod.d.ts +6 -0
  830. package/script/src/services/credentials/mod.d.ts.map +1 -1
  831. package/script/src/services/credentials/mod.js +18 -0
  832. package/script/src/services/credentials/oauth1-v1.d.ts.map +1 -1
  833. package/script/src/services/credentials/oauth1-v1.js +12 -0
  834. package/script/src/services/credentials/oauth2-v1.d.ts.map +1 -1
  835. package/script/src/services/credentials/oauth2-v1.js +12 -0
  836. package/script/src/services/credentials/tokens-v1.d.ts.map +1 -1
  837. package/script/src/services/credentials/tokens-v1.js +12 -0
  838. package/script/src/services/mod.d.ts +11 -0
  839. package/script/src/services/mod.d.ts.map +1 -0
  840. package/script/src/services/mod.js +38 -0
  841. package/script/src/services/platform/PlatformApi.d.ts +23 -1
  842. package/script/src/services/platform/PlatformApi.d.ts.map +1 -1
  843. package/script/src/services/platform/PlatformApi.js +36 -5
  844. package/script/src/services/platform/generated/client/client.gen.d.ts.map +1 -1
  845. package/script/src/services/platform/generated/client/client.gen.js +16 -24
  846. package/script/src/services/platform/generated/client/index.d.ts.map +1 -1
  847. package/script/src/services/platform/generated/client/index.js +12 -1
  848. package/script/src/services/platform/generated/client/types.gen.d.ts.map +1 -1
  849. package/script/src/services/platform/generated/client/utils.gen.d.ts.map +1 -1
  850. package/script/src/services/platform/generated/client.gen.d.ts +1 -1
  851. package/script/src/services/platform/generated/client.gen.d.ts.map +1 -1
  852. package/script/src/services/platform/generated/client.gen.js +1 -1
  853. package/script/src/services/platform/generated/core/auth.gen.d.ts.map +1 -1
  854. package/script/src/services/platform/generated/core/bodySerializer.gen.d.ts.map +1 -1
  855. package/script/src/services/platform/generated/core/params.gen.d.ts.map +1 -1
  856. package/script/src/services/platform/generated/core/pathSerializer.gen.d.ts.map +1 -1
  857. package/script/src/services/platform/generated/core/pathSerializer.gen.js +2 -6
  858. package/script/src/services/platform/generated/core/serverSentEvents.gen.d.ts.map +1 -1
  859. package/script/src/services/platform/generated/core/serverSentEvents.gen.js +2 -1
  860. package/script/src/services/platform/generated/core/types.gen.d.ts.map +1 -1
  861. package/script/src/services/platform/generated/core/utils.gen.d.ts.map +1 -1
  862. package/script/src/services/platform/generated/sdk.gen.d.ts +2 -57
  863. package/script/src/services/platform/generated/sdk.gen.d.ts.map +1 -1
  864. package/script/src/services/platform/generated/sdk.gen.js +357 -412
  865. package/script/src/services/platform/generated/types.gen.d.ts +0 -128
  866. package/script/src/services/platform/generated/types.gen.d.ts.map +1 -1
  867. package/script/src/services/platform/mod.d.ts +14 -1
  868. package/script/src/services/platform/mod.d.ts.map +1 -1
  869. package/script/src/services/platform/mod.js +13 -1
  870. package/esm/src/dsl/http/default.d.ts +0 -26
  871. package/esm/src/dsl/http/default.d.ts.map +0 -1
  872. package/esm/src/dsl/http/default.js +0 -46
  873. package/esm/src/internal/supervisor.d.ts +0 -21
  874. package/esm/src/internal/supervisor.d.ts.map +0 -1
  875. package/esm/src/internal/supervisor.js +0 -113
  876. package/esm/src/interpreter/memory/compilers/mod.d.ts +0 -2
  877. package/esm/src/interpreter/memory/compilers/mod.d.ts.map +0 -1
  878. package/esm/src/interpreter/memory/compilers/mod.js +0 -1
  879. package/esm/src/kv/memory/mod.d.ts +0 -3
  880. package/esm/src/kv/memory/mod.d.ts.map +0 -1
  881. package/esm/src/kv/memory/mod.js +0 -2
  882. package/esm/src/kv/sdk/mod.d.ts +0 -3
  883. package/esm/src/kv/sdk/mod.d.ts.map +0 -1
  884. package/esm/src/kv/sdk/mod.js +0 -2
  885. package/esm/src/services/platform/generated/index.d.ts +0 -3
  886. package/esm/src/services/platform/generated/index.d.ts.map +0 -1
  887. package/esm/src/services/platform/generated/index.js +0 -3
  888. package/script/src/dsl/http/default.d.ts +0 -26
  889. package/script/src/dsl/http/default.d.ts.map +0 -1
  890. package/script/src/dsl/http/default.js +0 -50
  891. package/script/src/internal/supervisor.d.ts +0 -21
  892. package/script/src/internal/supervisor.d.ts.map +0 -1
  893. package/script/src/internal/supervisor.js +0 -120
  894. package/script/src/interpreter/memory/compilers/mod.d.ts +0 -2
  895. package/script/src/interpreter/memory/compilers/mod.d.ts.map +0 -1
  896. package/script/src/kv/memory/mod.d.ts +0 -3
  897. package/script/src/kv/memory/mod.d.ts.map +0 -1
  898. package/script/src/kv/memory/mod.js +0 -18
  899. package/script/src/kv/sdk/mod.d.ts +0 -3
  900. package/script/src/kv/sdk/mod.d.ts.map +0 -1
  901. package/script/src/kv/sdk/mod.js +0 -18
  902. package/script/src/services/platform/generated/index.d.ts +0 -3
  903. package/script/src/services/platform/generated/index.d.ts.map +0 -1
  904. package/script/src/services/platform/generated/index.js +0 -19
  905. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.20}/exists.d.ts +0 -0
  906. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.20}/exists.js +0 -0
  907. /package/script/deps/jsr.io/@std/fs/{1.0.19 → 1.0.20}/exists.d.ts +0 -0
  908. /package/script/deps/jsr.io/@std/fs/{1.0.19 → 1.0.20}/exists.js +0 -0
@@ -8,27 +8,26 @@ const client_gen_js_1 = require("./client.gen.js");
8
8
  * Activates a User on an Environment.
9
9
  * ActivateUser activates a user on an environment. This will create a new activation record for the user on the environment.
10
10
  * Connections must be made for all environment systems to be successfully activated.
11
- *
12
11
  */
13
12
  const activateUser = (options) => {
14
13
  return (options.client ?? client_gen_js_1.client).post({
15
14
  security: [
16
15
  {
17
16
  scheme: 'bearer',
18
- type: 'http'
17
+ type: 'http',
19
18
  },
20
19
  {
21
20
  in: 'cookie',
22
21
  name: 'cookie',
23
- type: 'apiKey'
24
- }
22
+ type: 'apiKey',
23
+ },
25
24
  ],
26
25
  url: '/o/{organisation_id}/activations',
27
26
  ...options,
28
27
  headers: {
29
28
  'Content-Type': 'application/json',
30
- ...options.headers
31
- }
29
+ ...options.headers,
30
+ },
32
31
  });
33
32
  };
34
33
  exports.activateUser = activateUser;
@@ -40,116 +39,112 @@ const listProjects = (options) => {
40
39
  security: [
41
40
  {
42
41
  scheme: 'bearer',
43
- type: 'http'
42
+ type: 'http',
44
43
  },
45
44
  {
46
45
  in: 'cookie',
47
46
  name: 'cookie',
48
- type: 'apiKey'
49
- }
47
+ type: 'apiKey',
48
+ },
50
49
  ],
51
50
  url: '/o/{organisation_id}/projects',
52
- ...options
51
+ ...options,
53
52
  });
54
53
  };
55
54
  exports.listProjects = listProjects;
56
55
  /**
57
56
  * Create new project
58
57
  * CreateProject creates a new project.
59
- *
60
58
  */
61
59
  const createProject = (options) => {
62
60
  return (options.client ?? client_gen_js_1.client).post({
63
61
  security: [
64
62
  {
65
63
  scheme: 'bearer',
66
- type: 'http'
64
+ type: 'http',
67
65
  },
68
66
  {
69
67
  in: 'cookie',
70
68
  name: 'cookie',
71
- type: 'apiKey'
72
- }
69
+ type: 'apiKey',
70
+ },
73
71
  ],
74
72
  url: '/o/{organisation_id}/projects',
75
73
  ...options,
76
74
  headers: {
77
75
  'Content-Type': 'application/json',
78
- ...options.headers
79
- }
76
+ ...options.headers,
77
+ },
80
78
  });
81
79
  };
82
80
  exports.createProject = createProject;
83
81
  /**
84
82
  * Delete Project
85
83
  * DeleteProject delete the project.
86
- *
87
84
  */
88
85
  const deleteProject = (options) => {
89
86
  return (options.client ?? client_gen_js_1.client).delete({
90
87
  security: [
91
88
  {
92
89
  scheme: 'bearer',
93
- type: 'http'
90
+ type: 'http',
94
91
  },
95
92
  {
96
93
  in: 'cookie',
97
94
  name: 'cookie',
98
- type: 'apiKey'
99
- }
95
+ type: 'apiKey',
96
+ },
100
97
  ],
101
98
  url: '/o/{organisation_id}/projects/{project_id}',
102
- ...options
99
+ ...options,
103
100
  });
104
101
  };
105
102
  exports.deleteProject = deleteProject;
106
103
  /**
107
104
  * Get Project
108
105
  * GetProject returns the files and configuration for the specified project ID. If one does not exist then a 404 will be returned.
109
- *
110
106
  */
111
107
  const getProject = (options) => {
112
108
  return (options.client ?? client_gen_js_1.client).get({
113
109
  security: [
114
110
  {
115
111
  scheme: 'bearer',
116
- type: 'http'
112
+ type: 'http',
117
113
  },
118
114
  {
119
115
  in: 'cookie',
120
116
  name: 'cookie',
121
- type: 'apiKey'
122
- }
117
+ type: 'apiKey',
118
+ },
123
119
  ],
124
120
  url: '/o/{organisation_id}/projects/{project_id}',
125
- ...options
121
+ ...options,
126
122
  });
127
123
  };
128
124
  exports.getProject = getProject;
129
125
  /**
130
126
  * Update Project
131
127
  * UpdateProject updates the project record. This endpoint will not make changes to the file or the running deployment.
132
- *
133
128
  */
134
129
  const updateProject = (options) => {
135
130
  return (options.client ?? client_gen_js_1.client).put({
136
131
  security: [
137
132
  {
138
133
  scheme: 'bearer',
139
- type: 'http'
134
+ type: 'http',
140
135
  },
141
136
  {
142
137
  in: 'cookie',
143
138
  name: 'cookie',
144
- type: 'apiKey'
145
- }
139
+ type: 'apiKey',
140
+ },
146
141
  ],
147
142
  url: '/o/{organisation_id}/projects/{project_id}',
148
143
  ...options,
149
144
  headers: {
150
145
  'Content-Type': 'application/json',
151
- ...options.headers
152
- }
146
+ ...options.headers,
147
+ },
153
148
  });
154
149
  };
155
150
  exports.updateProject = updateProject;
@@ -158,23 +153,22 @@ exports.updateProject = updateProject;
158
153
  * CloneProject clones the project with the given ID. The new project will have a new ID and will not be deployed.
159
154
  * The files and configuration will be copied from the original project. Connection templates will be copied, however
160
155
  * no connections will be created.
161
- *
162
156
  */
163
157
  const cloneProject = (options) => {
164
158
  return (options.client ?? client_gen_js_1.client).post({
165
159
  security: [
166
160
  {
167
161
  scheme: 'bearer',
168
- type: 'http'
162
+ type: 'http',
169
163
  },
170
164
  {
171
165
  in: 'cookie',
172
166
  name: 'cookie',
173
- type: 'apiKey'
174
- }
167
+ type: 'apiKey',
168
+ },
175
169
  ],
176
170
  url: '/o/{organisation_id}/projects/{project_id}/clone',
177
- ...options
171
+ ...options,
178
172
  });
179
173
  };
180
174
  exports.cloneProject = cloneProject;
@@ -182,27 +176,26 @@ exports.cloneProject = cloneProject;
182
176
  * Patch the schema for the project's dynamic variables
183
177
  * PatchProjectVariablesSchema patches the JSON schema for the project's dynamic variables. This allows you to add,
184
178
  * remove or edit the schema for the project's dynamic variables.
185
- *
186
179
  */
187
180
  const patchProjectVariablesSchema = (options) => {
188
181
  return (options.client ?? client_gen_js_1.client).patch({
189
182
  security: [
190
183
  {
191
184
  scheme: 'bearer',
192
- type: 'http'
185
+ type: 'http',
193
186
  },
194
187
  {
195
188
  in: 'cookie',
196
189
  name: 'cookie',
197
- type: 'apiKey'
198
- }
190
+ type: 'apiKey',
191
+ },
199
192
  ],
200
193
  url: '/o/{organisation_id}/projects/{project_id}/variables',
201
194
  ...options,
202
195
  headers: {
203
196
  'Content-Type': 'application/json',
204
- ...options.headers
205
- }
197
+ ...options.headers,
198
+ },
206
199
  });
207
200
  };
208
201
  exports.patchProjectVariablesSchema = patchProjectVariablesSchema;
@@ -211,27 +204,26 @@ exports.patchProjectVariablesSchema = patchProjectVariablesSchema;
211
204
  * SetProjectVariablesSchema sets the JSON schema for the project's dynamic variables. Dynamic variables can then
212
205
  * be set by end users on activation. This schema is used to validate the variables when they are set and defines
213
206
  * the variables that can be set and used within the integration code.
214
- *
215
207
  */
216
208
  const setProjectVariablesSchema = (options) => {
217
209
  return (options.client ?? client_gen_js_1.client).put({
218
210
  security: [
219
211
  {
220
212
  scheme: 'bearer',
221
- type: 'http'
213
+ type: 'http',
222
214
  },
223
215
  {
224
216
  in: 'cookie',
225
217
  name: 'cookie',
226
- type: 'apiKey'
227
- }
218
+ type: 'apiKey',
219
+ },
228
220
  ],
229
221
  url: '/o/{organisation_id}/projects/{project_id}/variables',
230
222
  ...options,
231
223
  headers: {
232
224
  'Content-Type': 'application/json',
233
- ...options.headers
234
- }
225
+ ...options.headers,
226
+ },
235
227
  });
236
228
  };
237
229
  exports.setProjectVariablesSchema = setProjectVariablesSchema;
@@ -239,77 +231,74 @@ exports.setProjectVariablesSchema = setProjectVariablesSchema;
239
231
  * Add sentiment data to project history
240
232
  * AddProjectSentiment adds a new sentiment entry to the project's sentiment history.
241
233
  * This endpoint appends to the existing sentiment history in the project metadata.
242
- *
243
234
  */
244
235
  const addProjectSentiment = (options) => {
245
236
  return (options.client ?? client_gen_js_1.client).post({
246
237
  security: [
247
238
  {
248
239
  scheme: 'bearer',
249
- type: 'http'
240
+ type: 'http',
250
241
  },
251
242
  {
252
243
  in: 'cookie',
253
244
  name: 'cookie',
254
- type: 'apiKey'
255
- }
245
+ type: 'apiKey',
246
+ },
256
247
  ],
257
248
  url: '/o/{organisation_id}/projects/{project_id}/sentiment',
258
249
  ...options,
259
250
  headers: {
260
251
  'Content-Type': 'application/json',
261
- ...options.headers
262
- }
252
+ ...options.headers,
253
+ },
263
254
  });
264
255
  };
265
256
  exports.addProjectSentiment = addProjectSentiment;
266
257
  /**
267
258
  * Get Files
268
259
  * GetFiles returns the current files for the project. Those may not the the files the project is deployed with.
269
- *
270
260
  */
271
261
  const getFiles = (options) => {
272
262
  return (options.client ?? client_gen_js_1.client).get({
273
263
  security: [
274
264
  {
275
265
  scheme: 'bearer',
276
- type: 'http'
266
+ type: 'http',
277
267
  },
278
268
  {
279
269
  in: 'cookie',
280
270
  name: 'cookie',
281
- type: 'apiKey'
282
- }
271
+ type: 'apiKey',
272
+ },
283
273
  ],
284
274
  url: '/o/{organisation_id}/projects/{project_id}/files',
285
- ...options
275
+ ...options,
286
276
  });
287
277
  };
288
278
  exports.getFiles = getFiles;
289
279
  /**
290
280
  * Update Files
291
281
  * UpdateFiles updates the files for the project. This will not deploy the project.
292
- *
293
282
  */
294
283
  const updateFiles = (options) => {
295
284
  return (options.client ?? client_gen_js_1.client).put({
296
285
  security: [
297
286
  {
298
287
  scheme: 'bearer',
299
- type: 'http'
288
+ type: 'http',
300
289
  },
301
290
  {
302
291
  in: 'cookie',
303
292
  name: 'cookie',
304
- type: 'apiKey'
305
- }
293
+ type: 'apiKey',
294
+ },
306
295
  ],
307
296
  url: '/o/{organisation_id}/projects/{project_id}/files',
308
297
  ...options,
309
298
  headers: {
310
299
  'Content-Type': 'application/json',
311
- ...options.headers
312
- }
300
+ ...options.headers,
301
+ },
313
302
  });
314
303
  };
315
304
  exports.updateFiles = updateFiles;
@@ -318,27 +307,26 @@ exports.updateFiles = updateFiles;
318
307
  * DeployProject deploys the project to the specified environment using the current files.
319
308
  * It processes the files to deploy a new version of the project and updates the underlying connector
320
309
  * to integrate the new API.
321
- *
322
310
  */
323
311
  const deployProject = (options) => {
324
312
  return (options.client ?? client_gen_js_1.client).put({
325
313
  security: [
326
314
  {
327
315
  scheme: 'bearer',
328
- type: 'http'
316
+ type: 'http',
329
317
  },
330
318
  {
331
319
  in: 'cookie',
332
320
  name: 'cookie',
333
- type: 'apiKey'
334
- }
321
+ type: 'apiKey',
322
+ },
335
323
  ],
336
324
  url: '/o/{organisation_id}/projects/{project_id}/deploy',
337
325
  ...options,
338
326
  headers: {
339
327
  'Content-Type': 'application/json',
340
- ...options.headers
341
- }
328
+ ...options.headers,
329
+ },
342
330
  });
343
331
  };
344
332
  exports.deployProject = deployProject;
@@ -350,62 +338,60 @@ const getProjectLogs = (options) => {
350
338
  security: [
351
339
  {
352
340
  scheme: 'bearer',
353
- type: 'http'
341
+ type: 'http',
354
342
  },
355
343
  {
356
344
  in: 'cookie',
357
345
  name: 'cookie',
358
- type: 'apiKey'
359
- }
346
+ type: 'apiKey',
347
+ },
360
348
  ],
361
349
  url: '/o/{organisation_id}/projects/{project_id}/logs',
362
- ...options
350
+ ...options,
363
351
  });
364
352
  };
365
353
  exports.getProjectLogs = getProjectLogs;
366
354
  /**
367
355
  * List project traces
368
356
  * ListTraces returns a list of traces for the given organisation.
369
- *
370
357
  */
371
358
  const listTraces = (options) => {
372
359
  return (options.client ?? client_gen_js_1.client).get({
373
360
  security: [
374
361
  {
375
362
  scheme: 'bearer',
376
- type: 'http'
363
+ type: 'http',
377
364
  },
378
365
  {
379
366
  in: 'cookie',
380
367
  name: 'cookie',
381
- type: 'apiKey'
382
- }
368
+ type: 'apiKey',
369
+ },
383
370
  ],
384
371
  url: '/o/{organisation_id}/projects/{project_id}/traces',
385
- ...options
372
+ ...options,
386
373
  });
387
374
  };
388
375
  exports.listTraces = listTraces;
389
376
  /**
390
377
  * Get Trace
391
378
  * GetTrace returns an individual trace with all the spans.
392
- *
393
379
  */
394
380
  const getTrace = (options) => {
395
381
  return (options.client ?? client_gen_js_1.client).get({
396
382
  security: [
397
383
  {
398
384
  scheme: 'bearer',
399
- type: 'http'
385
+ type: 'http',
400
386
  },
401
387
  {
402
388
  in: 'cookie',
403
389
  name: 'cookie',
404
- type: 'apiKey'
405
- }
390
+ type: 'apiKey',
391
+ },
406
392
  ],
407
393
  url: '/o/{organisation_id}/projects/{project_id}/traces/{trace_id}',
408
- ...options
394
+ ...options,
409
395
  });
410
396
  };
411
397
  exports.getTrace = getTrace;
@@ -418,166 +404,160 @@ const suspendProject = (options) => {
418
404
  security: [
419
405
  {
420
406
  scheme: 'bearer',
421
- type: 'http'
407
+ type: 'http',
422
408
  },
423
409
  {
424
410
  in: 'cookie',
425
411
  name: 'cookie',
426
- type: 'apiKey'
427
- }
412
+ type: 'apiKey',
413
+ },
428
414
  ],
429
415
  url: '/o/{organisation_id}/projects/{project_id}/suspend',
430
- ...options
416
+ ...options,
431
417
  });
432
418
  };
433
419
  exports.suspendProject = suspendProject;
434
420
  /**
435
421
  * List Connections
436
422
  * ListConnections returns a list of Connections.
437
- *
438
423
  */
439
424
  const listConnections = (options) => {
440
425
  return (options.client ?? client_gen_js_1.client).get({
441
426
  security: [
442
427
  {
443
428
  scheme: 'bearer',
444
- type: 'http'
429
+ type: 'http',
445
430
  },
446
431
  {
447
432
  in: 'cookie',
448
433
  name: 'cookie',
449
- type: 'apiKey'
450
- }
434
+ type: 'apiKey',
435
+ },
451
436
  ],
452
437
  url: '/o/{organisation_id}/connections',
453
- ...options
438
+ ...options,
454
439
  });
455
440
  };
456
441
  exports.listConnections = listConnections;
457
442
  /**
458
443
  * Create a new connection.
459
444
  * CreateConnection creates a new connection for the given organisation.
460
- *
461
445
  */
462
446
  const createConnection = (options) => {
463
447
  return (options.client ?? client_gen_js_1.client).post({
464
448
  security: [
465
449
  {
466
450
  scheme: 'bearer',
467
- type: 'http'
451
+ type: 'http',
468
452
  },
469
453
  {
470
454
  in: 'cookie',
471
455
  name: 'cookie',
472
- type: 'apiKey'
473
- }
456
+ type: 'apiKey',
457
+ },
474
458
  ],
475
459
  url: '/o/{organisation_id}/connections',
476
460
  ...options,
477
461
  headers: {
478
462
  'Content-Type': 'application/json',
479
- ...options.headers
480
- }
463
+ ...options.headers,
464
+ },
481
465
  });
482
466
  };
483
467
  exports.createConnection = createConnection;
484
468
  /**
485
469
  * Get a Connection by ID
486
470
  * GetConnection returns the Connection for the given connection ID.
487
- *
488
471
  */
489
472
  const getConnection = (options) => {
490
473
  return (options.client ?? client_gen_js_1.client).get({
491
474
  security: [
492
475
  {
493
476
  scheme: 'bearer',
494
- type: 'http'
477
+ type: 'http',
495
478
  },
496
479
  {
497
480
  in: 'cookie',
498
481
  name: 'cookie',
499
- type: 'apiKey'
500
- }
482
+ type: 'apiKey',
483
+ },
501
484
  ],
502
485
  url: '/o/{organisation_id}/connections/{connection_id}',
503
- ...options
486
+ ...options,
504
487
  });
505
488
  };
506
489
  exports.getConnection = getConnection;
507
490
  /**
508
491
  * Update a Connection by ID
509
492
  * UpdateConnection updates the Connection for the given connection ID.
510
- *
511
493
  */
512
494
  const updateConnection = (options) => {
513
495
  return (options.client ?? client_gen_js_1.client).put({
514
496
  security: [
515
497
  {
516
498
  scheme: 'bearer',
517
- type: 'http'
499
+ type: 'http',
518
500
  },
519
501
  {
520
502
  in: 'cookie',
521
503
  name: 'cookie',
522
- type: 'apiKey'
523
- }
504
+ type: 'apiKey',
505
+ },
524
506
  ],
525
507
  url: '/o/{organisation_id}/connections/{connection_id}',
526
508
  ...options,
527
509
  headers: {
528
510
  'Content-Type': 'application/json',
529
- ...options.headers
530
- }
511
+ ...options.headers,
512
+ },
531
513
  });
532
514
  };
533
515
  exports.updateConnection = updateConnection;
534
516
  /**
535
517
  * Link an existing connection to an environment
536
518
  * LinkConnectionToEnvironment links an existing connection to a specified environment.
537
- *
538
519
  */
539
520
  const linkConnectionToEnvironment = (options) => {
540
521
  return (options.client ?? client_gen_js_1.client).post({
541
522
  security: [
542
523
  {
543
524
  scheme: 'bearer',
544
- type: 'http'
525
+ type: 'http',
545
526
  },
546
527
  {
547
528
  in: 'cookie',
548
529
  name: 'cookie',
549
- type: 'apiKey'
550
- }
530
+ type: 'apiKey',
531
+ },
551
532
  ],
552
533
  url: '/o/{organisation_id}/connections/{connection_id}/link',
553
534
  ...options,
554
535
  headers: {
555
536
  'Content-Type': 'application/json',
556
- ...options.headers
557
- }
537
+ ...options.headers,
538
+ },
558
539
  });
559
540
  };
560
541
  exports.linkConnectionToEnvironment = linkConnectionToEnvironment;
561
542
  /**
562
543
  * List End Users
563
544
  * ListEndUsers returns a list of all the End Users for the given organisation.
564
- *
565
545
  */
566
546
  const listEndUsers = (options) => {
567
547
  return (options.client ?? client_gen_js_1.client).get({
568
548
  security: [
569
549
  {
570
550
  scheme: 'bearer',
571
- type: 'http'
551
+ type: 'http',
572
552
  },
573
553
  {
574
554
  in: 'cookie',
575
555
  name: 'cookie',
576
- type: 'apiKey'
577
- }
556
+ type: 'apiKey',
557
+ },
578
558
  ],
579
559
  url: '/o/{organisation_id}/users',
580
- ...options
560
+ ...options,
581
561
  });
582
562
  };
583
563
  exports.listEndUsers = listEndUsers;
@@ -587,50 +567,48 @@ exports.listEndUsers = listEndUsers;
587
567
  *
588
568
  * The end user requires a unique `externalId`. This is an immutable field so should not be set to something that may change
589
569
  * such as an email address.
590
- *
591
570
  */
592
571
  const createEndUser = (options) => {
593
572
  return (options.client ?? client_gen_js_1.client).post({
594
573
  security: [
595
574
  {
596
575
  scheme: 'bearer',
597
- type: 'http'
576
+ type: 'http',
598
577
  },
599
578
  {
600
579
  in: 'cookie',
601
580
  name: 'cookie',
602
- type: 'apiKey'
603
- }
581
+ type: 'apiKey',
582
+ },
604
583
  ],
605
584
  url: '/o/{organisation_id}/users',
606
585
  ...options,
607
586
  headers: {
608
587
  'Content-Type': 'application/json',
609
- ...options.headers
610
- }
588
+ ...options.headers,
589
+ },
611
590
  });
612
591
  };
613
592
  exports.createEndUser = createEndUser;
614
593
  /**
615
594
  * List Automations
616
595
  * ListAutomations returns a list of all the Automations for the given organisation.
617
- *
618
596
  */
619
597
  const listAutomations = (options) => {
620
598
  return (options.client ?? client_gen_js_1.client).get({
621
599
  security: [
622
600
  {
623
601
  scheme: 'bearer',
624
- type: 'http'
602
+ type: 'http',
625
603
  },
626
604
  {
627
605
  in: 'cookie',
628
606
  name: 'cookie',
629
- type: 'apiKey'
630
- }
607
+ type: 'apiKey',
608
+ },
631
609
  ],
632
610
  url: '/o/{organisation_id}/automations',
633
- ...options
611
+ ...options,
634
612
  });
635
613
  };
636
614
  exports.listAutomations = listAutomations;
@@ -642,43 +620,42 @@ const createAutomation = (options) => {
642
620
  security: [
643
621
  {
644
622
  scheme: 'bearer',
645
- type: 'http'
623
+ type: 'http',
646
624
  },
647
625
  {
648
626
  in: 'cookie',
649
627
  name: 'cookie',
650
- type: 'apiKey'
651
- }
628
+ type: 'apiKey',
629
+ },
652
630
  ],
653
631
  url: '/o/{organisation_id}/automations',
654
632
  ...options,
655
633
  headers: {
656
634
  'Content-Type': 'application/json',
657
- ...options.headers
658
- }
635
+ ...options.headers,
636
+ },
659
637
  });
660
638
  };
661
639
  exports.createAutomation = createAutomation;
662
640
  /**
663
641
  * List Automation Runs
664
642
  * ListAutomationRuns returns a list of all the Automation Runs for the given automation ID.
665
- *
666
643
  */
667
644
  const listAutomationRuns = (options) => {
668
645
  return (options.client ?? client_gen_js_1.client).get({
669
646
  security: [
670
647
  {
671
648
  scheme: 'bearer',
672
- type: 'http'
649
+ type: 'http',
673
650
  },
674
651
  {
675
652
  in: 'cookie',
676
653
  name: 'cookie',
677
- type: 'apiKey'
678
- }
654
+ type: 'apiKey',
655
+ },
679
656
  ],
680
657
  url: '/o/{organisation_id}/automations/{automation_id}/run',
681
- ...options
658
+ ...options,
682
659
  });
683
660
  };
684
661
  exports.listAutomationRuns = listAutomationRuns;
@@ -690,93 +667,90 @@ const runAutomation = (options) => {
690
667
  security: [
691
668
  {
692
669
  scheme: 'bearer',
693
- type: 'http'
670
+ type: 'http',
694
671
  },
695
672
  {
696
673
  in: 'cookie',
697
674
  name: 'cookie',
698
- type: 'apiKey'
699
- }
675
+ type: 'apiKey',
676
+ },
700
677
  ],
701
678
  url: '/o/{organisation_id}/automations/{automation_id}/run',
702
679
  ...options,
703
680
  headers: {
704
681
  'Content-Type': 'application/json',
705
- ...options.headers
706
- }
682
+ ...options.headers,
683
+ },
707
684
  });
708
685
  };
709
686
  exports.runAutomation = runAutomation;
710
687
  /**
711
688
  * Get an Automation by ID
712
689
  * GetAutomation returns the Automation for the given automation ID.
713
- *
714
690
  */
715
691
  const getAutomation = (options) => {
716
692
  return (options.client ?? client_gen_js_1.client).get({
717
693
  security: [
718
694
  {
719
695
  scheme: 'bearer',
720
- type: 'http'
696
+ type: 'http',
721
697
  },
722
698
  {
723
699
  in: 'cookie',
724
700
  name: 'cookie',
725
- type: 'apiKey'
726
- }
701
+ type: 'apiKey',
702
+ },
727
703
  ],
728
704
  url: '/o/{organisation_id}/automations/{automation_id}',
729
- ...options
705
+ ...options,
730
706
  });
731
707
  };
732
708
  exports.getAutomation = getAutomation;
733
709
  /**
734
710
  * Update an Automation
735
711
  * UpdateAutomation updates the name or prompt template of an existing automation.
736
- *
737
712
  */
738
713
  const updateAutomation = (options) => {
739
714
  return (options.client ?? client_gen_js_1.client).put({
740
715
  security: [
741
716
  {
742
717
  scheme: 'bearer',
743
- type: 'http'
718
+ type: 'http',
744
719
  },
745
720
  {
746
721
  in: 'cookie',
747
722
  name: 'cookie',
748
- type: 'apiKey'
749
- }
723
+ type: 'apiKey',
724
+ },
750
725
  ],
751
726
  url: '/o/{organisation_id}/automations/{automation_id}',
752
727
  ...options,
753
728
  headers: {
754
729
  'Content-Type': 'application/json',
755
- ...options.headers
756
- }
730
+ ...options.headers,
731
+ },
757
732
  });
758
733
  };
759
734
  exports.updateAutomation = updateAutomation;
760
735
  /**
761
736
  * List Recordings
762
737
  * ListRecordings returns a list of all the Recordings for the given automation ID.
763
- *
764
738
  */
765
739
  const listRecordings = (options) => {
766
740
  return (options.client ?? client_gen_js_1.client).get({
767
741
  security: [
768
742
  {
769
743
  scheme: 'bearer',
770
- type: 'http'
744
+ type: 'http',
771
745
  },
772
746
  {
773
747
  in: 'cookie',
774
748
  name: 'cookie',
775
- type: 'apiKey'
776
- }
749
+ type: 'apiKey',
750
+ },
777
751
  ],
778
752
  url: '/o/{organisation_id}/automations/{automation_id}/recordings',
779
- ...options
753
+ ...options,
780
754
  });
781
755
  };
782
756
  exports.listRecordings = listRecordings;
@@ -784,146 +758,140 @@ exports.listRecordings = listRecordings;
784
758
  * Create a recording for an automation
785
759
  * CreateRecording creates a recording for an automation.
786
760
  * The recording file is uploaded to the GCP bucket and the transcription is requested.
787
- *
788
761
  */
789
762
  const createRecording = (options) => {
790
763
  return (options.client ?? client_gen_js_1.client).post({
791
764
  security: [
792
765
  {
793
766
  scheme: 'bearer',
794
- type: 'http'
767
+ type: 'http',
795
768
  },
796
769
  {
797
770
  in: 'cookie',
798
771
  name: 'cookie',
799
- type: 'apiKey'
800
- }
772
+ type: 'apiKey',
773
+ },
801
774
  ],
802
775
  url: '/o/{organisation_id}/automations/{automation_id}/recordings',
803
776
  ...options,
804
777
  headers: {
805
778
  'Content-Type': 'application/json',
806
- ...options.headers
807
- }
779
+ ...options.headers,
780
+ },
808
781
  });
809
782
  };
810
783
  exports.createRecording = createRecording;
811
784
  /**
812
785
  * Get an Automation Run by ID
813
786
  * GetAutomationRun returns the Automation Run for the given run ID.
814
- *
815
787
  */
816
788
  const getAutomationRun = (options) => {
817
789
  return (options.client ?? client_gen_js_1.client).get({
818
790
  security: [
819
791
  {
820
792
  scheme: 'bearer',
821
- type: 'http'
793
+ type: 'http',
822
794
  },
823
795
  {
824
796
  in: 'cookie',
825
797
  name: 'cookie',
826
- type: 'apiKey'
827
- }
798
+ type: 'apiKey',
799
+ },
828
800
  ],
829
801
  url: '/o/{organisation_id}/automations/{automation_id}/runs/{run_id}',
830
- ...options
802
+ ...options,
831
803
  });
832
804
  };
833
805
  exports.getAutomationRun = getAutomationRun;
834
806
  /**
835
807
  * Get a recording by ID
836
808
  * GetRecording returns the recording for the given recording ID.
837
- *
838
809
  */
839
810
  const getRecording = (options) => {
840
811
  return (options.client ?? client_gen_js_1.client).get({
841
812
  security: [
842
813
  {
843
814
  scheme: 'bearer',
844
- type: 'http'
815
+ type: 'http',
845
816
  },
846
817
  {
847
818
  in: 'cookie',
848
819
  name: 'cookie',
849
- type: 'apiKey'
850
- }
820
+ type: 'apiKey',
821
+ },
851
822
  ],
852
823
  url: '/o/{organisation_id}/automations/{automation_id}/recordings/{recording_id}',
853
- ...options
824
+ ...options,
854
825
  });
855
826
  };
856
827
  exports.getRecording = getRecording;
857
828
  /**
858
829
  * Create a transcription for a recording
859
830
  * CreateTranscription creates a transcription for a recording.
860
- *
861
831
  */
862
832
  const createTranscription = (options) => {
863
833
  return (options.client ?? client_gen_js_1.client).post({
864
834
  security: [
865
835
  {
866
836
  scheme: 'bearer',
867
- type: 'http'
837
+ type: 'http',
868
838
  },
869
839
  {
870
840
  in: 'cookie',
871
841
  name: 'cookie',
872
- type: 'apiKey'
873
- }
842
+ type: 'apiKey',
843
+ },
874
844
  ],
875
845
  url: '/o/{organisation_id}/automations/{automation_id}/recordings/{recording_id}',
876
846
  ...options,
877
847
  headers: {
878
848
  'Content-Type': 'application/json',
879
- ...options.headers
880
- }
849
+ ...options.headers,
850
+ },
881
851
  });
882
852
  };
883
853
  exports.createTranscription = createTranscription;
884
854
  /**
885
855
  * List Schedulers
886
856
  * ListSchedulers returns a list of all the Schedulers for the given environment.
887
- *
888
857
  */
889
858
  const listSchedulers = (options) => {
890
859
  return (options.client ?? client_gen_js_1.client).get({
891
860
  security: [
892
861
  {
893
862
  scheme: 'bearer',
894
- type: 'http'
863
+ type: 'http',
895
864
  },
896
865
  {
897
866
  in: 'cookie',
898
867
  name: 'cookie',
899
- type: 'apiKey'
900
- }
868
+ type: 'apiKey',
869
+ },
901
870
  ],
902
871
  url: '/o/{organisation_id}/environments/{environment_id}/schedulers',
903
- ...options
872
+ ...options,
904
873
  });
905
874
  };
906
875
  exports.listSchedulers = listSchedulers;
907
876
  /**
908
877
  * Get a Scheduler by ID
909
878
  * GetScheduler returns the Scheduler for the given scheduler ID.
910
- *
911
879
  */
912
880
  const getScheduler = (options) => {
913
881
  return (options.client ?? client_gen_js_1.client).get({
914
882
  security: [
915
883
  {
916
884
  scheme: 'bearer',
917
- type: 'http'
885
+ type: 'http',
918
886
  },
919
887
  {
920
888
  in: 'cookie',
921
889
  name: 'cookie',
922
- type: 'apiKey'
923
- }
890
+ type: 'apiKey',
891
+ },
924
892
  ],
925
893
  url: '/o/{organisation_id}/environments/{environment_id}/schedulers/{scheduler_id}',
926
- ...options
894
+ ...options,
927
895
  });
928
896
  };
929
897
  exports.getScheduler = getScheduler;
@@ -931,92 +899,88 @@ exports.getScheduler = getScheduler;
931
899
  * Trigger a Scheduler once
932
900
  * TriggerScheduler triggers the Scheduler for the given scheduler ID once.
933
901
  * This is useful for testing or running a one-off task without waiting for the next scheduled run.
934
- *
935
902
  */
936
903
  const triggerScheduler = (options) => {
937
904
  return (options.client ?? client_gen_js_1.client).post({
938
905
  security: [
939
906
  {
940
907
  scheme: 'bearer',
941
- type: 'http'
908
+ type: 'http',
942
909
  },
943
910
  {
944
911
  in: 'cookie',
945
912
  name: 'cookie',
946
- type: 'apiKey'
947
- }
913
+ type: 'apiKey',
914
+ },
948
915
  ],
949
916
  url: '/o/{organisation_id}/environments/{environment_id}/schedulers/{scheduler_id}',
950
- ...options
917
+ ...options,
951
918
  });
952
919
  };
953
920
  exports.triggerScheduler = triggerScheduler;
954
921
  /**
955
922
  * List Activations
956
923
  * ListActivations returns a list of all the Activations for the given environment.
957
- *
958
924
  */
959
925
  const listActivations = (options) => {
960
926
  return (options.client ?? client_gen_js_1.client).get({
961
927
  security: [
962
928
  {
963
929
  scheme: 'bearer',
964
- type: 'http'
930
+ type: 'http',
965
931
  },
966
932
  {
967
933
  in: 'cookie',
968
934
  name: 'cookie',
969
- type: 'apiKey'
970
- }
935
+ type: 'apiKey',
936
+ },
971
937
  ],
972
938
  url: '/o/{organisation_id}/environments/{environment_id}/activations',
973
- ...options
939
+ ...options,
974
940
  });
975
941
  };
976
942
  exports.listActivations = listActivations;
977
943
  /**
978
944
  * Delete an Activation
979
945
  * DeleteActivation deletes the Activation for the given activation ID.
980
- *
981
946
  */
982
947
  const deleteActivation = (options) => {
983
948
  return (options.client ?? client_gen_js_1.client).delete({
984
949
  security: [
985
950
  {
986
951
  scheme: 'bearer',
987
- type: 'http'
952
+ type: 'http',
988
953
  },
989
954
  {
990
955
  in: 'cookie',
991
956
  name: 'cookie',
992
- type: 'apiKey'
993
- }
957
+ type: 'apiKey',
958
+ },
994
959
  ],
995
960
  url: '/o/{organisation_id}/environments/{environment_id}/activations/{activation_id}',
996
- ...options
961
+ ...options,
997
962
  });
998
963
  };
999
964
  exports.deleteActivation = deleteActivation;
1000
965
  /**
1001
966
  * Retrieve an Activation by ID
1002
967
  * GetActivation returns the Activation for the given activation ID.
1003
- *
1004
968
  */
1005
969
  const getActivation = (options) => {
1006
970
  return (options.client ?? client_gen_js_1.client).get({
1007
971
  security: [
1008
972
  {
1009
973
  scheme: 'bearer',
1010
- type: 'http'
974
+ type: 'http',
1011
975
  },
1012
976
  {
1013
977
  in: 'cookie',
1014
978
  name: 'cookie',
1015
- type: 'apiKey'
1016
- }
979
+ type: 'apiKey',
980
+ },
1017
981
  ],
1018
982
  url: '/o/{organisation_id}/environments/{environment_id}/activations/{activation_id}',
1019
- ...options
983
+ ...options,
1020
984
  });
1021
985
  };
1022
986
  exports.getActivation = getActivation;
@@ -1024,27 +988,26 @@ exports.getActivation = getActivation;
1024
988
  * Set static variables for the static activation
1025
989
  * Updates one or more static variables for the static user's activation for this environment.
1026
990
  * The request body will be validated against the variable schema.
1027
- *
1028
991
  */
1029
992
  const setStaticUserVariables = (options) => {
1030
993
  return (options.client ?? client_gen_js_1.client).patch({
1031
994
  security: [
1032
995
  {
1033
996
  scheme: 'bearer',
1034
- type: 'http'
997
+ type: 'http',
1035
998
  },
1036
999
  {
1037
1000
  in: 'cookie',
1038
1001
  name: 'cookie',
1039
- type: 'apiKey'
1040
- }
1002
+ type: 'apiKey',
1003
+ },
1041
1004
  ],
1042
1005
  url: '/o/{organisation_id}/environments/{environment_id}/variables',
1043
1006
  ...options,
1044
1007
  headers: {
1045
1008
  'Content-Type': 'application/json',
1046
- ...options.headers
1047
- }
1009
+ ...options.headers,
1010
+ },
1048
1011
  });
1049
1012
  };
1050
1013
  exports.setStaticUserVariables = setStaticUserVariables;
@@ -1056,20 +1019,20 @@ const updateEnvironmentConfig = (options) => {
1056
1019
  security: [
1057
1020
  {
1058
1021
  scheme: 'bearer',
1059
- type: 'http'
1022
+ type: 'http',
1060
1023
  },
1061
1024
  {
1062
1025
  in: 'cookie',
1063
1026
  name: 'cookie',
1064
- type: 'apiKey'
1065
- }
1027
+ type: 'apiKey',
1028
+ },
1066
1029
  ],
1067
1030
  url: '/o/{organisation_id}/environments/{environment_id}/config',
1068
1031
  ...options,
1069
1032
  headers: {
1070
1033
  'Content-Type': 'application/json',
1071
- ...options.headers
1072
- }
1034
+ ...options.headers,
1035
+ },
1073
1036
  });
1074
1037
  };
1075
1038
  exports.updateEnvironmentConfig = updateEnvironmentConfig;
@@ -1077,27 +1040,26 @@ exports.updateEnvironmentConfig = updateEnvironmentConfig;
1077
1040
  * Set dynamic variables for an activation
1078
1041
  * Updates one or more dynamic variables for the specified activation. The request body will
1079
1042
  * be validated against the variable schema.
1080
- *
1081
1043
  */
1082
1044
  const setDynamicVariables = (options) => {
1083
1045
  return (options.client ?? client_gen_js_1.client).patch({
1084
1046
  security: [
1085
1047
  {
1086
1048
  scheme: 'bearer',
1087
- type: 'http'
1049
+ type: 'http',
1088
1050
  },
1089
1051
  {
1090
1052
  in: 'cookie',
1091
1053
  name: 'cookie',
1092
- type: 'apiKey'
1093
- }
1054
+ type: 'apiKey',
1055
+ },
1094
1056
  ],
1095
1057
  url: '/o/{organisation_id}/environments/{environment_id}/activations/{activation_id}/variables',
1096
1058
  ...options,
1097
1059
  headers: {
1098
1060
  'Content-Type': 'application/json',
1099
- ...options.headers
1100
- }
1061
+ ...options.headers,
1062
+ },
1101
1063
  });
1102
1064
  };
1103
1065
  exports.setDynamicVariables = setDynamicVariables;
@@ -1106,96 +1068,92 @@ exports.setDynamicVariables = setDynamicVariables;
1106
1068
  * Updates a single dynamic variable identified by name for the specified activation.
1107
1069
  * This endpoint is designed to support the SDK's ability to update individual variables
1108
1070
  * with a friendly, descriptive API for error handling.
1109
- *
1110
1071
  */
1111
1072
  const setDynamicVariable = (options) => {
1112
1073
  return (options.client ?? client_gen_js_1.client).put({
1113
1074
  security: [
1114
1075
  {
1115
1076
  scheme: 'bearer',
1116
- type: 'http'
1077
+ type: 'http',
1117
1078
  },
1118
1079
  {
1119
1080
  in: 'cookie',
1120
1081
  name: 'cookie',
1121
- type: 'apiKey'
1122
- }
1082
+ type: 'apiKey',
1083
+ },
1123
1084
  ],
1124
1085
  url: '/o/{organisation_id}/environments/{environment_id}/activations/{activation_id}/variables/{variable_name}',
1125
1086
  ...options,
1126
1087
  headers: {
1127
1088
  'Content-Type': 'application/json',
1128
- ...options.headers
1129
- }
1089
+ ...options.headers,
1090
+ },
1130
1091
  });
1131
1092
  };
1132
1093
  exports.setDynamicVariable = setDynamicVariable;
1133
1094
  /**
1134
1095
  * List Activations for User
1135
1096
  * ListUserActivations returns an array of all activations for a specific user in a given environment.
1136
- *
1137
1097
  */
1138
1098
  const listUserActivations = (options) => {
1139
1099
  return (options.client ?? client_gen_js_1.client).get({
1140
1100
  security: [
1141
1101
  {
1142
1102
  scheme: 'bearer',
1143
- type: 'http'
1103
+ type: 'http',
1144
1104
  },
1145
1105
  {
1146
1106
  in: 'cookie',
1147
1107
  name: 'cookie',
1148
- type: 'apiKey'
1149
- }
1108
+ type: 'apiKey',
1109
+ },
1150
1110
  ],
1151
1111
  url: '/o/{organisation_id}/environment/{environment_id}/users/{external_user_id}/activations',
1152
- ...options
1112
+ ...options,
1153
1113
  });
1154
1114
  };
1155
1115
  exports.listUserActivations = listUserActivations;
1156
1116
  /**
1157
1117
  * Delete an End User
1158
1118
  * DeleteEndUser deletes the End User for the given user ID.
1159
- *
1160
1119
  */
1161
1120
  const deleteEndUser = (options) => {
1162
1121
  return (options.client ?? client_gen_js_1.client).delete({
1163
1122
  security: [
1164
1123
  {
1165
1124
  scheme: 'bearer',
1166
- type: 'http'
1125
+ type: 'http',
1167
1126
  },
1168
1127
  {
1169
1128
  in: 'cookie',
1170
1129
  name: 'cookie',
1171
- type: 'apiKey'
1172
- }
1130
+ type: 'apiKey',
1131
+ },
1173
1132
  ],
1174
1133
  url: '/o/{organisation_id}/users/{user_id}',
1175
- ...options
1134
+ ...options,
1176
1135
  });
1177
1136
  };
1178
1137
  exports.deleteEndUser = deleteEndUser;
1179
1138
  /**
1180
1139
  * Retrieve an End User
1181
1140
  * GetEndUser returns the End User for the given user ID.
1182
- *
1183
1141
  */
1184
1142
  const getEndUser = (options) => {
1185
1143
  return (options.client ?? client_gen_js_1.client).get({
1186
1144
  security: [
1187
1145
  {
1188
1146
  scheme: 'bearer',
1189
- type: 'http'
1147
+ type: 'http',
1190
1148
  },
1191
1149
  {
1192
1150
  in: 'cookie',
1193
1151
  name: 'cookie',
1194
- type: 'apiKey'
1195
- }
1152
+ type: 'apiKey',
1153
+ },
1196
1154
  ],
1197
1155
  url: '/o/{organisation_id}/users/{user_id}',
1198
- ...options
1156
+ ...options,
1199
1157
  });
1200
1158
  };
1201
1159
  exports.getEndUser = getEndUser;
@@ -1207,16 +1165,16 @@ const getActivationConnection = (options) => {
1207
1165
  security: [
1208
1166
  {
1209
1167
  scheme: 'bearer',
1210
- type: 'http'
1168
+ type: 'http',
1211
1169
  },
1212
1170
  {
1213
1171
  in: 'cookie',
1214
1172
  name: 'cookie',
1215
- type: 'apiKey'
1216
- }
1173
+ type: 'apiKey',
1174
+ },
1217
1175
  ],
1218
1176
  url: '/o/{organisation_id}/environment-systems/{env_system_id}/activations/{activation_id}',
1219
- ...options
1177
+ ...options,
1220
1178
  });
1221
1179
  };
1222
1180
  exports.getActivationConnection = getActivationConnection;
@@ -1228,16 +1186,16 @@ const listSystems = (options) => {
1228
1186
  security: [
1229
1187
  {
1230
1188
  scheme: 'bearer',
1231
- type: 'http'
1189
+ type: 'http',
1232
1190
  },
1233
1191
  {
1234
1192
  in: 'cookie',
1235
1193
  name: 'cookie',
1236
- type: 'apiKey'
1237
- }
1194
+ type: 'apiKey',
1195
+ },
1238
1196
  ],
1239
1197
  url: '/o/{organisation_id}/systems',
1240
- ...options
1198
+ ...options,
1241
1199
  });
1242
1200
  };
1243
1201
  exports.listSystems = listSystems;
@@ -1249,20 +1207,20 @@ const createSystem = (options) => {
1249
1207
  security: [
1250
1208
  {
1251
1209
  scheme: 'bearer',
1252
- type: 'http'
1210
+ type: 'http',
1253
1211
  },
1254
1212
  {
1255
1213
  in: 'cookie',
1256
1214
  name: 'cookie',
1257
- type: 'apiKey'
1258
- }
1215
+ type: 'apiKey',
1216
+ },
1259
1217
  ],
1260
1218
  url: '/o/{organisation_id}/systems',
1261
1219
  ...options,
1262
1220
  headers: {
1263
1221
  'Content-Type': 'application/json',
1264
- ...options.headers
1265
- }
1222
+ ...options.headers,
1223
+ },
1266
1224
  });
1267
1225
  };
1268
1226
  exports.createSystem = createSystem;
@@ -1274,16 +1232,16 @@ const getSystem = (options) => {
1274
1232
  security: [
1275
1233
  {
1276
1234
  scheme: 'bearer',
1277
- type: 'http'
1235
+ type: 'http',
1278
1236
  },
1279
1237
  {
1280
1238
  in: 'cookie',
1281
1239
  name: 'cookie',
1282
- type: 'apiKey'
1283
- }
1240
+ type: 'apiKey',
1241
+ },
1284
1242
  ],
1285
1243
  url: '/o/{organisation_id}/systems/{system_id}',
1286
- ...options
1244
+ ...options,
1287
1245
  });
1288
1246
  };
1289
1247
  exports.getSystem = getSystem;
@@ -1295,20 +1253,20 @@ const updateSystem = (options) => {
1295
1253
  security: [
1296
1254
  {
1297
1255
  scheme: 'bearer',
1298
- type: 'http'
1256
+ type: 'http',
1299
1257
  },
1300
1258
  {
1301
1259
  in: 'cookie',
1302
1260
  name: 'cookie',
1303
- type: 'apiKey'
1304
- }
1261
+ type: 'apiKey',
1262
+ },
1305
1263
  ],
1306
1264
  url: '/o/{organisation_id}/systems/{system_id}',
1307
1265
  ...options,
1308
1266
  headers: {
1309
1267
  'Content-Type': 'application/json',
1310
- ...options.headers
1311
- }
1268
+ ...options.headers,
1269
+ },
1312
1270
  });
1313
1271
  };
1314
1272
  exports.updateSystem = updateSystem;
@@ -1320,20 +1278,20 @@ const linkSystemActions = (options) => {
1320
1278
  security: [
1321
1279
  {
1322
1280
  scheme: 'bearer',
1323
- type: 'http'
1281
+ type: 'http',
1324
1282
  },
1325
1283
  {
1326
1284
  in: 'cookie',
1327
1285
  name: 'cookie',
1328
- type: 'apiKey'
1329
- }
1286
+ type: 'apiKey',
1287
+ },
1330
1288
  ],
1331
1289
  url: '/o/{organisation_id}/systems/{system_id}/projects/{project_id}/actions-link',
1332
1290
  ...options,
1333
1291
  headers: {
1334
1292
  'Content-Type': 'application/json',
1335
- ...options.headers
1336
- }
1293
+ ...options.headers,
1294
+ },
1337
1295
  });
1338
1296
  };
1339
1297
  exports.linkSystemActions = linkSystemActions;
@@ -1345,20 +1303,20 @@ const linkSystemTriggers = (options) => {
1345
1303
  security: [
1346
1304
  {
1347
1305
  scheme: 'bearer',
1348
- type: 'http'
1306
+ type: 'http',
1349
1307
  },
1350
1308
  {
1351
1309
  in: 'cookie',
1352
1310
  name: 'cookie',
1353
- type: 'apiKey'
1354
- }
1311
+ type: 'apiKey',
1312
+ },
1355
1313
  ],
1356
1314
  url: '/o/{organisation_id}/systems/{system_id}/projects/{project_id}/triggers-link',
1357
1315
  ...options,
1358
1316
  headers: {
1359
1317
  'Content-Type': 'application/json',
1360
- ...options.headers
1361
- }
1318
+ ...options.headers,
1319
+ },
1362
1320
  });
1363
1321
  };
1364
1322
  exports.linkSystemTriggers = linkSystemTriggers;
@@ -1367,23 +1325,22 @@ exports.linkSystemTriggers = linkSystemTriggers;
1367
1325
  * ListSystemActions returns a list of all the actions for the given system.
1368
1326
  * If the `project_id` query parameter is provided, this endpoint will only return actions that are being used
1369
1327
  * in that project.
1370
- *
1371
1328
  */
1372
1329
  const listSystemActions = (options) => {
1373
1330
  return (options.client ?? client_gen_js_1.client).get({
1374
1331
  security: [
1375
1332
  {
1376
1333
  scheme: 'bearer',
1377
- type: 'http'
1334
+ type: 'http',
1378
1335
  },
1379
1336
  {
1380
1337
  in: 'cookie',
1381
1338
  name: 'cookie',
1382
- type: 'apiKey'
1383
- }
1339
+ type: 'apiKey',
1340
+ },
1384
1341
  ],
1385
1342
  url: '/o/{organisation_id}/systems/{system_id}/actions',
1386
- ...options
1343
+ ...options,
1387
1344
  });
1388
1345
  };
1389
1346
  exports.listSystemActions = listSystemActions;
@@ -1391,100 +1348,96 @@ exports.listSystemActions = listSystemActions;
1391
1348
  * Create new actions for a system.
1392
1349
  * Create new actions for a system. If the project ID parameter is provided in the request body, these actions
1393
1350
  * will also be linked with that project.
1394
- *
1395
1351
  */
1396
1352
  const createSystemActions = (options) => {
1397
1353
  return (options.client ?? client_gen_js_1.client).post({
1398
1354
  security: [
1399
1355
  {
1400
1356
  scheme: 'bearer',
1401
- type: 'http'
1357
+ type: 'http',
1402
1358
  },
1403
1359
  {
1404
1360
  in: 'cookie',
1405
1361
  name: 'cookie',
1406
- type: 'apiKey'
1407
- }
1362
+ type: 'apiKey',
1363
+ },
1408
1364
  ],
1409
1365
  url: '/o/{organisation_id}/systems/{system_id}/actions',
1410
1366
  ...options,
1411
1367
  headers: {
1412
1368
  'Content-Type': 'application/json',
1413
- ...options.headers
1414
- }
1369
+ ...options.headers,
1370
+ },
1415
1371
  });
1416
1372
  };
1417
1373
  exports.createSystemActions = createSystemActions;
1418
1374
  /**
1419
1375
  * Delete an action for a system.
1420
1376
  * DeleteSystemAction deletes a single action for the given system.
1421
- *
1422
1377
  */
1423
1378
  const deleteSystemAction = (options) => {
1424
1379
  return (options.client ?? client_gen_js_1.client).delete({
1425
1380
  security: [
1426
1381
  {
1427
1382
  scheme: 'bearer',
1428
- type: 'http'
1383
+ type: 'http',
1429
1384
  },
1430
1385
  {
1431
1386
  in: 'cookie',
1432
1387
  name: 'cookie',
1433
- type: 'apiKey'
1434
- }
1388
+ type: 'apiKey',
1389
+ },
1435
1390
  ],
1436
1391
  url: '/o/{organisation_id}/systems/{system_id}/actions/{action_id}',
1437
- ...options
1392
+ ...options,
1438
1393
  });
1439
1394
  };
1440
1395
  exports.deleteSystemAction = deleteSystemAction;
1441
1396
  /**
1442
1397
  * Get an action for a system.
1443
1398
  * GetSystemAction returns a single action for the given system.
1444
- *
1445
1399
  */
1446
1400
  const getSystemAction = (options) => {
1447
1401
  return (options.client ?? client_gen_js_1.client).get({
1448
1402
  security: [
1449
1403
  {
1450
1404
  scheme: 'bearer',
1451
- type: 'http'
1405
+ type: 'http',
1452
1406
  },
1453
1407
  {
1454
1408
  in: 'cookie',
1455
1409
  name: 'cookie',
1456
- type: 'apiKey'
1457
- }
1410
+ type: 'apiKey',
1411
+ },
1458
1412
  ],
1459
1413
  url: '/o/{organisation_id}/systems/{system_id}/actions/{action_id}',
1460
- ...options
1414
+ ...options,
1461
1415
  });
1462
1416
  };
1463
1417
  exports.getSystemAction = getSystemAction;
1464
1418
  /**
1465
1419
  * Update an action for a system.
1466
1420
  * UpdateSystemAction updates a single action for the given system.
1467
- *
1468
1421
  */
1469
1422
  const updateSystemAction = (options) => {
1470
1423
  return (options.client ?? client_gen_js_1.client).put({
1471
1424
  security: [
1472
1425
  {
1473
1426
  scheme: 'bearer',
1474
- type: 'http'
1427
+ type: 'http',
1475
1428
  },
1476
1429
  {
1477
1430
  in: 'cookie',
1478
1431
  name: 'cookie',
1479
- type: 'apiKey'
1480
- }
1432
+ type: 'apiKey',
1433
+ },
1481
1434
  ],
1482
1435
  url: '/o/{organisation_id}/systems/{system_id}/actions/{action_id}',
1483
1436
  ...options,
1484
1437
  headers: {
1485
1438
  'Content-Type': 'application/json',
1486
- ...options.headers
1487
- }
1439
+ ...options.headers,
1440
+ },
1488
1441
  });
1489
1442
  };
1490
1443
  exports.updateSystemAction = updateSystemAction;
@@ -1493,23 +1446,22 @@ exports.updateSystemAction = updateSystemAction;
1493
1446
  * ListSystemTriggers returns a list of all the triggers for the given system.
1494
1447
  * If the `project_id` query parameter is provided, this endpoint will only return triggers that are being used
1495
1448
  * in that project.
1496
- *
1497
1449
  */
1498
1450
  const listSystemTriggers = (options) => {
1499
1451
  return (options.client ?? client_gen_js_1.client).get({
1500
1452
  security: [
1501
1453
  {
1502
1454
  scheme: 'bearer',
1503
- type: 'http'
1455
+ type: 'http',
1504
1456
  },
1505
1457
  {
1506
1458
  in: 'cookie',
1507
1459
  name: 'cookie',
1508
- type: 'apiKey'
1509
- }
1460
+ type: 'apiKey',
1461
+ },
1510
1462
  ],
1511
1463
  url: '/o/{organisation_id}/systems/{system_id}/triggers',
1512
- ...options
1464
+ ...options,
1513
1465
  });
1514
1466
  };
1515
1467
  exports.listSystemTriggers = listSystemTriggers;
@@ -1517,27 +1469,26 @@ exports.listSystemTriggers = listSystemTriggers;
1517
1469
  * Create new triggers for a system.
1518
1470
  * Create new triggers for a system. If the project ID parameter is provided in the request body, these triggers
1519
1471
  * will also be linked with that project.
1520
- *
1521
1472
  */
1522
1473
  const createSystemTriggers = (options) => {
1523
1474
  return (options.client ?? client_gen_js_1.client).post({
1524
1475
  security: [
1525
1476
  {
1526
1477
  scheme: 'bearer',
1527
- type: 'http'
1478
+ type: 'http',
1528
1479
  },
1529
1480
  {
1530
1481
  in: 'cookie',
1531
1482
  name: 'cookie',
1532
- type: 'apiKey'
1533
- }
1483
+ type: 'apiKey',
1484
+ },
1534
1485
  ],
1535
1486
  url: '/o/{organisation_id}/systems/{system_id}/triggers',
1536
1487
  ...options,
1537
1488
  headers: {
1538
1489
  'Content-Type': 'application/json',
1539
- ...options.headers
1540
- }
1490
+ ...options.headers,
1491
+ },
1541
1492
  });
1542
1493
  };
1543
1494
  exports.createSystemTriggers = createSystemTriggers;
@@ -1549,16 +1500,16 @@ const deleteAuthSchemeConfig = (options) => {
1549
1500
  security: [
1550
1501
  {
1551
1502
  scheme: 'bearer',
1552
- type: 'http'
1503
+ type: 'http',
1553
1504
  },
1554
1505
  {
1555
1506
  in: 'cookie',
1556
1507
  name: 'cookie',
1557
- type: 'apiKey'
1558
- }
1508
+ type: 'apiKey',
1509
+ },
1559
1510
  ],
1560
1511
  url: '/o/{organisation_id}/systems/{system_id}/auth-scheme-configs/{auth_scheme_config_id}',
1561
- ...options
1512
+ ...options,
1562
1513
  });
1563
1514
  };
1564
1515
  exports.deleteAuthSchemeConfig = deleteAuthSchemeConfig;
@@ -1568,50 +1519,48 @@ exports.deleteAuthSchemeConfig = deleteAuthSchemeConfig;
1568
1519
  * If the auth scheme ID provided doesn't match any of the record, it will be created.
1569
1520
  * If the auth scheme ID provided matches an existing record, it will be updated.
1570
1521
  * The ID in the path needs to match the ID in the body.
1571
- *
1572
1522
  */
1573
1523
  const upsertAuthSchemeConfig = (options) => {
1574
1524
  return (options.client ?? client_gen_js_1.client).put({
1575
1525
  security: [
1576
1526
  {
1577
1527
  scheme: 'bearer',
1578
- type: 'http'
1528
+ type: 'http',
1579
1529
  },
1580
1530
  {
1581
1531
  in: 'cookie',
1582
1532
  name: 'cookie',
1583
- type: 'apiKey'
1584
- }
1533
+ type: 'apiKey',
1534
+ },
1585
1535
  ],
1586
1536
  url: '/o/{organisation_id}/systems/{system_id}/auth-scheme-configs/{auth_scheme_config_id}',
1587
1537
  ...options,
1588
1538
  headers: {
1589
1539
  'Content-Type': 'application/json',
1590
- ...options.headers
1591
- }
1540
+ ...options.headers,
1541
+ },
1592
1542
  });
1593
1543
  };
1594
1544
  exports.upsertAuthSchemeConfig = upsertAuthSchemeConfig;
1595
1545
  /**
1596
1546
  * List static connections for project environment
1597
1547
  * Lists all static connections (connections without end users) for a given environment.
1598
- *
1599
1548
  */
1600
1549
  const listEnvironmentConnections = (options) => {
1601
1550
  return (options.client ?? client_gen_js_1.client).get({
1602
1551
  security: [
1603
1552
  {
1604
1553
  scheme: 'bearer',
1605
- type: 'http'
1554
+ type: 'http',
1606
1555
  },
1607
1556
  {
1608
1557
  in: 'cookie',
1609
1558
  name: 'cookie',
1610
- type: 'apiKey'
1611
- }
1559
+ type: 'apiKey',
1560
+ },
1612
1561
  ],
1613
1562
  url: '/o/{organisation_id}/projects/{project_id}/connections',
1614
- ...options
1563
+ ...options,
1615
1564
  });
1616
1565
  };
1617
1566
  exports.listEnvironmentConnections = listEnvironmentConnections;
@@ -1623,16 +1572,16 @@ const listProjectConnectionTemplates = (options) => {
1623
1572
  security: [
1624
1573
  {
1625
1574
  scheme: 'bearer',
1626
- type: 'http'
1575
+ type: 'http',
1627
1576
  },
1628
1577
  {
1629
1578
  in: 'cookie',
1630
1579
  name: 'cookie',
1631
- type: 'apiKey'
1632
- }
1580
+ type: 'apiKey',
1581
+ },
1633
1582
  ],
1634
1583
  url: '/o/{organisation_id}/projects/{project_id}/connection-templates',
1635
- ...options
1584
+ ...options,
1636
1585
  });
1637
1586
  };
1638
1587
  exports.listProjectConnectionTemplates = listProjectConnectionTemplates;
@@ -1644,20 +1593,20 @@ const createConnectionTemplate = (options) => {
1644
1593
  security: [
1645
1594
  {
1646
1595
  scheme: 'bearer',
1647
- type: 'http'
1596
+ type: 'http',
1648
1597
  },
1649
1598
  {
1650
1599
  in: 'cookie',
1651
1600
  name: 'cookie',
1652
- type: 'apiKey'
1653
- }
1601
+ type: 'apiKey',
1602
+ },
1654
1603
  ],
1655
1604
  url: '/o/{organisation_id}/projects/{project_id}/connection-templates',
1656
1605
  ...options,
1657
1606
  headers: {
1658
1607
  'Content-Type': 'application/json',
1659
- ...options.headers
1660
- }
1608
+ ...options.headers,
1609
+ },
1661
1610
  });
1662
1611
  };
1663
1612
  exports.createConnectionTemplate = createConnectionTemplate;
@@ -1669,16 +1618,16 @@ const deleteConnectionTemplate = (options) => {
1669
1618
  security: [
1670
1619
  {
1671
1620
  scheme: 'bearer',
1672
- type: 'http'
1621
+ type: 'http',
1673
1622
  },
1674
1623
  {
1675
1624
  in: 'cookie',
1676
1625
  name: 'cookie',
1677
- type: 'apiKey'
1678
- }
1626
+ type: 'apiKey',
1627
+ },
1679
1628
  ],
1680
1629
  url: '/o/{organisation_id}/projects/{project_id}/connection-templates/{template_id}',
1681
- ...options
1630
+ ...options,
1682
1631
  });
1683
1632
  };
1684
1633
  exports.deleteConnectionTemplate = deleteConnectionTemplate;
@@ -1690,20 +1639,20 @@ const updateConnectionTemplate = (options) => {
1690
1639
  security: [
1691
1640
  {
1692
1641
  scheme: 'bearer',
1693
- type: 'http'
1642
+ type: 'http',
1694
1643
  },
1695
1644
  {
1696
1645
  in: 'cookie',
1697
1646
  name: 'cookie',
1698
- type: 'apiKey'
1699
- }
1647
+ type: 'apiKey',
1648
+ },
1700
1649
  ],
1701
1650
  url: '/o/{organisation_id}/projects/{project_id}/connection-templates/{template_id}',
1702
1651
  ...options,
1703
1652
  headers: {
1704
1653
  'Content-Type': 'application/json',
1705
- ...options.headers
1706
- }
1654
+ ...options.headers,
1655
+ },
1707
1656
  });
1708
1657
  };
1709
1658
  exports.updateConnectionTemplate = updateConnectionTemplate;
@@ -1731,54 +1680,52 @@ exports.updateConnectionTemplate = updateConnectionTemplate;
1731
1680
  *
1732
1681
  * Full details on the standard parameters can be found in the OIDC Core specification:
1733
1682
  * https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
1734
- *
1735
1683
  */
1736
1684
  const initialiseOAuth2Connection = (options) => {
1737
1685
  return (options.client ?? client_gen_js_1.client).post({
1738
1686
  security: [
1739
1687
  {
1740
1688
  scheme: 'bearer',
1741
- type: 'http'
1689
+ type: 'http',
1742
1690
  },
1743
1691
  {
1744
1692
  in: 'cookie',
1745
1693
  name: 'cookie',
1746
- type: 'apiKey'
1747
- }
1694
+ type: 'apiKey',
1695
+ },
1748
1696
  ],
1749
1697
  url: '/o/{organisation_id}/systems/{system_id}/oauth2/initialise',
1750
1698
  ...options,
1751
1699
  headers: {
1752
1700
  'Content-Type': 'application/json',
1753
- ...options.headers
1754
- }
1701
+ ...options.headers,
1702
+ },
1755
1703
  });
1756
1704
  };
1757
1705
  exports.initialiseOAuth2Connection = initialiseOAuth2Connection;
1758
1706
  /**
1759
1707
  * Initialise OAuth 1.0 Connection
1760
1708
  * InitialiseOAuth1Connection returns a URL to redirect the user to an OAuth 1.0 Provider's Authorize endpoint.
1761
- *
1762
1709
  */
1763
1710
  const initialiseOAuth1Connection = (options) => {
1764
1711
  return (options.client ?? client_gen_js_1.client).post({
1765
1712
  security: [
1766
1713
  {
1767
1714
  scheme: 'bearer',
1768
- type: 'http'
1715
+ type: 'http',
1769
1716
  },
1770
1717
  {
1771
1718
  in: 'cookie',
1772
1719
  name: 'cookie',
1773
- type: 'apiKey'
1774
- }
1720
+ type: 'apiKey',
1721
+ },
1775
1722
  ],
1776
1723
  url: '/o/{organisation_id}/systems/{system_id}/oauth1/initialise',
1777
1724
  ...options,
1778
1725
  headers: {
1779
1726
  'Content-Type': 'application/json',
1780
- ...options.headers
1781
- }
1727
+ ...options.headers,
1728
+ },
1782
1729
  });
1783
1730
  };
1784
1731
  exports.initialiseOAuth1Connection = initialiseOAuth1Connection;
@@ -1787,23 +1734,22 @@ exports.initialiseOAuth1Connection = initialiseOAuth1Connection;
1787
1734
  * ListIssues returns a list of all the Issues for the given organisation.
1788
1735
  * The issues can be filtered by status, assignee, and other parameters.
1789
1736
  * Before and After query parameters refer to the createdAt timestamp of the issue.
1790
- *
1791
1737
  */
1792
1738
  const listIssues = (options) => {
1793
1739
  return (options.client ?? client_gen_js_1.client).get({
1794
1740
  security: [
1795
1741
  {
1796
1742
  scheme: 'bearer',
1797
- type: 'http'
1743
+ type: 'http',
1798
1744
  },
1799
1745
  {
1800
1746
  in: 'cookie',
1801
1747
  name: 'cookie',
1802
- type: 'apiKey'
1803
- }
1748
+ type: 'apiKey',
1749
+ },
1804
1750
  ],
1805
1751
  url: '/o/{organisation_id}/issues',
1806
- ...options
1752
+ ...options,
1807
1753
  });
1808
1754
  };
1809
1755
  exports.listIssues = listIssues;
@@ -1815,47 +1761,46 @@ const createIssue = (options) => {
1815
1761
  security: [
1816
1762
  {
1817
1763
  scheme: 'bearer',
1818
- type: 'http'
1764
+ type: 'http',
1819
1765
  },
1820
1766
  {
1821
1767
  in: 'cookie',
1822
1768
  name: 'cookie',
1823
- type: 'apiKey'
1824
- }
1769
+ type: 'apiKey',
1770
+ },
1825
1771
  ],
1826
1772
  url: '/o/{organisation_id}/issues',
1827
1773
  ...options,
1828
1774
  headers: {
1829
1775
  'Content-Type': 'application/json',
1830
- ...options.headers
1831
- }
1776
+ ...options.headers,
1777
+ },
1832
1778
  });
1833
1779
  };
1834
1780
  exports.createIssue = createIssue;
1835
1781
  /**
1836
1782
  * Update an Issue
1837
1783
  * UpdateIssue updates the editable fields of an issue. Any fields not provided in the request body will not be changed.
1838
- *
1839
1784
  */
1840
1785
  const updateIssue = (options) => {
1841
1786
  return (options.client ?? client_gen_js_1.client).patch({
1842
1787
  security: [
1843
1788
  {
1844
1789
  scheme: 'bearer',
1845
- type: 'http'
1790
+ type: 'http',
1846
1791
  },
1847
1792
  {
1848
1793
  in: 'cookie',
1849
1794
  name: 'cookie',
1850
- type: 'apiKey'
1851
- }
1795
+ type: 'apiKey',
1796
+ },
1852
1797
  ],
1853
1798
  url: '/o/{organisation_id}/issues/{issue_id}',
1854
1799
  ...options,
1855
1800
  headers: {
1856
1801
  'Content-Type': 'application/json',
1857
- ...options.headers
1858
- }
1802
+ ...options.headers,
1803
+ },
1859
1804
  });
1860
1805
  };
1861
1806
  exports.updateIssue = updateIssue;
@@ -1867,16 +1812,16 @@ const listNotificationChannels = (options) => {
1867
1812
  security: [
1868
1813
  {
1869
1814
  scheme: 'bearer',
1870
- type: 'http'
1815
+ type: 'http',
1871
1816
  },
1872
1817
  {
1873
1818
  in: 'cookie',
1874
1819
  name: 'cookie',
1875
- type: 'apiKey'
1876
- }
1820
+ type: 'apiKey',
1821
+ },
1877
1822
  ],
1878
1823
  url: '/o/{organisation_id}/notification_channels',
1879
- ...options
1824
+ ...options,
1880
1825
  });
1881
1826
  };
1882
1827
  exports.listNotificationChannels = listNotificationChannels;
@@ -1885,20 +1830,20 @@ const createNotificationChannel = (options) => {
1885
1830
  security: [
1886
1831
  {
1887
1832
  scheme: 'bearer',
1888
- type: 'http'
1833
+ type: 'http',
1889
1834
  },
1890
1835
  {
1891
1836
  in: 'cookie',
1892
1837
  name: 'cookie',
1893
- type: 'apiKey'
1894
- }
1838
+ type: 'apiKey',
1839
+ },
1895
1840
  ],
1896
1841
  url: '/o/{organisation_id}/notification_channels',
1897
1842
  ...options,
1898
1843
  headers: {
1899
1844
  'Content-Type': 'application/json',
1900
- ...options.headers
1901
- }
1845
+ ...options.headers,
1846
+ },
1902
1847
  });
1903
1848
  };
1904
1849
  exports.createNotificationChannel = createNotificationChannel;
@@ -1910,16 +1855,16 @@ const deleteNotificationChannel = (options) => {
1910
1855
  security: [
1911
1856
  {
1912
1857
  scheme: 'bearer',
1913
- type: 'http'
1858
+ type: 'http',
1914
1859
  },
1915
1860
  {
1916
1861
  in: 'cookie',
1917
1862
  name: 'cookie',
1918
- type: 'apiKey'
1919
- }
1863
+ type: 'apiKey',
1864
+ },
1920
1865
  ],
1921
1866
  url: '/o/{organisation_id}/notification_channels/{channel_id}',
1922
- ...options
1867
+ ...options,
1923
1868
  });
1924
1869
  };
1925
1870
  exports.deleteNotificationChannel = deleteNotificationChannel;
@@ -1931,16 +1876,16 @@ const listProjectNotifications = (options) => {
1931
1876
  security: [
1932
1877
  {
1933
1878
  scheme: 'bearer',
1934
- type: 'http'
1879
+ type: 'http',
1935
1880
  },
1936
1881
  {
1937
1882
  in: 'cookie',
1938
1883
  name: 'cookie',
1939
- type: 'apiKey'
1940
- }
1884
+ type: 'apiKey',
1885
+ },
1941
1886
  ],
1942
1887
  url: '/projects/{project_id}/notifications',
1943
- ...options
1888
+ ...options,
1944
1889
  });
1945
1890
  };
1946
1891
  exports.listProjectNotifications = listProjectNotifications;
@@ -1952,20 +1897,20 @@ const createProjectNotification = (options) => {
1952
1897
  security: [
1953
1898
  {
1954
1899
  scheme: 'bearer',
1955
- type: 'http'
1900
+ type: 'http',
1956
1901
  },
1957
1902
  {
1958
1903
  in: 'cookie',
1959
1904
  name: 'cookie',
1960
- type: 'apiKey'
1961
- }
1905
+ type: 'apiKey',
1906
+ },
1962
1907
  ],
1963
1908
  url: '/projects/{project_id}/notifications',
1964
1909
  ...options,
1965
1910
  headers: {
1966
1911
  'Content-Type': 'application/json',
1967
- ...options.headers
1968
- }
1912
+ ...options.headers,
1913
+ },
1969
1914
  });
1970
1915
  };
1971
1916
  exports.createProjectNotification = createProjectNotification;
@@ -1977,16 +1922,16 @@ const deleteProjectNotification = (options) => {
1977
1922
  security: [
1978
1923
  {
1979
1924
  scheme: 'bearer',
1980
- type: 'http'
1925
+ type: 'http',
1981
1926
  },
1982
1927
  {
1983
1928
  in: 'cookie',
1984
1929
  name: 'cookie',
1985
- type: 'apiKey'
1986
- }
1930
+ type: 'apiKey',
1931
+ },
1987
1932
  ],
1988
1933
  url: '/projects/{project_id}/notifications/{notification_id}',
1989
- ...options
1934
+ ...options,
1990
1935
  });
1991
1936
  };
1992
1937
  exports.deleteProjectNotification = deleteProjectNotification;