vellum-ai 0.9.6 → 0.9.7

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 (255) hide show
  1. package/.mock/definition/__package__.yml +90 -88
  2. package/.mock/definition/adHoc.yml +7 -7
  3. package/.mock/openapi/openapi.yml +111 -136
  4. package/Client.js +10 -10
  5. package/api/resources/adHoc/client/Client.d.ts +1 -1
  6. package/api/resources/adHoc/client/Client.js +2 -2
  7. package/api/resources/adHoc/client/requests/{AdHocExecutePromptStreamRequest.d.ts → AdHocExecutePromptStream.d.ts} +14 -20
  8. package/api/resources/adHoc/client/requests/index.d.ts +1 -1
  9. package/api/resources/containerImages/client/Client.js +4 -4
  10. package/api/resources/deployments/client/Client.js +6 -6
  11. package/api/resources/documentIndexes/client/Client.js +8 -8
  12. package/api/resources/documents/client/Client.js +5 -5
  13. package/api/resources/folderEntities/client/Client.js +2 -2
  14. package/api/resources/metricDefinitions/client/Client.js +1 -1
  15. package/api/resources/sandboxes/client/Client.js +3 -3
  16. package/api/resources/testSuiteRuns/client/Client.js +3 -3
  17. package/api/resources/testSuites/client/Client.js +4 -4
  18. package/api/resources/workflowDeployments/client/Client.js +5 -5
  19. package/api/resources/workflowSandboxes/client/Client.js +1 -1
  20. package/api/resources/workflows/client/Client.js +2 -2
  21. package/api/resources/workspaceSecrets/client/Client.js +2 -2
  22. package/{dist/api/types/AdHocExpandMetaRequest.d.ts → api/types/AdHocExpandMeta.d.ts} +1 -1
  23. package/api/types/{PromptParametersRequest.d.ts → PromptParameters.d.ts} +1 -1
  24. package/api/types/{PromptRequestChatHistoryInputRequest.d.ts → PromptRequestChatHistoryInput.d.ts} +2 -2
  25. package/api/types/PromptRequestInput.d.ts +5 -0
  26. package/{dist/api/types/PromptRequestJsonInputRequest.d.ts → api/types/PromptRequestJsonInput.d.ts} +1 -1
  27. package/api/types/{PromptRequestStringInputRequest.d.ts → PromptRequestStringInput.d.ts} +1 -1
  28. package/api/types/{PromptSettingsRequest.d.ts → PromptSettings.d.ts} +1 -1
  29. package/api/types/index.d.ts +7 -23
  30. package/api/types/index.js +7 -23
  31. package/dist/Client.js +10 -10
  32. package/dist/api/resources/adHoc/client/Client.d.ts +1 -1
  33. package/dist/api/resources/adHoc/client/Client.js +2 -2
  34. package/dist/api/resources/adHoc/client/requests/{AdHocExecutePromptStreamRequest.d.ts → AdHocExecutePromptStream.d.ts} +14 -20
  35. package/dist/api/resources/adHoc/client/requests/index.d.ts +1 -1
  36. package/dist/api/resources/containerImages/client/Client.js +4 -4
  37. package/dist/api/resources/deployments/client/Client.js +6 -6
  38. package/dist/api/resources/documentIndexes/client/Client.js +8 -8
  39. package/dist/api/resources/documents/client/Client.js +5 -5
  40. package/dist/api/resources/folderEntities/client/Client.js +2 -2
  41. package/dist/api/resources/metricDefinitions/client/Client.js +1 -1
  42. package/dist/api/resources/sandboxes/client/Client.js +3 -3
  43. package/dist/api/resources/testSuiteRuns/client/Client.js +3 -3
  44. package/dist/api/resources/testSuites/client/Client.js +4 -4
  45. package/dist/api/resources/workflowDeployments/client/Client.js +5 -5
  46. package/dist/api/resources/workflowSandboxes/client/Client.js +1 -1
  47. package/dist/api/resources/workflows/client/Client.js +2 -2
  48. package/dist/api/resources/workspaceSecrets/client/Client.js +2 -2
  49. package/{api/types/AdHocExpandMetaRequest.d.ts → dist/api/types/AdHocExpandMeta.d.ts} +1 -1
  50. package/dist/api/types/{PromptParametersRequest.d.ts → PromptParameters.d.ts} +1 -1
  51. package/dist/api/types/{PromptRequestChatHistoryInputRequest.d.ts → PromptRequestChatHistoryInput.d.ts} +2 -2
  52. package/dist/api/types/PromptRequestInput.d.ts +5 -0
  53. package/{api/types/PromptRequestJsonInputRequest.d.ts → dist/api/types/PromptRequestJsonInput.d.ts} +1 -1
  54. package/dist/api/types/{PromptRequestStringInputRequest.d.ts → PromptRequestStringInput.d.ts} +1 -1
  55. package/dist/api/types/{PromptSettingsRequest.d.ts → PromptSettings.d.ts} +1 -1
  56. package/dist/api/types/index.d.ts +7 -23
  57. package/dist/api/types/index.js +7 -23
  58. package/dist/serialization/resources/adHoc/client/requests/AdHocExecutePromptStream.d.ts +23 -0
  59. package/{serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.js → dist/serialization/resources/adHoc/client/requests/AdHocExecutePromptStream.js} +13 -14
  60. package/dist/serialization/resources/adHoc/client/requests/index.d.ts +1 -1
  61. package/dist/serialization/resources/adHoc/client/requests/index.js +3 -3
  62. package/dist/serialization/types/{AdHocExpandMetaRequest.d.ts → AdHocExpandMeta.d.ts} +2 -2
  63. package/dist/serialization/types/{AdHocExpandMetaRequest.js → AdHocExpandMeta.js} +2 -2
  64. package/dist/serialization/types/{PromptParametersRequest.d.ts → PromptParameters.d.ts} +2 -2
  65. package/dist/serialization/types/{PromptParametersRequest.js → PromptParameters.js} +2 -2
  66. package/dist/serialization/types/PromptRequestChatHistoryInput.d.ts +15 -0
  67. package/dist/serialization/types/{PromptRequestChatHistoryInputRequest.js → PromptRequestChatHistoryInput.js} +4 -4
  68. package/dist/serialization/types/PromptRequestInput.d.ts +13 -0
  69. package/dist/serialization/types/{JinjaPromptBlockPropertiesRequest.js → PromptRequestInput.js} +9 -6
  70. package/{serialization/types/PromptRequestJsonInputRequest.d.ts → dist/serialization/types/PromptRequestJsonInput.d.ts} +2 -2
  71. package/{serialization/types/PromptRequestJsonInputRequest.js → dist/serialization/types/PromptRequestJsonInput.js} +2 -2
  72. package/dist/serialization/types/{PromptRequestStringInputRequest.d.ts → PromptRequestStringInput.d.ts} +2 -2
  73. package/{serialization/types/PromptRequestStringInputRequest.js → dist/serialization/types/PromptRequestStringInput.js} +2 -2
  74. package/dist/serialization/types/{PromptSettingsRequest.d.ts → PromptSettings.d.ts} +2 -2
  75. package/dist/serialization/types/{PromptSettingsRequest.js → PromptSettings.js} +2 -2
  76. package/dist/serialization/types/index.d.ts +7 -23
  77. package/dist/serialization/types/index.js +7 -23
  78. package/dist/version.d.ts +1 -1
  79. package/dist/version.js +1 -1
  80. package/package.json +1 -1
  81. package/reference.md +8 -14
  82. package/serialization/resources/adHoc/client/requests/AdHocExecutePromptStream.d.ts +23 -0
  83. package/{dist/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.js → serialization/resources/adHoc/client/requests/AdHocExecutePromptStream.js} +13 -14
  84. package/serialization/resources/adHoc/client/requests/index.d.ts +1 -1
  85. package/serialization/resources/adHoc/client/requests/index.js +3 -3
  86. package/serialization/types/{AdHocExpandMetaRequest.d.ts → AdHocExpandMeta.d.ts} +2 -2
  87. package/serialization/types/{AdHocExpandMetaRequest.js → AdHocExpandMeta.js} +2 -2
  88. package/serialization/types/{PromptParametersRequest.d.ts → PromptParameters.d.ts} +2 -2
  89. package/serialization/types/{PromptParametersRequest.js → PromptParameters.js} +2 -2
  90. package/serialization/types/PromptRequestChatHistoryInput.d.ts +15 -0
  91. package/serialization/types/{PromptRequestChatHistoryInputRequest.js → PromptRequestChatHistoryInput.js} +4 -4
  92. package/serialization/types/PromptRequestInput.d.ts +13 -0
  93. package/{dist/serialization/types/EphemeralPromptCacheConfigTypeEnum.js → serialization/types/PromptRequestInput.js} +9 -2
  94. package/{dist/serialization/types/PromptRequestJsonInputRequest.d.ts → serialization/types/PromptRequestJsonInput.d.ts} +2 -2
  95. package/{dist/serialization/types/PromptRequestJsonInputRequest.js → serialization/types/PromptRequestJsonInput.js} +2 -2
  96. package/serialization/types/{PromptRequestStringInputRequest.d.ts → PromptRequestStringInput.d.ts} +2 -2
  97. package/{dist/serialization/types/PromptRequestStringInputRequest.js → serialization/types/PromptRequestStringInput.js} +2 -2
  98. package/serialization/types/{PromptSettingsRequest.d.ts → PromptSettings.d.ts} +2 -2
  99. package/serialization/types/{PromptSettingsRequest.js → PromptSettings.js} +2 -2
  100. package/serialization/types/index.d.ts +7 -23
  101. package/serialization/types/index.js +7 -23
  102. package/version.d.ts +1 -1
  103. package/version.js +1 -1
  104. package/api/types/ChatMessagePromptBlockPropertiesRequest.d.ts +0 -13
  105. package/api/types/ChatMessagePromptBlockRequest.d.ts +0 -13
  106. package/api/types/EphemeralPromptCacheConfigRequest.d.ts +0 -7
  107. package/api/types/EphemeralPromptCacheConfigTypeEnum.d.ts +0 -7
  108. package/api/types/FunctionDefinitionPromptBlockPropertiesRequest.d.ts +0 -15
  109. package/api/types/FunctionDefinitionPromptBlockRequest.d.ts +0 -13
  110. package/api/types/JinjaPromptBlockPropertiesRequest.d.ts +0 -8
  111. package/api/types/JinjaPromptBlockRequest.d.ts +0 -13
  112. package/api/types/PlainTextPromptBlockRequest.d.ts +0 -13
  113. package/api/types/PromptBlockRequest.d.ts +0 -5
  114. package/api/types/PromptBlockState.d.ts +0 -12
  115. package/api/types/PromptBlockState.js +0 -10
  116. package/api/types/PromptRequestInputRequest.d.ts +0 -5
  117. package/api/types/PromptRequestStringInputRequest.js +0 -5
  118. package/api/types/PromptSettingsRequest.js +0 -5
  119. package/api/types/RichTextChildBlockRequest.d.ts +0 -5
  120. package/api/types/RichTextChildBlockRequest.js +0 -5
  121. package/api/types/RichTextPromptBlockRequest.d.ts +0 -14
  122. package/api/types/RichTextPromptBlockRequest.js +0 -5
  123. package/api/types/VariablePromptBlockRequest.d.ts +0 -13
  124. package/api/types/VariablePromptBlockRequest.js +0 -5
  125. package/api/types/VellumVariableExtensionsRequest.d.ts +0 -9
  126. package/api/types/VellumVariableExtensionsRequest.js +0 -5
  127. package/api/types/VellumVariableRequest.d.ts +0 -12
  128. package/api/types/VellumVariableRequest.js +0 -5
  129. package/dist/api/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.js +0 -5
  130. package/dist/api/types/AdHocExpandMetaRequest.js +0 -5
  131. package/dist/api/types/ChatMessagePromptBlockPropertiesRequest.d.ts +0 -13
  132. package/dist/api/types/ChatMessagePromptBlockPropertiesRequest.js +0 -5
  133. package/dist/api/types/ChatMessagePromptBlockRequest.d.ts +0 -13
  134. package/dist/api/types/ChatMessagePromptBlockRequest.js +0 -5
  135. package/dist/api/types/EphemeralPromptCacheConfigRequest.d.ts +0 -7
  136. package/dist/api/types/EphemeralPromptCacheConfigRequest.js +0 -5
  137. package/dist/api/types/EphemeralPromptCacheConfigTypeEnum.d.ts +0 -7
  138. package/dist/api/types/EphemeralPromptCacheConfigTypeEnum.js +0 -5
  139. package/dist/api/types/FunctionDefinitionPromptBlockPropertiesRequest.d.ts +0 -15
  140. package/dist/api/types/FunctionDefinitionPromptBlockPropertiesRequest.js +0 -5
  141. package/dist/api/types/FunctionDefinitionPromptBlockRequest.d.ts +0 -13
  142. package/dist/api/types/FunctionDefinitionPromptBlockRequest.js +0 -5
  143. package/dist/api/types/JinjaPromptBlockPropertiesRequest.d.ts +0 -8
  144. package/dist/api/types/JinjaPromptBlockPropertiesRequest.js +0 -5
  145. package/dist/api/types/JinjaPromptBlockRequest.d.ts +0 -13
  146. package/dist/api/types/JinjaPromptBlockRequest.js +0 -5
  147. package/dist/api/types/PlainTextPromptBlockRequest.d.ts +0 -13
  148. package/dist/api/types/PlainTextPromptBlockRequest.js +0 -5
  149. package/dist/api/types/PromptBlockRequest.d.ts +0 -5
  150. package/dist/api/types/PromptBlockRequest.js +0 -5
  151. package/dist/api/types/PromptBlockState.d.ts +0 -12
  152. package/dist/api/types/PromptBlockState.js +0 -10
  153. package/dist/api/types/PromptParametersRequest.js +0 -5
  154. package/dist/api/types/PromptRequestChatHistoryInputRequest.js +0 -5
  155. package/dist/api/types/PromptRequestInputRequest.d.ts +0 -5
  156. package/dist/api/types/PromptRequestInputRequest.js +0 -5
  157. package/dist/api/types/PromptRequestJsonInputRequest.js +0 -5
  158. package/dist/api/types/PromptRequestStringInputRequest.js +0 -5
  159. package/dist/api/types/PromptSettingsRequest.js +0 -5
  160. package/dist/api/types/RichTextChildBlockRequest.d.ts +0 -5
  161. package/dist/api/types/RichTextChildBlockRequest.js +0 -5
  162. package/dist/api/types/RichTextPromptBlockRequest.d.ts +0 -14
  163. package/dist/api/types/RichTextPromptBlockRequest.js +0 -5
  164. package/dist/api/types/VariablePromptBlockRequest.d.ts +0 -13
  165. package/dist/api/types/VariablePromptBlockRequest.js +0 -5
  166. package/dist/api/types/VellumVariableExtensionsRequest.d.ts +0 -9
  167. package/dist/api/types/VellumVariableExtensionsRequest.js +0 -5
  168. package/dist/api/types/VellumVariableRequest.d.ts +0 -12
  169. package/dist/api/types/VellumVariableRequest.js +0 -5
  170. package/dist/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.d.ts +0 -23
  171. package/dist/serialization/types/ChatMessagePromptBlockPropertiesRequest.d.ts +0 -16
  172. package/dist/serialization/types/ChatMessagePromptBlockPropertiesRequest.js +0 -38
  173. package/dist/serialization/types/ChatMessagePromptBlockRequest.d.ts +0 -17
  174. package/dist/serialization/types/ChatMessagePromptBlockRequest.js +0 -39
  175. package/dist/serialization/types/EphemeralPromptCacheConfigRequest.d.ts +0 -13
  176. package/dist/serialization/types/EphemeralPromptCacheConfigRequest.js +0 -34
  177. package/dist/serialization/types/EphemeralPromptCacheConfigTypeEnum.d.ts +0 -10
  178. package/dist/serialization/types/FunctionDefinitionPromptBlockPropertiesRequest.d.ts +0 -16
  179. package/dist/serialization/types/FunctionDefinitionPromptBlockPropertiesRequest.js +0 -37
  180. package/dist/serialization/types/FunctionDefinitionPromptBlockRequest.d.ts +0 -18
  181. package/dist/serialization/types/FunctionDefinitionPromptBlockRequest.js +0 -39
  182. package/dist/serialization/types/JinjaPromptBlockPropertiesRequest.d.ts +0 -14
  183. package/dist/serialization/types/JinjaPromptBlockRequest.d.ts +0 -18
  184. package/dist/serialization/types/JinjaPromptBlockRequest.js +0 -39
  185. package/dist/serialization/types/PlainTextPromptBlockRequest.d.ts +0 -17
  186. package/dist/serialization/types/PlainTextPromptBlockRequest.js +0 -38
  187. package/dist/serialization/types/PromptBlockRequest.d.ts +0 -14
  188. package/dist/serialization/types/PromptBlockRequest.js +0 -42
  189. package/dist/serialization/types/PromptBlockState.d.ts +0 -10
  190. package/dist/serialization/types/PromptBlockState.js +0 -31
  191. package/dist/serialization/types/PromptRequestChatHistoryInputRequest.d.ts +0 -15
  192. package/dist/serialization/types/PromptRequestInputRequest.d.ts +0 -13
  193. package/dist/serialization/types/PromptRequestInputRequest.js +0 -38
  194. package/dist/serialization/types/RichTextChildBlockRequest.d.ts +0 -12
  195. package/dist/serialization/types/RichTextChildBlockRequest.js +0 -33
  196. package/dist/serialization/types/RichTextPromptBlockRequest.d.ts +0 -19
  197. package/dist/serialization/types/RichTextPromptBlockRequest.js +0 -40
  198. package/dist/serialization/types/VariablePromptBlockRequest.d.ts +0 -17
  199. package/dist/serialization/types/VariablePromptBlockRequest.js +0 -38
  200. package/dist/serialization/types/VellumVariableExtensionsRequest.d.ts +0 -12
  201. package/dist/serialization/types/VellumVariableExtensionsRequest.js +0 -33
  202. package/dist/serialization/types/VellumVariableRequest.d.ts +0 -19
  203. package/dist/serialization/types/VellumVariableRequest.js +0 -41
  204. package/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.d.ts +0 -23
  205. package/serialization/types/ChatMessagePromptBlockPropertiesRequest.d.ts +0 -16
  206. package/serialization/types/ChatMessagePromptBlockPropertiesRequest.js +0 -38
  207. package/serialization/types/ChatMessagePromptBlockRequest.d.ts +0 -17
  208. package/serialization/types/ChatMessagePromptBlockRequest.js +0 -39
  209. package/serialization/types/EphemeralPromptCacheConfigRequest.d.ts +0 -13
  210. package/serialization/types/EphemeralPromptCacheConfigRequest.js +0 -34
  211. package/serialization/types/EphemeralPromptCacheConfigTypeEnum.d.ts +0 -10
  212. package/serialization/types/EphemeralPromptCacheConfigTypeEnum.js +0 -31
  213. package/serialization/types/FunctionDefinitionPromptBlockPropertiesRequest.d.ts +0 -16
  214. package/serialization/types/FunctionDefinitionPromptBlockPropertiesRequest.js +0 -37
  215. package/serialization/types/FunctionDefinitionPromptBlockRequest.d.ts +0 -18
  216. package/serialization/types/FunctionDefinitionPromptBlockRequest.js +0 -39
  217. package/serialization/types/JinjaPromptBlockPropertiesRequest.d.ts +0 -14
  218. package/serialization/types/JinjaPromptBlockPropertiesRequest.js +0 -35
  219. package/serialization/types/JinjaPromptBlockRequest.d.ts +0 -18
  220. package/serialization/types/JinjaPromptBlockRequest.js +0 -39
  221. package/serialization/types/PlainTextPromptBlockRequest.d.ts +0 -17
  222. package/serialization/types/PlainTextPromptBlockRequest.js +0 -38
  223. package/serialization/types/PromptBlockRequest.d.ts +0 -14
  224. package/serialization/types/PromptBlockRequest.js +0 -42
  225. package/serialization/types/PromptBlockState.d.ts +0 -10
  226. package/serialization/types/PromptBlockState.js +0 -31
  227. package/serialization/types/PromptRequestChatHistoryInputRequest.d.ts +0 -15
  228. package/serialization/types/PromptRequestInputRequest.d.ts +0 -13
  229. package/serialization/types/PromptRequestInputRequest.js +0 -38
  230. package/serialization/types/RichTextChildBlockRequest.d.ts +0 -12
  231. package/serialization/types/RichTextChildBlockRequest.js +0 -33
  232. package/serialization/types/RichTextPromptBlockRequest.d.ts +0 -19
  233. package/serialization/types/RichTextPromptBlockRequest.js +0 -40
  234. package/serialization/types/VariablePromptBlockRequest.d.ts +0 -17
  235. package/serialization/types/VariablePromptBlockRequest.js +0 -38
  236. package/serialization/types/VellumVariableExtensionsRequest.d.ts +0 -12
  237. package/serialization/types/VellumVariableExtensionsRequest.js +0 -33
  238. package/serialization/types/VellumVariableRequest.d.ts +0 -19
  239. package/serialization/types/VellumVariableRequest.js +0 -41
  240. /package/api/resources/adHoc/client/requests/{AdHocExecutePromptStreamRequest.js → AdHocExecutePromptStream.js} +0 -0
  241. /package/api/types/{AdHocExpandMetaRequest.js → AdHocExpandMeta.js} +0 -0
  242. /package/api/types/{ChatMessagePromptBlockPropertiesRequest.js → PromptParameters.js} +0 -0
  243. /package/api/types/{ChatMessagePromptBlockRequest.js → PromptRequestChatHistoryInput.js} +0 -0
  244. /package/api/types/{EphemeralPromptCacheConfigRequest.js → PromptRequestInput.js} +0 -0
  245. /package/api/types/{EphemeralPromptCacheConfigTypeEnum.js → PromptRequestJsonInput.js} +0 -0
  246. /package/api/types/{FunctionDefinitionPromptBlockPropertiesRequest.js → PromptRequestStringInput.js} +0 -0
  247. /package/api/types/{FunctionDefinitionPromptBlockRequest.js → PromptSettings.js} +0 -0
  248. /package/{api/types/JinjaPromptBlockPropertiesRequest.js → dist/api/resources/adHoc/client/requests/AdHocExecutePromptStream.js} +0 -0
  249. /package/{api/types/JinjaPromptBlockRequest.js → dist/api/types/AdHocExpandMeta.js} +0 -0
  250. /package/{api/types/PlainTextPromptBlockRequest.js → dist/api/types/PromptParameters.js} +0 -0
  251. /package/{api/types/PromptBlockRequest.js → dist/api/types/PromptRequestChatHistoryInput.js} +0 -0
  252. /package/{api/types/PromptParametersRequest.js → dist/api/types/PromptRequestInput.js} +0 -0
  253. /package/{api/types/PromptRequestChatHistoryInputRequest.js → dist/api/types/PromptRequestJsonInput.js} +0 -0
  254. /package/{api/types/PromptRequestInputRequest.js → dist/api/types/PromptRequestStringInput.js} +0 -0
  255. /package/{api/types/PromptRequestJsonInputRequest.js → dist/api/types/PromptSettings.js} +0 -0
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export interface PromptSettingsRequest {
4
+ export interface PromptSettings {
5
5
  timeout?: number;
6
6
  }
@@ -1,5 +1,5 @@
1
1
  export * from "./AdHocExecutePromptEvent";
2
- export * from "./AdHocExpandMetaRequest";
2
+ export * from "./AdHocExpandMeta";
3
3
  export * from "./AdHocFulfilledPromptExecutionMeta";
4
4
  export * from "./AdHocInitiatedPromptExecutionMeta";
5
5
  export * from "./AdHocRejectedPromptExecutionMeta";
@@ -34,8 +34,6 @@ export * from "./ChatHistoryVellumValueRequest";
34
34
  export * from "./ChatMessage";
35
35
  export * from "./ChatMessageContent";
36
36
  export * from "./ChatMessageContentRequest";
37
- export * from "./ChatMessagePromptBlockPropertiesRequest";
38
- export * from "./ChatMessagePromptBlockRequest";
39
37
  export * from "./ChatMessageRequest";
40
38
  export * from "./ChatMessageRole";
41
39
  export * from "./CodeExecutionNodeArrayResult";
@@ -79,8 +77,6 @@ export * from "./EnrichedNormalizedCompletion";
79
77
  export * from "./EntityStatus";
80
78
  export * from "./EntityVisibility";
81
79
  export * from "./EnvironmentEnum";
82
- export * from "./EphemeralPromptCacheConfigRequest";
83
- export * from "./EphemeralPromptCacheConfigTypeEnum";
84
80
  export * from "./ErrorInputRequest";
85
81
  export * from "./ErrorVariableValue";
86
82
  export * from "./ErrorVellumValue";
@@ -129,8 +125,6 @@ export * from "./FunctionCallRequest";
129
125
  export * from "./FunctionCallVariableValue";
130
126
  export * from "./FunctionCallVellumValue";
131
127
  export * from "./FunctionCallVellumValueRequest";
132
- export * from "./FunctionDefinitionPromptBlockPropertiesRequest";
133
- export * from "./FunctionDefinitionPromptBlockRequest";
134
128
  export * from "./GenerateOptionsRequest";
135
129
  export * from "./GenerateRequest";
136
130
  export * from "./GenerateResponse";
@@ -164,8 +158,6 @@ export * from "./InstructorVectorizerConfig";
164
158
  export * from "./InstructorVectorizerConfigRequest";
165
159
  export * from "./IterationStateEnum";
166
160
  export * from "./JsonInputRequest";
167
- export * from "./JinjaPromptBlockPropertiesRequest";
168
- export * from "./JinjaPromptBlockRequest";
169
161
  export * from "./JsonVariableValue";
170
162
  export * from "./JsonVellumValue";
171
163
  export * from "./JsonVellumValueRequest";
@@ -249,12 +241,9 @@ export * from "./PaginatedTestSuiteTestCaseList";
249
241
  export * from "./PaginatedWorkflowReleaseTagReadList";
250
242
  export * from "./PdfSearchResultMetaSource";
251
243
  export * from "./PdfSearchResultMetaSourceRequest";
252
- export * from "./PlainTextPromptBlockRequest";
253
244
  export * from "./Price";
254
245
  export * from "./ProcessingFailureReasonEnum";
255
246
  export * from "./ProcessingStateEnum";
256
- export * from "./PromptBlockRequest";
257
- export * from "./PromptBlockState";
258
247
  export * from "./PromptDeploymentExpandMetaRequest";
259
248
  export * from "./PromptDeploymentInputRequest";
260
249
  export * from "./PromptExecutionMeta";
@@ -262,12 +251,12 @@ export * from "./PromptNodeExecutionMeta";
262
251
  export * from "./PromptNodeResult";
263
252
  export * from "./PromptNodeResultData";
264
253
  export * from "./PromptOutput";
265
- export * from "./PromptParametersRequest";
266
- export * from "./PromptRequestChatHistoryInputRequest";
267
- export * from "./PromptRequestInputRequest";
268
- export * from "./PromptRequestJsonInputRequest";
269
- export * from "./PromptRequestStringInputRequest";
270
- export * from "./PromptSettingsRequest";
254
+ export * from "./PromptParameters";
255
+ export * from "./PromptRequestChatHistoryInput";
256
+ export * from "./PromptRequestInput";
257
+ export * from "./PromptRequestJsonInput";
258
+ export * from "./PromptRequestStringInput";
259
+ export * from "./PromptSettings";
271
260
  export * from "./RawPromptExecutionOverridesRequest";
272
261
  export * from "./ReductoChunkerConfig";
273
262
  export * from "./ReductoChunkerConfigRequest";
@@ -281,8 +270,6 @@ export * from "./RejectedPromptExecutionMeta";
281
270
  export * from "./RejectedWorkflowNodeResultEvent";
282
271
  export * from "./ReleaseTagSource";
283
272
  export * from "./ReplaceTestSuiteTestCaseRequest";
284
- export * from "./RichTextChildBlockRequest";
285
- export * from "./RichTextPromptBlockRequest";
286
273
  export * from "./SandboxScenario";
287
274
  export * from "./ScenarioInput";
288
275
  export * from "./ScenarioInputChatHistoryVariableValue";
@@ -416,7 +403,6 @@ export * from "./TokenOverlappingWindowChunkingRequest";
416
403
  export * from "./UnitEnum";
417
404
  export * from "./UploadDocumentResponse";
418
405
  export * from "./UpsertTestSuiteTestCaseRequest";
419
- export * from "./VariablePromptBlockRequest";
420
406
  export * from "./VellumAudio";
421
407
  export * from "./VellumAudioRequest";
422
408
  export * from "./VellumError";
@@ -431,8 +417,6 @@ export * from "./VellumValueLogicalExpressionRequest";
431
417
  export * from "./VellumValueRequest";
432
418
  export * from "./VellumVariable";
433
419
  export * from "./VellumVariableExtensions";
434
- export * from "./VellumVariableExtensionsRequest";
435
- export * from "./VellumVariableRequest";
436
420
  export * from "./VellumVariableType";
437
421
  export * from "./WorkflowDeploymentRead";
438
422
  export * from "./WorkflowEventError";
@@ -15,7 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./AdHocExecutePromptEvent"), exports);
18
- __exportStar(require("./AdHocExpandMetaRequest"), exports);
18
+ __exportStar(require("./AdHocExpandMeta"), exports);
19
19
  __exportStar(require("./AdHocFulfilledPromptExecutionMeta"), exports);
20
20
  __exportStar(require("./AdHocInitiatedPromptExecutionMeta"), exports);
21
21
  __exportStar(require("./AdHocRejectedPromptExecutionMeta"), exports);
@@ -50,8 +50,6 @@ __exportStar(require("./ChatHistoryVellumValueRequest"), exports);
50
50
  __exportStar(require("./ChatMessage"), exports);
51
51
  __exportStar(require("./ChatMessageContent"), exports);
52
52
  __exportStar(require("./ChatMessageContentRequest"), exports);
53
- __exportStar(require("./ChatMessagePromptBlockPropertiesRequest"), exports);
54
- __exportStar(require("./ChatMessagePromptBlockRequest"), exports);
55
53
  __exportStar(require("./ChatMessageRequest"), exports);
56
54
  __exportStar(require("./ChatMessageRole"), exports);
57
55
  __exportStar(require("./CodeExecutionNodeArrayResult"), exports);
@@ -95,8 +93,6 @@ __exportStar(require("./EnrichedNormalizedCompletion"), exports);
95
93
  __exportStar(require("./EntityStatus"), exports);
96
94
  __exportStar(require("./EntityVisibility"), exports);
97
95
  __exportStar(require("./EnvironmentEnum"), exports);
98
- __exportStar(require("./EphemeralPromptCacheConfigRequest"), exports);
99
- __exportStar(require("./EphemeralPromptCacheConfigTypeEnum"), exports);
100
96
  __exportStar(require("./ErrorInputRequest"), exports);
101
97
  __exportStar(require("./ErrorVariableValue"), exports);
102
98
  __exportStar(require("./ErrorVellumValue"), exports);
@@ -145,8 +141,6 @@ __exportStar(require("./FunctionCallRequest"), exports);
145
141
  __exportStar(require("./FunctionCallVariableValue"), exports);
146
142
  __exportStar(require("./FunctionCallVellumValue"), exports);
147
143
  __exportStar(require("./FunctionCallVellumValueRequest"), exports);
148
- __exportStar(require("./FunctionDefinitionPromptBlockPropertiesRequest"), exports);
149
- __exportStar(require("./FunctionDefinitionPromptBlockRequest"), exports);
150
144
  __exportStar(require("./GenerateOptionsRequest"), exports);
151
145
  __exportStar(require("./GenerateRequest"), exports);
152
146
  __exportStar(require("./GenerateResponse"), exports);
@@ -180,8 +174,6 @@ __exportStar(require("./InstructorVectorizerConfig"), exports);
180
174
  __exportStar(require("./InstructorVectorizerConfigRequest"), exports);
181
175
  __exportStar(require("./IterationStateEnum"), exports);
182
176
  __exportStar(require("./JsonInputRequest"), exports);
183
- __exportStar(require("./JinjaPromptBlockPropertiesRequest"), exports);
184
- __exportStar(require("./JinjaPromptBlockRequest"), exports);
185
177
  __exportStar(require("./JsonVariableValue"), exports);
186
178
  __exportStar(require("./JsonVellumValue"), exports);
187
179
  __exportStar(require("./JsonVellumValueRequest"), exports);
@@ -265,12 +257,9 @@ __exportStar(require("./PaginatedTestSuiteTestCaseList"), exports);
265
257
  __exportStar(require("./PaginatedWorkflowReleaseTagReadList"), exports);
266
258
  __exportStar(require("./PdfSearchResultMetaSource"), exports);
267
259
  __exportStar(require("./PdfSearchResultMetaSourceRequest"), exports);
268
- __exportStar(require("./PlainTextPromptBlockRequest"), exports);
269
260
  __exportStar(require("./Price"), exports);
270
261
  __exportStar(require("./ProcessingFailureReasonEnum"), exports);
271
262
  __exportStar(require("./ProcessingStateEnum"), exports);
272
- __exportStar(require("./PromptBlockRequest"), exports);
273
- __exportStar(require("./PromptBlockState"), exports);
274
263
  __exportStar(require("./PromptDeploymentExpandMetaRequest"), exports);
275
264
  __exportStar(require("./PromptDeploymentInputRequest"), exports);
276
265
  __exportStar(require("./PromptExecutionMeta"), exports);
@@ -278,12 +267,12 @@ __exportStar(require("./PromptNodeExecutionMeta"), exports);
278
267
  __exportStar(require("./PromptNodeResult"), exports);
279
268
  __exportStar(require("./PromptNodeResultData"), exports);
280
269
  __exportStar(require("./PromptOutput"), exports);
281
- __exportStar(require("./PromptParametersRequest"), exports);
282
- __exportStar(require("./PromptRequestChatHistoryInputRequest"), exports);
283
- __exportStar(require("./PromptRequestInputRequest"), exports);
284
- __exportStar(require("./PromptRequestJsonInputRequest"), exports);
285
- __exportStar(require("./PromptRequestStringInputRequest"), exports);
286
- __exportStar(require("./PromptSettingsRequest"), exports);
270
+ __exportStar(require("./PromptParameters"), exports);
271
+ __exportStar(require("./PromptRequestChatHistoryInput"), exports);
272
+ __exportStar(require("./PromptRequestInput"), exports);
273
+ __exportStar(require("./PromptRequestJsonInput"), exports);
274
+ __exportStar(require("./PromptRequestStringInput"), exports);
275
+ __exportStar(require("./PromptSettings"), exports);
287
276
  __exportStar(require("./RawPromptExecutionOverridesRequest"), exports);
288
277
  __exportStar(require("./ReductoChunkerConfig"), exports);
289
278
  __exportStar(require("./ReductoChunkerConfigRequest"), exports);
@@ -297,8 +286,6 @@ __exportStar(require("./RejectedPromptExecutionMeta"), exports);
297
286
  __exportStar(require("./RejectedWorkflowNodeResultEvent"), exports);
298
287
  __exportStar(require("./ReleaseTagSource"), exports);
299
288
  __exportStar(require("./ReplaceTestSuiteTestCaseRequest"), exports);
300
- __exportStar(require("./RichTextChildBlockRequest"), exports);
301
- __exportStar(require("./RichTextPromptBlockRequest"), exports);
302
289
  __exportStar(require("./SandboxScenario"), exports);
303
290
  __exportStar(require("./ScenarioInput"), exports);
304
291
  __exportStar(require("./ScenarioInputChatHistoryVariableValue"), exports);
@@ -432,7 +419,6 @@ __exportStar(require("./TokenOverlappingWindowChunkingRequest"), exports);
432
419
  __exportStar(require("./UnitEnum"), exports);
433
420
  __exportStar(require("./UploadDocumentResponse"), exports);
434
421
  __exportStar(require("./UpsertTestSuiteTestCaseRequest"), exports);
435
- __exportStar(require("./VariablePromptBlockRequest"), exports);
436
422
  __exportStar(require("./VellumAudio"), exports);
437
423
  __exportStar(require("./VellumAudioRequest"), exports);
438
424
  __exportStar(require("./VellumError"), exports);
@@ -447,8 +433,6 @@ __exportStar(require("./VellumValueLogicalExpressionRequest"), exports);
447
433
  __exportStar(require("./VellumValueRequest"), exports);
448
434
  __exportStar(require("./VellumVariable"), exports);
449
435
  __exportStar(require("./VellumVariableExtensions"), exports);
450
- __exportStar(require("./VellumVariableExtensionsRequest"), exports);
451
- __exportStar(require("./VellumVariableRequest"), exports);
452
436
  __exportStar(require("./VellumVariableType"), exports);
453
437
  __exportStar(require("./WorkflowDeploymentRead"), exports);
454
438
  __exportStar(require("./WorkflowEventError"), exports);
package/dist/Client.js CHANGED
@@ -94,7 +94,7 @@ class VellumClient {
94
94
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
95
95
  .default, "v1/execute-code"),
96
96
  method: "POST",
97
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
97
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
98
98
  contentType: "application/json",
99
99
  requestType: "json",
100
100
  body: serializers.CodeExecutorRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -163,7 +163,7 @@ class VellumClient {
163
163
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
164
164
  .predict, "v1/execute-prompt"),
165
165
  method: "POST",
166
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
166
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
167
167
  contentType: "application/json",
168
168
  requestType: "json",
169
169
  body: serializers.ExecutePromptRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -221,7 +221,7 @@ class VellumClient {
221
221
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
222
222
  .predict, "v1/execute-prompt-stream"),
223
223
  method: "POST",
224
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
224
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
225
225
  contentType: "application/json",
226
226
  requestType: "json",
227
227
  body: serializers.ExecutePromptStreamRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -306,7 +306,7 @@ class VellumClient {
306
306
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
307
307
  .predict, "v1/execute-workflow"),
308
308
  method: "POST",
309
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
309
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
310
310
  contentType: "application/json",
311
311
  requestType: "json",
312
312
  body: serializers.ExecuteWorkflowRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -362,7 +362,7 @@ class VellumClient {
362
362
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
363
363
  .predict, "v1/execute-workflow-stream"),
364
364
  method: "POST",
365
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
365
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
366
366
  contentType: "application/json",
367
367
  requestType: "json",
368
368
  body: serializers.ExecuteWorkflowStreamRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -449,7 +449,7 @@ class VellumClient {
449
449
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
450
450
  .predict, "v1/generate"),
451
451
  method: "POST",
452
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
452
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
453
453
  contentType: "application/json",
454
454
  requestType: "json",
455
455
  body: serializers.GenerateBodyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -510,7 +510,7 @@ class VellumClient {
510
510
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
511
511
  .predict, "v1/generate-stream"),
512
512
  method: "POST",
513
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
513
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
514
514
  contentType: "application/json",
515
515
  requestType: "json",
516
516
  body: serializers.GenerateStreamBodyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -591,7 +591,7 @@ class VellumClient {
591
591
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
592
592
  .predict, "v1/search"),
593
593
  method: "POST",
594
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
594
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
595
595
  contentType: "application/json",
596
596
  requestType: "json",
597
597
  body: serializers.SearchRequestBodyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -659,7 +659,7 @@ class VellumClient {
659
659
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
660
660
  .predict, "v1/submit-completion-actuals"),
661
661
  method: "POST",
662
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
662
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
663
663
  contentType: "application/json",
664
664
  requestType: "json",
665
665
  body: serializers.SubmitCompletionActualsRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -722,7 +722,7 @@ class VellumClient {
722
722
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
723
723
  .predict, "v1/submit-workflow-execution-actuals"),
724
724
  method: "POST",
725
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
725
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
726
726
  contentType: "application/json",
727
727
  requestType: "json",
728
728
  body: serializers.SubmitWorkflowExecutionActualsRequest.jsonOrThrow(request, {
@@ -24,7 +24,7 @@ export declare class AdHoc {
24
24
  /**
25
25
  * An internal-only endpoint that's subject to breaking changes without notice. Not intended for public use.
26
26
  */
27
- adhocExecutePromptStream(request: Vellum.AdHocExecutePromptStreamRequest, requestOptions?: AdHoc.RequestOptions): Promise<core.Stream<Vellum.AdHocExecutePromptEvent>>;
27
+ adhocExecutePromptStream(request: Vellum.AdHocExecutePromptStream, requestOptions?: AdHoc.RequestOptions): Promise<core.Stream<Vellum.AdHocExecutePromptEvent>>;
28
28
  protected _getCustomAuthorizationHeaders(): Promise<{
29
29
  X_API_KEY: string | undefined;
30
30
  }>;
@@ -59,10 +59,10 @@ class AdHoc {
59
59
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
60
60
  .default, "v1/ad-hoc/execute-prompt-stream"),
61
61
  method: "POST",
62
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
62
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
63
63
  contentType: "application/json",
64
64
  requestType: "json",
65
- body: serializers.AdHocExecutePromptStreamRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
65
+ body: serializers.AdHocExecutePromptStream.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
66
66
  responseType: "sse",
67
67
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
68
68
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
@@ -18,10 +18,14 @@ import * as Vellum from "../../../../index";
18
18
  * required: true,
19
19
  * default: {
20
20
  * type: "STRING",
21
- * value: "string"
21
+ * value: {
22
+ * "key": "value"
23
+ * }
22
24
  * },
23
25
  * extensions: {
24
- * color: "string"
26
+ * color: {
27
+ * "key": "value"
28
+ * }
25
29
  * }
26
30
  * }],
27
31
  * parameters: {
@@ -47,17 +51,7 @@ import * as Vellum from "../../../../index";
47
51
  * timeout: 1.1
48
52
  * },
49
53
  * blocks: [{
50
- * state: "ENABLED",
51
- * cacheConfig: {
52
- * type: {
53
- * "key": "value"
54
- * }
55
- * },
56
- * blockType: "JINJA",
57
- * properties: {
58
- * template: "string",
59
- * templateType: "STRING"
60
- * }
54
+ * "key": "value"
61
55
  * }],
62
56
  * expandMeta: {
63
57
  * cost: true,
@@ -67,12 +61,12 @@ import * as Vellum from "../../../../index";
67
61
  * }
68
62
  * }
69
63
  */
70
- export interface AdHocExecutePromptStreamRequest {
64
+ export interface AdHocExecutePromptStream {
71
65
  mlModel: string;
72
- inputValues: Vellum.PromptRequestInputRequest[];
73
- inputVariables: Vellum.VellumVariableRequest[];
74
- parameters: Vellum.PromptParametersRequest;
75
- settings?: Vellum.PromptSettingsRequest;
76
- blocks: Vellum.PromptBlockRequest[];
77
- expandMeta?: Vellum.AdHocExpandMetaRequest;
66
+ inputValues: Vellum.PromptRequestInput[];
67
+ inputVariables: Vellum.VellumVariable[];
68
+ parameters: Vellum.PromptParameters;
69
+ settings?: Vellum.PromptSettings;
70
+ blocks: unknown[];
71
+ expandMeta?: Vellum.AdHocExpandMeta;
78
72
  }
@@ -1 +1 @@
1
- export { type AdHocExecutePromptStreamRequest } from "./AdHocExecutePromptStreamRequest";
1
+ export { type AdHocExecutePromptStream } from "./AdHocExecutePromptStream";
@@ -75,7 +75,7 @@ class ContainerImages {
75
75
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
76
76
  .default, "v1/container-images"),
77
77
  method: "GET",
78
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
78
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
79
79
  contentType: "application/json",
80
80
  queryParameters: _queryParams,
81
81
  requestType: "json",
@@ -128,7 +128,7 @@ class ContainerImages {
128
128
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
129
129
  .default, `v1/container-images/${encodeURIComponent(id)}`),
130
130
  method: "GET",
131
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
131
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
132
132
  contentType: "application/json",
133
133
  requestType: "json",
134
134
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -179,7 +179,7 @@ class ContainerImages {
179
179
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
180
180
  .default, "v1/container-images/docker-service-token"),
181
181
  method: "GET",
182
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
182
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
183
183
  contentType: "application/json",
184
184
  requestType: "json",
185
185
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -235,7 +235,7 @@ class ContainerImages {
235
235
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
236
236
  .default, "v1/container-images/push"),
237
237
  method: "POST",
238
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
238
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
239
239
  contentType: "application/json",
240
240
  requestType: "json",
241
241
  body: serializers.PushContainerImageRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -79,7 +79,7 @@ class Deployments {
79
79
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
80
80
  .default, "v1/deployments"),
81
81
  method: "GET",
82
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
82
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
83
83
  contentType: "application/json",
84
84
  queryParameters: _queryParams,
85
85
  requestType: "json",
@@ -132,7 +132,7 @@ class Deployments {
132
132
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
133
133
  .default, `v1/deployments/${encodeURIComponent(id)}`),
134
134
  method: "GET",
135
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
135
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
136
136
  contentType: "application/json",
137
137
  requestType: "json",
138
138
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -199,7 +199,7 @@ class Deployments {
199
199
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
200
200
  .default, `v1/deployments/${encodeURIComponent(id)}/release-tags`),
201
201
  method: "GET",
202
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
202
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
203
203
  contentType: "application/json",
204
204
  queryParameters: _queryParams,
205
205
  requestType: "json",
@@ -253,7 +253,7 @@ class Deployments {
253
253
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
254
254
  .default, `v1/deployments/${encodeURIComponent(id)}/release-tags/${encodeURIComponent(name)}`),
255
255
  method: "GET",
256
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
256
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
257
257
  contentType: "application/json",
258
258
  requestType: "json",
259
259
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -307,7 +307,7 @@ class Deployments {
307
307
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
308
308
  .default, `v1/deployments/${encodeURIComponent(id)}/release-tags/${encodeURIComponent(name)}`),
309
309
  method: "PATCH",
310
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
310
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
311
311
  contentType: "application/json",
312
312
  requestType: "json",
313
313
  body: serializers.PatchedDeploymentReleaseTagUpdateRequest.jsonOrThrow(request, {
@@ -382,7 +382,7 @@ class Deployments {
382
382
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
383
383
  .default, "v1/deployments/provider-payload"),
384
384
  method: "POST",
385
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
385
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
386
386
  contentType: "application/json",
387
387
  requestType: "json",
388
388
  body: serializers.DeploymentProviderPayloadRequest.jsonOrThrow(request, {
@@ -81,7 +81,7 @@ class DocumentIndexes {
81
81
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
82
82
  .default, "v1/document-indexes"),
83
83
  method: "GET",
84
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
84
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
85
85
  contentType: "application/json",
86
86
  queryParameters: _queryParams,
87
87
  requestType: "json",
@@ -196,7 +196,7 @@ class DocumentIndexes {
196
196
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
197
197
  .default, "v1/document-indexes"),
198
198
  method: "POST",
199
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
199
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
200
200
  contentType: "application/json",
201
201
  requestType: "json",
202
202
  body: serializers.DocumentIndexCreateRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -249,7 +249,7 @@ class DocumentIndexes {
249
249
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
250
250
  .default, `v1/document-indexes/${encodeURIComponent(id)}`),
251
251
  method: "GET",
252
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
252
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
253
253
  contentType: "application/json",
254
254
  requestType: "json",
255
255
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -304,7 +304,7 @@ class DocumentIndexes {
304
304
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
305
305
  .default, `v1/document-indexes/${encodeURIComponent(id)}`),
306
306
  method: "PUT",
307
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
307
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
308
308
  contentType: "application/json",
309
309
  requestType: "json",
310
310
  body: serializers.DocumentIndexUpdateRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -357,7 +357,7 @@ class DocumentIndexes {
357
357
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
358
358
  .documents, `v1/document-indexes/${encodeURIComponent(id)}`),
359
359
  method: "DELETE",
360
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
360
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
361
361
  contentType: "application/json",
362
362
  requestType: "json",
363
363
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -405,7 +405,7 @@ class DocumentIndexes {
405
405
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
406
406
  .default, `v1/document-indexes/${encodeURIComponent(id)}`),
407
407
  method: "PATCH",
408
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
408
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
409
409
  contentType: "application/json",
410
410
  requestType: "json",
411
411
  body: serializers.PatchedDocumentIndexUpdateRequest.jsonOrThrow(request, {
@@ -461,7 +461,7 @@ class DocumentIndexes {
461
461
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
462
462
  .default, `v1/document-indexes/${encodeURIComponent(id)}/documents/${encodeURIComponent(documentId)}`),
463
463
  method: "POST",
464
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
464
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
465
465
  contentType: "application/json",
466
466
  requestType: "json",
467
467
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
@@ -509,7 +509,7 @@ class DocumentIndexes {
509
509
  url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
510
510
  .documents, `v1/document-indexes/${encodeURIComponent(id)}/documents/${encodeURIComponent(documentId)}`),
511
511
  method: "DELETE",
512
- headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.6", "User-Agent": "vellum-ai/0.9.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
512
+ headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.9.7", "User-Agent": "vellum-ai/0.9.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
513
513
  contentType: "application/json",
514
514
  requestType: "json",
515
515
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,