vellum-ai 0.0.44 → 0.1.0

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 (349) hide show
  1. package/Client.d.ts +23 -26
  2. package/Client.js +288 -242
  3. package/api/resources/deployments/client/Client.d.ts +8 -4
  4. package/api/resources/deployments/client/Client.js +52 -34
  5. package/api/resources/documentIndexes/client/Client.d.ts +9 -5
  6. package/api/resources/documentIndexes/client/Client.js +97 -69
  7. package/api/resources/documents/client/Client.d.ts +14 -10
  8. package/api/resources/documents/client/Client.js +222 -176
  9. package/api/resources/modelVersions/client/Client.d.ts +9 -5
  10. package/api/resources/modelVersions/client/Client.js +96 -68
  11. package/api/resources/registeredPrompts/client/Client.d.ts +11 -7
  12. package/api/resources/registeredPrompts/client/Client.js +72 -53
  13. package/api/resources/sandboxes/client/Client.d.ts +9 -5
  14. package/api/resources/sandboxes/client/Client.js +92 -65
  15. package/api/resources/testSuites/client/Client.d.ts +9 -5
  16. package/api/resources/testSuites/client/Client.js +90 -63
  17. package/core/fetcher/Fetcher.d.ts +5 -3
  18. package/core/fetcher/Fetcher.js +104 -62
  19. package/core/fetcher/Supplier.js +11 -2
  20. package/core/fetcher/index.d.ts +3 -2
  21. package/core/form-data-utils/getFormDataContentLength.d.ts +1 -1
  22. package/core/form-data-utils/getFormDataContentLength.js +20 -9
  23. package/core/index.d.ts +1 -2
  24. package/core/index.js +4 -5
  25. package/core/schemas/Schema.d.ts +19 -0
  26. package/core/schemas/Schema.js +1 -0
  27. package/core/schemas/builders/date/date.js +22 -14
  28. package/core/schemas/builders/enum/enum.js +17 -7
  29. package/core/schemas/builders/lazy/index.d.ts +2 -1
  30. package/core/schemas/builders/lazy/lazy.js +21 -13
  31. package/core/schemas/builders/lazy/lazyObject.js +11 -11
  32. package/core/schemas/builders/list/list.js +53 -38
  33. package/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
  34. package/core/schemas/builders/literals/booleanLiteral.js +29 -0
  35. package/core/schemas/builders/literals/index.d.ts +1 -0
  36. package/core/schemas/builders/literals/index.js +3 -1
  37. package/core/schemas/builders/literals/stringLiteral.js +4 -3
  38. package/core/schemas/builders/object/index.d.ts +5 -2
  39. package/core/schemas/builders/object/index.js +3 -1
  40. package/core/schemas/builders/object/object.js +150 -129
  41. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
  42. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
  43. package/core/schemas/builders/object-like/getObjectLikeUtils.js +19 -18
  44. package/core/schemas/builders/object-like/index.d.ts +1 -1
  45. package/core/schemas/builders/primitives/boolean.js +4 -3
  46. package/core/schemas/builders/primitives/number.js +4 -3
  47. package/core/schemas/builders/primitives/string.js +4 -3
  48. package/core/schemas/builders/record/index.d.ts +1 -1
  49. package/core/schemas/builders/record/record.js +82 -67
  50. package/core/schemas/builders/schema-utils/JsonError.js +0 -1
  51. package/core/schemas/builders/schema-utils/ParseError.js +0 -1
  52. package/core/schemas/builders/schema-utils/getSchemaUtils.js +23 -20
  53. package/core/schemas/builders/schema-utils/index.d.ts +2 -1
  54. package/core/schemas/builders/set/set.js +21 -12
  55. package/core/schemas/builders/undiscriminated-union/index.d.ts +1 -1
  56. package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +38 -24
  57. package/core/schemas/builders/union/index.d.ts +3 -2
  58. package/core/schemas/builders/union/union.js +95 -74
  59. package/core/schemas/index.d.ts +1 -1
  60. package/core/schemas/utils/createIdentitySchemaCreator.js +2 -4
  61. package/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
  62. package/core/schemas/utils/getErrorMessageForIncorrectType.js +24 -0
  63. package/core/schemas/utils/isPlainObject.d.ts +0 -1
  64. package/core/schemas/utils/isPlainObject.js +1 -2
  65. package/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
  66. package/core/schemas/utils/maybeSkipValidation.js +37 -0
  67. package/core/streaming-fetcher/Stream.d.ts +14 -0
  68. package/core/streaming-fetcher/Stream.js +75 -0
  69. package/core/streaming-fetcher/StreamingFetcher.d.ts +10 -8
  70. package/core/streaming-fetcher/StreamingFetcher.js +38 -44
  71. package/core/streaming-fetcher/getHeader.d.ts +2 -0
  72. package/core/streaming-fetcher/getHeader.js +12 -0
  73. package/core/streaming-fetcher/index.d.ts +4 -1
  74. package/core/streaming-fetcher/index.js +5 -1
  75. package/dist/Client.d.ts +23 -26
  76. package/dist/Client.js +288 -242
  77. package/dist/api/resources/deployments/client/Client.d.ts +8 -4
  78. package/dist/api/resources/deployments/client/Client.js +52 -34
  79. package/dist/api/resources/documentIndexes/client/Client.d.ts +9 -5
  80. package/dist/api/resources/documentIndexes/client/Client.js +97 -69
  81. package/dist/api/resources/documents/client/Client.d.ts +14 -10
  82. package/dist/api/resources/documents/client/Client.js +222 -176
  83. package/dist/api/resources/modelVersions/client/Client.d.ts +9 -5
  84. package/dist/api/resources/modelVersions/client/Client.js +96 -68
  85. package/dist/api/resources/registeredPrompts/client/Client.d.ts +11 -7
  86. package/dist/api/resources/registeredPrompts/client/Client.js +72 -53
  87. package/dist/api/resources/sandboxes/client/Client.d.ts +9 -5
  88. package/dist/api/resources/sandboxes/client/Client.js +92 -65
  89. package/dist/api/resources/testSuites/client/Client.d.ts +9 -5
  90. package/dist/api/resources/testSuites/client/Client.js +90 -63
  91. package/dist/core/fetcher/Fetcher.d.ts +5 -3
  92. package/dist/core/fetcher/Fetcher.js +104 -62
  93. package/dist/core/fetcher/Supplier.js +11 -2
  94. package/dist/core/fetcher/index.d.ts +3 -2
  95. package/dist/core/form-data-utils/getFormDataContentLength.d.ts +1 -1
  96. package/dist/core/form-data-utils/getFormDataContentLength.js +20 -9
  97. package/dist/core/index.d.ts +1 -2
  98. package/dist/core/index.js +4 -5
  99. package/dist/core/schemas/Schema.d.ts +19 -0
  100. package/dist/core/schemas/Schema.js +1 -0
  101. package/dist/core/schemas/builders/date/date.js +22 -14
  102. package/dist/core/schemas/builders/enum/enum.js +17 -7
  103. package/dist/core/schemas/builders/lazy/index.d.ts +2 -1
  104. package/dist/core/schemas/builders/lazy/lazy.js +21 -13
  105. package/dist/core/schemas/builders/lazy/lazyObject.js +11 -11
  106. package/dist/core/schemas/builders/list/list.js +53 -38
  107. package/dist/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
  108. package/dist/core/schemas/builders/literals/booleanLiteral.js +29 -0
  109. package/dist/core/schemas/builders/literals/index.d.ts +1 -0
  110. package/dist/core/schemas/builders/literals/index.js +3 -1
  111. package/dist/core/schemas/builders/literals/stringLiteral.js +4 -3
  112. package/dist/core/schemas/builders/object/index.d.ts +5 -2
  113. package/dist/core/schemas/builders/object/index.js +3 -1
  114. package/dist/core/schemas/builders/object/object.js +150 -129
  115. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
  116. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
  117. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +19 -18
  118. package/dist/core/schemas/builders/object-like/index.d.ts +1 -1
  119. package/dist/core/schemas/builders/primitives/boolean.js +4 -3
  120. package/dist/core/schemas/builders/primitives/number.js +4 -3
  121. package/dist/core/schemas/builders/primitives/string.js +4 -3
  122. package/dist/core/schemas/builders/record/index.d.ts +1 -1
  123. package/dist/core/schemas/builders/record/record.js +82 -67
  124. package/dist/core/schemas/builders/schema-utils/JsonError.js +0 -1
  125. package/dist/core/schemas/builders/schema-utils/ParseError.js +0 -1
  126. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +23 -20
  127. package/dist/core/schemas/builders/schema-utils/index.d.ts +2 -1
  128. package/dist/core/schemas/builders/set/set.js +21 -12
  129. package/dist/core/schemas/builders/undiscriminated-union/index.d.ts +1 -1
  130. package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +38 -24
  131. package/dist/core/schemas/builders/union/index.d.ts +3 -2
  132. package/dist/core/schemas/builders/union/union.js +95 -74
  133. package/dist/core/schemas/index.d.ts +1 -1
  134. package/dist/core/schemas/utils/createIdentitySchemaCreator.js +2 -4
  135. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
  136. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +24 -0
  137. package/dist/core/schemas/utils/isPlainObject.d.ts +0 -1
  138. package/dist/core/schemas/utils/isPlainObject.js +1 -2
  139. package/dist/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
  140. package/dist/core/schemas/utils/maybeSkipValidation.js +37 -0
  141. package/dist/core/streaming-fetcher/Stream.d.ts +14 -0
  142. package/dist/core/streaming-fetcher/Stream.js +75 -0
  143. package/dist/core/streaming-fetcher/StreamingFetcher.d.ts +10 -8
  144. package/dist/core/streaming-fetcher/StreamingFetcher.js +38 -44
  145. package/dist/core/streaming-fetcher/getHeader.d.ts +2 -0
  146. package/dist/core/streaming-fetcher/getHeader.js +12 -0
  147. package/dist/core/streaming-fetcher/index.d.ts +4 -1
  148. package/dist/core/streaming-fetcher/index.js +5 -1
  149. package/dist/errors/VellumError.js +14 -3
  150. package/dist/serialization/client/requests/ExecuteWorkflowStreamRequest.js +11 -2
  151. package/dist/serialization/client/requests/GenerateBodyRequest.js +11 -2
  152. package/dist/serialization/client/requests/GenerateStreamBodyRequest.js +11 -2
  153. package/dist/serialization/client/requests/SearchRequestBodyRequest.js +10 -1
  154. package/dist/serialization/client/requests/SubmitCompletionActualsRequest.js +10 -1
  155. package/dist/serialization/client/requests/SubmitWorkflowExecutionActualsRequest.js +10 -1
  156. package/dist/serialization/resources/documentIndexes/client/requests/DocumentIndexCreateRequest.js +11 -2
  157. package/dist/serialization/resources/documents/client/requests/PatchedDocumentUpdateRequest.js +10 -1
  158. package/dist/serialization/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.js +12 -3
  159. package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +11 -2
  160. package/dist/serialization/resources/testSuites/client/requests/TestSuiteTestCaseRequest.js +10 -1
  161. package/dist/serialization/types/ApiNodeResult.js +10 -1
  162. package/dist/serialization/types/ChatMessage.js +10 -1
  163. package/dist/serialization/types/ChatMessageRequest.js +10 -1
  164. package/dist/serialization/types/ConditionalNodeResult.js +10 -1
  165. package/dist/serialization/types/DeploymentRead.js +12 -3
  166. package/dist/serialization/types/DocumentDocumentToDocumentIndex.js +10 -1
  167. package/dist/serialization/types/DocumentIndexRead.js +11 -2
  168. package/dist/serialization/types/DocumentRead.js +12 -3
  169. package/dist/serialization/types/EnrichedNormalizedCompletion.js +12 -3
  170. package/dist/serialization/types/GenerateOptionsRequest.js +10 -1
  171. package/dist/serialization/types/GenerateRequest.js +10 -1
  172. package/dist/serialization/types/GenerateResponse.js +10 -1
  173. package/dist/serialization/types/GenerateResult.js +11 -2
  174. package/dist/serialization/types/GenerateResultData.js +10 -1
  175. package/dist/serialization/types/GenerateStreamResponse.js +10 -1
  176. package/dist/serialization/types/GenerateStreamResult.js +11 -2
  177. package/dist/serialization/types/GenerateStreamResultData.js +10 -1
  178. package/dist/serialization/types/MetadataFilterConfigRequest.js +12 -3
  179. package/dist/serialization/types/MetadataFilterRuleRequest.js +12 -3
  180. package/dist/serialization/types/ModelVersionBuildConfig.js +10 -1
  181. package/dist/serialization/types/ModelVersionCompilePromptResponse.js +10 -1
  182. package/dist/serialization/types/ModelVersionExecConfig.js +12 -3
  183. package/dist/serialization/types/ModelVersionRead.js +13 -4
  184. package/dist/serialization/types/NodeInputCompiledChatHistoryValue.js +10 -1
  185. package/dist/serialization/types/NodeInputCompiledErrorValue.js +10 -1
  186. package/dist/serialization/types/NodeInputCompiledSearchResultsValue.js +10 -1
  187. package/dist/serialization/types/NodeInputVariableCompiledValue.js +15 -6
  188. package/dist/serialization/types/NormalizedLogProbs.js +10 -1
  189. package/dist/serialization/types/PaginatedSlimDocumentList.js +10 -1
  190. package/dist/serialization/types/PromptNodeResult.js +10 -1
  191. package/dist/serialization/types/PromptTemplateBlock.js +11 -2
  192. package/dist/serialization/types/PromptTemplateBlockData.js +10 -1
  193. package/dist/serialization/types/PromptTemplateBlockDataRequest.js +10 -1
  194. package/dist/serialization/types/PromptTemplateBlockProperties.js +12 -3
  195. package/dist/serialization/types/PromptTemplateBlockPropertiesRequest.js +12 -3
  196. package/dist/serialization/types/PromptTemplateBlockRequest.js +11 -2
  197. package/dist/serialization/types/RegisterPromptPromptInfoRequest.js +11 -2
  198. package/dist/serialization/types/RegisterPromptResponse.js +14 -5
  199. package/dist/serialization/types/RegisteredPromptInputVariableRequest.js +10 -1
  200. package/dist/serialization/types/SandboxMetricInputParams.js +10 -1
  201. package/dist/serialization/types/SandboxMetricInputParamsRequest.js +10 -1
  202. package/dist/serialization/types/SandboxScenario.js +11 -2
  203. package/dist/serialization/types/ScenarioInput.js +11 -2
  204. package/dist/serialization/types/ScenarioInputRequest.js +11 -2
  205. package/dist/serialization/types/SearchFiltersRequest.js +10 -1
  206. package/dist/serialization/types/SearchNodeResult.js +10 -1
  207. package/dist/serialization/types/SearchNodeResultData.js +10 -1
  208. package/dist/serialization/types/SearchRequestOptionsRequest.js +12 -3
  209. package/dist/serialization/types/SearchResponse.js +10 -1
  210. package/dist/serialization/types/SearchResult.js +10 -1
  211. package/dist/serialization/types/SlimDocument.js +13 -4
  212. package/dist/serialization/types/SubmitWorkflowExecutionActualRequest.js +12 -3
  213. package/dist/serialization/types/TemplatingNodeChatHistoryResult.js +10 -1
  214. package/dist/serialization/types/TemplatingNodeErrorResult.js +10 -1
  215. package/dist/serialization/types/TemplatingNodeResult.js +10 -1
  216. package/dist/serialization/types/TemplatingNodeResultData.js +10 -1
  217. package/dist/serialization/types/TemplatingNodeResultOutput.js +15 -6
  218. package/dist/serialization/types/TemplatingNodeSearchResultsResult.js +10 -1
  219. package/dist/serialization/types/TerminalNodeChatHistoryResult.js +10 -1
  220. package/dist/serialization/types/TerminalNodeErrorResult.js +10 -1
  221. package/dist/serialization/types/TerminalNodeResult.js +10 -1
  222. package/dist/serialization/types/TerminalNodeResultData.js +10 -1
  223. package/dist/serialization/types/TerminalNodeResultOutput.js +15 -6
  224. package/dist/serialization/types/TerminalNodeSearchResultsResult.js +10 -1
  225. package/dist/serialization/types/TestSuiteTestCase.js +10 -1
  226. package/dist/serialization/types/VellumError.js +10 -1
  227. package/dist/serialization/types/VellumVariable.js +10 -1
  228. package/dist/serialization/types/WorkflowEventError.js +10 -1
  229. package/dist/serialization/types/WorkflowExecutionActualChatHistoryRequest.js +10 -1
  230. package/dist/serialization/types/WorkflowExecutionNodeResultEvent.js +10 -1
  231. package/dist/serialization/types/WorkflowExecutionWorkflowResultEvent.js +10 -1
  232. package/dist/serialization/types/WorkflowNodeResultData.js +15 -6
  233. package/dist/serialization/types/WorkflowNodeResultEvent.js +13 -4
  234. package/dist/serialization/types/WorkflowRequestChatHistoryInputRequest.js +10 -1
  235. package/dist/serialization/types/WorkflowRequestInputRequest.js +12 -3
  236. package/dist/serialization/types/WorkflowResultEvent.js +12 -3
  237. package/dist/serialization/types/WorkflowResultEventOutputData.js +15 -6
  238. package/dist/serialization/types/WorkflowResultEventOutputDataChatHistory.js +11 -2
  239. package/dist/serialization/types/WorkflowResultEventOutputDataError.js +11 -2
  240. package/dist/serialization/types/WorkflowResultEventOutputDataJson.js +10 -1
  241. package/dist/serialization/types/WorkflowResultEventOutputDataNumber.js +10 -1
  242. package/dist/serialization/types/WorkflowResultEventOutputDataSearchResults.js +11 -2
  243. package/dist/serialization/types/WorkflowResultEventOutputDataString.js +10 -1
  244. package/dist/serialization/types/WorkflowStreamEvent.js +11 -2
  245. package/errors/VellumError.js +14 -3
  246. package/package.json +4 -3
  247. package/serialization/client/requests/ExecuteWorkflowStreamRequest.js +11 -2
  248. package/serialization/client/requests/GenerateBodyRequest.js +11 -2
  249. package/serialization/client/requests/GenerateStreamBodyRequest.js +11 -2
  250. package/serialization/client/requests/SearchRequestBodyRequest.js +10 -1
  251. package/serialization/client/requests/SubmitCompletionActualsRequest.js +10 -1
  252. package/serialization/client/requests/SubmitWorkflowExecutionActualsRequest.js +10 -1
  253. package/serialization/resources/documentIndexes/client/requests/DocumentIndexCreateRequest.js +11 -2
  254. package/serialization/resources/documents/client/requests/PatchedDocumentUpdateRequest.js +10 -1
  255. package/serialization/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.js +12 -3
  256. package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +11 -2
  257. package/serialization/resources/testSuites/client/requests/TestSuiteTestCaseRequest.js +10 -1
  258. package/serialization/types/ApiNodeResult.js +10 -1
  259. package/serialization/types/ChatMessage.js +10 -1
  260. package/serialization/types/ChatMessageRequest.js +10 -1
  261. package/serialization/types/ConditionalNodeResult.js +10 -1
  262. package/serialization/types/DeploymentRead.js +12 -3
  263. package/serialization/types/DocumentDocumentToDocumentIndex.js +10 -1
  264. package/serialization/types/DocumentIndexRead.js +11 -2
  265. package/serialization/types/DocumentRead.js +12 -3
  266. package/serialization/types/EnrichedNormalizedCompletion.js +12 -3
  267. package/serialization/types/GenerateOptionsRequest.js +10 -1
  268. package/serialization/types/GenerateRequest.js +10 -1
  269. package/serialization/types/GenerateResponse.js +10 -1
  270. package/serialization/types/GenerateResult.js +11 -2
  271. package/serialization/types/GenerateResultData.js +10 -1
  272. package/serialization/types/GenerateStreamResponse.js +10 -1
  273. package/serialization/types/GenerateStreamResult.js +11 -2
  274. package/serialization/types/GenerateStreamResultData.js +10 -1
  275. package/serialization/types/MetadataFilterConfigRequest.js +12 -3
  276. package/serialization/types/MetadataFilterRuleRequest.js +12 -3
  277. package/serialization/types/ModelVersionBuildConfig.js +10 -1
  278. package/serialization/types/ModelVersionCompilePromptResponse.js +10 -1
  279. package/serialization/types/ModelVersionExecConfig.js +12 -3
  280. package/serialization/types/ModelVersionRead.js +13 -4
  281. package/serialization/types/NodeInputCompiledChatHistoryValue.js +10 -1
  282. package/serialization/types/NodeInputCompiledErrorValue.js +10 -1
  283. package/serialization/types/NodeInputCompiledSearchResultsValue.js +10 -1
  284. package/serialization/types/NodeInputVariableCompiledValue.js +15 -6
  285. package/serialization/types/NormalizedLogProbs.js +10 -1
  286. package/serialization/types/PaginatedSlimDocumentList.js +10 -1
  287. package/serialization/types/PromptNodeResult.js +10 -1
  288. package/serialization/types/PromptTemplateBlock.js +11 -2
  289. package/serialization/types/PromptTemplateBlockData.js +10 -1
  290. package/serialization/types/PromptTemplateBlockDataRequest.js +10 -1
  291. package/serialization/types/PromptTemplateBlockProperties.js +12 -3
  292. package/serialization/types/PromptTemplateBlockPropertiesRequest.js +12 -3
  293. package/serialization/types/PromptTemplateBlockRequest.js +11 -2
  294. package/serialization/types/RegisterPromptPromptInfoRequest.js +11 -2
  295. package/serialization/types/RegisterPromptResponse.js +14 -5
  296. package/serialization/types/RegisteredPromptInputVariableRequest.js +10 -1
  297. package/serialization/types/SandboxMetricInputParams.js +10 -1
  298. package/serialization/types/SandboxMetricInputParamsRequest.js +10 -1
  299. package/serialization/types/SandboxScenario.js +11 -2
  300. package/serialization/types/ScenarioInput.js +11 -2
  301. package/serialization/types/ScenarioInputRequest.js +11 -2
  302. package/serialization/types/SearchFiltersRequest.js +10 -1
  303. package/serialization/types/SearchNodeResult.js +10 -1
  304. package/serialization/types/SearchNodeResultData.js +10 -1
  305. package/serialization/types/SearchRequestOptionsRequest.js +12 -3
  306. package/serialization/types/SearchResponse.js +10 -1
  307. package/serialization/types/SearchResult.js +10 -1
  308. package/serialization/types/SlimDocument.js +13 -4
  309. package/serialization/types/SubmitWorkflowExecutionActualRequest.js +12 -3
  310. package/serialization/types/TemplatingNodeChatHistoryResult.js +10 -1
  311. package/serialization/types/TemplatingNodeErrorResult.js +10 -1
  312. package/serialization/types/TemplatingNodeResult.js +10 -1
  313. package/serialization/types/TemplatingNodeResultData.js +10 -1
  314. package/serialization/types/TemplatingNodeResultOutput.js +15 -6
  315. package/serialization/types/TemplatingNodeSearchResultsResult.js +10 -1
  316. package/serialization/types/TerminalNodeChatHistoryResult.js +10 -1
  317. package/serialization/types/TerminalNodeErrorResult.js +10 -1
  318. package/serialization/types/TerminalNodeResult.js +10 -1
  319. package/serialization/types/TerminalNodeResultData.js +10 -1
  320. package/serialization/types/TerminalNodeResultOutput.js +15 -6
  321. package/serialization/types/TerminalNodeSearchResultsResult.js +10 -1
  322. package/serialization/types/TestSuiteTestCase.js +10 -1
  323. package/serialization/types/VellumError.js +10 -1
  324. package/serialization/types/VellumVariable.js +10 -1
  325. package/serialization/types/WorkflowEventError.js +10 -1
  326. package/serialization/types/WorkflowExecutionActualChatHistoryRequest.js +10 -1
  327. package/serialization/types/WorkflowExecutionNodeResultEvent.js +10 -1
  328. package/serialization/types/WorkflowExecutionWorkflowResultEvent.js +10 -1
  329. package/serialization/types/WorkflowNodeResultData.js +15 -6
  330. package/serialization/types/WorkflowNodeResultEvent.js +13 -4
  331. package/serialization/types/WorkflowRequestChatHistoryInputRequest.js +10 -1
  332. package/serialization/types/WorkflowRequestInputRequest.js +12 -3
  333. package/serialization/types/WorkflowResultEvent.js +12 -3
  334. package/serialization/types/WorkflowResultEventOutputData.js +15 -6
  335. package/serialization/types/WorkflowResultEventOutputDataChatHistory.js +11 -2
  336. package/serialization/types/WorkflowResultEventOutputDataError.js +11 -2
  337. package/serialization/types/WorkflowResultEventOutputDataJson.js +10 -1
  338. package/serialization/types/WorkflowResultEventOutputDataNumber.js +10 -1
  339. package/serialization/types/WorkflowResultEventOutputDataSearchResults.js +11 -2
  340. package/serialization/types/WorkflowResultEventOutputDataString.js +10 -1
  341. package/serialization/types/WorkflowStreamEvent.js +11 -2
  342. package/core/callback-queue/CallbackQueue.d.ts +0 -6
  343. package/core/callback-queue/CallbackQueue.js +0 -20
  344. package/core/callback-queue/index.d.ts +0 -1
  345. package/core/callback-queue/index.js +0 -5
  346. package/dist/core/callback-queue/CallbackQueue.d.ts +0 -6
  347. package/dist/core/callback-queue/CallbackQueue.js +0 -20
  348. package/dist/core/callback-queue/index.d.ts +0 -1
  349. package/dist/core/callback-queue/index.js +0 -5
@@ -3,26 +3,36 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.enum_ = void 0;
4
4
  const Schema_1 = require("../../Schema");
5
5
  const createIdentitySchemaCreator_1 = require("../../utils/createIdentitySchemaCreator");
6
+ const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
6
7
  function enum_(values) {
7
8
  const validValues = new Set(values);
8
- const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.ENUM, (value, { allowUnrecognizedEnumValues } = {}) => {
9
- if (typeof value === "string" && (validValues.has(value) || allowUnrecognizedEnumValues)) {
9
+ const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.ENUM, (value, { allowUnrecognizedEnumValues, breadcrumbsPrefix = [] } = {}) => {
10
+ if (typeof value !== "string") {
10
11
  return {
11
- ok: true,
12
- value: value,
12
+ ok: false,
13
+ errors: [
14
+ {
15
+ path: breadcrumbsPrefix,
16
+ message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "string"),
17
+ },
18
+ ],
13
19
  };
14
20
  }
15
- else {
21
+ if (!validValues.has(value) && !allowUnrecognizedEnumValues) {
16
22
  return {
17
23
  ok: false,
18
24
  errors: [
19
25
  {
20
- path: [],
21
- message: "Not one of the allowed values",
26
+ path: breadcrumbsPrefix,
27
+ message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "enum"),
22
28
  },
23
29
  ],
24
30
  };
25
31
  }
32
+ return {
33
+ ok: true,
34
+ value: value,
35
+ };
26
36
  });
27
37
  return schemaCreator();
28
38
  }
@@ -1,2 +1,3 @@
1
- export { lazy, type SchemaGetter } from "./lazy";
1
+ export { lazy } from "./lazy";
2
+ export type { SchemaGetter } from "./lazy";
2
3
  export { lazyObject } from "./lazyObject";
@@ -1,28 +1,36 @@
1
1
  "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
2
11
  Object.defineProperty(exports, "__esModule", { value: true });
3
12
  exports.getMemoizedSchema = exports.constructLazyBaseSchema = exports.lazy = void 0;
4
13
  const schema_utils_1 = require("../schema-utils");
5
14
  function lazy(getter) {
6
15
  const baseSchema = constructLazyBaseSchema(getter);
7
- return {
8
- ...baseSchema,
9
- ...(0, schema_utils_1.getSchemaUtils)(baseSchema),
10
- };
16
+ return Object.assign(Object.assign({}, baseSchema), (0, schema_utils_1.getSchemaUtils)(baseSchema));
11
17
  }
12
18
  exports.lazy = lazy;
13
19
  function constructLazyBaseSchema(getter) {
14
20
  return {
15
- parse: async (raw, opts) => (await getMemoizedSchema(getter)).parse(raw, opts),
16
- json: async (parsed, opts) => (await getMemoizedSchema(getter)).json(parsed, opts),
17
- getType: async () => (await getMemoizedSchema(getter)).getType(),
21
+ parse: (raw, opts) => __awaiter(this, void 0, void 0, function* () { return (yield getMemoizedSchema(getter)).parse(raw, opts); }),
22
+ json: (parsed, opts) => __awaiter(this, void 0, void 0, function* () { return (yield getMemoizedSchema(getter)).json(parsed, opts); }),
23
+ getType: () => __awaiter(this, void 0, void 0, function* () { return (yield getMemoizedSchema(getter)).getType(); }),
18
24
  };
19
25
  }
20
26
  exports.constructLazyBaseSchema = constructLazyBaseSchema;
21
- async function getMemoizedSchema(getter) {
22
- const castedGetter = getter;
23
- if (castedGetter.__zurg_memoized == null) {
24
- castedGetter.__zurg_memoized = await getter();
25
- }
26
- return castedGetter.__zurg_memoized;
27
+ function getMemoizedSchema(getter) {
28
+ return __awaiter(this, void 0, void 0, function* () {
29
+ const castedGetter = getter;
30
+ if (castedGetter.__zurg_memoized == null) {
31
+ castedGetter.__zurg_memoized = yield getter();
32
+ }
33
+ return castedGetter.__zurg_memoized;
34
+ });
27
35
  }
28
36
  exports.getMemoizedSchema = getMemoizedSchema;
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
2
11
  Object.defineProperty(exports, "__esModule", { value: true });
3
12
  exports.lazyObject = void 0;
4
13
  const object_1 = require("../object");
@@ -6,16 +15,7 @@ const object_like_1 = require("../object-like");
6
15
  const schema_utils_1 = require("../schema-utils");
7
16
  const lazy_1 = require("./lazy");
8
17
  function lazyObject(getter) {
9
- const baseSchema = {
10
- ...(0, lazy_1.constructLazyBaseSchema)(getter),
11
- _getRawProperties: async () => (await (0, lazy_1.getMemoizedSchema)(getter))._getRawProperties(),
12
- _getParsedProperties: async () => (await (0, lazy_1.getMemoizedSchema)(getter))._getParsedProperties(),
13
- };
14
- return {
15
- ...baseSchema,
16
- ...(0, schema_utils_1.getSchemaUtils)(baseSchema),
17
- ...(0, object_like_1.getObjectLikeUtils)(baseSchema),
18
- ...(0, object_1.getObjectUtils)(baseSchema),
19
- };
18
+ const baseSchema = Object.assign(Object.assign({}, (0, lazy_1.constructLazyBaseSchema)(getter)), { _getRawProperties: () => __awaiter(this, void 0, void 0, function* () { return (yield (0, lazy_1.getMemoizedSchema)(getter))._getRawProperties(); }), _getParsedProperties: () => __awaiter(this, void 0, void 0, function* () { return (yield (0, lazy_1.getMemoizedSchema)(getter))._getParsedProperties(); }) });
19
+ return Object.assign(Object.assign(Object.assign(Object.assign({}, baseSchema), (0, schema_utils_1.getSchemaUtils)(baseSchema)), (0, object_like_1.getObjectLikeUtils)(baseSchema)), (0, object_1.getObjectUtils)(baseSchema));
20
20
  }
21
21
  exports.lazyObject = lazyObject;
@@ -1,53 +1,68 @@
1
1
  "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
2
11
  Object.defineProperty(exports, "__esModule", { value: true });
3
12
  exports.list = void 0;
4
13
  const Schema_1 = require("../../Schema");
14
+ const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
15
+ const maybeSkipValidation_1 = require("../../utils/maybeSkipValidation");
5
16
  const schema_utils_1 = require("../schema-utils");
6
17
  function list(schema) {
7
18
  const baseSchema = {
8
- parse: async (raw, opts) => validateAndTransformArray(raw, (item) => schema.parse(item, opts)),
9
- json: (parsed, opts) => validateAndTransformArray(parsed, (item) => schema.json(item, opts)),
19
+ parse: (raw, opts) => __awaiter(this, void 0, void 0, function* () {
20
+ return validateAndTransformArray(raw, (item, index) => {
21
+ var _a;
22
+ return schema.parse(item, Object.assign(Object.assign({}, opts), { breadcrumbsPrefix: [...((_a = opts === null || opts === void 0 ? void 0 : opts.breadcrumbsPrefix) !== null && _a !== void 0 ? _a : []), `[${index}]`] }));
23
+ });
24
+ }),
25
+ json: (parsed, opts) => validateAndTransformArray(parsed, (item, index) => {
26
+ var _a;
27
+ return schema.json(item, Object.assign(Object.assign({}, opts), { breadcrumbsPrefix: [...((_a = opts === null || opts === void 0 ? void 0 : opts.breadcrumbsPrefix) !== null && _a !== void 0 ? _a : []), `[${index}]`] }));
28
+ }),
10
29
  getType: () => Schema_1.SchemaType.LIST,
11
30
  };
12
- return {
13
- ...baseSchema,
14
- ...(0, schema_utils_1.getSchemaUtils)(baseSchema),
15
- };
31
+ return Object.assign(Object.assign({}, (0, maybeSkipValidation_1.maybeSkipValidation)(baseSchema)), (0, schema_utils_1.getSchemaUtils)(baseSchema));
16
32
  }
17
33
  exports.list = list;
18
- async function validateAndTransformArray(value, transformItem) {
19
- if (!Array.isArray(value)) {
20
- return {
21
- ok: false,
22
- errors: [
23
- {
24
- message: "Not a list",
25
- path: [],
26
- },
27
- ],
28
- };
29
- }
30
- const maybeValidItems = await Promise.all(value.map((item) => transformItem(item)));
31
- return maybeValidItems.reduce((acc, item, index) => {
32
- if (acc.ok && item.ok) {
34
+ function validateAndTransformArray(value, transformItem) {
35
+ return __awaiter(this, void 0, void 0, function* () {
36
+ if (!Array.isArray(value)) {
33
37
  return {
34
- ok: true,
35
- value: [...acc.value, item.value],
38
+ ok: false,
39
+ errors: [
40
+ {
41
+ message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "list"),
42
+ path: [],
43
+ },
44
+ ],
36
45
  };
37
46
  }
38
- const errors = [];
39
- if (!acc.ok) {
40
- errors.push(...acc.errors);
41
- }
42
- if (!item.ok) {
43
- errors.push(...item.errors.map((error) => ({
44
- path: [`[${index}]`, ...error.path],
45
- message: error.message,
46
- })));
47
- }
48
- return {
49
- ok: false,
50
- errors,
51
- };
52
- }, { ok: true, value: [] });
47
+ const maybeValidItems = yield Promise.all(value.map((item, index) => transformItem(item, index)));
48
+ return maybeValidItems.reduce((acc, item) => {
49
+ if (acc.ok && item.ok) {
50
+ return {
51
+ ok: true,
52
+ value: [...acc.value, item.value],
53
+ };
54
+ }
55
+ const errors = [];
56
+ if (!acc.ok) {
57
+ errors.push(...acc.errors);
58
+ }
59
+ if (!item.ok) {
60
+ errors.push(...item.errors);
61
+ }
62
+ return {
63
+ ok: false,
64
+ errors,
65
+ };
66
+ }, { ok: true, value: [] });
67
+ });
53
68
  }
@@ -0,0 +1,2 @@
1
+ import { Schema } from "../../Schema";
2
+ export declare function booleanLiteral<V extends boolean>(literal: V): Schema<V, V>;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.booleanLiteral = void 0;
4
+ const Schema_1 = require("../../Schema");
5
+ const createIdentitySchemaCreator_1 = require("../../utils/createIdentitySchemaCreator");
6
+ const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
7
+ function booleanLiteral(literal) {
8
+ const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.BOOLEAN_LITERAL, (value, { breadcrumbsPrefix = [] } = {}) => {
9
+ if (value === literal) {
10
+ return {
11
+ ok: true,
12
+ value: literal,
13
+ };
14
+ }
15
+ else {
16
+ return {
17
+ ok: false,
18
+ errors: [
19
+ {
20
+ path: breadcrumbsPrefix,
21
+ message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, `${literal.toString()}`),
22
+ },
23
+ ],
24
+ };
25
+ }
26
+ });
27
+ return schemaCreator();
28
+ }
29
+ exports.booleanLiteral = booleanLiteral;
@@ -1 +1,2 @@
1
1
  export { stringLiteral } from "./stringLiteral";
2
+ export { booleanLiteral } from "./booleanLiteral";
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.stringLiteral = void 0;
3
+ exports.booleanLiteral = exports.stringLiteral = void 0;
4
4
  var stringLiteral_1 = require("./stringLiteral");
5
5
  Object.defineProperty(exports, "stringLiteral", { enumerable: true, get: function () { return stringLiteral_1.stringLiteral; } });
6
+ var booleanLiteral_1 = require("./booleanLiteral");
7
+ Object.defineProperty(exports, "booleanLiteral", { enumerable: true, get: function () { return booleanLiteral_1.booleanLiteral; } });
@@ -3,8 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.stringLiteral = void 0;
4
4
  const Schema_1 = require("../../Schema");
5
5
  const createIdentitySchemaCreator_1 = require("../../utils/createIdentitySchemaCreator");
6
+ const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
6
7
  function stringLiteral(literal) {
7
- const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.STRING_LITERAL, (value) => {
8
+ const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.STRING_LITERAL, (value, { breadcrumbsPrefix = [] } = {}) => {
8
9
  if (value === literal) {
9
10
  return {
10
11
  ok: true,
@@ -16,8 +17,8 @@ function stringLiteral(literal) {
16
17
  ok: false,
17
18
  errors: [
18
19
  {
19
- path: [],
20
- message: `Not equal to "${literal}"`,
20
+ path: breadcrumbsPrefix,
21
+ message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, `"${literal}"`),
21
22
  },
22
23
  ],
23
24
  };
@@ -1,3 +1,6 @@
1
1
  export { getObjectUtils, object } from "./object";
2
- export { isProperty, property, type Property } from "./property";
3
- export { type BaseObjectSchema, type inferObjectSchemaFromPropertySchemas, type inferParsedObject, type inferParsedObjectFromPropertySchemas, type inferParsedPropertySchema, type inferRawKey, type inferRawObject, type inferRawObjectFromPropertySchemas, type inferRawPropertySchema, type ObjectSchema, type ObjectUtils, type PropertySchemas, } from "./types";
2
+ export { objectWithoutOptionalProperties } from "./objectWithoutOptionalProperties";
3
+ export type { inferObjectWithoutOptionalPropertiesSchemaFromPropertySchemas, inferParsedObjectWithoutOptionalPropertiesFromPropertySchemas, } from "./objectWithoutOptionalProperties";
4
+ export { isProperty, property } from "./property";
5
+ export type { Property } from "./property";
6
+ export type { BaseObjectSchema, inferObjectSchemaFromPropertySchemas, inferParsedObject, inferParsedObjectFromPropertySchemas, inferParsedPropertySchema, inferRawKey, inferRawObject, inferRawObjectFromPropertySchemas, inferRawPropertySchema, ObjectSchema, ObjectUtils, PropertySchemas, } from "./types";
@@ -1,9 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.property = exports.isProperty = exports.object = exports.getObjectUtils = void 0;
3
+ exports.property = exports.isProperty = exports.objectWithoutOptionalProperties = exports.object = exports.getObjectUtils = void 0;
4
4
  var object_1 = require("./object");
5
5
  Object.defineProperty(exports, "getObjectUtils", { enumerable: true, get: function () { return object_1.getObjectUtils; } });
6
6
  Object.defineProperty(exports, "object", { enumerable: true, get: function () { return object_1.object; } });
7
+ var objectWithoutOptionalProperties_1 = require("./objectWithoutOptionalProperties");
8
+ Object.defineProperty(exports, "objectWithoutOptionalProperties", { enumerable: true, get: function () { return objectWithoutOptionalProperties_1.objectWithoutOptionalProperties; } });
7
9
  var property_1 = require("./property");
8
10
  Object.defineProperty(exports, "isProperty", { enumerable: true, get: function () { return property_1.isProperty; } });
9
11
  Object.defineProperty(exports, "property", { enumerable: true, get: function () { return property_1.property; } });