vellum-ai 0.14.22 → 0.14.24

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 (546) hide show
  1. package/Client.js +11 -11
  2. package/api/resources/adHoc/client/Client.js +1 -1
  3. package/api/resources/containerImages/client/Client.js +4 -4
  4. package/api/resources/deployments/client/Client.js +7 -7
  5. package/api/resources/documentIndexes/client/Client.js +8 -8
  6. package/api/resources/documents/client/Client.js +5 -5
  7. package/api/resources/folderEntities/client/Client.js +2 -2
  8. package/api/resources/metricDefinitions/client/Client.js +2 -2
  9. package/api/resources/mlModels/client/Client.js +1 -1
  10. package/api/resources/organizations/client/Client.js +1 -1
  11. package/api/resources/sandboxes/client/Client.js +3 -3
  12. package/api/resources/testSuiteRuns/client/Client.js +3 -3
  13. package/api/resources/testSuites/client/Client.js +4 -4
  14. package/api/resources/workflowDeployments/client/Client.d.ts +18 -0
  15. package/api/resources/workflowDeployments/client/Client.js +120 -6
  16. package/api/resources/workflowDeployments/client/requests/ListWorkflowDeploymentEventExecutionsRequest.d.ts +18 -0
  17. package/api/resources/workflowDeployments/client/requests/ListWorkflowDeploymentEventExecutionsRequest.js +5 -0
  18. package/api/resources/workflowDeployments/client/requests/index.d.ts +1 -0
  19. package/api/resources/workflowSandboxes/client/Client.js +2 -2
  20. package/api/resources/workflows/client/Client.js +2 -2
  21. package/api/resources/workspaceSecrets/client/Client.js +2 -2
  22. package/api/resources/workspaces/client/Client.js +1 -1
  23. package/api/types/ApiRequestParentContext.d.ts +10 -0
  24. package/api/types/ApiRequestParentContext.js +5 -0
  25. package/api/types/ApiVersionEnum.d.ts +7 -0
  26. package/api/types/ApiVersionEnum.js +5 -0
  27. package/api/types/BaseOutput.d.ts +8 -0
  28. package/api/types/BaseOutput.js +5 -0
  29. package/api/types/CodeResourceDefinition.d.ts +12 -0
  30. package/api/types/CodeResourceDefinition.js +5 -0
  31. package/api/types/ExternalInputDescriptor.d.ts +10 -0
  32. package/api/types/ExternalInputDescriptor.js +5 -0
  33. package/api/types/InvokedPort.d.ts +6 -0
  34. package/api/types/InvokedPort.js +5 -0
  35. package/api/types/MlModelUsageWrapper.d.ts +8 -0
  36. package/api/types/MlModelUsageWrapper.js +5 -0
  37. package/api/types/NodeEventDisplayContext.d.ts +10 -0
  38. package/api/types/NodeEventDisplayContext.js +5 -0
  39. package/api/types/NodeExecutionFulfilledBody.d.ts +10 -0
  40. package/api/types/NodeExecutionFulfilledBody.js +5 -0
  41. package/api/types/NodeExecutionFulfilledEvent.d.ts +15 -0
  42. package/api/types/NodeExecutionFulfilledEvent.js +5 -0
  43. package/api/types/NodeExecutionInitiatedBody.d.ts +8 -0
  44. package/api/types/NodeExecutionInitiatedBody.js +5 -0
  45. package/api/types/NodeExecutionInitiatedEvent.d.ts +15 -0
  46. package/api/types/NodeExecutionInitiatedEvent.js +5 -0
  47. package/api/types/NodeExecutionPausedBody.d.ts +7 -0
  48. package/api/types/NodeExecutionPausedBody.js +5 -0
  49. package/api/types/NodeExecutionPausedEvent.d.ts +15 -0
  50. package/api/types/NodeExecutionPausedEvent.js +5 -0
  51. package/api/types/NodeExecutionRejectedBody.d.ts +8 -0
  52. package/api/types/NodeExecutionRejectedBody.js +5 -0
  53. package/api/types/NodeExecutionRejectedEvent.d.ts +15 -0
  54. package/api/types/NodeExecutionRejectedEvent.js +5 -0
  55. package/api/types/NodeExecutionResumedBody.d.ts +7 -0
  56. package/api/types/NodeExecutionResumedBody.js +5 -0
  57. package/api/types/NodeExecutionResumedEvent.d.ts +15 -0
  58. package/api/types/NodeExecutionResumedEvent.js +5 -0
  59. package/api/types/NodeExecutionSpan.d.ts +13 -0
  60. package/api/types/NodeExecutionSpan.js +5 -0
  61. package/api/types/NodeExecutionSpanAttributes.d.ts +6 -0
  62. package/api/types/NodeExecutionSpanAttributes.js +5 -0
  63. package/api/types/NodeExecutionStreamingBody.d.ts +8 -0
  64. package/api/types/NodeExecutionStreamingBody.js +5 -0
  65. package/api/types/NodeExecutionStreamingEvent.d.ts +15 -0
  66. package/api/types/NodeExecutionStreamingEvent.js +5 -0
  67. package/api/types/NodeParentContext.d.ts +11 -0
  68. package/api/types/NodeParentContext.js +5 -0
  69. package/api/types/ParentContext.d.ts +5 -0
  70. package/api/types/ParentContext.js +5 -0
  71. package/api/types/PromptDeploymentParentContext.d.ts +18 -0
  72. package/api/types/PromptDeploymentParentContext.js +5 -0
  73. package/api/types/SlimWorkflowExecutionRead.d.ts +16 -0
  74. package/api/types/SlimWorkflowExecutionRead.js +5 -0
  75. package/api/types/SpanLink.d.ts +9 -0
  76. package/api/types/SpanLink.js +5 -0
  77. package/api/types/SpanLinkTypeEnum.d.ts +7 -0
  78. package/api/types/SpanLinkTypeEnum.js +5 -0
  79. package/api/types/VellumCodeResourceDefinition.d.ts +9 -0
  80. package/api/types/VellumCodeResourceDefinition.js +5 -0
  81. package/api/types/VellumNodeExecutionEvent.d.ts +5 -0
  82. package/api/types/VellumNodeExecutionEvent.js +5 -0
  83. package/api/types/VellumSdkError.d.ts +8 -0
  84. package/api/types/VellumSdkError.js +5 -0
  85. package/api/types/VellumSdkErrorCodeEnum.d.ts +30 -0
  86. package/api/types/VellumSdkErrorCodeEnum.js +19 -0
  87. package/api/types/VellumSpan.d.ts +5 -0
  88. package/api/types/VellumSpan.js +5 -0
  89. package/api/types/VellumWorkflowExecutionEvent.d.ts +5 -0
  90. package/api/types/VellumWorkflowExecutionEvent.js +5 -0
  91. package/api/types/WorkflowDeploymentEventExecutionsResponse.d.ts +8 -0
  92. package/api/types/WorkflowDeploymentEventExecutionsResponse.js +5 -0
  93. package/api/types/WorkflowDeploymentParentContext.d.ts +18 -0
  94. package/api/types/WorkflowDeploymentParentContext.js +5 -0
  95. package/api/types/WorkflowError.d.ts +5 -0
  96. package/api/types/WorkflowError.js +5 -0
  97. package/api/types/WorkflowEventDisplayContext.d.ts +9 -0
  98. package/api/types/WorkflowEventDisplayContext.js +5 -0
  99. package/api/types/WorkflowEventExecutionRead.d.ts +17 -0
  100. package/api/types/WorkflowEventExecutionRead.js +5 -0
  101. package/api/types/WorkflowExecutionActual.d.ts +10 -0
  102. package/api/types/WorkflowExecutionActual.js +5 -0
  103. package/api/types/WorkflowExecutionFulfilledBody.d.ts +8 -0
  104. package/api/types/WorkflowExecutionFulfilledBody.js +5 -0
  105. package/api/types/WorkflowExecutionFulfilledEvent.d.ts +15 -0
  106. package/api/types/WorkflowExecutionFulfilledEvent.js +5 -0
  107. package/api/types/WorkflowExecutionInitiatedBody.d.ts +9 -0
  108. package/api/types/WorkflowExecutionInitiatedBody.js +5 -0
  109. package/api/types/WorkflowExecutionInitiatedEvent.d.ts +15 -0
  110. package/api/types/WorkflowExecutionInitiatedEvent.js +5 -0
  111. package/api/types/WorkflowExecutionPausedBody.d.ts +8 -0
  112. package/api/types/WorkflowExecutionPausedBody.js +5 -0
  113. package/api/types/WorkflowExecutionPausedEvent.d.ts +15 -0
  114. package/api/types/WorkflowExecutionPausedEvent.js +5 -0
  115. package/api/types/WorkflowExecutionRejectedBody.d.ts +8 -0
  116. package/api/types/WorkflowExecutionRejectedBody.js +5 -0
  117. package/api/types/WorkflowExecutionRejectedEvent.d.ts +15 -0
  118. package/api/types/WorkflowExecutionRejectedEvent.js +5 -0
  119. package/api/types/WorkflowExecutionResumedBody.d.ts +7 -0
  120. package/api/types/WorkflowExecutionResumedBody.js +5 -0
  121. package/api/types/WorkflowExecutionResumedEvent.d.ts +15 -0
  122. package/api/types/WorkflowExecutionResumedEvent.js +5 -0
  123. package/api/types/WorkflowExecutionSnapshottedBody.d.ts +8 -0
  124. package/api/types/WorkflowExecutionSnapshottedBody.js +5 -0
  125. package/api/types/WorkflowExecutionSnapshottedEvent.d.ts +15 -0
  126. package/api/types/WorkflowExecutionSnapshottedEvent.js +5 -0
  127. package/api/types/WorkflowExecutionSpan.d.ts +13 -0
  128. package/api/types/WorkflowExecutionSpan.js +5 -0
  129. package/api/types/WorkflowExecutionSpanAttributes.d.ts +6 -0
  130. package/api/types/WorkflowExecutionSpanAttributes.js +5 -0
  131. package/api/types/WorkflowExecutionStreamingBody.d.ts +8 -0
  132. package/api/types/WorkflowExecutionStreamingBody.js +5 -0
  133. package/api/types/WorkflowExecutionStreamingEvent.d.ts +15 -0
  134. package/api/types/WorkflowExecutionStreamingEvent.js +5 -0
  135. package/api/types/WorkflowExecutionUsageCalculationFulfilledBody.d.ts +8 -0
  136. package/api/types/WorkflowExecutionUsageCalculationFulfilledBody.js +5 -0
  137. package/api/types/WorkflowExecutionViewOnlineEvalMetricResult.d.ts +9 -0
  138. package/api/types/WorkflowExecutionViewOnlineEvalMetricResult.js +5 -0
  139. package/api/types/WorkflowInitializationError.d.ts +10 -0
  140. package/api/types/WorkflowInitializationError.js +5 -0
  141. package/api/types/WorkflowParentContext.d.ts +11 -0
  142. package/api/types/WorkflowParentContext.js +5 -0
  143. package/api/types/WorkflowSandboxParentContext.d.ts +13 -0
  144. package/api/types/WorkflowSandboxParentContext.js +5 -0
  145. package/api/types/index.d.ts +61 -0
  146. package/api/types/index.js +61 -0
  147. package/dist/Client.js +11 -11
  148. package/dist/api/resources/adHoc/client/Client.js +1 -1
  149. package/dist/api/resources/containerImages/client/Client.js +4 -4
  150. package/dist/api/resources/deployments/client/Client.js +7 -7
  151. package/dist/api/resources/documentIndexes/client/Client.js +8 -8
  152. package/dist/api/resources/documents/client/Client.js +5 -5
  153. package/dist/api/resources/folderEntities/client/Client.js +2 -2
  154. package/dist/api/resources/metricDefinitions/client/Client.js +2 -2
  155. package/dist/api/resources/mlModels/client/Client.js +1 -1
  156. package/dist/api/resources/organizations/client/Client.js +1 -1
  157. package/dist/api/resources/sandboxes/client/Client.js +3 -3
  158. package/dist/api/resources/testSuiteRuns/client/Client.js +3 -3
  159. package/dist/api/resources/testSuites/client/Client.js +4 -4
  160. package/dist/api/resources/workflowDeployments/client/Client.d.ts +18 -0
  161. package/dist/api/resources/workflowDeployments/client/Client.js +120 -6
  162. package/dist/api/resources/workflowDeployments/client/requests/ListWorkflowDeploymentEventExecutionsRequest.d.ts +18 -0
  163. package/dist/api/resources/workflowDeployments/client/requests/ListWorkflowDeploymentEventExecutionsRequest.js +5 -0
  164. package/dist/api/resources/workflowDeployments/client/requests/index.d.ts +1 -0
  165. package/dist/api/resources/workflowSandboxes/client/Client.js +2 -2
  166. package/dist/api/resources/workflows/client/Client.js +2 -2
  167. package/dist/api/resources/workspaceSecrets/client/Client.js +2 -2
  168. package/dist/api/resources/workspaces/client/Client.js +1 -1
  169. package/dist/api/types/ApiRequestParentContext.d.ts +10 -0
  170. package/dist/api/types/ApiRequestParentContext.js +5 -0
  171. package/dist/api/types/ApiVersionEnum.d.ts +7 -0
  172. package/dist/api/types/ApiVersionEnum.js +5 -0
  173. package/dist/api/types/BaseOutput.d.ts +8 -0
  174. package/dist/api/types/BaseOutput.js +5 -0
  175. package/dist/api/types/CodeResourceDefinition.d.ts +12 -0
  176. package/dist/api/types/CodeResourceDefinition.js +5 -0
  177. package/dist/api/types/ExternalInputDescriptor.d.ts +10 -0
  178. package/dist/api/types/ExternalInputDescriptor.js +5 -0
  179. package/dist/api/types/InvokedPort.d.ts +6 -0
  180. package/dist/api/types/InvokedPort.js +5 -0
  181. package/dist/api/types/MlModelUsageWrapper.d.ts +8 -0
  182. package/dist/api/types/MlModelUsageWrapper.js +5 -0
  183. package/dist/api/types/NodeEventDisplayContext.d.ts +10 -0
  184. package/dist/api/types/NodeEventDisplayContext.js +5 -0
  185. package/dist/api/types/NodeExecutionFulfilledBody.d.ts +10 -0
  186. package/dist/api/types/NodeExecutionFulfilledBody.js +5 -0
  187. package/dist/api/types/NodeExecutionFulfilledEvent.d.ts +15 -0
  188. package/dist/api/types/NodeExecutionFulfilledEvent.js +5 -0
  189. package/dist/api/types/NodeExecutionInitiatedBody.d.ts +8 -0
  190. package/dist/api/types/NodeExecutionInitiatedBody.js +5 -0
  191. package/dist/api/types/NodeExecutionInitiatedEvent.d.ts +15 -0
  192. package/dist/api/types/NodeExecutionInitiatedEvent.js +5 -0
  193. package/dist/api/types/NodeExecutionPausedBody.d.ts +7 -0
  194. package/dist/api/types/NodeExecutionPausedBody.js +5 -0
  195. package/dist/api/types/NodeExecutionPausedEvent.d.ts +15 -0
  196. package/dist/api/types/NodeExecutionPausedEvent.js +5 -0
  197. package/dist/api/types/NodeExecutionRejectedBody.d.ts +8 -0
  198. package/dist/api/types/NodeExecutionRejectedBody.js +5 -0
  199. package/dist/api/types/NodeExecutionRejectedEvent.d.ts +15 -0
  200. package/dist/api/types/NodeExecutionRejectedEvent.js +5 -0
  201. package/dist/api/types/NodeExecutionResumedBody.d.ts +7 -0
  202. package/dist/api/types/NodeExecutionResumedBody.js +5 -0
  203. package/dist/api/types/NodeExecutionResumedEvent.d.ts +15 -0
  204. package/dist/api/types/NodeExecutionResumedEvent.js +5 -0
  205. package/dist/api/types/NodeExecutionSpan.d.ts +13 -0
  206. package/dist/api/types/NodeExecutionSpan.js +5 -0
  207. package/dist/api/types/NodeExecutionSpanAttributes.d.ts +6 -0
  208. package/dist/api/types/NodeExecutionSpanAttributes.js +5 -0
  209. package/dist/api/types/NodeExecutionStreamingBody.d.ts +8 -0
  210. package/dist/api/types/NodeExecutionStreamingBody.js +5 -0
  211. package/dist/api/types/NodeExecutionStreamingEvent.d.ts +15 -0
  212. package/dist/api/types/NodeExecutionStreamingEvent.js +5 -0
  213. package/dist/api/types/NodeParentContext.d.ts +11 -0
  214. package/dist/api/types/NodeParentContext.js +5 -0
  215. package/dist/api/types/ParentContext.d.ts +5 -0
  216. package/dist/api/types/ParentContext.js +5 -0
  217. package/dist/api/types/PromptDeploymentParentContext.d.ts +18 -0
  218. package/dist/api/types/PromptDeploymentParentContext.js +5 -0
  219. package/dist/api/types/SlimWorkflowExecutionRead.d.ts +16 -0
  220. package/dist/api/types/SlimWorkflowExecutionRead.js +5 -0
  221. package/dist/api/types/SpanLink.d.ts +9 -0
  222. package/dist/api/types/SpanLink.js +5 -0
  223. package/dist/api/types/SpanLinkTypeEnum.d.ts +7 -0
  224. package/dist/api/types/SpanLinkTypeEnum.js +5 -0
  225. package/dist/api/types/VellumCodeResourceDefinition.d.ts +9 -0
  226. package/dist/api/types/VellumCodeResourceDefinition.js +5 -0
  227. package/dist/api/types/VellumNodeExecutionEvent.d.ts +5 -0
  228. package/dist/api/types/VellumNodeExecutionEvent.js +5 -0
  229. package/dist/api/types/VellumSdkError.d.ts +8 -0
  230. package/dist/api/types/VellumSdkError.js +5 -0
  231. package/dist/api/types/VellumSdkErrorCodeEnum.d.ts +30 -0
  232. package/dist/api/types/VellumSdkErrorCodeEnum.js +19 -0
  233. package/dist/api/types/VellumSpan.d.ts +5 -0
  234. package/dist/api/types/VellumSpan.js +5 -0
  235. package/dist/api/types/VellumWorkflowExecutionEvent.d.ts +5 -0
  236. package/dist/api/types/VellumWorkflowExecutionEvent.js +5 -0
  237. package/dist/api/types/WorkflowDeploymentEventExecutionsResponse.d.ts +8 -0
  238. package/dist/api/types/WorkflowDeploymentEventExecutionsResponse.js +5 -0
  239. package/dist/api/types/WorkflowDeploymentParentContext.d.ts +18 -0
  240. package/dist/api/types/WorkflowDeploymentParentContext.js +5 -0
  241. package/dist/api/types/WorkflowError.d.ts +5 -0
  242. package/dist/api/types/WorkflowError.js +5 -0
  243. package/dist/api/types/WorkflowEventDisplayContext.d.ts +9 -0
  244. package/dist/api/types/WorkflowEventDisplayContext.js +5 -0
  245. package/dist/api/types/WorkflowEventExecutionRead.d.ts +17 -0
  246. package/dist/api/types/WorkflowEventExecutionRead.js +5 -0
  247. package/dist/api/types/WorkflowExecutionActual.d.ts +10 -0
  248. package/dist/api/types/WorkflowExecutionActual.js +5 -0
  249. package/dist/api/types/WorkflowExecutionFulfilledBody.d.ts +8 -0
  250. package/dist/api/types/WorkflowExecutionFulfilledBody.js +5 -0
  251. package/dist/api/types/WorkflowExecutionFulfilledEvent.d.ts +15 -0
  252. package/dist/api/types/WorkflowExecutionFulfilledEvent.js +5 -0
  253. package/dist/api/types/WorkflowExecutionInitiatedBody.d.ts +9 -0
  254. package/dist/api/types/WorkflowExecutionInitiatedBody.js +5 -0
  255. package/dist/api/types/WorkflowExecutionInitiatedEvent.d.ts +15 -0
  256. package/dist/api/types/WorkflowExecutionInitiatedEvent.js +5 -0
  257. package/dist/api/types/WorkflowExecutionPausedBody.d.ts +8 -0
  258. package/dist/api/types/WorkflowExecutionPausedBody.js +5 -0
  259. package/dist/api/types/WorkflowExecutionPausedEvent.d.ts +15 -0
  260. package/dist/api/types/WorkflowExecutionPausedEvent.js +5 -0
  261. package/dist/api/types/WorkflowExecutionRejectedBody.d.ts +8 -0
  262. package/dist/api/types/WorkflowExecutionRejectedBody.js +5 -0
  263. package/dist/api/types/WorkflowExecutionRejectedEvent.d.ts +15 -0
  264. package/dist/api/types/WorkflowExecutionRejectedEvent.js +5 -0
  265. package/dist/api/types/WorkflowExecutionResumedBody.d.ts +7 -0
  266. package/dist/api/types/WorkflowExecutionResumedBody.js +5 -0
  267. package/dist/api/types/WorkflowExecutionResumedEvent.d.ts +15 -0
  268. package/dist/api/types/WorkflowExecutionResumedEvent.js +5 -0
  269. package/dist/api/types/WorkflowExecutionSnapshottedBody.d.ts +8 -0
  270. package/dist/api/types/WorkflowExecutionSnapshottedBody.js +5 -0
  271. package/dist/api/types/WorkflowExecutionSnapshottedEvent.d.ts +15 -0
  272. package/dist/api/types/WorkflowExecutionSnapshottedEvent.js +5 -0
  273. package/dist/api/types/WorkflowExecutionSpan.d.ts +13 -0
  274. package/dist/api/types/WorkflowExecutionSpan.js +5 -0
  275. package/dist/api/types/WorkflowExecutionSpanAttributes.d.ts +6 -0
  276. package/dist/api/types/WorkflowExecutionSpanAttributes.js +5 -0
  277. package/dist/api/types/WorkflowExecutionStreamingBody.d.ts +8 -0
  278. package/dist/api/types/WorkflowExecutionStreamingBody.js +5 -0
  279. package/dist/api/types/WorkflowExecutionStreamingEvent.d.ts +15 -0
  280. package/dist/api/types/WorkflowExecutionStreamingEvent.js +5 -0
  281. package/dist/api/types/WorkflowExecutionUsageCalculationFulfilledBody.d.ts +8 -0
  282. package/dist/api/types/WorkflowExecutionUsageCalculationFulfilledBody.js +5 -0
  283. package/dist/api/types/WorkflowExecutionViewOnlineEvalMetricResult.d.ts +9 -0
  284. package/dist/api/types/WorkflowExecutionViewOnlineEvalMetricResult.js +5 -0
  285. package/dist/api/types/WorkflowInitializationError.d.ts +10 -0
  286. package/dist/api/types/WorkflowInitializationError.js +5 -0
  287. package/dist/api/types/WorkflowParentContext.d.ts +11 -0
  288. package/dist/api/types/WorkflowParentContext.js +5 -0
  289. package/dist/api/types/WorkflowSandboxParentContext.d.ts +13 -0
  290. package/dist/api/types/WorkflowSandboxParentContext.js +5 -0
  291. package/dist/api/types/index.d.ts +61 -0
  292. package/dist/api/types/index.js +61 -0
  293. package/dist/serialization/types/ApiRequestParentContext.d.ts +15 -0
  294. package/dist/serialization/types/ApiRequestParentContext.js +47 -0
  295. package/dist/serialization/types/ApiVersionEnum.d.ts +10 -0
  296. package/dist/serialization/types/ApiVersionEnum.js +41 -0
  297. package/dist/serialization/types/BaseOutput.d.ts +14 -0
  298. package/dist/serialization/types/BaseOutput.js +45 -0
  299. package/dist/serialization/types/CodeResourceDefinition.d.ts +13 -0
  300. package/dist/serialization/types/CodeResourceDefinition.js +44 -0
  301. package/dist/serialization/types/ExternalInputDescriptor.d.ts +16 -0
  302. package/dist/serialization/types/ExternalInputDescriptor.js +47 -0
  303. package/dist/serialization/types/InvokedPort.d.ts +12 -0
  304. package/dist/serialization/types/InvokedPort.js +43 -0
  305. package/dist/serialization/types/MlModelUsageWrapper.d.ts +14 -0
  306. package/dist/serialization/types/MlModelUsageWrapper.js +45 -0
  307. package/dist/serialization/types/NodeEventDisplayContext.d.ts +15 -0
  308. package/dist/serialization/types/NodeEventDisplayContext.js +47 -0
  309. package/dist/serialization/types/NodeExecutionFulfilledBody.d.ts +17 -0
  310. package/dist/serialization/types/NodeExecutionFulfilledBody.js +48 -0
  311. package/dist/serialization/types/NodeExecutionFulfilledEvent.d.ts +22 -0
  312. package/dist/serialization/types/NodeExecutionFulfilledEvent.js +54 -0
  313. package/dist/serialization/types/NodeExecutionInitiatedBody.d.ts +14 -0
  314. package/dist/serialization/types/NodeExecutionInitiatedBody.js +45 -0
  315. package/dist/serialization/types/NodeExecutionInitiatedEvent.d.ts +22 -0
  316. package/dist/serialization/types/NodeExecutionInitiatedEvent.js +54 -0
  317. package/dist/serialization/types/NodeExecutionPausedBody.d.ts +13 -0
  318. package/dist/serialization/types/NodeExecutionPausedBody.js +44 -0
  319. package/dist/serialization/types/NodeExecutionPausedEvent.d.ts +22 -0
  320. package/dist/serialization/types/NodeExecutionPausedEvent.js +54 -0
  321. package/dist/serialization/types/NodeExecutionRejectedBody.d.ts +15 -0
  322. package/dist/serialization/types/NodeExecutionRejectedBody.js +46 -0
  323. package/dist/serialization/types/NodeExecutionRejectedEvent.d.ts +22 -0
  324. package/dist/serialization/types/NodeExecutionRejectedEvent.js +54 -0
  325. package/dist/serialization/types/NodeExecutionResumedBody.d.ts +13 -0
  326. package/dist/serialization/types/NodeExecutionResumedBody.js +44 -0
  327. package/dist/serialization/types/NodeExecutionResumedEvent.d.ts +22 -0
  328. package/dist/serialization/types/NodeExecutionResumedEvent.js +54 -0
  329. package/dist/serialization/types/NodeExecutionSpan.d.ts +20 -0
  330. package/dist/serialization/types/NodeExecutionSpan.js +51 -0
  331. package/dist/serialization/types/NodeExecutionSpanAttributes.d.ts +12 -0
  332. package/dist/serialization/types/NodeExecutionSpanAttributes.js +43 -0
  333. package/dist/serialization/types/NodeExecutionStreamingBody.d.ts +15 -0
  334. package/dist/serialization/types/NodeExecutionStreamingBody.js +46 -0
  335. package/dist/serialization/types/NodeExecutionStreamingEvent.d.ts +22 -0
  336. package/dist/serialization/types/NodeExecutionStreamingEvent.js +54 -0
  337. package/dist/serialization/types/NodeParentContext.d.ts +17 -0
  338. package/dist/serialization/types/NodeParentContext.js +49 -0
  339. package/dist/serialization/types/ParentContext.d.ts +10 -0
  340. package/dist/serialization/types/ParentContext.js +49 -0
  341. package/dist/serialization/types/PromptDeploymentParentContext.d.ts +23 -0
  342. package/dist/serialization/types/PromptDeploymentParentContext.js +55 -0
  343. package/dist/serialization/types/SlimWorkflowExecutionRead.d.ts +26 -0
  344. package/dist/serialization/types/SlimWorkflowExecutionRead.js +58 -0
  345. package/dist/serialization/types/SpanLink.d.ts +15 -0
  346. package/dist/serialization/types/SpanLink.js +47 -0
  347. package/dist/serialization/types/SpanLinkTypeEnum.d.ts +10 -0
  348. package/dist/serialization/types/SpanLinkTypeEnum.js +41 -0
  349. package/dist/serialization/types/VellumCodeResourceDefinition.d.ts +14 -0
  350. package/dist/serialization/types/VellumCodeResourceDefinition.js +45 -0
  351. package/dist/serialization/types/VellumNodeExecutionEvent.d.ts +16 -0
  352. package/dist/serialization/types/VellumNodeExecutionEvent.js +54 -0
  353. package/dist/serialization/types/VellumSdkError.d.ts +14 -0
  354. package/dist/serialization/types/VellumSdkError.js +45 -0
  355. package/dist/serialization/types/VellumSdkErrorCodeEnum.d.ts +10 -0
  356. package/dist/serialization/types/VellumSdkErrorCodeEnum.js +53 -0
  357. package/dist/serialization/types/VellumSpan.d.ts +12 -0
  358. package/dist/serialization/types/VellumSpan.js +43 -0
  359. package/dist/serialization/types/VellumWorkflowExecutionEvent.d.ts +17 -0
  360. package/dist/serialization/types/VellumWorkflowExecutionEvent.js +56 -0
  361. package/dist/serialization/types/WorkflowDeploymentEventExecutionsResponse.d.ts +14 -0
  362. package/dist/serialization/types/WorkflowDeploymentEventExecutionsResponse.js +45 -0
  363. package/dist/serialization/types/WorkflowDeploymentParentContext.d.ts +23 -0
  364. package/dist/serialization/types/WorkflowDeploymentParentContext.js +55 -0
  365. package/dist/serialization/types/WorkflowError.d.ts +12 -0
  366. package/dist/serialization/types/WorkflowError.js +43 -0
  367. package/dist/serialization/types/WorkflowEventDisplayContext.d.ts +14 -0
  368. package/dist/serialization/types/WorkflowEventDisplayContext.js +46 -0
  369. package/dist/serialization/types/WorkflowEventExecutionRead.d.ts +28 -0
  370. package/dist/serialization/types/WorkflowEventExecutionRead.js +60 -0
  371. package/dist/serialization/types/WorkflowExecutionActual.d.ts +16 -0
  372. package/dist/serialization/types/WorkflowExecutionActual.js +47 -0
  373. package/dist/serialization/types/WorkflowExecutionFulfilledBody.d.ts +14 -0
  374. package/dist/serialization/types/WorkflowExecutionFulfilledBody.js +45 -0
  375. package/dist/serialization/types/WorkflowExecutionFulfilledEvent.d.ts +22 -0
  376. package/dist/serialization/types/WorkflowExecutionFulfilledEvent.js +54 -0
  377. package/dist/serialization/types/WorkflowExecutionInitiatedBody.d.ts +15 -0
  378. package/dist/serialization/types/WorkflowExecutionInitiatedBody.js +47 -0
  379. package/dist/serialization/types/WorkflowExecutionInitiatedEvent.d.ts +22 -0
  380. package/dist/serialization/types/WorkflowExecutionInitiatedEvent.js +54 -0
  381. package/dist/serialization/types/WorkflowExecutionPausedBody.d.ts +15 -0
  382. package/dist/serialization/types/WorkflowExecutionPausedBody.js +46 -0
  383. package/dist/serialization/types/WorkflowExecutionPausedEvent.d.ts +22 -0
  384. package/dist/serialization/types/WorkflowExecutionPausedEvent.js +54 -0
  385. package/dist/serialization/types/WorkflowExecutionRejectedBody.d.ts +15 -0
  386. package/dist/serialization/types/WorkflowExecutionRejectedBody.js +46 -0
  387. package/dist/serialization/types/WorkflowExecutionRejectedEvent.d.ts +22 -0
  388. package/dist/serialization/types/WorkflowExecutionRejectedEvent.js +54 -0
  389. package/dist/serialization/types/WorkflowExecutionResumedBody.d.ts +13 -0
  390. package/dist/serialization/types/WorkflowExecutionResumedBody.js +44 -0
  391. package/dist/serialization/types/WorkflowExecutionResumedEvent.d.ts +22 -0
  392. package/dist/serialization/types/WorkflowExecutionResumedEvent.js +54 -0
  393. package/dist/serialization/types/WorkflowExecutionSnapshottedBody.d.ts +14 -0
  394. package/dist/serialization/types/WorkflowExecutionSnapshottedBody.js +45 -0
  395. package/dist/serialization/types/WorkflowExecutionSnapshottedEvent.d.ts +22 -0
  396. package/dist/serialization/types/WorkflowExecutionSnapshottedEvent.js +54 -0
  397. package/dist/serialization/types/WorkflowExecutionSpan.d.ts +20 -0
  398. package/dist/serialization/types/WorkflowExecutionSpan.js +51 -0
  399. package/dist/serialization/types/WorkflowExecutionSpanAttributes.d.ts +12 -0
  400. package/dist/serialization/types/WorkflowExecutionSpanAttributes.js +43 -0
  401. package/dist/serialization/types/WorkflowExecutionStreamingBody.d.ts +15 -0
  402. package/dist/serialization/types/WorkflowExecutionStreamingBody.js +46 -0
  403. package/dist/serialization/types/WorkflowExecutionStreamingEvent.d.ts +22 -0
  404. package/dist/serialization/types/WorkflowExecutionStreamingEvent.js +54 -0
  405. package/dist/serialization/types/WorkflowExecutionUsageCalculationFulfilledBody.d.ts +15 -0
  406. package/dist/serialization/types/WorkflowExecutionUsageCalculationFulfilledBody.js +46 -0
  407. package/dist/serialization/types/WorkflowExecutionViewOnlineEvalMetricResult.d.ts +15 -0
  408. package/dist/serialization/types/WorkflowExecutionViewOnlineEvalMetricResult.js +46 -0
  409. package/dist/serialization/types/WorkflowInitializationError.d.ts +13 -0
  410. package/dist/serialization/types/WorkflowInitializationError.js +44 -0
  411. package/dist/serialization/types/WorkflowParentContext.d.ts +17 -0
  412. package/dist/serialization/types/WorkflowParentContext.js +49 -0
  413. package/dist/serialization/types/WorkflowSandboxParentContext.d.ts +18 -0
  414. package/dist/serialization/types/WorkflowSandboxParentContext.js +50 -0
  415. package/dist/serialization/types/index.d.ts +61 -0
  416. package/dist/serialization/types/index.js +61 -0
  417. package/dist/version.d.ts +1 -1
  418. package/dist/version.js +1 -1
  419. package/package.json +1 -1
  420. package/reference.md +112 -0
  421. package/serialization/types/ApiRequestParentContext.d.ts +15 -0
  422. package/serialization/types/ApiRequestParentContext.js +47 -0
  423. package/serialization/types/ApiVersionEnum.d.ts +10 -0
  424. package/serialization/types/ApiVersionEnum.js +41 -0
  425. package/serialization/types/BaseOutput.d.ts +14 -0
  426. package/serialization/types/BaseOutput.js +45 -0
  427. package/serialization/types/CodeResourceDefinition.d.ts +13 -0
  428. package/serialization/types/CodeResourceDefinition.js +44 -0
  429. package/serialization/types/ExternalInputDescriptor.d.ts +16 -0
  430. package/serialization/types/ExternalInputDescriptor.js +47 -0
  431. package/serialization/types/InvokedPort.d.ts +12 -0
  432. package/serialization/types/InvokedPort.js +43 -0
  433. package/serialization/types/MlModelUsageWrapper.d.ts +14 -0
  434. package/serialization/types/MlModelUsageWrapper.js +45 -0
  435. package/serialization/types/NodeEventDisplayContext.d.ts +15 -0
  436. package/serialization/types/NodeEventDisplayContext.js +47 -0
  437. package/serialization/types/NodeExecutionFulfilledBody.d.ts +17 -0
  438. package/serialization/types/NodeExecutionFulfilledBody.js +48 -0
  439. package/serialization/types/NodeExecutionFulfilledEvent.d.ts +22 -0
  440. package/serialization/types/NodeExecutionFulfilledEvent.js +54 -0
  441. package/serialization/types/NodeExecutionInitiatedBody.d.ts +14 -0
  442. package/serialization/types/NodeExecutionInitiatedBody.js +45 -0
  443. package/serialization/types/NodeExecutionInitiatedEvent.d.ts +22 -0
  444. package/serialization/types/NodeExecutionInitiatedEvent.js +54 -0
  445. package/serialization/types/NodeExecutionPausedBody.d.ts +13 -0
  446. package/serialization/types/NodeExecutionPausedBody.js +44 -0
  447. package/serialization/types/NodeExecutionPausedEvent.d.ts +22 -0
  448. package/serialization/types/NodeExecutionPausedEvent.js +54 -0
  449. package/serialization/types/NodeExecutionRejectedBody.d.ts +15 -0
  450. package/serialization/types/NodeExecutionRejectedBody.js +46 -0
  451. package/serialization/types/NodeExecutionRejectedEvent.d.ts +22 -0
  452. package/serialization/types/NodeExecutionRejectedEvent.js +54 -0
  453. package/serialization/types/NodeExecutionResumedBody.d.ts +13 -0
  454. package/serialization/types/NodeExecutionResumedBody.js +44 -0
  455. package/serialization/types/NodeExecutionResumedEvent.d.ts +22 -0
  456. package/serialization/types/NodeExecutionResumedEvent.js +54 -0
  457. package/serialization/types/NodeExecutionSpan.d.ts +20 -0
  458. package/serialization/types/NodeExecutionSpan.js +51 -0
  459. package/serialization/types/NodeExecutionSpanAttributes.d.ts +12 -0
  460. package/serialization/types/NodeExecutionSpanAttributes.js +43 -0
  461. package/serialization/types/NodeExecutionStreamingBody.d.ts +15 -0
  462. package/serialization/types/NodeExecutionStreamingBody.js +46 -0
  463. package/serialization/types/NodeExecutionStreamingEvent.d.ts +22 -0
  464. package/serialization/types/NodeExecutionStreamingEvent.js +54 -0
  465. package/serialization/types/NodeParentContext.d.ts +17 -0
  466. package/serialization/types/NodeParentContext.js +49 -0
  467. package/serialization/types/ParentContext.d.ts +10 -0
  468. package/serialization/types/ParentContext.js +49 -0
  469. package/serialization/types/PromptDeploymentParentContext.d.ts +23 -0
  470. package/serialization/types/PromptDeploymentParentContext.js +55 -0
  471. package/serialization/types/SlimWorkflowExecutionRead.d.ts +26 -0
  472. package/serialization/types/SlimWorkflowExecutionRead.js +58 -0
  473. package/serialization/types/SpanLink.d.ts +15 -0
  474. package/serialization/types/SpanLink.js +47 -0
  475. package/serialization/types/SpanLinkTypeEnum.d.ts +10 -0
  476. package/serialization/types/SpanLinkTypeEnum.js +41 -0
  477. package/serialization/types/VellumCodeResourceDefinition.d.ts +14 -0
  478. package/serialization/types/VellumCodeResourceDefinition.js +45 -0
  479. package/serialization/types/VellumNodeExecutionEvent.d.ts +16 -0
  480. package/serialization/types/VellumNodeExecutionEvent.js +54 -0
  481. package/serialization/types/VellumSdkError.d.ts +14 -0
  482. package/serialization/types/VellumSdkError.js +45 -0
  483. package/serialization/types/VellumSdkErrorCodeEnum.d.ts +10 -0
  484. package/serialization/types/VellumSdkErrorCodeEnum.js +53 -0
  485. package/serialization/types/VellumSpan.d.ts +12 -0
  486. package/serialization/types/VellumSpan.js +43 -0
  487. package/serialization/types/VellumWorkflowExecutionEvent.d.ts +17 -0
  488. package/serialization/types/VellumWorkflowExecutionEvent.js +56 -0
  489. package/serialization/types/WorkflowDeploymentEventExecutionsResponse.d.ts +14 -0
  490. package/serialization/types/WorkflowDeploymentEventExecutionsResponse.js +45 -0
  491. package/serialization/types/WorkflowDeploymentParentContext.d.ts +23 -0
  492. package/serialization/types/WorkflowDeploymentParentContext.js +55 -0
  493. package/serialization/types/WorkflowError.d.ts +12 -0
  494. package/serialization/types/WorkflowError.js +43 -0
  495. package/serialization/types/WorkflowEventDisplayContext.d.ts +14 -0
  496. package/serialization/types/WorkflowEventDisplayContext.js +46 -0
  497. package/serialization/types/WorkflowEventExecutionRead.d.ts +28 -0
  498. package/serialization/types/WorkflowEventExecutionRead.js +60 -0
  499. package/serialization/types/WorkflowExecutionActual.d.ts +16 -0
  500. package/serialization/types/WorkflowExecutionActual.js +47 -0
  501. package/serialization/types/WorkflowExecutionFulfilledBody.d.ts +14 -0
  502. package/serialization/types/WorkflowExecutionFulfilledBody.js +45 -0
  503. package/serialization/types/WorkflowExecutionFulfilledEvent.d.ts +22 -0
  504. package/serialization/types/WorkflowExecutionFulfilledEvent.js +54 -0
  505. package/serialization/types/WorkflowExecutionInitiatedBody.d.ts +15 -0
  506. package/serialization/types/WorkflowExecutionInitiatedBody.js +47 -0
  507. package/serialization/types/WorkflowExecutionInitiatedEvent.d.ts +22 -0
  508. package/serialization/types/WorkflowExecutionInitiatedEvent.js +54 -0
  509. package/serialization/types/WorkflowExecutionPausedBody.d.ts +15 -0
  510. package/serialization/types/WorkflowExecutionPausedBody.js +46 -0
  511. package/serialization/types/WorkflowExecutionPausedEvent.d.ts +22 -0
  512. package/serialization/types/WorkflowExecutionPausedEvent.js +54 -0
  513. package/serialization/types/WorkflowExecutionRejectedBody.d.ts +15 -0
  514. package/serialization/types/WorkflowExecutionRejectedBody.js +46 -0
  515. package/serialization/types/WorkflowExecutionRejectedEvent.d.ts +22 -0
  516. package/serialization/types/WorkflowExecutionRejectedEvent.js +54 -0
  517. package/serialization/types/WorkflowExecutionResumedBody.d.ts +13 -0
  518. package/serialization/types/WorkflowExecutionResumedBody.js +44 -0
  519. package/serialization/types/WorkflowExecutionResumedEvent.d.ts +22 -0
  520. package/serialization/types/WorkflowExecutionResumedEvent.js +54 -0
  521. package/serialization/types/WorkflowExecutionSnapshottedBody.d.ts +14 -0
  522. package/serialization/types/WorkflowExecutionSnapshottedBody.js +45 -0
  523. package/serialization/types/WorkflowExecutionSnapshottedEvent.d.ts +22 -0
  524. package/serialization/types/WorkflowExecutionSnapshottedEvent.js +54 -0
  525. package/serialization/types/WorkflowExecutionSpan.d.ts +20 -0
  526. package/serialization/types/WorkflowExecutionSpan.js +51 -0
  527. package/serialization/types/WorkflowExecutionSpanAttributes.d.ts +12 -0
  528. package/serialization/types/WorkflowExecutionSpanAttributes.js +43 -0
  529. package/serialization/types/WorkflowExecutionStreamingBody.d.ts +15 -0
  530. package/serialization/types/WorkflowExecutionStreamingBody.js +46 -0
  531. package/serialization/types/WorkflowExecutionStreamingEvent.d.ts +22 -0
  532. package/serialization/types/WorkflowExecutionStreamingEvent.js +54 -0
  533. package/serialization/types/WorkflowExecutionUsageCalculationFulfilledBody.d.ts +15 -0
  534. package/serialization/types/WorkflowExecutionUsageCalculationFulfilledBody.js +46 -0
  535. package/serialization/types/WorkflowExecutionViewOnlineEvalMetricResult.d.ts +15 -0
  536. package/serialization/types/WorkflowExecutionViewOnlineEvalMetricResult.js +46 -0
  537. package/serialization/types/WorkflowInitializationError.d.ts +13 -0
  538. package/serialization/types/WorkflowInitializationError.js +44 -0
  539. package/serialization/types/WorkflowParentContext.d.ts +17 -0
  540. package/serialization/types/WorkflowParentContext.js +49 -0
  541. package/serialization/types/WorkflowSandboxParentContext.d.ts +18 -0
  542. package/serialization/types/WorkflowSandboxParentContext.js +50 -0
  543. package/serialization/types/index.d.ts +61 -0
  544. package/serialization/types/index.js +61 -0
  545. package/version.d.ts +1 -1
  546. package/version.js +1 -1
@@ -45,6 +45,24 @@ export declare class WorkflowDeployments {
45
45
  * await client.workflowDeployments.retrieve("id")
46
46
  */
47
47
  retrieve(id: string, requestOptions?: WorkflowDeployments.RequestOptions): Promise<Vellum.WorkflowDeploymentRead>;
48
+ /**
49
+ * @param {string} id
50
+ * @param {Vellum.ListWorkflowDeploymentEventExecutionsRequest} request
51
+ * @param {WorkflowDeployments.RequestOptions} requestOptions - Request-specific configuration.
52
+ *
53
+ * @example
54
+ * await client.workflowDeployments.listWorkflowDeploymentEventExecutions("id")
55
+ */
56
+ listWorkflowDeploymentEventExecutions(id: string, request?: Vellum.ListWorkflowDeploymentEventExecutionsRequest, requestOptions?: WorkflowDeployments.RequestOptions): Promise<Vellum.WorkflowDeploymentEventExecutionsResponse>;
57
+ /**
58
+ * @param {string} executionId
59
+ * @param {string} id
60
+ * @param {WorkflowDeployments.RequestOptions} requestOptions - Request-specific configuration.
61
+ *
62
+ * @example
63
+ * await client.workflowDeployments.workflowDeploymentEventExecution("execution_id", "id")
64
+ */
65
+ workflowDeploymentEventExecution(executionId: string, id: string, requestOptions?: WorkflowDeployments.RequestOptions): Promise<Vellum.WorkflowEventExecutionRead>;
48
66
  /**
49
67
  * Retrieve a specific Workflow Deployment History Item by either its UUID or the name of a Release Tag that points to it.
50
68
  *
@@ -90,7 +90,7 @@ class WorkflowDeployments {
90
90
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
91
91
  .default, "v1/workflow-deployments"),
92
92
  method: "GET",
93
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
94
94
  contentType: "application/json",
95
95
  queryParameters: _queryParams,
96
96
  requestType: "json",
@@ -143,7 +143,7 @@ class WorkflowDeployments {
143
143
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
144
144
  .default, `v1/workflow-deployments/${encodeURIComponent(id)}`),
145
145
  method: "GET",
146
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
146
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
147
147
  contentType: "application/json",
148
148
  requestType: "json",
149
149
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -179,6 +179,120 @@ class WorkflowDeployments {
179
179
  }
180
180
  });
181
181
  }
182
+ /**
183
+ * @param {string} id
184
+ * @param {Vellum.ListWorkflowDeploymentEventExecutionsRequest} request
185
+ * @param {WorkflowDeployments.RequestOptions} requestOptions - Request-specific configuration.
186
+ *
187
+ * @example
188
+ * await client.workflowDeployments.listWorkflowDeploymentEventExecutions("id")
189
+ */
190
+ listWorkflowDeploymentEventExecutions(id_1) {
191
+ return __awaiter(this, arguments, void 0, function* (id, request = {}, requestOptions) {
192
+ var _a, _b;
193
+ const { filters, limit, offset } = request;
194
+ const _queryParams = {};
195
+ if (filters != null) {
196
+ _queryParams["filters"] = filters;
197
+ }
198
+ if (limit != null) {
199
+ _queryParams["limit"] = limit.toString();
200
+ }
201
+ if (offset != null) {
202
+ _queryParams["offset"] = offset.toString();
203
+ }
204
+ const _response = yield core.fetcher({
205
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
206
+ .default, `v1/workflow-deployments/${encodeURIComponent(id)}/execution-events`),
207
+ method: "GET",
208
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
209
+ contentType: "application/json",
210
+ queryParameters: _queryParams,
211
+ requestType: "json",
212
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
213
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
214
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
215
+ });
216
+ if (_response.ok) {
217
+ return serializers.WorkflowDeploymentEventExecutionsResponse.parseOrThrow(_response.body, {
218
+ unrecognizedObjectKeys: "passthrough",
219
+ allowUnrecognizedUnionMembers: true,
220
+ allowUnrecognizedEnumValues: true,
221
+ breadcrumbsPrefix: ["response"],
222
+ });
223
+ }
224
+ if (_response.error.reason === "status-code") {
225
+ throw new errors.VellumError({
226
+ statusCode: _response.error.statusCode,
227
+ body: _response.error.body,
228
+ });
229
+ }
230
+ switch (_response.error.reason) {
231
+ case "non-json":
232
+ throw new errors.VellumError({
233
+ statusCode: _response.error.statusCode,
234
+ body: _response.error.rawBody,
235
+ });
236
+ case "timeout":
237
+ throw new errors.VellumTimeoutError("Timeout exceeded when calling GET /v1/workflow-deployments/{id}/execution-events.");
238
+ case "unknown":
239
+ throw new errors.VellumError({
240
+ message: _response.error.errorMessage,
241
+ });
242
+ }
243
+ });
244
+ }
245
+ /**
246
+ * @param {string} executionId
247
+ * @param {string} id
248
+ * @param {WorkflowDeployments.RequestOptions} requestOptions - Request-specific configuration.
249
+ *
250
+ * @example
251
+ * await client.workflowDeployments.workflowDeploymentEventExecution("execution_id", "id")
252
+ */
253
+ workflowDeploymentEventExecution(executionId, id, requestOptions) {
254
+ return __awaiter(this, void 0, void 0, function* () {
255
+ var _a, _b;
256
+ const _response = yield core.fetcher({
257
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
258
+ .default, `v1/workflow-deployments/${encodeURIComponent(id)}/execution-events/${encodeURIComponent(executionId)}`),
259
+ method: "GET",
260
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
261
+ contentType: "application/json",
262
+ requestType: "json",
263
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
264
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
265
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
266
+ });
267
+ if (_response.ok) {
268
+ return serializers.WorkflowEventExecutionRead.parseOrThrow(_response.body, {
269
+ unrecognizedObjectKeys: "passthrough",
270
+ allowUnrecognizedUnionMembers: true,
271
+ allowUnrecognizedEnumValues: true,
272
+ breadcrumbsPrefix: ["response"],
273
+ });
274
+ }
275
+ if (_response.error.reason === "status-code") {
276
+ throw new errors.VellumError({
277
+ statusCode: _response.error.statusCode,
278
+ body: _response.error.body,
279
+ });
280
+ }
281
+ switch (_response.error.reason) {
282
+ case "non-json":
283
+ throw new errors.VellumError({
284
+ statusCode: _response.error.statusCode,
285
+ body: _response.error.rawBody,
286
+ });
287
+ case "timeout":
288
+ throw new errors.VellumTimeoutError("Timeout exceeded when calling GET /v1/workflow-deployments/{id}/execution-events/{execution_id}.");
289
+ case "unknown":
290
+ throw new errors.VellumError({
291
+ message: _response.error.errorMessage,
292
+ });
293
+ }
294
+ });
295
+ }
182
296
  /**
183
297
  * Retrieve a specific Workflow Deployment History Item by either its UUID or the name of a Release Tag that points to it.
184
298
  *
@@ -196,7 +310,7 @@ class WorkflowDeployments {
196
310
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
197
311
  .default, `v1/workflow-deployments/${encodeURIComponent(id)}/history/${encodeURIComponent(historyIdOrReleaseTag)}`),
198
312
  method: "GET",
199
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
313
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
200
314
  contentType: "application/json",
201
315
  requestType: "json",
202
316
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -265,7 +379,7 @@ class WorkflowDeployments {
265
379
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
266
380
  .default, `v1/workflow-deployments/${encodeURIComponent(id)}/release-tags`),
267
381
  method: "GET",
268
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
382
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
269
383
  contentType: "application/json",
270
384
  queryParameters: _queryParams,
271
385
  requestType: "json",
@@ -319,7 +433,7 @@ class WorkflowDeployments {
319
433
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
320
434
  .default, `v1/workflow-deployments/${encodeURIComponent(id)}/release-tags/${encodeURIComponent(name)}`),
321
435
  method: "GET",
322
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
436
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
323
437
  contentType: "application/json",
324
438
  requestType: "json",
325
439
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -373,7 +487,7 @@ class WorkflowDeployments {
373
487
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
374
488
  .default, `v1/workflow-deployments/${encodeURIComponent(id)}/release-tags/${encodeURIComponent(name)}`),
375
489
  method: "PATCH",
376
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
490
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
377
491
  contentType: "application/json",
378
492
  requestType: "json",
379
493
  body: serializers.PatchedWorkflowReleaseTagUpdateRequest.jsonOrThrow(request, {
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {}
7
+ */
8
+ export interface ListWorkflowDeploymentEventExecutionsRequest {
9
+ filters?: string;
10
+ /**
11
+ * Number of executions to return per page.
12
+ */
13
+ limit?: number;
14
+ /**
15
+ * The initial index from which to return the executions.
16
+ */
17
+ offset?: number;
18
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
1
  export { type WorkflowDeploymentsListRequest } from "./WorkflowDeploymentsListRequest";
2
+ export { type ListWorkflowDeploymentEventExecutionsRequest } from "./ListWorkflowDeploymentEventExecutionsRequest";
2
3
  export { type ListWorkflowReleaseTagsRequest } from "./ListWorkflowReleaseTagsRequest";
3
4
  export { type PatchedWorkflowReleaseTagUpdateRequest } from "./PatchedWorkflowReleaseTagUpdateRequest";
@@ -74,7 +74,7 @@ class WorkflowSandboxes {
74
74
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
75
75
  .default, `v1/workflow-sandboxes/${encodeURIComponent(id)}/workflows/${encodeURIComponent(workflowId)}/deploy`),
76
76
  method: "POST",
77
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
77
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
78
78
  contentType: "application/json",
79
79
  requestType: "json",
80
80
  body: serializers.DeploySandboxWorkflowRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -143,7 +143,7 @@ class WorkflowSandboxes {
143
143
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
144
144
  .default, "v1/workflow-sandboxes/examples"),
145
145
  method: "GET",
146
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
146
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
147
147
  contentType: "application/json",
148
148
  queryParameters: _queryParams,
149
149
  requestType: "json",
@@ -89,7 +89,7 @@ class Workflows {
89
89
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
90
90
  .default, `v1/workflows/${encodeURIComponent(id)}/pull`),
91
91
  method: "GET",
92
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
92
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
93
93
  contentType: "application/json",
94
94
  queryParameters: _queryParams,
95
95
  requestType: "json",
@@ -164,7 +164,7 @@ class Workflows {
164
164
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
165
165
  .default, "v1/workflows/push"),
166
166
  method: "POST",
167
- headers: Object.assign(Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
167
+ headers: Object.assign(Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
168
168
  requestType: "file",
169
169
  duplex: _maybeEncodedRequest.duplex,
170
170
  body: _maybeEncodedRequest.body,
@@ -74,7 +74,7 @@ class WorkspaceSecrets {
74
74
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
75
75
  .default, `v1/workspace-secrets/${encodeURIComponent(id)}`),
76
76
  method: "GET",
77
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
77
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
78
78
  contentType: "application/json",
79
79
  requestType: "json",
80
80
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -127,7 +127,7 @@ class WorkspaceSecrets {
127
127
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
128
128
  .default, `v1/workspace-secrets/${encodeURIComponent(id)}`),
129
129
  method: "PATCH",
130
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
130
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
131
131
  contentType: "application/json",
132
132
  requestType: "json",
133
133
  body: serializers.PatchedWorkspaceSecretUpdateRequest.jsonOrThrow(request, {
@@ -73,7 +73,7 @@ class Workspaces {
73
73
  url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.VellumEnvironment.Production)
74
74
  .default, "v1/workspaces/identity"),
75
75
  method: "GET",
76
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.22", "User-Agent": "vellum-ai/0.14.22", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
76
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.14.24", "User-Agent": "vellum-ai/0.14.24", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
77
77
  contentType: "application/json",
78
78
  requestType: "json",
79
79
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface ApiRequestParentContext {
6
+ parent?: Vellum.ParentContext;
7
+ links?: Vellum.SpanLink[];
8
+ type: "API_REQUEST";
9
+ spanId: string;
10
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * * `2024-10-25` - 2024-10-25
6
+ */
7
+ export type ApiVersionEnum = "2024-10-25";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface BaseOutput {
5
+ value?: Record<string, unknown>;
6
+ delta?: Record<string, unknown>;
7
+ name: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The definition of a resource defined in code.
6
+ */
7
+ export interface CodeResourceDefinition {
8
+ /** The name of the resource, typically a class name. */
9
+ name: string;
10
+ /** The module that this resource is defined in. */
11
+ module: string[];
12
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface ExternalInputDescriptor {
6
+ types: Vellum.CodeResourceDefinition[];
7
+ inputsClass?: Vellum.CodeResourceDefinition;
8
+ instance?: unknown;
9
+ name: string;
10
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface InvokedPort {
5
+ name: string;
6
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface MlModelUsageWrapper {
6
+ mlModelUsage: Vellum.MlModelUsage;
7
+ mlModelName: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeEventDisplayContext {
6
+ inputDisplay: Record<string, string>;
7
+ outputDisplay: Record<string, string>;
8
+ portDisplay: Record<string, string>;
9
+ subworkflowDisplay?: Vellum.WorkflowEventDisplayContext;
10
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionFulfilledBody {
6
+ nodeDefinition: Vellum.VellumCodeResourceDefinition;
7
+ invokedPorts?: Vellum.InvokedPort[];
8
+ outputs: Record<string, unknown>;
9
+ mocked?: boolean;
10
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionFulfilledEvent {
6
+ parent?: Vellum.ParentContext;
7
+ links?: Vellum.SpanLink[];
8
+ name: "node.execution.fulfilled";
9
+ body: Vellum.NodeExecutionFulfilledBody;
10
+ id: string;
11
+ timestamp: Date;
12
+ apiVersion?: Vellum.ApiVersionEnum;
13
+ traceId: string;
14
+ spanId: string;
15
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionInitiatedBody {
6
+ nodeDefinition: Vellum.VellumCodeResourceDefinition;
7
+ inputs: Record<string, unknown>;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionInitiatedEvent {
6
+ parent?: Vellum.ParentContext;
7
+ links?: Vellum.SpanLink[];
8
+ name: "node.execution.initiated";
9
+ body: Vellum.NodeExecutionInitiatedBody;
10
+ id: string;
11
+ timestamp: Date;
12
+ apiVersion?: Vellum.ApiVersionEnum;
13
+ traceId: string;
14
+ spanId: string;
15
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionPausedBody {
6
+ nodeDefinition: Vellum.VellumCodeResourceDefinition;
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionPausedEvent {
6
+ parent?: Vellum.ParentContext;
7
+ links?: Vellum.SpanLink[];
8
+ name: "node.execution.paused";
9
+ body: Vellum.NodeExecutionPausedBody;
10
+ id: string;
11
+ timestamp: Date;
12
+ apiVersion?: Vellum.ApiVersionEnum;
13
+ traceId: string;
14
+ spanId: string;
15
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionRejectedBody {
6
+ nodeDefinition: Vellum.VellumCodeResourceDefinition;
7
+ error: Vellum.VellumSdkError;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "../index";
5
+ export interface NodeExecutionRejectedEvent {
6
+ parent?: Vellum.ParentContext;
7
+ links?: Vellum.SpanLink[];
8
+ name: "node.execution.rejected";
9
+ body: Vellum.NodeExecutionRejectedBody;
10
+ id: string;
11
+ timestamp: Date;
12
+ apiVersion?: Vellum.ApiVersionEnum;
13
+ traceId: string;
14
+ spanId: string;
15
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });