@elevenlabs/elevenlabs-js 2.39.0 → 2.41.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 (2390) hide show
  1. package/BaseClient.js +2 -2
  2. package/Client.d.ts +5 -2
  3. package/Client.js +46 -41
  4. package/api/errors/BadRequestError.d.ts +1 -2
  5. package/api/errors/UnprocessableEntityError.d.ts +1 -2
  6. package/api/resources/audioIsolation/client/Client.js +2 -12
  7. package/api/resources/audioNative/client/Client.js +4 -24
  8. package/api/resources/conversationalAi/client/Client.js +4 -24
  9. package/api/resources/conversationalAi/conversation/Conversation.d.ts +12 -0
  10. package/api/resources/conversationalAi/conversation/Conversation.js +18 -0
  11. package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +25 -0
  12. package/api/resources/conversationalAi/conversation/events.d.ts +19 -2
  13. package/api/resources/conversationalAi/conversation/events.js +2 -0
  14. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +1 -0
  15. package/api/resources/conversationalAi/resources/agents/client/Client.js +14 -55
  16. package/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +4 -1
  17. package/api/resources/conversationalAi/resources/agents/resources/branches/client/Client.js +5 -30
  18. package/api/resources/conversationalAi/resources/agents/resources/deployments/client/Client.js +1 -6
  19. package/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.d.ts +120 -40
  20. package/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.js +122 -52
  21. package/api/resources/conversationalAi/resources/agents/resources/drafts/client/requests/BodyCreateAgentDraftV1ConvaiAgentsAgentIdDraftsPost.d.ts +120 -40
  22. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +1 -6
  23. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +1 -6
  24. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +1 -6
  25. package/api/resources/conversationalAi/resources/agents/resources/summaries/client/Client.js +1 -6
  26. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +1 -6
  27. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +1 -6
  28. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +1 -6
  29. package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +6 -36
  30. package/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
  31. package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +4 -2
  32. package/api/resources/conversationalAi/resources/conversations/client/Client.js +34 -35
  33. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +4 -1
  34. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +4 -1
  35. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +4 -0
  36. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +1 -7
  37. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +1 -6
  38. package/api/resources/conversationalAi/resources/conversations/resources/files/client/Client.js +2 -12
  39. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.d.ts +1 -0
  40. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +25 -13
  41. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +7 -0
  42. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +2 -12
  43. package/api/resources/conversationalAi/resources/index.d.ts +0 -1
  44. package/api/resources/conversationalAi/resources/index.js +0 -1
  45. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +1 -0
  46. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +7 -13
  47. package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +4 -1
  48. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +13 -0
  49. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +56 -6
  50. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  51. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  52. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +16 -0
  53. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  54. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  55. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -72
  56. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +4 -0
  57. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +4 -0
  58. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +5 -2
  59. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +17 -12
  60. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -1
  61. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +15 -0
  62. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.d.ts +11 -0
  63. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.d.ts +1 -0
  64. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.js +2 -0
  65. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
  66. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +1 -0
  67. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.js +1 -6
  68. package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  69. package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  70. package/api/resources/conversationalAi/resources/llm/client/Client.js +1 -6
  71. package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +1 -6
  72. package/api/resources/conversationalAi/resources/mcpServers/client/Client.js +5 -30
  73. package/api/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +1 -1
  74. package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +1 -6
  75. package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +2 -12
  76. package/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +4 -24
  77. package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +1 -6
  78. package/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +5 -0
  79. package/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +1 -1
  80. package/api/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  81. package/api/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  82. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +5 -30
  83. package/api/resources/conversationalAi/resources/secrets/client/Client.js +4 -24
  84. package/api/resources/conversationalAi/resources/settings/client/Client.js +2 -12
  85. package/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +2 -0
  86. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +1 -6
  87. package/api/resources/conversationalAi/resources/tests/client/Client.js +6 -36
  88. package/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +3 -18
  89. package/api/resources/conversationalAi/resources/tools/client/Client.d.ts +6 -2
  90. package/api/resources/conversationalAi/resources/tools/client/Client.js +25 -43
  91. package/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.d.ts +10 -0
  92. package/api/resources/conversationalAi/resources/tools/client/requests/ToolsListRequest.d.ts +4 -1
  93. package/api/resources/conversationalAi/resources/tools/client/requests/index.d.ts +1 -0
  94. package/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -12
  95. package/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +1 -1
  96. package/api/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  97. package/api/resources/conversationalAi/resources/twilio/index.js +0 -1
  98. package/api/resources/conversationalAi/resources/users/client/Client.js +1 -6
  99. package/api/resources/conversationalAi/resources/whatsapp/client/Client.js +2 -12
  100. package/api/resources/conversationalAi/resources/whatsappAccounts/client/Client.js +4 -24
  101. package/api/resources/dubbing/client/Client.js +4 -24
  102. package/api/resources/dubbing/resources/audio/client/Client.js +1 -7
  103. package/api/resources/dubbing/resources/resource/client/Client.js +6 -36
  104. package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +1 -6
  105. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +2 -12
  106. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +3 -18
  107. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +1 -6
  108. package/api/resources/dubbing/resources/transcript/client/Client.js +1 -6
  109. package/api/resources/dubbing/resources/transcripts/client/Client.js +1 -6
  110. package/api/resources/environmentVariables/client/Client.d.ts +86 -0
  111. package/api/resources/environmentVariables/client/Client.js +342 -0
  112. package/api/resources/environmentVariables/client/index.d.ts +1 -0
  113. package/api/resources/environmentVariables/client/index.js +17 -0
  114. package/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.d.ts +23 -0
  115. package/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +11 -0
  116. package/api/resources/environmentVariables/client/requests/index.d.ts +2 -0
  117. package/api/resources/environmentVariables/client/requests/index.js +2 -0
  118. package/api/resources/environmentVariables/index.d.ts +2 -0
  119. package/api/resources/environmentVariables/index.js +18 -0
  120. package/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +13 -0
  121. package/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +6 -0
  122. package/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +9 -0
  123. package/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +2 -0
  124. package/api/resources/environmentVariables/types/index.d.ts +3 -0
  125. package/api/resources/environmentVariables/types/index.js +19 -0
  126. package/api/resources/forcedAlignment/client/Client.js +1 -6
  127. package/api/resources/history/client/Client.js +6 -36
  128. package/api/resources/index.d.ts +3 -0
  129. package/api/resources/index.js +4 -1
  130. package/api/resources/models/client/Client.js +1 -6
  131. package/api/resources/music/client/Client.d.ts +7 -0
  132. package/api/resources/music/client/Client.js +74 -30
  133. package/api/resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.d.ts +19 -0
  134. package/api/resources/music/client/requests/index.d.ts +1 -0
  135. package/api/resources/music/resources/compositionPlan/client/Client.js +1 -6
  136. package/api/resources/pronunciationDictionaries/client/Client.js +6 -36
  137. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +3 -18
  138. package/api/resources/samples/client/Client.js +1 -6
  139. package/api/resources/serviceAccounts/client/Client.js +1 -6
  140. package/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +4 -24
  141. package/api/resources/speechToSpeech/client/Client.js +2 -12
  142. package/api/resources/speechToText/client/Client.js +12 -8
  143. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +7 -3
  144. package/api/resources/speechToText/resources/transcripts/client/Client.js +2 -12
  145. package/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +4 -0
  146. package/api/resources/speechToText/types/index.d.ts +1 -0
  147. package/api/resources/speechToText/types/index.js +1 -0
  148. package/api/resources/studio/client/Client.js +1 -6
  149. package/api/resources/studio/resources/projects/client/Client.js +7 -42
  150. package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +6 -36
  151. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +3 -18
  152. package/api/resources/studio/resources/projects/resources/content/client/Client.js +1 -6
  153. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +1 -6
  154. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +4 -24
  155. package/api/resources/textToDialogue/client/Client.js +4 -24
  156. package/api/resources/textToSoundEffects/client/Client.js +1 -6
  157. package/api/resources/textToSpeech/client/Client.js +4 -24
  158. package/api/resources/textToVoice/client/Client.js +4 -24
  159. package/api/resources/textToVoice/resources/preview/client/Client.js +1 -7
  160. package/api/resources/tokens/resources/singleUse/client/Client.js +1 -6
  161. package/api/resources/usage/client/Client.js +1 -6
  162. package/api/resources/user/client/Client.js +1 -6
  163. package/api/resources/user/resources/subscription/client/Client.js +1 -6
  164. package/api/resources/voices/client/Client.js +8 -48
  165. package/api/resources/voices/resources/ivc/client/Client.js +1 -6
  166. package/api/resources/voices/resources/pvc/client/Client.js +3 -18
  167. package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +3 -18
  168. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +1 -6
  169. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +2 -12
  170. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +1 -6
  171. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +1 -6
  172. package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +1 -6
  173. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +2 -12
  174. package/api/resources/voices/resources/samples/resources/audio/client/Client.js +1 -7
  175. package/api/resources/voices/resources/settings/client/Client.js +2 -12
  176. package/api/resources/webhooks/client/Client.js +4 -24
  177. package/api/resources/workspace/client/Client.d.ts +3 -0
  178. package/api/resources/workspace/client/Client.js +13 -8
  179. package/api/resources/workspace/resources/authConnections/client/Client.d.ts +58 -0
  180. package/api/resources/workspace/resources/authConnections/client/Client.js +228 -0
  181. package/api/resources/workspace/resources/authConnections/client/index.d.ts +1 -0
  182. package/api/resources/workspace/resources/authConnections/client/index.js +2 -0
  183. package/api/resources/workspace/resources/authConnections/index.d.ts +2 -0
  184. package/api/resources/workspace/resources/authConnections/index.js +18 -0
  185. package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +22 -0
  186. package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +31 -0
  187. package/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  188. package/api/resources/workspace/resources/authConnections/types/index.js +18 -0
  189. package/api/resources/workspace/resources/groups/client/Client.js +2 -12
  190. package/api/resources/workspace/resources/groups/resources/members/client/Client.js +2 -12
  191. package/api/resources/workspace/resources/index.d.ts +2 -0
  192. package/api/resources/workspace/resources/index.js +3 -1
  193. package/api/resources/workspace/resources/invites/client/Client.js +3 -18
  194. package/api/resources/workspace/resources/members/client/Client.js +1 -6
  195. package/api/resources/workspace/resources/resources/client/Client.js +3 -18
  196. package/api/types/AgentConfig.d.ts +2 -0
  197. package/api/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +2 -0
  198. package/api/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +2 -0
  199. package/api/types/AgentConfigOverrideConfig.d.ts +2 -0
  200. package/api/types/AgentConfigOverrideInput.d.ts +2 -0
  201. package/api/types/AgentConfigOverrideOutput.d.ts +2 -0
  202. package/api/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  203. package/api/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  204. package/api/types/AgentSortBy.d.ts +1 -0
  205. package/api/types/AgentSortBy.js +1 -0
  206. package/api/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
  207. package/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +6 -0
  208. package/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +9 -0
  209. package/api/types/ApiIntegrationWebhookOverrides.d.ts +11 -0
  210. package/api/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +2 -0
  211. package/api/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +13 -0
  212. package/api/types/ApiIntegrationWebhookToolConfigInput.d.ts +1 -1
  213. package/api/types/ApiIntegrationWebhookToolConfigOutput.d.ts +1 -1
  214. package/api/types/AssetTranscription.d.ts +6 -0
  215. package/api/types/AssetTranscriptionWord.d.ts +6 -0
  216. package/api/types/AstAdditionOperatorNodeInput.d.ts +7 -0
  217. package/api/types/AstAdditionOperatorNodeInputLeft.d.ts +62 -0
  218. package/api/types/AstAdditionOperatorNodeInputRight.d.ts +62 -0
  219. package/api/types/AstAdditionOperatorNodeOutput.d.ts +7 -0
  220. package/api/types/AstAdditionOperatorNodeOutputLeft.d.ts +61 -0
  221. package/api/types/AstAdditionOperatorNodeOutputRight.d.ts +61 -0
  222. package/api/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
  223. package/api/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
  224. package/api/types/AstConditionalOperatorNodeInput.d.ts +9 -0
  225. package/api/types/AstConditionalOperatorNodeInputCondition.d.ts +62 -0
  226. package/api/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +62 -0
  227. package/api/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +62 -0
  228. package/api/types/AstConditionalOperatorNodeOutput.d.ts +9 -0
  229. package/api/types/AstConditionalOperatorNodeOutputCondition.d.ts +61 -0
  230. package/api/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +61 -0
  231. package/api/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +61 -0
  232. package/api/types/AstDivisionOperatorNodeInput.d.ts +7 -0
  233. package/api/types/AstDivisionOperatorNodeInputLeft.d.ts +62 -0
  234. package/api/types/AstDivisionOperatorNodeInputRight.d.ts +62 -0
  235. package/api/types/AstDivisionOperatorNodeOutput.d.ts +7 -0
  236. package/api/types/AstDivisionOperatorNodeOutputLeft.d.ts +61 -0
  237. package/api/types/AstDivisionOperatorNodeOutputRight.d.ts +61 -0
  238. package/api/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
  239. package/api/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
  240. package/api/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
  241. package/api/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
  242. package/api/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
  243. package/api/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
  244. package/api/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
  245. package/api/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
  246. package/api/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  247. package/api/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  248. package/api/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  249. package/api/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  250. package/api/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
  251. package/api/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
  252. package/api/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
  253. package/api/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
  254. package/api/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  255. package/api/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  256. package/api/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  257. package/api/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  258. package/api/types/AstMultiplicationOperatorNodeInput.d.ts +7 -0
  259. package/api/types/AstMultiplicationOperatorNodeInputLeft.d.ts +62 -0
  260. package/api/types/AstMultiplicationOperatorNodeInputRight.d.ts +62 -0
  261. package/api/types/AstMultiplicationOperatorNodeOutput.d.ts +7 -0
  262. package/api/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +61 -0
  263. package/api/types/AstMultiplicationOperatorNodeOutputRight.d.ts +61 -0
  264. package/api/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
  265. package/api/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
  266. package/api/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
  267. package/api/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
  268. package/api/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
  269. package/api/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
  270. package/api/types/AstSubtractionOperatorNodeInput.d.ts +7 -0
  271. package/api/types/AstSubtractionOperatorNodeInput.js +3 -0
  272. package/api/types/AstSubtractionOperatorNodeInputLeft.d.ts +62 -0
  273. package/api/types/AstSubtractionOperatorNodeInputLeft.js +3 -0
  274. package/api/types/AstSubtractionOperatorNodeInputRight.d.ts +62 -0
  275. package/api/types/AstSubtractionOperatorNodeInputRight.js +3 -0
  276. package/api/types/AstSubtractionOperatorNodeOutput.d.ts +7 -0
  277. package/api/types/AstSubtractionOperatorNodeOutput.js +3 -0
  278. package/api/types/AstSubtractionOperatorNodeOutputLeft.d.ts +61 -0
  279. package/api/types/AstSubtractionOperatorNodeOutputLeft.js +3 -0
  280. package/api/types/AstSubtractionOperatorNodeOutputRight.d.ts +61 -0
  281. package/api/types/AstSubtractionOperatorNodeOutputRight.js +3 -0
  282. package/api/types/AstllmNodeInput.d.ts +2 -4
  283. package/api/types/AstllmNodeInputPrompt.d.ts +5 -0
  284. package/api/types/AstllmNodeInputPrompt.js +3 -0
  285. package/api/types/AstllmNodeInputValueSchema.d.ts +6 -0
  286. package/api/types/AstllmNodeInputValueSchema.js +3 -0
  287. package/api/types/AstllmNodeOutput.d.ts +4 -1
  288. package/api/types/AsyncConversationMetadata.d.ts +1 -0
  289. package/api/types/AudioAnalysis.d.ts +6 -0
  290. package/api/types/AudioAnalysis.js +3 -0
  291. package/api/types/AudioAnalysisResult.d.ts +10 -0
  292. package/api/types/AudioAnalysisResult.js +3 -0
  293. package/api/types/AudioAnalysisStatus.d.ts +6 -0
  294. package/api/types/AudioAnalysisStatus.js +9 -0
  295. package/api/types/AudioKeyMoment.d.ts +5 -0
  296. package/api/types/AudioKeyMoment.js +3 -0
  297. package/api/types/AudioSegment.d.ts +9 -0
  298. package/api/types/AudioSegment.js +3 -0
  299. package/api/types/AuthConnectionDependencies.d.ts +9 -0
  300. package/api/types/AuthConnectionDependencies.js +3 -0
  301. package/api/types/AuthConnectionDependenciesMcpServersItem.d.ts +10 -0
  302. package/api/types/AuthConnectionDependenciesMcpServersItem.js +3 -0
  303. package/api/types/AuthConnectionDependenciesToolsItem.d.ts +10 -0
  304. package/api/types/AuthConnectionDependenciesToolsItem.js +3 -0
  305. package/api/types/AutoSyncInfo.d.ts +10 -0
  306. package/api/types/AutoSyncInfo.js +3 -0
  307. package/api/types/BasicAuthResponse.d.ts +11 -0
  308. package/api/types/BasicAuthResponse.js +3 -0
  309. package/api/types/BatchCallDetailedResponse.d.ts +3 -0
  310. package/api/types/BatchCallResponse.d.ts +3 -0
  311. package/api/types/BearerAuthResponse.d.ts +10 -0
  312. package/api/types/BearerAuthResponse.js +3 -0
  313. package/api/types/CanvasPlacement.d.ts +2 -0
  314. package/api/types/CaptionStyleModel.d.ts +2 -0
  315. package/api/types/CaptionStyleModelTextBlendMode.d.ts +6 -0
  316. package/api/types/CaptionStyleModelTextBlendMode.js +9 -0
  317. package/api/types/CaptionStyleModelTextTransform.d.ts +5 -0
  318. package/api/types/CaptionStyleModelTextTransform.js +8 -0
  319. package/api/types/CaptionStyleModelTextWeight.d.ts +1 -0
  320. package/api/types/CaptionStyleModelTextWeight.js +1 -0
  321. package/api/types/ContentConfig.d.ts +7 -7
  322. package/api/types/ContentGuardrailInput.d.ts +1 -0
  323. package/api/types/ContentGuardrailInputTriggerAction.d.ts +10 -0
  324. package/api/types/ContentGuardrailInputTriggerAction.js +3 -0
  325. package/api/types/ContentGuardrailOutput.d.ts +1 -0
  326. package/api/types/ContentGuardrailOutputTriggerAction.d.ts +10 -0
  327. package/api/types/ContentGuardrailOutputTriggerAction.js +3 -0
  328. package/api/types/ContentThresholdGuardrail.d.ts +5 -0
  329. package/api/types/ContentThresholdGuardrail.js +3 -0
  330. package/api/types/ContentThresholdGuardrailThreshold.d.ts +1 -0
  331. package/api/types/ContentThresholdGuardrailThreshold.js +3 -0
  332. package/api/types/Contributor.d.ts +2 -0
  333. package/api/types/ConvAiEnvVarLocator.d.ts +6 -0
  334. package/api/types/ConvAiEnvVarLocator.js +3 -0
  335. package/api/types/ConversationConfig.d.ts +2 -0
  336. package/api/types/ConversationConfigWorkflowOverride.d.ts +2 -0
  337. package/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +1 -1
  338. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +16 -0
  339. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +3 -0
  340. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +16 -0
  341. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +3 -0
  342. package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
  343. package/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
  344. package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
  345. package/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
  346. package/api/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
  347. package/api/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +1 -1
  348. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +7 -0
  349. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +3 -0
  350. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +7 -0
  351. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +3 -0
  352. package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +1 -1
  353. package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +1 -1
  354. package/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +1 -1
  355. package/api/types/ConversationInitiationClientDataInternal.d.ts +6 -0
  356. package/api/types/ConversationInitiationClientDataRequestInput.d.ts +4 -0
  357. package/api/types/ConversationInitiationClientDataRequestOutput.d.ts +4 -0
  358. package/api/types/ConversationSummaryResponseModel.d.ts +2 -1
  359. package/api/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +7 -0
  360. package/api/types/CreateAuthConnectionEnvironmentVariableRequest.js +3 -0
  361. package/api/types/CreateBasicAuthRequest.d.ts +9 -0
  362. package/api/types/CreateBasicAuthRequest.js +3 -0
  363. package/api/types/CreateCustomHeaderAuthRequest.d.ts +7 -0
  364. package/api/types/CreateCustomHeaderAuthRequest.js +3 -0
  365. package/api/types/CreateOAuth2ClientCredsRequest.d.ts +15 -0
  366. package/api/types/CreateOAuth2ClientCredsRequest.js +3 -0
  367. package/api/types/CreateOAuth2JwtRequest.d.ts +27 -0
  368. package/api/types/CreateOAuth2JwtRequest.js +3 -0
  369. package/api/types/CreateOAuth2JwtRequestAlgorithm.d.ts +10 -0
  370. package/api/types/CreateOAuth2JwtRequestAlgorithm.js +13 -0
  371. package/api/types/CreatePrivateKeyJwtRequest.d.ts +23 -0
  372. package/api/types/CreatePrivateKeyJwtRequest.js +3 -0
  373. package/api/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +10 -0
  374. package/api/types/CreatePrivateKeyJwtRequestAlgorithm.js +13 -0
  375. package/api/types/CreateSecretEnvironmentVariableRequest.d.ts +7 -0
  376. package/api/types/CreateSecretEnvironmentVariableRequest.js +3 -0
  377. package/api/types/CreateSimulationTestRequest.d.ts +4 -0
  378. package/api/types/CreateStringEnvironmentVariableRequest.d.ts +6 -0
  379. package/api/types/CreateStringEnvironmentVariableRequest.js +3 -0
  380. package/api/types/CustomGuardrailConfig.d.ts +1 -0
  381. package/api/types/CustomGuardrailConfigTriggerAction.d.ts +10 -0
  382. package/api/types/CustomGuardrailConfigTriggerAction.js +3 -0
  383. package/api/types/CustomHeaderAuthResponse.d.ts +12 -0
  384. package/api/types/CustomHeaderAuthResponse.js +3 -0
  385. package/api/types/CustomLlm.d.ts +1 -1
  386. package/api/types/CustomLlmApiKey.d.ts +5 -0
  387. package/api/types/CustomLlmApiKey.js +3 -0
  388. package/api/types/CustomLlmRequestHeadersValue.d.ts +1 -1
  389. package/api/types/DependentAvailableMcpServerIdentifier.d.ts +7 -0
  390. package/api/types/DependentAvailableMcpServerIdentifier.js +3 -0
  391. package/api/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  392. package/api/types/DependentAvailableMcpServerIdentifierAccessLevel.js +10 -0
  393. package/api/types/DependentIntegrationConnectionIdentifier.d.ts +7 -0
  394. package/api/types/DependentIntegrationConnectionIdentifier.js +3 -0
  395. package/api/types/DependentUnknownMcpServerIdentifier.d.ts +3 -0
  396. package/api/types/DependentUnknownMcpServerIdentifier.js +3 -0
  397. package/api/types/DependentUnknownToolIdentifier.d.ts +3 -1
  398. package/api/types/DirectPublishingReadResponseModel.d.ts +1 -0
  399. package/api/types/EmbeddingModelEnum.d.ts +0 -1
  400. package/api/types/EmbeddingModelEnum.js +0 -1
  401. package/api/types/EndCallTriggerAction.d.ts +1 -0
  402. package/api/types/EndCallTriggerAction.js +3 -0
  403. package/api/types/EnvironmentAuthConnectionLocator.d.ts +8 -0
  404. package/api/types/EnvironmentAuthConnectionLocator.js +3 -0
  405. package/api/types/EnvironmentVariableAuthConnectionValue.d.ts +3 -0
  406. package/api/types/EnvironmentVariableAuthConnectionValue.js +3 -0
  407. package/api/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +3 -0
  408. package/api/types/EnvironmentVariableAuthConnectionValueRequest.js +3 -0
  409. package/api/types/EnvironmentVariableResponse.d.ts +11 -0
  410. package/api/types/EnvironmentVariableResponse.js +3 -0
  411. package/api/types/EnvironmentVariableResponseType.d.ts +6 -0
  412. package/api/types/EnvironmentVariableResponseType.js +9 -0
  413. package/api/types/EnvironmentVariableResponseValues.d.ts +2 -0
  414. package/api/types/EnvironmentVariableResponseValues.js +3 -0
  415. package/api/types/EnvironmentVariableSecretValue.d.ts +3 -0
  416. package/api/types/EnvironmentVariableSecretValue.js +3 -0
  417. package/api/types/EnvironmentVariableSecretValueRequest.d.ts +3 -0
  418. package/api/types/EnvironmentVariableSecretValueRequest.js +3 -0
  419. package/api/types/EnvironmentVariablesListResponse.d.ts +6 -0
  420. package/api/types/EnvironmentVariablesListResponse.js +3 -0
  421. package/api/types/FeaturesUsageCommonModel.d.ts +1 -0
  422. package/api/types/FileInputConfig.d.ts +6 -0
  423. package/api/types/FileInputConfig.js +3 -0
  424. package/api/types/FileInputConfigWorkflowOverride.d.ts +6 -0
  425. package/api/types/FileInputConfigWorkflowOverride.js +3 -0
  426. package/api/types/GenesysRegion.d.ts +20 -0
  427. package/api/types/GenesysRegion.js +23 -0
  428. package/api/types/GetConvAiSettingsResponseModel.d.ts +2 -0
  429. package/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +1 -0
  430. package/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +1 -0
  431. package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -0
  432. package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -0
  433. package/api/types/GetSimulationTestResponseModel.d.ts +4 -0
  434. package/api/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  435. package/api/types/GuardrailsV1Input.d.ts +0 -1
  436. package/api/types/GuardrailsV1Output.d.ts +0 -1
  437. package/api/types/ListAuthConnectionsResponse.d.ts +4 -0
  438. package/api/types/ListAuthConnectionsResponse.js +3 -0
  439. package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +31 -0
  440. package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.js +3 -0
  441. package/api/types/LlmInfoModelInput.d.ts +2 -0
  442. package/api/types/LlmInfoModelOutput.d.ts +2 -0
  443. package/api/types/LlmLiteralJsonSchemaProperty.d.ts +7 -0
  444. package/api/types/LlmLiteralJsonSchemaProperty.js +3 -0
  445. package/api/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  446. package/api/types/LlmLiteralJsonSchemaPropertyType.js +10 -0
  447. package/api/types/McpServerConfigInput.d.ts +1 -1
  448. package/api/types/McpServerConfigInputAuthConnection.d.ts +5 -0
  449. package/api/types/McpServerConfigInputAuthConnection.js +3 -0
  450. package/api/types/McpServerConfigInputRequestHeadersValue.d.ts +1 -1
  451. package/api/types/McpServerConfigOutput.d.ts +1 -1
  452. package/api/types/McpServerConfigOutputAuthConnection.d.ts +5 -0
  453. package/api/types/McpServerConfigOutputAuthConnection.js +3 -0
  454. package/api/types/McpServerConfigOutputRequestHeadersValue.d.ts +1 -1
  455. package/api/types/MessageSearchSortBy.d.ts +5 -0
  456. package/api/types/MessageSearchSortBy.js +8 -0
  457. package/api/types/MockNoMatchBehavior.d.ts +5 -0
  458. package/api/types/MockNoMatchBehavior.js +8 -0
  459. package/api/types/MockingStrategy.d.ts +6 -0
  460. package/api/types/MockingStrategy.js +9 -0
  461. package/api/types/OAuth2ClientCredsResponse.d.ts +16 -0
  462. package/api/types/OAuth2ClientCredsResponse.js +3 -0
  463. package/api/types/OAuth2JwtResponse.d.ts +28 -0
  464. package/api/types/OAuth2JwtResponse.js +3 -0
  465. package/api/types/OAuth2JwtResponseAlgorithm.d.ts +10 -0
  466. package/api/types/OAuth2JwtResponseAlgorithm.js +13 -0
  467. package/api/types/OAuthConnectionStatus.d.ts +6 -0
  468. package/api/types/OAuthConnectionStatus.js +9 -0
  469. package/api/types/OrchestratorToolMockBehaviorConfig.d.ts +12 -0
  470. package/api/types/OrchestratorToolMockBehaviorConfig.js +3 -0
  471. package/api/types/PermissionType.d.ts +1 -0
  472. package/api/types/PermissionType.js +1 -0
  473. package/api/types/PlayDtmfToolConfig.d.ts +3 -1
  474. package/api/types/PreviewAudioDbModel.d.ts +2 -0
  475. package/api/types/PrivateKeyJwtResponse.d.ts +24 -0
  476. package/api/types/PrivateKeyJwtResponse.js +3 -0
  477. package/api/types/PrivateKeyJwtResponseAlgorithm.d.ts +10 -0
  478. package/api/types/PrivateKeyJwtResponseAlgorithm.js +13 -0
  479. package/api/types/ProcedureCompilerMode.d.ts +5 -0
  480. package/api/types/ProcedureCompilerMode.js +8 -0
  481. package/api/types/ProcedureSettings.d.ts +4 -0
  482. package/api/types/ProcedureSettings.js +3 -0
  483. package/api/types/ProjectExternalAudioResponseModel.d.ts +3 -1
  484. package/api/types/ProjectImageResponseModel.d.ts +1 -0
  485. package/api/types/ProjectVideoResponseModel.d.ts +1 -0
  486. package/api/types/RetryTriggerAction.d.ts +4 -0
  487. package/api/types/RetryTriggerAction.js +3 -0
  488. package/api/types/SimulationTestModel.d.ts +4 -0
  489. package/api/types/SimulationToolMockBehaviorConfig.d.ts +12 -0
  490. package/api/types/SimulationToolMockBehaviorConfig.js +3 -0
  491. package/api/types/SingleTestRunRequestModel.d.ts +4 -0
  492. package/api/types/SpeechHistoryItemResponse.d.ts +2 -0
  493. package/api/types/Subscription.d.ts +4 -0
  494. package/api/types/SystemToolConfigInputParams.d.ts +1 -16
  495. package/api/types/SystemToolConfigOutputParams.d.ts +1 -16
  496. package/api/types/TelephonyDirection.d.ts +5 -0
  497. package/api/types/TelephonyDirection.js +8 -0
  498. package/api/types/ToolRequestModel.d.ts +2 -0
  499. package/api/types/ToolResponseMockConfigInput.d.ts +7 -0
  500. package/api/types/ToolResponseMockConfigInput.js +3 -0
  501. package/api/types/ToolResponseMockConfigOutput.d.ts +7 -0
  502. package/api/types/ToolResponseMockConfigOutput.js +3 -0
  503. package/api/types/ToolResponseModel.d.ts +2 -0
  504. package/api/types/UnitTestRunResponseModel.d.ts +3 -0
  505. package/api/types/UpdateSimulationTestRequest.d.ts +4 -0
  506. package/api/types/VideoAnalysisResult.d.ts +1 -1
  507. package/api/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
  508. package/api/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +5 -0
  509. package/api/types/WebhookToolApiSchemaConfigInputAuthConnection.js +3 -0
  510. package/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +1 -1
  511. package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
  512. package/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +5 -0
  513. package/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +3 -0
  514. package/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +1 -1
  515. package/api/types/WhatsAppAuthResponse.d.ts +8 -0
  516. package/api/types/WhatsAppAuthResponse.js +3 -0
  517. package/api/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
  518. package/api/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
  519. package/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
  520. package/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
  521. package/api/types/WorkspaceGroupPermission.d.ts +1 -0
  522. package/api/types/WorkspaceGroupPermission.js +1 -0
  523. package/api/types/WorkspaceResourceType.d.ts +2 -0
  524. package/api/types/WorkspaceResourceType.js +2 -0
  525. package/api/types/index.d.ts +119 -25
  526. package/api/types/index.js +119 -25
  527. package/dist/BaseClient.js +2 -2
  528. package/dist/Client.d.ts +5 -2
  529. package/dist/Client.js +46 -41
  530. package/dist/api/errors/BadRequestError.d.ts +1 -2
  531. package/dist/api/errors/UnprocessableEntityError.d.ts +1 -2
  532. package/dist/api/resources/audioIsolation/client/Client.js +2 -12
  533. package/dist/api/resources/audioNative/client/Client.js +4 -24
  534. package/dist/api/resources/conversationalAi/client/Client.js +4 -24
  535. package/dist/api/resources/conversationalAi/conversation/Conversation.d.ts +12 -0
  536. package/dist/api/resources/conversationalAi/conversation/Conversation.js +18 -0
  537. package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +25 -0
  538. package/dist/api/resources/conversationalAi/conversation/events.d.ts +19 -2
  539. package/dist/api/resources/conversationalAi/conversation/events.js +2 -0
  540. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +1 -0
  541. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +14 -55
  542. package/dist/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +4 -1
  543. package/dist/api/resources/conversationalAi/resources/agents/resources/branches/client/Client.js +5 -30
  544. package/dist/api/resources/conversationalAi/resources/agents/resources/deployments/client/Client.js +1 -6
  545. package/dist/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.d.ts +120 -40
  546. package/dist/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.js +122 -52
  547. package/dist/api/resources/conversationalAi/resources/agents/resources/drafts/client/requests/BodyCreateAgentDraftV1ConvaiAgentsAgentIdDraftsPost.d.ts +120 -40
  548. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +1 -6
  549. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +1 -6
  550. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +1 -6
  551. package/dist/api/resources/conversationalAi/resources/agents/resources/summaries/client/Client.js +1 -6
  552. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +1 -6
  553. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +1 -6
  554. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +1 -6
  555. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +6 -36
  556. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
  557. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +4 -2
  558. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +34 -35
  559. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +4 -1
  560. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +4 -1
  561. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +4 -0
  562. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +1 -7
  563. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +1 -6
  564. package/dist/api/resources/conversationalAi/resources/conversations/resources/files/client/Client.js +2 -12
  565. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.d.ts +1 -0
  566. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +25 -13
  567. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +7 -0
  568. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +2 -12
  569. package/dist/api/resources/conversationalAi/resources/index.d.ts +0 -1
  570. package/dist/api/resources/conversationalAi/resources/index.js +0 -1
  571. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +1 -0
  572. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +7 -13
  573. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +4 -1
  574. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +13 -0
  575. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +56 -6
  576. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  577. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  578. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +16 -0
  579. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +3 -0
  580. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  581. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  582. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -72
  583. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +4 -0
  584. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +4 -0
  585. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +5 -2
  586. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +17 -12
  587. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -1
  588. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +15 -0
  589. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.d.ts +11 -0
  590. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.js +3 -0
  591. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.d.ts +1 -0
  592. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.js +2 -0
  593. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
  594. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +1 -0
  595. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.js +1 -6
  596. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  597. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  598. package/dist/api/resources/conversationalAi/resources/llm/client/Client.js +1 -6
  599. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +1 -6
  600. package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.js +5 -30
  601. package/dist/api/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +1 -1
  602. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +1 -6
  603. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +2 -12
  604. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +4 -24
  605. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +1 -6
  606. package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +5 -0
  607. package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +3 -0
  608. package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +1 -1
  609. package/dist/api/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  610. package/dist/api/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  611. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +5 -30
  612. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +4 -24
  613. package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +2 -12
  614. package/dist/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +2 -0
  615. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +1 -6
  616. package/dist/api/resources/conversationalAi/resources/tests/client/Client.js +6 -36
  617. package/dist/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +3 -18
  618. package/dist/api/resources/conversationalAi/resources/tools/client/Client.d.ts +6 -2
  619. package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +25 -43
  620. package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.d.ts +10 -0
  621. package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.js +3 -0
  622. package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsListRequest.d.ts +4 -1
  623. package/dist/api/resources/conversationalAi/resources/tools/client/requests/index.d.ts +1 -0
  624. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -12
  625. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +1 -1
  626. package/dist/api/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  627. package/dist/api/resources/conversationalAi/resources/twilio/index.js +0 -1
  628. package/dist/api/resources/conversationalAi/resources/users/client/Client.js +1 -6
  629. package/dist/api/resources/conversationalAi/resources/whatsapp/client/Client.js +2 -12
  630. package/dist/api/resources/conversationalAi/resources/whatsappAccounts/client/Client.js +4 -24
  631. package/dist/api/resources/dubbing/client/Client.js +4 -24
  632. package/dist/api/resources/dubbing/resources/audio/client/Client.js +1 -7
  633. package/dist/api/resources/dubbing/resources/resource/client/Client.js +6 -36
  634. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +1 -6
  635. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +2 -12
  636. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +3 -18
  637. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +1 -6
  638. package/dist/api/resources/dubbing/resources/transcript/client/Client.js +1 -6
  639. package/dist/api/resources/dubbing/resources/transcripts/client/Client.js +1 -6
  640. package/dist/api/resources/environmentVariables/client/Client.d.ts +86 -0
  641. package/dist/api/resources/environmentVariables/client/Client.js +342 -0
  642. package/dist/api/resources/environmentVariables/client/index.d.ts +1 -0
  643. package/dist/api/resources/environmentVariables/client/index.js +17 -0
  644. package/dist/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.d.ts +23 -0
  645. package/dist/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.js +3 -0
  646. package/dist/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +11 -0
  647. package/dist/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +3 -0
  648. package/dist/api/resources/environmentVariables/client/requests/index.d.ts +2 -0
  649. package/dist/api/resources/environmentVariables/client/requests/index.js +2 -0
  650. package/dist/api/resources/environmentVariables/index.d.ts +2 -0
  651. package/dist/api/resources/environmentVariables/index.js +18 -0
  652. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +13 -0
  653. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +3 -0
  654. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +6 -0
  655. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +9 -0
  656. package/dist/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +2 -0
  657. package/dist/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +3 -0
  658. package/dist/api/resources/environmentVariables/types/index.d.ts +3 -0
  659. package/dist/api/resources/environmentVariables/types/index.js +19 -0
  660. package/dist/api/resources/forcedAlignment/client/Client.js +1 -6
  661. package/dist/api/resources/history/client/Client.js +6 -36
  662. package/dist/api/resources/index.d.ts +3 -0
  663. package/dist/api/resources/index.js +4 -1
  664. package/dist/api/resources/models/client/Client.js +1 -6
  665. package/dist/api/resources/music/client/Client.d.ts +7 -0
  666. package/dist/api/resources/music/client/Client.js +74 -30
  667. package/dist/api/resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.d.ts +19 -0
  668. package/dist/api/resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.js +3 -0
  669. package/dist/api/resources/music/client/requests/index.d.ts +1 -0
  670. package/dist/api/resources/music/resources/compositionPlan/client/Client.js +1 -6
  671. package/dist/api/resources/pronunciationDictionaries/client/Client.js +6 -36
  672. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +3 -18
  673. package/dist/api/resources/samples/client/Client.js +1 -6
  674. package/dist/api/resources/serviceAccounts/client/Client.js +1 -6
  675. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +4 -24
  676. package/dist/api/resources/speechToSpeech/client/Client.js +2 -12
  677. package/dist/api/resources/speechToText/client/Client.js +12 -8
  678. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +7 -3
  679. package/dist/api/resources/speechToText/resources/transcripts/client/Client.js +2 -12
  680. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +4 -0
  681. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +3 -0
  682. package/dist/api/resources/speechToText/types/index.d.ts +1 -0
  683. package/dist/api/resources/speechToText/types/index.js +1 -0
  684. package/dist/api/resources/studio/client/Client.js +1 -6
  685. package/dist/api/resources/studio/resources/projects/client/Client.js +7 -42
  686. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +6 -36
  687. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +3 -18
  688. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +1 -6
  689. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +1 -6
  690. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +4 -24
  691. package/dist/api/resources/textToDialogue/client/Client.js +4 -24
  692. package/dist/api/resources/textToSoundEffects/client/Client.js +1 -6
  693. package/dist/api/resources/textToSpeech/client/Client.js +4 -24
  694. package/dist/api/resources/textToVoice/client/Client.js +4 -24
  695. package/dist/api/resources/textToVoice/resources/preview/client/Client.js +1 -7
  696. package/dist/api/resources/tokens/resources/singleUse/client/Client.js +1 -6
  697. package/dist/api/resources/usage/client/Client.js +1 -6
  698. package/dist/api/resources/user/client/Client.js +1 -6
  699. package/dist/api/resources/user/resources/subscription/client/Client.js +1 -6
  700. package/dist/api/resources/voices/client/Client.js +8 -48
  701. package/dist/api/resources/voices/resources/ivc/client/Client.js +1 -6
  702. package/dist/api/resources/voices/resources/pvc/client/Client.js +3 -18
  703. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +3 -18
  704. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +1 -6
  705. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +2 -12
  706. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +1 -6
  707. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +1 -6
  708. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +1 -6
  709. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +2 -12
  710. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +1 -7
  711. package/dist/api/resources/voices/resources/settings/client/Client.js +2 -12
  712. package/dist/api/resources/webhooks/client/Client.js +4 -24
  713. package/dist/api/resources/workspace/client/Client.d.ts +3 -0
  714. package/dist/api/resources/workspace/client/Client.js +13 -8
  715. package/dist/api/resources/workspace/resources/authConnections/client/Client.d.ts +58 -0
  716. package/dist/api/resources/workspace/resources/authConnections/client/Client.js +228 -0
  717. package/dist/api/resources/workspace/resources/authConnections/client/index.d.ts +1 -0
  718. package/dist/api/resources/workspace/resources/authConnections/client/index.js +2 -0
  719. package/dist/api/resources/workspace/resources/authConnections/index.d.ts +2 -0
  720. package/dist/api/resources/workspace/resources/authConnections/index.js +18 -0
  721. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +22 -0
  722. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +3 -0
  723. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +31 -0
  724. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +3 -0
  725. package/dist/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  726. package/dist/api/resources/workspace/resources/authConnections/types/index.js +18 -0
  727. package/dist/api/resources/workspace/resources/groups/client/Client.js +2 -12
  728. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +2 -12
  729. package/dist/api/resources/workspace/resources/index.d.ts +2 -0
  730. package/dist/api/resources/workspace/resources/index.js +3 -1
  731. package/dist/api/resources/workspace/resources/invites/client/Client.js +3 -18
  732. package/dist/api/resources/workspace/resources/members/client/Client.js +1 -6
  733. package/dist/api/resources/workspace/resources/resources/client/Client.js +3 -18
  734. package/dist/api/types/AgentConfig.d.ts +2 -0
  735. package/dist/api/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +2 -0
  736. package/dist/api/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +2 -0
  737. package/dist/api/types/AgentConfigOverrideConfig.d.ts +2 -0
  738. package/dist/api/types/AgentConfigOverrideInput.d.ts +2 -0
  739. package/dist/api/types/AgentConfigOverrideOutput.d.ts +2 -0
  740. package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  741. package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  742. package/dist/api/types/AgentSortBy.d.ts +1 -0
  743. package/dist/api/types/AgentSortBy.js +1 -0
  744. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
  745. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponse.js +3 -0
  746. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +6 -0
  747. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +9 -0
  748. package/dist/api/types/ApiIntegrationWebhookOverrides.d.ts +11 -0
  749. package/dist/api/types/ApiIntegrationWebhookOverrides.js +3 -0
  750. package/dist/api/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +2 -0
  751. package/dist/api/types/ApiIntegrationWebhookOverridesRequestHeadersValue.js +3 -0
  752. package/dist/api/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +13 -0
  753. package/dist/api/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.js +3 -0
  754. package/dist/api/types/ApiIntegrationWebhookToolConfigInput.d.ts +1 -1
  755. package/dist/api/types/ApiIntegrationWebhookToolConfigOutput.d.ts +1 -1
  756. package/dist/api/types/AssetTranscription.d.ts +6 -0
  757. package/dist/api/types/AssetTranscription.js +3 -0
  758. package/dist/api/types/AssetTranscriptionWord.d.ts +6 -0
  759. package/dist/api/types/AssetTranscriptionWord.js +3 -0
  760. package/dist/api/types/AstAdditionOperatorNodeInput.d.ts +7 -0
  761. package/dist/api/types/AstAdditionOperatorNodeInput.js +3 -0
  762. package/dist/api/types/AstAdditionOperatorNodeInputLeft.d.ts +62 -0
  763. package/dist/api/types/AstAdditionOperatorNodeInputLeft.js +3 -0
  764. package/dist/api/types/AstAdditionOperatorNodeInputRight.d.ts +62 -0
  765. package/dist/api/types/AstAdditionOperatorNodeInputRight.js +3 -0
  766. package/dist/api/types/AstAdditionOperatorNodeOutput.d.ts +7 -0
  767. package/dist/api/types/AstAdditionOperatorNodeOutput.js +3 -0
  768. package/dist/api/types/AstAdditionOperatorNodeOutputLeft.d.ts +61 -0
  769. package/dist/api/types/AstAdditionOperatorNodeOutputLeft.js +3 -0
  770. package/dist/api/types/AstAdditionOperatorNodeOutputRight.d.ts +61 -0
  771. package/dist/api/types/AstAdditionOperatorNodeOutputRight.js +3 -0
  772. package/dist/api/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
  773. package/dist/api/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
  774. package/dist/api/types/AstConditionalOperatorNodeInput.d.ts +9 -0
  775. package/dist/api/types/AstConditionalOperatorNodeInput.js +3 -0
  776. package/dist/api/types/AstConditionalOperatorNodeInputCondition.d.ts +62 -0
  777. package/dist/api/types/AstConditionalOperatorNodeInputCondition.js +3 -0
  778. package/dist/api/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +62 -0
  779. package/dist/api/types/AstConditionalOperatorNodeInputFalseExpression.js +3 -0
  780. package/dist/api/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +62 -0
  781. package/dist/api/types/AstConditionalOperatorNodeInputTrueExpression.js +3 -0
  782. package/dist/api/types/AstConditionalOperatorNodeOutput.d.ts +9 -0
  783. package/dist/api/types/AstConditionalOperatorNodeOutput.js +3 -0
  784. package/dist/api/types/AstConditionalOperatorNodeOutputCondition.d.ts +61 -0
  785. package/dist/api/types/AstConditionalOperatorNodeOutputCondition.js +3 -0
  786. package/dist/api/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +61 -0
  787. package/dist/api/types/AstConditionalOperatorNodeOutputFalseExpression.js +3 -0
  788. package/dist/api/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +61 -0
  789. package/dist/api/types/AstConditionalOperatorNodeOutputTrueExpression.js +3 -0
  790. package/dist/api/types/AstDivisionOperatorNodeInput.d.ts +7 -0
  791. package/dist/api/types/AstDivisionOperatorNodeInput.js +3 -0
  792. package/dist/api/types/AstDivisionOperatorNodeInputLeft.d.ts +62 -0
  793. package/dist/api/types/AstDivisionOperatorNodeInputLeft.js +3 -0
  794. package/dist/api/types/AstDivisionOperatorNodeInputRight.d.ts +62 -0
  795. package/dist/api/types/AstDivisionOperatorNodeInputRight.js +3 -0
  796. package/dist/api/types/AstDivisionOperatorNodeOutput.d.ts +7 -0
  797. package/dist/api/types/AstDivisionOperatorNodeOutput.js +3 -0
  798. package/dist/api/types/AstDivisionOperatorNodeOutputLeft.d.ts +61 -0
  799. package/dist/api/types/AstDivisionOperatorNodeOutputLeft.js +3 -0
  800. package/dist/api/types/AstDivisionOperatorNodeOutputRight.d.ts +61 -0
  801. package/dist/api/types/AstDivisionOperatorNodeOutputRight.js +3 -0
  802. package/dist/api/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
  803. package/dist/api/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
  804. package/dist/api/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
  805. package/dist/api/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
  806. package/dist/api/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
  807. package/dist/api/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
  808. package/dist/api/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
  809. package/dist/api/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
  810. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  811. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  812. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  813. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  814. package/dist/api/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
  815. package/dist/api/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
  816. package/dist/api/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
  817. package/dist/api/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
  818. package/dist/api/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  819. package/dist/api/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  820. package/dist/api/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  821. package/dist/api/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  822. package/dist/api/types/AstMultiplicationOperatorNodeInput.d.ts +7 -0
  823. package/dist/api/types/AstMultiplicationOperatorNodeInput.js +3 -0
  824. package/dist/api/types/AstMultiplicationOperatorNodeInputLeft.d.ts +62 -0
  825. package/dist/api/types/AstMultiplicationOperatorNodeInputLeft.js +3 -0
  826. package/dist/api/types/AstMultiplicationOperatorNodeInputRight.d.ts +62 -0
  827. package/dist/api/types/AstMultiplicationOperatorNodeInputRight.js +3 -0
  828. package/dist/api/types/AstMultiplicationOperatorNodeOutput.d.ts +7 -0
  829. package/dist/api/types/AstMultiplicationOperatorNodeOutput.js +3 -0
  830. package/dist/api/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +61 -0
  831. package/dist/api/types/AstMultiplicationOperatorNodeOutputLeft.js +3 -0
  832. package/dist/api/types/AstMultiplicationOperatorNodeOutputRight.d.ts +61 -0
  833. package/dist/api/types/AstMultiplicationOperatorNodeOutputRight.js +3 -0
  834. package/dist/api/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
  835. package/dist/api/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
  836. package/dist/api/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
  837. package/dist/api/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
  838. package/dist/api/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
  839. package/dist/api/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
  840. package/dist/api/types/AstSubtractionOperatorNodeInput.d.ts +7 -0
  841. package/dist/api/types/AstSubtractionOperatorNodeInput.js +3 -0
  842. package/dist/api/types/AstSubtractionOperatorNodeInputLeft.d.ts +62 -0
  843. package/dist/api/types/AstSubtractionOperatorNodeInputLeft.js +3 -0
  844. package/dist/api/types/AstSubtractionOperatorNodeInputRight.d.ts +62 -0
  845. package/dist/api/types/AstSubtractionOperatorNodeInputRight.js +3 -0
  846. package/dist/api/types/AstSubtractionOperatorNodeOutput.d.ts +7 -0
  847. package/dist/api/types/AstSubtractionOperatorNodeOutput.js +3 -0
  848. package/dist/api/types/AstSubtractionOperatorNodeOutputLeft.d.ts +61 -0
  849. package/dist/api/types/AstSubtractionOperatorNodeOutputLeft.js +3 -0
  850. package/dist/api/types/AstSubtractionOperatorNodeOutputRight.d.ts +61 -0
  851. package/dist/api/types/AstSubtractionOperatorNodeOutputRight.js +3 -0
  852. package/dist/api/types/AstllmNodeInput.d.ts +2 -4
  853. package/dist/api/types/AstllmNodeInputPrompt.d.ts +5 -0
  854. package/dist/api/types/AstllmNodeInputPrompt.js +3 -0
  855. package/dist/api/types/AstllmNodeInputValueSchema.d.ts +6 -0
  856. package/dist/api/types/AstllmNodeInputValueSchema.js +3 -0
  857. package/dist/api/types/AstllmNodeOutput.d.ts +4 -1
  858. package/dist/api/types/AsyncConversationMetadata.d.ts +1 -0
  859. package/dist/api/types/AudioAnalysis.d.ts +6 -0
  860. package/dist/api/types/AudioAnalysis.js +3 -0
  861. package/dist/api/types/AudioAnalysisResult.d.ts +10 -0
  862. package/dist/api/types/AudioAnalysisResult.js +3 -0
  863. package/dist/api/types/AudioAnalysisStatus.d.ts +6 -0
  864. package/dist/api/types/AudioAnalysisStatus.js +9 -0
  865. package/dist/api/types/AudioKeyMoment.d.ts +5 -0
  866. package/dist/api/types/AudioKeyMoment.js +3 -0
  867. package/dist/api/types/AudioSegment.d.ts +9 -0
  868. package/dist/api/types/AudioSegment.js +3 -0
  869. package/dist/api/types/AuthConnectionDependencies.d.ts +9 -0
  870. package/dist/api/types/AuthConnectionDependencies.js +3 -0
  871. package/dist/api/types/AuthConnectionDependenciesMcpServersItem.d.ts +10 -0
  872. package/dist/api/types/AuthConnectionDependenciesMcpServersItem.js +3 -0
  873. package/dist/api/types/AuthConnectionDependenciesToolsItem.d.ts +10 -0
  874. package/dist/api/types/AuthConnectionDependenciesToolsItem.js +3 -0
  875. package/dist/api/types/AutoSyncInfo.d.ts +10 -0
  876. package/dist/api/types/AutoSyncInfo.js +3 -0
  877. package/dist/api/types/BasicAuthResponse.d.ts +11 -0
  878. package/dist/api/types/BasicAuthResponse.js +3 -0
  879. package/dist/api/types/BatchCallDetailedResponse.d.ts +3 -0
  880. package/dist/api/types/BatchCallResponse.d.ts +3 -0
  881. package/dist/api/types/BearerAuthResponse.d.ts +10 -0
  882. package/dist/api/types/BearerAuthResponse.js +3 -0
  883. package/dist/api/types/CanvasPlacement.d.ts +2 -0
  884. package/dist/api/types/CaptionStyleModel.d.ts +2 -0
  885. package/dist/api/types/CaptionStyleModelTextBlendMode.d.ts +6 -0
  886. package/dist/api/types/CaptionStyleModelTextBlendMode.js +9 -0
  887. package/dist/api/types/CaptionStyleModelTextTransform.d.ts +5 -0
  888. package/dist/api/types/CaptionStyleModelTextTransform.js +8 -0
  889. package/dist/api/types/CaptionStyleModelTextWeight.d.ts +1 -0
  890. package/dist/api/types/CaptionStyleModelTextWeight.js +1 -0
  891. package/dist/api/types/ContentConfig.d.ts +7 -7
  892. package/dist/api/types/ContentGuardrailInput.d.ts +1 -0
  893. package/dist/api/types/ContentGuardrailInputTriggerAction.d.ts +10 -0
  894. package/dist/api/types/ContentGuardrailInputTriggerAction.js +3 -0
  895. package/dist/api/types/ContentGuardrailOutput.d.ts +1 -0
  896. package/dist/api/types/ContentGuardrailOutputTriggerAction.d.ts +10 -0
  897. package/dist/api/types/ContentGuardrailOutputTriggerAction.js +3 -0
  898. package/dist/api/types/ContentThresholdGuardrail.d.ts +5 -0
  899. package/dist/api/types/ContentThresholdGuardrail.js +3 -0
  900. package/dist/api/types/ContentThresholdGuardrailThreshold.d.ts +1 -0
  901. package/dist/api/types/ContentThresholdGuardrailThreshold.js +3 -0
  902. package/dist/api/types/Contributor.d.ts +2 -0
  903. package/dist/api/types/ConvAiEnvVarLocator.d.ts +6 -0
  904. package/dist/api/types/ConvAiEnvVarLocator.js +3 -0
  905. package/dist/api/types/ConversationConfig.d.ts +2 -0
  906. package/dist/api/types/ConversationConfigWorkflowOverride.d.ts +2 -0
  907. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +1 -1
  908. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +16 -0
  909. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +3 -0
  910. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +16 -0
  911. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +3 -0
  912. package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
  913. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
  914. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
  915. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
  916. package/dist/api/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
  917. package/dist/api/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +1 -1
  918. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +7 -0
  919. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +3 -0
  920. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +7 -0
  921. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +3 -0
  922. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +1 -1
  923. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +1 -1
  924. package/dist/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +1 -1
  925. package/dist/api/types/ConversationInitiationClientDataInternal.d.ts +6 -0
  926. package/dist/api/types/ConversationInitiationClientDataRequestInput.d.ts +4 -0
  927. package/dist/api/types/ConversationInitiationClientDataRequestOutput.d.ts +4 -0
  928. package/dist/api/types/ConversationSummaryResponseModel.d.ts +2 -1
  929. package/dist/api/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +7 -0
  930. package/dist/api/types/CreateAuthConnectionEnvironmentVariableRequest.js +3 -0
  931. package/dist/api/types/CreateBasicAuthRequest.d.ts +9 -0
  932. package/dist/api/types/CreateBasicAuthRequest.js +3 -0
  933. package/dist/api/types/CreateCustomHeaderAuthRequest.d.ts +7 -0
  934. package/dist/api/types/CreateCustomHeaderAuthRequest.js +3 -0
  935. package/dist/api/types/CreateOAuth2ClientCredsRequest.d.ts +15 -0
  936. package/dist/api/types/CreateOAuth2ClientCredsRequest.js +3 -0
  937. package/dist/api/types/CreateOAuth2JwtRequest.d.ts +27 -0
  938. package/dist/api/types/CreateOAuth2JwtRequest.js +3 -0
  939. package/dist/api/types/CreateOAuth2JwtRequestAlgorithm.d.ts +10 -0
  940. package/dist/api/types/CreateOAuth2JwtRequestAlgorithm.js +13 -0
  941. package/dist/api/types/CreatePrivateKeyJwtRequest.d.ts +23 -0
  942. package/dist/api/types/CreatePrivateKeyJwtRequest.js +3 -0
  943. package/dist/api/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +10 -0
  944. package/dist/api/types/CreatePrivateKeyJwtRequestAlgorithm.js +13 -0
  945. package/dist/api/types/CreateSecretEnvironmentVariableRequest.d.ts +7 -0
  946. package/dist/api/types/CreateSecretEnvironmentVariableRequest.js +3 -0
  947. package/dist/api/types/CreateSimulationTestRequest.d.ts +4 -0
  948. package/dist/api/types/CreateStringEnvironmentVariableRequest.d.ts +6 -0
  949. package/dist/api/types/CreateStringEnvironmentVariableRequest.js +3 -0
  950. package/dist/api/types/CustomGuardrailConfig.d.ts +1 -0
  951. package/dist/api/types/CustomGuardrailConfigTriggerAction.d.ts +10 -0
  952. package/dist/api/types/CustomGuardrailConfigTriggerAction.js +3 -0
  953. package/dist/api/types/CustomHeaderAuthResponse.d.ts +12 -0
  954. package/dist/api/types/CustomHeaderAuthResponse.js +3 -0
  955. package/dist/api/types/CustomLlm.d.ts +1 -1
  956. package/dist/api/types/CustomLlmApiKey.d.ts +5 -0
  957. package/dist/api/types/CustomLlmApiKey.js +3 -0
  958. package/dist/api/types/CustomLlmRequestHeadersValue.d.ts +1 -1
  959. package/dist/api/types/DependentAvailableMcpServerIdentifier.d.ts +7 -0
  960. package/dist/api/types/DependentAvailableMcpServerIdentifier.js +3 -0
  961. package/dist/api/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  962. package/dist/api/types/DependentAvailableMcpServerIdentifierAccessLevel.js +10 -0
  963. package/dist/api/types/DependentIntegrationConnectionIdentifier.d.ts +7 -0
  964. package/dist/api/types/DependentIntegrationConnectionIdentifier.js +3 -0
  965. package/dist/api/types/DependentUnknownMcpServerIdentifier.d.ts +3 -0
  966. package/dist/api/types/DependentUnknownMcpServerIdentifier.js +3 -0
  967. package/dist/api/types/DependentUnknownToolIdentifier.d.ts +3 -1
  968. package/dist/api/types/DirectPublishingReadResponseModel.d.ts +1 -0
  969. package/dist/api/types/EmbeddingModelEnum.d.ts +0 -1
  970. package/dist/api/types/EmbeddingModelEnum.js +0 -1
  971. package/dist/api/types/EndCallTriggerAction.d.ts +1 -0
  972. package/dist/api/types/EndCallTriggerAction.js +3 -0
  973. package/dist/api/types/EnvironmentAuthConnectionLocator.d.ts +8 -0
  974. package/dist/api/types/EnvironmentAuthConnectionLocator.js +3 -0
  975. package/dist/api/types/EnvironmentVariableAuthConnectionValue.d.ts +3 -0
  976. package/dist/api/types/EnvironmentVariableAuthConnectionValue.js +3 -0
  977. package/dist/api/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +3 -0
  978. package/dist/api/types/EnvironmentVariableAuthConnectionValueRequest.js +3 -0
  979. package/dist/api/types/EnvironmentVariableResponse.d.ts +11 -0
  980. package/dist/api/types/EnvironmentVariableResponse.js +3 -0
  981. package/dist/api/types/EnvironmentVariableResponseType.d.ts +6 -0
  982. package/dist/api/types/EnvironmentVariableResponseType.js +9 -0
  983. package/dist/api/types/EnvironmentVariableResponseValues.d.ts +2 -0
  984. package/dist/api/types/EnvironmentVariableResponseValues.js +3 -0
  985. package/dist/api/types/EnvironmentVariableSecretValue.d.ts +3 -0
  986. package/dist/api/types/EnvironmentVariableSecretValue.js +3 -0
  987. package/dist/api/types/EnvironmentVariableSecretValueRequest.d.ts +3 -0
  988. package/dist/api/types/EnvironmentVariableSecretValueRequest.js +3 -0
  989. package/dist/api/types/EnvironmentVariablesListResponse.d.ts +6 -0
  990. package/dist/api/types/EnvironmentVariablesListResponse.js +3 -0
  991. package/dist/api/types/FeaturesUsageCommonModel.d.ts +1 -0
  992. package/dist/api/types/FileInputConfig.d.ts +6 -0
  993. package/dist/api/types/FileInputConfig.js +3 -0
  994. package/dist/api/types/FileInputConfigWorkflowOverride.d.ts +6 -0
  995. package/dist/api/types/FileInputConfigWorkflowOverride.js +3 -0
  996. package/dist/api/types/GenesysRegion.d.ts +20 -0
  997. package/dist/api/types/GenesysRegion.js +23 -0
  998. package/dist/api/types/GetConvAiSettingsResponseModel.d.ts +2 -0
  999. package/dist/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +1 -0
  1000. package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +1 -0
  1001. package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -0
  1002. package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -0
  1003. package/dist/api/types/GetSimulationTestResponseModel.d.ts +4 -0
  1004. package/dist/api/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  1005. package/dist/api/types/GuardrailsV1Input.d.ts +0 -1
  1006. package/dist/api/types/GuardrailsV1Output.d.ts +0 -1
  1007. package/dist/api/types/ListAuthConnectionsResponse.d.ts +4 -0
  1008. package/dist/api/types/ListAuthConnectionsResponse.js +3 -0
  1009. package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +31 -0
  1010. package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.js +3 -0
  1011. package/dist/api/types/LlmInfoModelInput.d.ts +2 -0
  1012. package/dist/api/types/LlmInfoModelOutput.d.ts +2 -0
  1013. package/dist/api/types/LlmLiteralJsonSchemaProperty.d.ts +7 -0
  1014. package/dist/api/types/LlmLiteralJsonSchemaProperty.js +3 -0
  1015. package/dist/api/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  1016. package/dist/api/types/LlmLiteralJsonSchemaPropertyType.js +10 -0
  1017. package/dist/api/types/McpServerConfigInput.d.ts +1 -1
  1018. package/dist/api/types/McpServerConfigInputAuthConnection.d.ts +5 -0
  1019. package/dist/api/types/McpServerConfigInputAuthConnection.js +3 -0
  1020. package/dist/api/types/McpServerConfigInputRequestHeadersValue.d.ts +1 -1
  1021. package/dist/api/types/McpServerConfigOutput.d.ts +1 -1
  1022. package/dist/api/types/McpServerConfigOutputAuthConnection.d.ts +5 -0
  1023. package/dist/api/types/McpServerConfigOutputAuthConnection.js +3 -0
  1024. package/dist/api/types/McpServerConfigOutputRequestHeadersValue.d.ts +1 -1
  1025. package/dist/api/types/MessageSearchSortBy.d.ts +5 -0
  1026. package/dist/api/types/MessageSearchSortBy.js +8 -0
  1027. package/dist/api/types/MockNoMatchBehavior.d.ts +5 -0
  1028. package/dist/api/types/MockNoMatchBehavior.js +8 -0
  1029. package/dist/api/types/MockingStrategy.d.ts +6 -0
  1030. package/dist/api/types/MockingStrategy.js +9 -0
  1031. package/dist/api/types/OAuth2ClientCredsResponse.d.ts +16 -0
  1032. package/dist/api/types/OAuth2ClientCredsResponse.js +3 -0
  1033. package/dist/api/types/OAuth2JwtResponse.d.ts +28 -0
  1034. package/dist/api/types/OAuth2JwtResponse.js +3 -0
  1035. package/dist/api/types/OAuth2JwtResponseAlgorithm.d.ts +10 -0
  1036. package/dist/api/types/OAuth2JwtResponseAlgorithm.js +13 -0
  1037. package/dist/api/types/OAuthConnectionStatus.d.ts +6 -0
  1038. package/dist/api/types/OAuthConnectionStatus.js +9 -0
  1039. package/dist/api/types/OrchestratorToolMockBehaviorConfig.d.ts +12 -0
  1040. package/dist/api/types/OrchestratorToolMockBehaviorConfig.js +3 -0
  1041. package/dist/api/types/PermissionType.d.ts +1 -0
  1042. package/dist/api/types/PermissionType.js +1 -0
  1043. package/dist/api/types/PlayDtmfToolConfig.d.ts +3 -1
  1044. package/dist/api/types/PreviewAudioDbModel.d.ts +2 -0
  1045. package/dist/api/types/PrivateKeyJwtResponse.d.ts +24 -0
  1046. package/dist/api/types/PrivateKeyJwtResponse.js +3 -0
  1047. package/dist/api/types/PrivateKeyJwtResponseAlgorithm.d.ts +10 -0
  1048. package/dist/api/types/PrivateKeyJwtResponseAlgorithm.js +13 -0
  1049. package/dist/api/types/ProcedureCompilerMode.d.ts +5 -0
  1050. package/dist/api/types/ProcedureCompilerMode.js +8 -0
  1051. package/dist/api/types/ProcedureSettings.d.ts +4 -0
  1052. package/dist/api/types/ProcedureSettings.js +3 -0
  1053. package/dist/api/types/ProjectExternalAudioResponseModel.d.ts +3 -1
  1054. package/dist/api/types/ProjectImageResponseModel.d.ts +1 -0
  1055. package/dist/api/types/ProjectVideoResponseModel.d.ts +1 -0
  1056. package/dist/api/types/RetryTriggerAction.d.ts +4 -0
  1057. package/dist/api/types/RetryTriggerAction.js +3 -0
  1058. package/dist/api/types/SimulationTestModel.d.ts +4 -0
  1059. package/dist/api/types/SimulationToolMockBehaviorConfig.d.ts +12 -0
  1060. package/dist/api/types/SimulationToolMockBehaviorConfig.js +3 -0
  1061. package/dist/api/types/SingleTestRunRequestModel.d.ts +4 -0
  1062. package/dist/api/types/SpeechHistoryItemResponse.d.ts +2 -0
  1063. package/dist/api/types/Subscription.d.ts +4 -0
  1064. package/dist/api/types/SystemToolConfigInputParams.d.ts +1 -16
  1065. package/dist/api/types/SystemToolConfigOutputParams.d.ts +1 -16
  1066. package/dist/api/types/TelephonyDirection.d.ts +5 -0
  1067. package/dist/api/types/TelephonyDirection.js +8 -0
  1068. package/dist/api/types/ToolRequestModel.d.ts +2 -0
  1069. package/dist/api/types/ToolResponseMockConfigInput.d.ts +7 -0
  1070. package/dist/api/types/ToolResponseMockConfigInput.js +3 -0
  1071. package/dist/api/types/ToolResponseMockConfigOutput.d.ts +7 -0
  1072. package/dist/api/types/ToolResponseMockConfigOutput.js +3 -0
  1073. package/dist/api/types/ToolResponseModel.d.ts +2 -0
  1074. package/dist/api/types/UnitTestRunResponseModel.d.ts +3 -0
  1075. package/dist/api/types/UpdateSimulationTestRequest.d.ts +4 -0
  1076. package/dist/api/types/VideoAnalysisResult.d.ts +1 -1
  1077. package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
  1078. package/dist/api/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +5 -0
  1079. package/dist/api/types/WebhookToolApiSchemaConfigInputAuthConnection.js +3 -0
  1080. package/dist/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +1 -1
  1081. package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
  1082. package/dist/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +5 -0
  1083. package/dist/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +3 -0
  1084. package/dist/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +1 -1
  1085. package/dist/api/types/WhatsAppAuthResponse.d.ts +8 -0
  1086. package/dist/api/types/WhatsAppAuthResponse.js +3 -0
  1087. package/dist/api/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
  1088. package/dist/api/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
  1089. package/dist/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
  1090. package/dist/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
  1091. package/dist/api/types/WorkspaceGroupPermission.d.ts +1 -0
  1092. package/dist/api/types/WorkspaceGroupPermission.js +1 -0
  1093. package/dist/api/types/WorkspaceResourceType.d.ts +2 -0
  1094. package/dist/api/types/WorkspaceResourceType.js +2 -0
  1095. package/dist/api/types/index.d.ts +119 -25
  1096. package/dist/api/types/index.js +119 -25
  1097. package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
  1098. package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +2 -0
  1099. package/dist/serialization/resources/conversationalAi/resources/index.d.ts +0 -1
  1100. package/dist/serialization/resources/conversationalAi/resources/index.js +0 -1
  1101. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  1102. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  1103. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +23 -0
  1104. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +53 -0
  1105. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  1106. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  1107. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +2 -0
  1108. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.js +2 -0
  1109. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
  1110. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +2 -0
  1111. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  1112. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  1113. package/dist/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +2 -2
  1114. package/dist/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.js +2 -2
  1115. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +9 -0
  1116. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +41 -0
  1117. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +2 -1
  1118. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.js +7 -1
  1119. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  1120. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  1121. package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +1 -0
  1122. package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +1 -0
  1123. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +2 -2
  1124. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +2 -2
  1125. package/dist/serialization/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  1126. package/dist/serialization/resources/conversationalAi/resources/twilio/index.js +0 -1
  1127. package/dist/serialization/resources/environmentVariables/client/index.d.ts +1 -0
  1128. package/dist/serialization/resources/environmentVariables/client/index.js +17 -0
  1129. package/dist/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +10 -0
  1130. package/dist/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +42 -0
  1131. package/dist/serialization/resources/environmentVariables/client/requests/index.d.ts +1 -0
  1132. package/dist/serialization/resources/environmentVariables/client/requests/index.js +5 -0
  1133. package/dist/serialization/resources/environmentVariables/index.d.ts +2 -0
  1134. package/dist/serialization/resources/environmentVariables/index.js +18 -0
  1135. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +19 -0
  1136. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +51 -0
  1137. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +7 -0
  1138. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +39 -0
  1139. package/dist/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +9 -0
  1140. package/dist/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +45 -0
  1141. package/dist/serialization/resources/environmentVariables/types/index.d.ts +3 -0
  1142. package/dist/serialization/resources/environmentVariables/types/index.js +19 -0
  1143. package/dist/serialization/resources/index.d.ts +3 -0
  1144. package/dist/serialization/resources/index.js +4 -1
  1145. package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +7 -0
  1146. package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +42 -0
  1147. package/dist/serialization/resources/speechToText/types/index.d.ts +1 -0
  1148. package/dist/serialization/resources/speechToText/types/index.js +1 -0
  1149. package/dist/serialization/resources/workspace/resources/authConnections/index.d.ts +1 -0
  1150. package/dist/serialization/resources/workspace/resources/authConnections/index.js +17 -0
  1151. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +27 -0
  1152. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +55 -0
  1153. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +39 -0
  1154. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +61 -0
  1155. package/dist/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  1156. package/dist/serialization/resources/workspace/resources/authConnections/types/index.js +18 -0
  1157. package/dist/serialization/resources/workspace/resources/index.d.ts +2 -0
  1158. package/dist/serialization/resources/workspace/resources/index.js +3 -1
  1159. package/dist/serialization/types/AgentConfig.d.ts +1 -0
  1160. package/dist/serialization/types/AgentConfig.js +1 -0
  1161. package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +1 -0
  1162. package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideInput.js +1 -0
  1163. package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +1 -0
  1164. package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.js +1 -0
  1165. package/dist/serialization/types/AgentConfigOverrideConfig.d.ts +1 -0
  1166. package/dist/serialization/types/AgentConfigOverrideConfig.js +1 -0
  1167. package/dist/serialization/types/AgentConfigOverrideInput.d.ts +1 -0
  1168. package/dist/serialization/types/AgentConfigOverrideInput.js +1 -0
  1169. package/dist/serialization/types/AgentConfigOverrideOutput.d.ts +1 -0
  1170. package/dist/serialization/types/AgentConfigOverrideOutput.js +1 -0
  1171. package/dist/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  1172. package/dist/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
  1173. package/dist/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  1174. package/dist/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
  1175. package/dist/serialization/types/AgentSortBy.d.ts +1 -1
  1176. package/dist/serialization/types/AgentSortBy.js +1 -1
  1177. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
  1178. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.js +56 -0
  1179. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +7 -0
  1180. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +39 -0
  1181. package/dist/serialization/types/ApiIntegrationWebhookOverrides.d.ts +15 -0
  1182. package/dist/serialization/types/ApiIntegrationWebhookOverrides.js +51 -0
  1183. package/dist/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +8 -0
  1184. package/dist/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.js +40 -0
  1185. package/dist/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +19 -0
  1186. package/dist/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.js +51 -0
  1187. package/dist/serialization/types/ApiIntegrationWebhookToolConfigInput.d.ts +2 -2
  1188. package/dist/serialization/types/ApiIntegrationWebhookToolConfigInput.js +2 -2
  1189. package/dist/serialization/types/ApiIntegrationWebhookToolConfigOutput.d.ts +2 -2
  1190. package/dist/serialization/types/ApiIntegrationWebhookToolConfigOutput.js +2 -2
  1191. package/dist/serialization/types/AssetTranscription.d.ts +12 -0
  1192. package/dist/serialization/types/AssetTranscription.js +44 -0
  1193. package/dist/serialization/types/AssetTranscriptionWord.d.ts +12 -0
  1194. package/dist/serialization/types/AssetTranscriptionWord.js +44 -0
  1195. package/dist/serialization/types/AstAdditionOperatorNodeInput.d.ts +10 -0
  1196. package/dist/serialization/types/AstAdditionOperatorNodeInput.js +43 -0
  1197. package/dist/serialization/types/AstAdditionOperatorNodeInputLeft.d.ts +67 -0
  1198. package/dist/serialization/types/AstAdditionOperatorNodeInputLeft.js +71 -0
  1199. package/dist/serialization/types/AstAdditionOperatorNodeInputRight.d.ts +67 -0
  1200. package/dist/serialization/types/AstAdditionOperatorNodeInputRight.js +71 -0
  1201. package/dist/serialization/types/AstAdditionOperatorNodeOutput.d.ts +10 -0
  1202. package/dist/serialization/types/AstAdditionOperatorNodeOutput.js +43 -0
  1203. package/dist/serialization/types/AstAdditionOperatorNodeOutputLeft.d.ts +66 -0
  1204. package/dist/serialization/types/AstAdditionOperatorNodeOutputLeft.js +69 -0
  1205. package/dist/serialization/types/AstAdditionOperatorNodeOutputRight.d.ts +66 -0
  1206. package/dist/serialization/types/AstAdditionOperatorNodeOutputRight.js +69 -0
  1207. package/dist/serialization/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
  1208. package/dist/serialization/types/AstAndOperatorNodeInputChildrenItem.js +8 -1
  1209. package/dist/serialization/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
  1210. package/dist/serialization/types/AstAndOperatorNodeOutputChildrenItem.js +5 -0
  1211. package/dist/serialization/types/AstConditionalOperatorNodeInput.d.ts +11 -0
  1212. package/dist/serialization/types/AstConditionalOperatorNodeInput.js +44 -0
  1213. package/dist/serialization/types/AstConditionalOperatorNodeInputCondition.d.ts +67 -0
  1214. package/dist/serialization/types/AstConditionalOperatorNodeInputCondition.js +71 -0
  1215. package/dist/serialization/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +67 -0
  1216. package/dist/serialization/types/AstConditionalOperatorNodeInputFalseExpression.js +71 -0
  1217. package/dist/serialization/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +67 -0
  1218. package/dist/serialization/types/AstConditionalOperatorNodeInputTrueExpression.js +71 -0
  1219. package/dist/serialization/types/AstConditionalOperatorNodeOutput.d.ts +11 -0
  1220. package/dist/serialization/types/AstConditionalOperatorNodeOutput.js +44 -0
  1221. package/dist/serialization/types/AstConditionalOperatorNodeOutputCondition.d.ts +66 -0
  1222. package/dist/serialization/types/AstConditionalOperatorNodeOutputCondition.js +69 -0
  1223. package/dist/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +66 -0
  1224. package/dist/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.js +69 -0
  1225. package/dist/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +66 -0
  1226. package/dist/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.js +69 -0
  1227. package/dist/serialization/types/AstDivisionOperatorNodeInput.d.ts +10 -0
  1228. package/dist/serialization/types/AstDivisionOperatorNodeInput.js +43 -0
  1229. package/dist/serialization/types/AstDivisionOperatorNodeInputLeft.d.ts +67 -0
  1230. package/dist/serialization/types/AstDivisionOperatorNodeInputLeft.js +71 -0
  1231. package/dist/serialization/types/AstDivisionOperatorNodeInputRight.d.ts +67 -0
  1232. package/dist/serialization/types/AstDivisionOperatorNodeInputRight.js +71 -0
  1233. package/dist/serialization/types/AstDivisionOperatorNodeOutput.d.ts +10 -0
  1234. package/dist/serialization/types/AstDivisionOperatorNodeOutput.js +43 -0
  1235. package/dist/serialization/types/AstDivisionOperatorNodeOutputLeft.d.ts +66 -0
  1236. package/dist/serialization/types/AstDivisionOperatorNodeOutputLeft.js +69 -0
  1237. package/dist/serialization/types/AstDivisionOperatorNodeOutputRight.d.ts +66 -0
  1238. package/dist/serialization/types/AstDivisionOperatorNodeOutputRight.js +69 -0
  1239. package/dist/serialization/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
  1240. package/dist/serialization/types/AstEqualsOperatorNodeInputLeft.js +8 -1
  1241. package/dist/serialization/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
  1242. package/dist/serialization/types/AstEqualsOperatorNodeInputRight.js +8 -1
  1243. package/dist/serialization/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1244. package/dist/serialization/types/AstEqualsOperatorNodeOutputLeft.js +5 -0
  1245. package/dist/serialization/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
  1246. package/dist/serialization/types/AstEqualsOperatorNodeOutputRight.js +5 -0
  1247. package/dist/serialization/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
  1248. package/dist/serialization/types/AstGreaterThanOperatorNodeInputLeft.js +8 -1
  1249. package/dist/serialization/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
  1250. package/dist/serialization/types/AstGreaterThanOperatorNodeInputRight.js +8 -1
  1251. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
  1252. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputLeft.js +5 -0
  1253. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
  1254. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputRight.js +5 -0
  1255. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  1256. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.js +8 -1
  1257. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  1258. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.js +8 -1
  1259. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1260. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.js +5 -0
  1261. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  1262. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.js +5 -0
  1263. package/dist/serialization/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
  1264. package/dist/serialization/types/AstLessThanOperatorNodeInputLeft.js +8 -1
  1265. package/dist/serialization/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
  1266. package/dist/serialization/types/AstLessThanOperatorNodeInputRight.js +8 -1
  1267. package/dist/serialization/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
  1268. package/dist/serialization/types/AstLessThanOperatorNodeOutputLeft.js +5 -0
  1269. package/dist/serialization/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
  1270. package/dist/serialization/types/AstLessThanOperatorNodeOutputRight.js +5 -0
  1271. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  1272. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.js +8 -1
  1273. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  1274. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.js +8 -1
  1275. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1276. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.js +5 -0
  1277. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  1278. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.js +5 -0
  1279. package/dist/serialization/types/AstMultiplicationOperatorNodeInput.d.ts +10 -0
  1280. package/dist/serialization/types/AstMultiplicationOperatorNodeInput.js +43 -0
  1281. package/dist/serialization/types/AstMultiplicationOperatorNodeInputLeft.d.ts +67 -0
  1282. package/dist/serialization/types/AstMultiplicationOperatorNodeInputLeft.js +71 -0
  1283. package/dist/serialization/types/AstMultiplicationOperatorNodeInputRight.d.ts +67 -0
  1284. package/dist/serialization/types/AstMultiplicationOperatorNodeInputRight.js +71 -0
  1285. package/dist/serialization/types/AstMultiplicationOperatorNodeOutput.d.ts +10 -0
  1286. package/dist/serialization/types/AstMultiplicationOperatorNodeOutput.js +43 -0
  1287. package/dist/serialization/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +66 -0
  1288. package/dist/serialization/types/AstMultiplicationOperatorNodeOutputLeft.js +69 -0
  1289. package/dist/serialization/types/AstMultiplicationOperatorNodeOutputRight.d.ts +66 -0
  1290. package/dist/serialization/types/AstMultiplicationOperatorNodeOutputRight.js +69 -0
  1291. package/dist/serialization/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
  1292. package/dist/serialization/types/AstNotEqualsOperatorNodeInputLeft.js +8 -1
  1293. package/dist/serialization/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
  1294. package/dist/serialization/types/AstNotEqualsOperatorNodeInputRight.js +8 -1
  1295. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1296. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputLeft.js +5 -0
  1297. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
  1298. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputRight.js +5 -0
  1299. package/dist/serialization/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
  1300. package/dist/serialization/types/AstOrOperatorNodeInputChildrenItem.js +8 -1
  1301. package/dist/serialization/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
  1302. package/dist/serialization/types/AstOrOperatorNodeOutputChildrenItem.js +5 -0
  1303. package/dist/serialization/types/AstSubtractionOperatorNodeInput.d.ts +10 -0
  1304. package/dist/serialization/types/AstSubtractionOperatorNodeInput.js +43 -0
  1305. package/dist/serialization/types/AstSubtractionOperatorNodeInputLeft.d.ts +67 -0
  1306. package/dist/serialization/types/AstSubtractionOperatorNodeInputLeft.js +71 -0
  1307. package/dist/serialization/types/AstSubtractionOperatorNodeInputRight.d.ts +67 -0
  1308. package/dist/serialization/types/AstSubtractionOperatorNodeInputRight.js +71 -0
  1309. package/dist/serialization/types/AstSubtractionOperatorNodeOutput.d.ts +10 -0
  1310. package/dist/serialization/types/AstSubtractionOperatorNodeOutput.js +43 -0
  1311. package/dist/serialization/types/AstSubtractionOperatorNodeOutputLeft.d.ts +66 -0
  1312. package/dist/serialization/types/AstSubtractionOperatorNodeOutputLeft.js +69 -0
  1313. package/dist/serialization/types/AstSubtractionOperatorNodeOutputRight.d.ts +66 -0
  1314. package/dist/serialization/types/AstSubtractionOperatorNodeOutputRight.js +69 -0
  1315. package/dist/serialization/types/AstllmNodeInput.d.ts +4 -4
  1316. package/dist/serialization/types/AstllmNodeInput.js +3 -3
  1317. package/dist/serialization/types/AstllmNodeInputPrompt.d.ts +10 -0
  1318. package/dist/serialization/types/AstllmNodeInputPrompt.js +42 -0
  1319. package/dist/serialization/types/AstllmNodeInputValueSchema.d.ts +11 -0
  1320. package/dist/serialization/types/AstllmNodeInputValueSchema.js +43 -0
  1321. package/dist/serialization/types/AstllmNodeOutput.d.ts +2 -0
  1322. package/dist/serialization/types/AstllmNodeOutput.js +2 -0
  1323. package/dist/serialization/types/AsyncConversationMetadata.d.ts +1 -0
  1324. package/dist/serialization/types/AsyncConversationMetadata.js +1 -0
  1325. package/dist/serialization/types/AudioAnalysis.d.ts +13 -0
  1326. package/dist/serialization/types/AudioAnalysis.js +45 -0
  1327. package/dist/serialization/types/AudioAnalysisResult.d.ts +18 -0
  1328. package/dist/serialization/types/AudioAnalysisResult.js +50 -0
  1329. package/dist/serialization/types/AudioAnalysisStatus.d.ts +7 -0
  1330. package/dist/serialization/types/AudioAnalysisStatus.js +39 -0
  1331. package/dist/serialization/types/AudioKeyMoment.d.ts +11 -0
  1332. package/dist/serialization/types/AudioKeyMoment.js +43 -0
  1333. package/dist/serialization/types/AudioSegment.d.ts +15 -0
  1334. package/dist/serialization/types/AudioSegment.js +47 -0
  1335. package/dist/serialization/types/AuthConnectionDependencies.d.ts +14 -0
  1336. package/dist/serialization/types/AuthConnectionDependencies.js +46 -0
  1337. package/dist/serialization/types/AuthConnectionDependenciesMcpServersItem.d.ts +15 -0
  1338. package/dist/serialization/types/AuthConnectionDependenciesMcpServersItem.js +49 -0
  1339. package/dist/serialization/types/AuthConnectionDependenciesToolsItem.d.ts +15 -0
  1340. package/dist/serialization/types/AuthConnectionDependenciesToolsItem.js +49 -0
  1341. package/dist/serialization/types/AutoSyncInfo.d.ts +12 -0
  1342. package/dist/serialization/types/AutoSyncInfo.js +44 -0
  1343. package/dist/serialization/types/BasicAuthResponse.d.ts +14 -0
  1344. package/dist/serialization/types/BasicAuthResponse.js +46 -0
  1345. package/dist/serialization/types/BatchCallDetailedResponse.d.ts +3 -0
  1346. package/dist/serialization/types/BatchCallDetailedResponse.js +3 -0
  1347. package/dist/serialization/types/BatchCallResponse.d.ts +3 -0
  1348. package/dist/serialization/types/BatchCallResponse.js +3 -0
  1349. package/dist/serialization/types/BearerAuthResponse.d.ts +13 -0
  1350. package/dist/serialization/types/BearerAuthResponse.js +45 -0
  1351. package/dist/serialization/types/CanvasPlacement.d.ts +2 -0
  1352. package/dist/serialization/types/CanvasPlacement.js +2 -0
  1353. package/dist/serialization/types/CaptionStyleModel.d.ts +4 -0
  1354. package/dist/serialization/types/CaptionStyleModel.js +4 -0
  1355. package/dist/serialization/types/CaptionStyleModelTextBlendMode.d.ts +7 -0
  1356. package/dist/serialization/types/CaptionStyleModelTextBlendMode.js +39 -0
  1357. package/dist/serialization/types/CaptionStyleModelTextTransform.d.ts +7 -0
  1358. package/dist/serialization/types/CaptionStyleModelTextTransform.js +39 -0
  1359. package/dist/serialization/types/CaptionStyleModelTextWeight.d.ts +1 -1
  1360. package/dist/serialization/types/CaptionStyleModelTextWeight.js +1 -1
  1361. package/dist/serialization/types/ContentConfig.d.ts +8 -8
  1362. package/dist/serialization/types/ContentConfig.js +8 -8
  1363. package/dist/serialization/types/ContentGuardrailInput.d.ts +2 -0
  1364. package/dist/serialization/types/ContentGuardrailInput.js +2 -0
  1365. package/dist/serialization/types/ContentGuardrailInputTriggerAction.d.ts +15 -0
  1366. package/dist/serialization/types/ContentGuardrailInputTriggerAction.js +49 -0
  1367. package/dist/serialization/types/ContentGuardrailOutput.d.ts +2 -0
  1368. package/dist/serialization/types/ContentGuardrailOutput.js +2 -0
  1369. package/dist/serialization/types/ContentGuardrailOutputTriggerAction.d.ts +15 -0
  1370. package/dist/serialization/types/ContentGuardrailOutputTriggerAction.js +49 -0
  1371. package/dist/serialization/types/ContentThresholdGuardrail.d.ts +11 -0
  1372. package/dist/serialization/types/ContentThresholdGuardrail.js +43 -0
  1373. package/dist/serialization/types/ContentThresholdGuardrailThreshold.d.ts +7 -0
  1374. package/dist/serialization/types/ContentThresholdGuardrailThreshold.js +44 -0
  1375. package/dist/serialization/types/Contributor.d.ts +2 -0
  1376. package/dist/serialization/types/Contributor.js +2 -0
  1377. package/dist/serialization/types/ConvAiEnvVarLocator.d.ts +9 -0
  1378. package/dist/serialization/types/ConvAiEnvVarLocator.js +41 -0
  1379. package/dist/serialization/types/ConversationConfig.d.ts +2 -0
  1380. package/dist/serialization/types/ConversationConfig.js +2 -0
  1381. package/dist/serialization/types/ConversationConfigWorkflowOverride.d.ts +2 -0
  1382. package/dist/serialization/types/ConversationConfigWorkflowOverride.js +2 -0
  1383. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +2 -2
  1384. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +2 -2
  1385. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +22 -0
  1386. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +54 -0
  1387. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +22 -0
  1388. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +54 -0
  1389. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
  1390. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +1 -0
  1391. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -2
  1392. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -2
  1393. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
  1394. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +1 -0
  1395. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -2
  1396. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -2
  1397. package/dist/serialization/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
  1398. package/dist/serialization/types/ConversationHistoryTranscriptResponseModel.js +1 -0
  1399. package/dist/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +2 -2
  1400. package/dist/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.js +2 -2
  1401. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +13 -0
  1402. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +45 -0
  1403. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +13 -0
  1404. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +45 -0
  1405. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +2 -2
  1406. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +2 -2
  1407. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +2 -2
  1408. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +2 -2
  1409. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +2 -2
  1410. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +2 -2
  1411. package/dist/serialization/types/ConversationInitiationClientDataInternal.d.ts +4 -0
  1412. package/dist/serialization/types/ConversationInitiationClientDataInternal.js +4 -0
  1413. package/dist/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
  1414. package/dist/serialization/types/ConversationInitiationClientDataRequestInput.js +2 -0
  1415. package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
  1416. package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.js +2 -0
  1417. package/dist/serialization/types/ConversationSummaryResponseModel.d.ts +3 -2
  1418. package/dist/serialization/types/ConversationSummaryResponseModel.js +3 -2
  1419. package/dist/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +11 -0
  1420. package/dist/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.js +43 -0
  1421. package/dist/serialization/types/CreateBasicAuthRequest.d.ts +12 -0
  1422. package/dist/serialization/types/CreateBasicAuthRequest.js +44 -0
  1423. package/dist/serialization/types/CreateCustomHeaderAuthRequest.d.ts +12 -0
  1424. package/dist/serialization/types/CreateCustomHeaderAuthRequest.js +44 -0
  1425. package/dist/serialization/types/CreateOAuth2ClientCredsRequest.d.ts +17 -0
  1426. package/dist/serialization/types/CreateOAuth2ClientCredsRequest.js +49 -0
  1427. package/dist/serialization/types/CreateOAuth2JwtRequest.d.ts +21 -0
  1428. package/dist/serialization/types/CreateOAuth2JwtRequest.js +53 -0
  1429. package/dist/serialization/types/CreateOAuth2JwtRequestAlgorithm.d.ts +7 -0
  1430. package/dist/serialization/types/CreateOAuth2JwtRequestAlgorithm.js +39 -0
  1431. package/dist/serialization/types/CreatePrivateKeyJwtRequest.d.ts +19 -0
  1432. package/dist/serialization/types/CreatePrivateKeyJwtRequest.js +51 -0
  1433. package/dist/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +7 -0
  1434. package/dist/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.js +39 -0
  1435. package/dist/serialization/types/CreateSecretEnvironmentVariableRequest.d.ts +11 -0
  1436. package/dist/serialization/types/CreateSecretEnvironmentVariableRequest.js +43 -0
  1437. package/dist/serialization/types/CreateSimulationTestRequest.d.ts +3 -0
  1438. package/dist/serialization/types/CreateSimulationTestRequest.js +3 -0
  1439. package/dist/serialization/types/CreateStringEnvironmentVariableRequest.d.ts +10 -0
  1440. package/dist/serialization/types/CreateStringEnvironmentVariableRequest.js +42 -0
  1441. package/dist/serialization/types/CustomGuardrailConfig.d.ts +2 -0
  1442. package/dist/serialization/types/CustomGuardrailConfig.js +2 -0
  1443. package/dist/serialization/types/CustomGuardrailConfigTriggerAction.d.ts +15 -0
  1444. package/dist/serialization/types/CustomGuardrailConfigTriggerAction.js +49 -0
  1445. package/dist/serialization/types/CustomHeaderAuthResponse.d.ts +14 -0
  1446. package/dist/serialization/types/CustomHeaderAuthResponse.js +46 -0
  1447. package/dist/serialization/types/CustomLlm.d.ts +2 -2
  1448. package/dist/serialization/types/CustomLlm.js +2 -2
  1449. package/dist/serialization/types/CustomLlmApiKey.d.ts +9 -0
  1450. package/dist/serialization/types/CustomLlmApiKey.js +41 -0
  1451. package/dist/serialization/types/CustomLlmRequestHeadersValue.d.ts +2 -1
  1452. package/dist/serialization/types/CustomLlmRequestHeadersValue.js +7 -1
  1453. package/dist/serialization/types/DependentAvailableMcpServerIdentifier.d.ts +13 -0
  1454. package/dist/serialization/types/DependentAvailableMcpServerIdentifier.js +45 -0
  1455. package/dist/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  1456. package/dist/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.js +39 -0
  1457. package/dist/serialization/types/DependentIntegrationConnectionIdentifier.d.ts +10 -0
  1458. package/dist/serialization/types/DependentIntegrationConnectionIdentifier.js +42 -0
  1459. package/dist/serialization/types/DependentUnknownMcpServerIdentifier.d.ts +9 -0
  1460. package/dist/serialization/types/DependentUnknownMcpServerIdentifier.js +41 -0
  1461. package/dist/serialization/types/DependentUnknownToolIdentifier.d.ts +3 -1
  1462. package/dist/serialization/types/DependentUnknownToolIdentifier.js +3 -1
  1463. package/dist/serialization/types/DirectPublishingReadResponseModel.d.ts +1 -0
  1464. package/dist/serialization/types/DirectPublishingReadResponseModel.js +1 -0
  1465. package/dist/serialization/types/EmbeddingModelEnum.d.ts +1 -1
  1466. package/dist/serialization/types/EmbeddingModelEnum.js +1 -1
  1467. package/dist/serialization/types/EndCallTriggerAction.d.ts +7 -0
  1468. package/dist/serialization/types/EndCallTriggerAction.js +39 -0
  1469. package/dist/serialization/types/EnvironmentAuthConnectionLocator.d.ts +9 -0
  1470. package/dist/serialization/types/EnvironmentAuthConnectionLocator.js +41 -0
  1471. package/dist/serialization/types/EnvironmentVariableAuthConnectionValue.d.ts +9 -0
  1472. package/dist/serialization/types/EnvironmentVariableAuthConnectionValue.js +41 -0
  1473. package/dist/serialization/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +9 -0
  1474. package/dist/serialization/types/EnvironmentVariableAuthConnectionValueRequest.js +41 -0
  1475. package/dist/serialization/types/EnvironmentVariableResponse.d.ts +18 -0
  1476. package/dist/serialization/types/EnvironmentVariableResponse.js +50 -0
  1477. package/dist/serialization/types/EnvironmentVariableResponseType.d.ts +7 -0
  1478. package/dist/serialization/types/EnvironmentVariableResponseType.js +39 -0
  1479. package/dist/serialization/types/EnvironmentVariableResponseValues.d.ts +9 -0
  1480. package/dist/serialization/types/EnvironmentVariableResponseValues.js +45 -0
  1481. package/dist/serialization/types/EnvironmentVariableSecretValue.d.ts +9 -0
  1482. package/dist/serialization/types/EnvironmentVariableSecretValue.js +41 -0
  1483. package/dist/serialization/types/EnvironmentVariableSecretValueRequest.d.ts +9 -0
  1484. package/dist/serialization/types/EnvironmentVariableSecretValueRequest.js +41 -0
  1485. package/dist/serialization/types/EnvironmentVariablesListResponse.d.ts +12 -0
  1486. package/dist/serialization/types/EnvironmentVariablesListResponse.js +44 -0
  1487. package/dist/serialization/types/FeaturesUsageCommonModel.d.ts +1 -0
  1488. package/dist/serialization/types/FeaturesUsageCommonModel.js +1 -0
  1489. package/dist/serialization/types/FileInputConfig.d.ts +10 -0
  1490. package/dist/serialization/types/FileInputConfig.js +42 -0
  1491. package/dist/serialization/types/FileInputConfigWorkflowOverride.d.ts +10 -0
  1492. package/dist/serialization/types/FileInputConfigWorkflowOverride.js +42 -0
  1493. package/dist/serialization/types/GenesysRegion.d.ts +7 -0
  1494. package/dist/serialization/types/GenesysRegion.js +57 -0
  1495. package/dist/serialization/types/GetConvAiSettingsResponseModel.d.ts +1 -0
  1496. package/dist/serialization/types/GetConvAiSettingsResponseModel.js +1 -0
  1497. package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +2 -0
  1498. package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.js +2 -0
  1499. package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +2 -0
  1500. package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +2 -0
  1501. package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -0
  1502. package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -0
  1503. package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -0
  1504. package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -0
  1505. package/dist/serialization/types/GetSimulationTestResponseModel.d.ts +3 -0
  1506. package/dist/serialization/types/GetSimulationTestResponseModel.js +3 -0
  1507. package/dist/serialization/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  1508. package/dist/serialization/types/GetTestSuiteInvocationResponseModel.js +1 -0
  1509. package/dist/serialization/types/GuardrailsV1Input.d.ts +0 -2
  1510. package/dist/serialization/types/GuardrailsV1Input.js +0 -2
  1511. package/dist/serialization/types/GuardrailsV1Output.d.ts +0 -2
  1512. package/dist/serialization/types/GuardrailsV1Output.js +0 -2
  1513. package/dist/serialization/types/ListAuthConnectionsResponse.d.ts +10 -0
  1514. package/dist/serialization/types/ListAuthConnectionsResponse.js +42 -0
  1515. package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +39 -0
  1516. package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +61 -0
  1517. package/dist/serialization/types/LlmInfoModelInput.d.ts +1 -0
  1518. package/dist/serialization/types/LlmInfoModelInput.js +1 -0
  1519. package/dist/serialization/types/LlmInfoModelOutput.d.ts +1 -0
  1520. package/dist/serialization/types/LlmInfoModelOutput.js +1 -0
  1521. package/dist/serialization/types/LlmLiteralJsonSchemaProperty.d.ts +12 -0
  1522. package/dist/serialization/types/LlmLiteralJsonSchemaProperty.js +44 -0
  1523. package/dist/serialization/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  1524. package/dist/serialization/types/LlmLiteralJsonSchemaPropertyType.js +39 -0
  1525. package/dist/serialization/types/McpServerConfigInput.d.ts +2 -2
  1526. package/dist/serialization/types/McpServerConfigInput.js +2 -2
  1527. package/dist/serialization/types/McpServerConfigInputAuthConnection.d.ts +9 -0
  1528. package/dist/serialization/types/McpServerConfigInputAuthConnection.js +41 -0
  1529. package/dist/serialization/types/McpServerConfigInputRequestHeadersValue.d.ts +2 -1
  1530. package/dist/serialization/types/McpServerConfigInputRequestHeadersValue.js +7 -1
  1531. package/dist/serialization/types/McpServerConfigOutput.d.ts +2 -2
  1532. package/dist/serialization/types/McpServerConfigOutput.js +2 -2
  1533. package/dist/serialization/types/McpServerConfigOutputAuthConnection.d.ts +9 -0
  1534. package/dist/serialization/types/McpServerConfigOutputAuthConnection.js +41 -0
  1535. package/dist/serialization/types/McpServerConfigOutputRequestHeadersValue.d.ts +2 -1
  1536. package/dist/serialization/types/McpServerConfigOutputRequestHeadersValue.js +7 -1
  1537. package/dist/serialization/types/MessageSearchSortBy.d.ts +7 -0
  1538. package/dist/serialization/types/MessageSearchSortBy.js +39 -0
  1539. package/dist/serialization/types/MockNoMatchBehavior.d.ts +7 -0
  1540. package/dist/serialization/types/MockNoMatchBehavior.js +39 -0
  1541. package/dist/serialization/types/MockingStrategy.d.ts +7 -0
  1542. package/dist/serialization/types/MockingStrategy.js +39 -0
  1543. package/dist/serialization/types/OAuth2ClientCredsResponse.d.ts +18 -0
  1544. package/dist/serialization/types/OAuth2ClientCredsResponse.js +50 -0
  1545. package/dist/serialization/types/OAuth2JwtResponse.d.ts +23 -0
  1546. package/dist/serialization/types/OAuth2JwtResponse.js +55 -0
  1547. package/dist/serialization/types/OAuth2JwtResponseAlgorithm.d.ts +7 -0
  1548. package/dist/serialization/types/OAuth2JwtResponseAlgorithm.js +39 -0
  1549. package/dist/serialization/types/OAuthConnectionStatus.d.ts +7 -0
  1550. package/dist/serialization/types/OAuthConnectionStatus.js +39 -0
  1551. package/dist/serialization/types/OrchestratorToolMockBehaviorConfig.d.ts +13 -0
  1552. package/dist/serialization/types/OrchestratorToolMockBehaviorConfig.js +45 -0
  1553. package/dist/serialization/types/PermissionType.d.ts +1 -1
  1554. package/dist/serialization/types/PermissionType.js +1 -0
  1555. package/dist/serialization/types/PlayDtmfToolConfig.d.ts +1 -0
  1556. package/dist/serialization/types/PlayDtmfToolConfig.js +1 -0
  1557. package/dist/serialization/types/PreviewAudioDbModel.d.ts +2 -0
  1558. package/dist/serialization/types/PreviewAudioDbModel.js +2 -0
  1559. package/dist/serialization/types/PrivateKeyJwtResponse.d.ts +21 -0
  1560. package/dist/serialization/types/PrivateKeyJwtResponse.js +53 -0
  1561. package/dist/serialization/types/PrivateKeyJwtResponseAlgorithm.d.ts +7 -0
  1562. package/dist/serialization/types/PrivateKeyJwtResponseAlgorithm.js +39 -0
  1563. package/dist/serialization/types/ProcedureCompilerMode.d.ts +7 -0
  1564. package/dist/serialization/types/ProcedureCompilerMode.js +39 -0
  1565. package/dist/serialization/types/ProcedureSettings.d.ts +10 -0
  1566. package/dist/serialization/types/ProcedureSettings.js +42 -0
  1567. package/dist/serialization/types/ProjectExternalAudioResponseModel.d.ts +4 -1
  1568. package/dist/serialization/types/ProjectExternalAudioResponseModel.js +4 -1
  1569. package/dist/serialization/types/ProjectImageResponseModel.d.ts +1 -0
  1570. package/dist/serialization/types/ProjectImageResponseModel.js +1 -0
  1571. package/dist/serialization/types/ProjectVideoResponseModel.d.ts +1 -0
  1572. package/dist/serialization/types/ProjectVideoResponseModel.js +1 -0
  1573. package/dist/serialization/types/RetryTriggerAction.d.ts +9 -0
  1574. package/dist/serialization/types/RetryTriggerAction.js +41 -0
  1575. package/dist/serialization/types/SimulationTestModel.d.ts +3 -0
  1576. package/dist/serialization/types/SimulationTestModel.js +3 -0
  1577. package/dist/serialization/types/SimulationToolMockBehaviorConfig.d.ts +13 -0
  1578. package/dist/serialization/types/SimulationToolMockBehaviorConfig.js +45 -0
  1579. package/dist/serialization/types/SingleTestRunRequestModel.d.ts +2 -0
  1580. package/dist/serialization/types/SingleTestRunRequestModel.js +2 -0
  1581. package/dist/serialization/types/SpeechHistoryItemResponse.d.ts +1 -0
  1582. package/dist/serialization/types/SpeechHistoryItemResponse.js +1 -0
  1583. package/dist/serialization/types/Subscription.d.ts +2 -0
  1584. package/dist/serialization/types/Subscription.js +2 -0
  1585. package/dist/serialization/types/SystemToolConfigInputParams.d.ts +1 -21
  1586. package/dist/serialization/types/SystemToolConfigInputParams.js +0 -10
  1587. package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +1 -21
  1588. package/dist/serialization/types/SystemToolConfigOutputParams.js +0 -10
  1589. package/dist/serialization/types/TelephonyDirection.d.ts +7 -0
  1590. package/dist/serialization/types/TelephonyDirection.js +39 -0
  1591. package/dist/serialization/types/ToolRequestModel.d.ts +2 -0
  1592. package/dist/serialization/types/ToolRequestModel.js +2 -0
  1593. package/dist/serialization/types/ToolResponseMockConfigInput.d.ts +11 -0
  1594. package/dist/serialization/types/ToolResponseMockConfigInput.js +43 -0
  1595. package/dist/serialization/types/ToolResponseMockConfigOutput.d.ts +11 -0
  1596. package/dist/serialization/types/ToolResponseMockConfigOutput.js +43 -0
  1597. package/dist/serialization/types/ToolResponseModel.d.ts +2 -0
  1598. package/dist/serialization/types/ToolResponseModel.js +2 -0
  1599. package/dist/serialization/types/UnitTestRunResponseModel.d.ts +3 -0
  1600. package/dist/serialization/types/UnitTestRunResponseModel.js +3 -0
  1601. package/dist/serialization/types/UpdateSimulationTestRequest.d.ts +3 -0
  1602. package/dist/serialization/types/UpdateSimulationTestRequest.js +3 -0
  1603. package/dist/serialization/types/VideoAnalysisResult.d.ts +2 -2
  1604. package/dist/serialization/types/VideoAnalysisResult.js +2 -2
  1605. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -2
  1606. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -2
  1607. package/dist/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +9 -0
  1608. package/dist/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.js +41 -0
  1609. package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +2 -1
  1610. package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +7 -1
  1611. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -2
  1612. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -2
  1613. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +9 -0
  1614. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +41 -0
  1615. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +2 -1
  1616. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +7 -1
  1617. package/dist/serialization/types/WhatsAppAuthResponse.d.ts +14 -0
  1618. package/dist/serialization/types/WhatsAppAuthResponse.js +46 -0
  1619. package/dist/serialization/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
  1620. package/dist/serialization/types/WorkflowExpressionConditionModelInputExpression.js +8 -1
  1621. package/dist/serialization/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
  1622. package/dist/serialization/types/WorkflowExpressionConditionModelOutputExpression.js +5 -0
  1623. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -2
  1624. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -2
  1625. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -2
  1626. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -2
  1627. package/dist/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
  1628. package/dist/serialization/types/WorkspaceGroupPermission.js +1 -0
  1629. package/dist/serialization/types/WorkspaceResourceType.d.ts +1 -1
  1630. package/dist/serialization/types/WorkspaceResourceType.js +2 -0
  1631. package/dist/serialization/types/index.d.ts +119 -25
  1632. package/dist/serialization/types/index.js +119 -25
  1633. package/dist/version.d.ts +1 -1
  1634. package/dist/version.js +1 -1
  1635. package/package.json +1 -1
  1636. package/reference.md +701 -68
  1637. package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
  1638. package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +2 -0
  1639. package/serialization/resources/conversationalAi/resources/index.d.ts +0 -1
  1640. package/serialization/resources/conversationalAi/resources/index.js +0 -1
  1641. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  1642. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  1643. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +23 -0
  1644. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +53 -0
  1645. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  1646. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  1647. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +2 -0
  1648. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.js +2 -0
  1649. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
  1650. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +2 -0
  1651. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  1652. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  1653. package/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +2 -2
  1654. package/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.js +2 -2
  1655. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +9 -0
  1656. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +41 -0
  1657. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +2 -1
  1658. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.js +7 -1
  1659. package/serialization/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  1660. package/serialization/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  1661. package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +1 -0
  1662. package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +1 -0
  1663. package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +2 -2
  1664. package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +2 -2
  1665. package/serialization/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  1666. package/serialization/resources/conversationalAi/resources/twilio/index.js +0 -1
  1667. package/serialization/resources/environmentVariables/client/index.d.ts +1 -0
  1668. package/serialization/resources/environmentVariables/client/index.js +17 -0
  1669. package/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +10 -0
  1670. package/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +42 -0
  1671. package/serialization/resources/environmentVariables/client/requests/index.d.ts +1 -0
  1672. package/serialization/resources/environmentVariables/client/requests/index.js +5 -0
  1673. package/serialization/resources/environmentVariables/index.d.ts +2 -0
  1674. package/serialization/resources/environmentVariables/index.js +18 -0
  1675. package/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +19 -0
  1676. package/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +51 -0
  1677. package/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +7 -0
  1678. package/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +39 -0
  1679. package/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +9 -0
  1680. package/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +45 -0
  1681. package/serialization/resources/environmentVariables/types/index.d.ts +3 -0
  1682. package/serialization/resources/environmentVariables/types/index.js +19 -0
  1683. package/serialization/resources/index.d.ts +3 -0
  1684. package/serialization/resources/index.js +4 -1
  1685. package/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +7 -0
  1686. package/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +42 -0
  1687. package/serialization/resources/speechToText/types/index.d.ts +1 -0
  1688. package/serialization/resources/speechToText/types/index.js +1 -0
  1689. package/serialization/resources/workspace/resources/authConnections/index.d.ts +1 -0
  1690. package/serialization/resources/workspace/resources/authConnections/index.js +17 -0
  1691. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +27 -0
  1692. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +55 -0
  1693. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +39 -0
  1694. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +61 -0
  1695. package/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  1696. package/serialization/resources/workspace/resources/authConnections/types/index.js +18 -0
  1697. package/serialization/resources/workspace/resources/index.d.ts +2 -0
  1698. package/serialization/resources/workspace/resources/index.js +3 -1
  1699. package/serialization/types/AgentConfig.d.ts +1 -0
  1700. package/serialization/types/AgentConfig.js +1 -0
  1701. package/serialization/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +1 -0
  1702. package/serialization/types/AgentConfigApiModelWorkflowOverrideInput.js +1 -0
  1703. package/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +1 -0
  1704. package/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.js +1 -0
  1705. package/serialization/types/AgentConfigOverrideConfig.d.ts +1 -0
  1706. package/serialization/types/AgentConfigOverrideConfig.js +1 -0
  1707. package/serialization/types/AgentConfigOverrideInput.d.ts +1 -0
  1708. package/serialization/types/AgentConfigOverrideInput.js +1 -0
  1709. package/serialization/types/AgentConfigOverrideOutput.d.ts +1 -0
  1710. package/serialization/types/AgentConfigOverrideOutput.js +1 -0
  1711. package/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  1712. package/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
  1713. package/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  1714. package/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
  1715. package/serialization/types/AgentSortBy.d.ts +1 -1
  1716. package/serialization/types/AgentSortBy.js +1 -1
  1717. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
  1718. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.js +56 -0
  1719. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +7 -0
  1720. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +39 -0
  1721. package/serialization/types/ApiIntegrationWebhookOverrides.d.ts +15 -0
  1722. package/serialization/types/ApiIntegrationWebhookOverrides.js +51 -0
  1723. package/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +8 -0
  1724. package/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.js +40 -0
  1725. package/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +19 -0
  1726. package/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.js +51 -0
  1727. package/serialization/types/ApiIntegrationWebhookToolConfigInput.d.ts +2 -2
  1728. package/serialization/types/ApiIntegrationWebhookToolConfigInput.js +2 -2
  1729. package/serialization/types/ApiIntegrationWebhookToolConfigOutput.d.ts +2 -2
  1730. package/serialization/types/ApiIntegrationWebhookToolConfigOutput.js +2 -2
  1731. package/serialization/types/AssetTranscription.d.ts +12 -0
  1732. package/serialization/types/AssetTranscription.js +44 -0
  1733. package/serialization/types/AssetTranscriptionWord.d.ts +12 -0
  1734. package/serialization/types/AssetTranscriptionWord.js +44 -0
  1735. package/serialization/types/AstAdditionOperatorNodeInput.d.ts +10 -0
  1736. package/serialization/types/AstAdditionOperatorNodeInput.js +43 -0
  1737. package/serialization/types/AstAdditionOperatorNodeInputLeft.d.ts +67 -0
  1738. package/serialization/types/AstAdditionOperatorNodeInputLeft.js +71 -0
  1739. package/serialization/types/AstAdditionOperatorNodeInputRight.d.ts +67 -0
  1740. package/serialization/types/AstAdditionOperatorNodeInputRight.js +71 -0
  1741. package/serialization/types/AstAdditionOperatorNodeOutput.d.ts +10 -0
  1742. package/serialization/types/AstAdditionOperatorNodeOutput.js +43 -0
  1743. package/serialization/types/AstAdditionOperatorNodeOutputLeft.d.ts +66 -0
  1744. package/serialization/types/AstAdditionOperatorNodeOutputLeft.js +69 -0
  1745. package/serialization/types/AstAdditionOperatorNodeOutputRight.d.ts +66 -0
  1746. package/serialization/types/AstAdditionOperatorNodeOutputRight.js +69 -0
  1747. package/serialization/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
  1748. package/serialization/types/AstAndOperatorNodeInputChildrenItem.js +8 -1
  1749. package/serialization/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
  1750. package/serialization/types/AstAndOperatorNodeOutputChildrenItem.js +5 -0
  1751. package/serialization/types/AstConditionalOperatorNodeInput.d.ts +11 -0
  1752. package/serialization/types/AstConditionalOperatorNodeInput.js +44 -0
  1753. package/serialization/types/AstConditionalOperatorNodeInputCondition.d.ts +67 -0
  1754. package/serialization/types/AstConditionalOperatorNodeInputCondition.js +71 -0
  1755. package/serialization/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +67 -0
  1756. package/serialization/types/AstConditionalOperatorNodeInputFalseExpression.js +71 -0
  1757. package/serialization/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +67 -0
  1758. package/serialization/types/AstConditionalOperatorNodeInputTrueExpression.js +71 -0
  1759. package/serialization/types/AstConditionalOperatorNodeOutput.d.ts +11 -0
  1760. package/serialization/types/AstConditionalOperatorNodeOutput.js +44 -0
  1761. package/serialization/types/AstConditionalOperatorNodeOutputCondition.d.ts +66 -0
  1762. package/serialization/types/AstConditionalOperatorNodeOutputCondition.js +69 -0
  1763. package/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +66 -0
  1764. package/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.js +69 -0
  1765. package/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +66 -0
  1766. package/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.js +69 -0
  1767. package/serialization/types/AstDivisionOperatorNodeInput.d.ts +10 -0
  1768. package/serialization/types/AstDivisionOperatorNodeInput.js +43 -0
  1769. package/serialization/types/AstDivisionOperatorNodeInputLeft.d.ts +67 -0
  1770. package/serialization/types/AstDivisionOperatorNodeInputLeft.js +71 -0
  1771. package/serialization/types/AstDivisionOperatorNodeInputRight.d.ts +67 -0
  1772. package/serialization/types/AstDivisionOperatorNodeInputRight.js +71 -0
  1773. package/serialization/types/AstDivisionOperatorNodeOutput.d.ts +10 -0
  1774. package/serialization/types/AstDivisionOperatorNodeOutput.js +43 -0
  1775. package/serialization/types/AstDivisionOperatorNodeOutputLeft.d.ts +66 -0
  1776. package/serialization/types/AstDivisionOperatorNodeOutputLeft.js +69 -0
  1777. package/serialization/types/AstDivisionOperatorNodeOutputRight.d.ts +66 -0
  1778. package/serialization/types/AstDivisionOperatorNodeOutputRight.js +69 -0
  1779. package/serialization/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
  1780. package/serialization/types/AstEqualsOperatorNodeInputLeft.js +8 -1
  1781. package/serialization/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
  1782. package/serialization/types/AstEqualsOperatorNodeInputRight.js +8 -1
  1783. package/serialization/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1784. package/serialization/types/AstEqualsOperatorNodeOutputLeft.js +5 -0
  1785. package/serialization/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
  1786. package/serialization/types/AstEqualsOperatorNodeOutputRight.js +5 -0
  1787. package/serialization/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
  1788. package/serialization/types/AstGreaterThanOperatorNodeInputLeft.js +8 -1
  1789. package/serialization/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
  1790. package/serialization/types/AstGreaterThanOperatorNodeInputRight.js +8 -1
  1791. package/serialization/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
  1792. package/serialization/types/AstGreaterThanOperatorNodeOutputLeft.js +5 -0
  1793. package/serialization/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
  1794. package/serialization/types/AstGreaterThanOperatorNodeOutputRight.js +5 -0
  1795. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  1796. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.js +8 -1
  1797. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  1798. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.js +8 -1
  1799. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1800. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.js +5 -0
  1801. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  1802. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.js +5 -0
  1803. package/serialization/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
  1804. package/serialization/types/AstLessThanOperatorNodeInputLeft.js +8 -1
  1805. package/serialization/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
  1806. package/serialization/types/AstLessThanOperatorNodeInputRight.js +8 -1
  1807. package/serialization/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
  1808. package/serialization/types/AstLessThanOperatorNodeOutputLeft.js +5 -0
  1809. package/serialization/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
  1810. package/serialization/types/AstLessThanOperatorNodeOutputRight.js +5 -0
  1811. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
  1812. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.js +8 -1
  1813. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
  1814. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.js +8 -1
  1815. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1816. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.js +5 -0
  1817. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
  1818. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.js +5 -0
  1819. package/serialization/types/AstMultiplicationOperatorNodeInput.d.ts +10 -0
  1820. package/serialization/types/AstMultiplicationOperatorNodeInput.js +43 -0
  1821. package/serialization/types/AstMultiplicationOperatorNodeInputLeft.d.ts +67 -0
  1822. package/serialization/types/AstMultiplicationOperatorNodeInputLeft.js +71 -0
  1823. package/serialization/types/AstMultiplicationOperatorNodeInputRight.d.ts +67 -0
  1824. package/serialization/types/AstMultiplicationOperatorNodeInputRight.js +71 -0
  1825. package/serialization/types/AstMultiplicationOperatorNodeOutput.d.ts +10 -0
  1826. package/serialization/types/AstMultiplicationOperatorNodeOutput.js +43 -0
  1827. package/serialization/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +66 -0
  1828. package/serialization/types/AstMultiplicationOperatorNodeOutputLeft.js +69 -0
  1829. package/serialization/types/AstMultiplicationOperatorNodeOutputRight.d.ts +66 -0
  1830. package/serialization/types/AstMultiplicationOperatorNodeOutputRight.js +69 -0
  1831. package/serialization/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
  1832. package/serialization/types/AstNotEqualsOperatorNodeInputLeft.js +8 -1
  1833. package/serialization/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
  1834. package/serialization/types/AstNotEqualsOperatorNodeInputRight.js +8 -1
  1835. package/serialization/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
  1836. package/serialization/types/AstNotEqualsOperatorNodeOutputLeft.js +5 -0
  1837. package/serialization/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
  1838. package/serialization/types/AstNotEqualsOperatorNodeOutputRight.js +5 -0
  1839. package/serialization/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
  1840. package/serialization/types/AstOrOperatorNodeInputChildrenItem.js +8 -1
  1841. package/serialization/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
  1842. package/serialization/types/AstOrOperatorNodeOutputChildrenItem.js +5 -0
  1843. package/serialization/types/AstSubtractionOperatorNodeInput.d.ts +10 -0
  1844. package/serialization/types/AstSubtractionOperatorNodeInput.js +43 -0
  1845. package/serialization/types/AstSubtractionOperatorNodeInputLeft.d.ts +67 -0
  1846. package/serialization/types/AstSubtractionOperatorNodeInputLeft.js +71 -0
  1847. package/serialization/types/AstSubtractionOperatorNodeInputRight.d.ts +67 -0
  1848. package/serialization/types/AstSubtractionOperatorNodeInputRight.js +71 -0
  1849. package/serialization/types/AstSubtractionOperatorNodeOutput.d.ts +10 -0
  1850. package/serialization/types/AstSubtractionOperatorNodeOutput.js +43 -0
  1851. package/serialization/types/AstSubtractionOperatorNodeOutputLeft.d.ts +66 -0
  1852. package/serialization/types/AstSubtractionOperatorNodeOutputLeft.js +69 -0
  1853. package/serialization/types/AstSubtractionOperatorNodeOutputRight.d.ts +66 -0
  1854. package/serialization/types/AstSubtractionOperatorNodeOutputRight.js +69 -0
  1855. package/serialization/types/AstllmNodeInput.d.ts +4 -4
  1856. package/serialization/types/AstllmNodeInput.js +3 -3
  1857. package/serialization/types/AstllmNodeInputPrompt.d.ts +10 -0
  1858. package/serialization/types/AstllmNodeInputPrompt.js +42 -0
  1859. package/serialization/types/AstllmNodeInputValueSchema.d.ts +11 -0
  1860. package/serialization/types/AstllmNodeInputValueSchema.js +43 -0
  1861. package/serialization/types/AstllmNodeOutput.d.ts +2 -0
  1862. package/serialization/types/AstllmNodeOutput.js +2 -0
  1863. package/serialization/types/AsyncConversationMetadata.d.ts +1 -0
  1864. package/serialization/types/AsyncConversationMetadata.js +1 -0
  1865. package/serialization/types/AudioAnalysis.d.ts +13 -0
  1866. package/serialization/types/AudioAnalysis.js +45 -0
  1867. package/serialization/types/AudioAnalysisResult.d.ts +18 -0
  1868. package/serialization/types/AudioAnalysisResult.js +50 -0
  1869. package/serialization/types/AudioAnalysisStatus.d.ts +7 -0
  1870. package/serialization/types/AudioAnalysisStatus.js +39 -0
  1871. package/serialization/types/AudioKeyMoment.d.ts +11 -0
  1872. package/serialization/types/AudioKeyMoment.js +43 -0
  1873. package/serialization/types/AudioSegment.d.ts +15 -0
  1874. package/serialization/types/AudioSegment.js +47 -0
  1875. package/serialization/types/AuthConnectionDependencies.d.ts +14 -0
  1876. package/serialization/types/AuthConnectionDependencies.js +46 -0
  1877. package/serialization/types/AuthConnectionDependenciesMcpServersItem.d.ts +15 -0
  1878. package/serialization/types/AuthConnectionDependenciesMcpServersItem.js +49 -0
  1879. package/serialization/types/AuthConnectionDependenciesToolsItem.d.ts +15 -0
  1880. package/serialization/types/AuthConnectionDependenciesToolsItem.js +49 -0
  1881. package/serialization/types/AutoSyncInfo.d.ts +12 -0
  1882. package/serialization/types/AutoSyncInfo.js +44 -0
  1883. package/serialization/types/BasicAuthResponse.d.ts +14 -0
  1884. package/serialization/types/BasicAuthResponse.js +46 -0
  1885. package/serialization/types/BatchCallDetailedResponse.d.ts +3 -0
  1886. package/serialization/types/BatchCallDetailedResponse.js +3 -0
  1887. package/serialization/types/BatchCallResponse.d.ts +3 -0
  1888. package/serialization/types/BatchCallResponse.js +3 -0
  1889. package/serialization/types/BearerAuthResponse.d.ts +13 -0
  1890. package/serialization/types/BearerAuthResponse.js +45 -0
  1891. package/serialization/types/CanvasPlacement.d.ts +2 -0
  1892. package/serialization/types/CanvasPlacement.js +2 -0
  1893. package/serialization/types/CaptionStyleModel.d.ts +4 -0
  1894. package/serialization/types/CaptionStyleModel.js +4 -0
  1895. package/serialization/types/CaptionStyleModelTextBlendMode.d.ts +7 -0
  1896. package/serialization/types/CaptionStyleModelTextBlendMode.js +39 -0
  1897. package/serialization/types/CaptionStyleModelTextTransform.d.ts +7 -0
  1898. package/serialization/types/CaptionStyleModelTextTransform.js +39 -0
  1899. package/serialization/types/CaptionStyleModelTextWeight.d.ts +1 -1
  1900. package/serialization/types/CaptionStyleModelTextWeight.js +1 -1
  1901. package/serialization/types/ContentConfig.d.ts +8 -8
  1902. package/serialization/types/ContentConfig.js +8 -8
  1903. package/serialization/types/ContentGuardrailInput.d.ts +2 -0
  1904. package/serialization/types/ContentGuardrailInput.js +2 -0
  1905. package/serialization/types/ContentGuardrailInputTriggerAction.d.ts +15 -0
  1906. package/serialization/types/ContentGuardrailInputTriggerAction.js +49 -0
  1907. package/serialization/types/ContentGuardrailOutput.d.ts +2 -0
  1908. package/serialization/types/ContentGuardrailOutput.js +2 -0
  1909. package/serialization/types/ContentGuardrailOutputTriggerAction.d.ts +15 -0
  1910. package/serialization/types/ContentGuardrailOutputTriggerAction.js +49 -0
  1911. package/serialization/types/ContentThresholdGuardrail.d.ts +11 -0
  1912. package/serialization/types/ContentThresholdGuardrail.js +43 -0
  1913. package/serialization/types/ContentThresholdGuardrailThreshold.d.ts +7 -0
  1914. package/serialization/types/ContentThresholdGuardrailThreshold.js +44 -0
  1915. package/serialization/types/Contributor.d.ts +2 -0
  1916. package/serialization/types/Contributor.js +2 -0
  1917. package/serialization/types/ConvAiEnvVarLocator.d.ts +9 -0
  1918. package/serialization/types/ConvAiEnvVarLocator.js +41 -0
  1919. package/serialization/types/ConversationConfig.d.ts +2 -0
  1920. package/serialization/types/ConversationConfig.js +2 -0
  1921. package/serialization/types/ConversationConfigWorkflowOverride.d.ts +2 -0
  1922. package/serialization/types/ConversationConfigWorkflowOverride.js +2 -0
  1923. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +2 -2
  1924. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +2 -2
  1925. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +22 -0
  1926. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +54 -0
  1927. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +22 -0
  1928. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +54 -0
  1929. package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
  1930. package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +1 -0
  1931. package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -2
  1932. package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -2
  1933. package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
  1934. package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +1 -0
  1935. package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -2
  1936. package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -2
  1937. package/serialization/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
  1938. package/serialization/types/ConversationHistoryTranscriptResponseModel.js +1 -0
  1939. package/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +2 -2
  1940. package/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.js +2 -2
  1941. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +13 -0
  1942. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +45 -0
  1943. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +13 -0
  1944. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +45 -0
  1945. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +2 -2
  1946. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +2 -2
  1947. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +2 -2
  1948. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +2 -2
  1949. package/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +2 -2
  1950. package/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +2 -2
  1951. package/serialization/types/ConversationInitiationClientDataInternal.d.ts +4 -0
  1952. package/serialization/types/ConversationInitiationClientDataInternal.js +4 -0
  1953. package/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
  1954. package/serialization/types/ConversationInitiationClientDataRequestInput.js +2 -0
  1955. package/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
  1956. package/serialization/types/ConversationInitiationClientDataRequestOutput.js +2 -0
  1957. package/serialization/types/ConversationSummaryResponseModel.d.ts +3 -2
  1958. package/serialization/types/ConversationSummaryResponseModel.js +3 -2
  1959. package/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +11 -0
  1960. package/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.js +43 -0
  1961. package/serialization/types/CreateBasicAuthRequest.d.ts +12 -0
  1962. package/serialization/types/CreateBasicAuthRequest.js +44 -0
  1963. package/serialization/types/CreateCustomHeaderAuthRequest.d.ts +12 -0
  1964. package/serialization/types/CreateCustomHeaderAuthRequest.js +44 -0
  1965. package/serialization/types/CreateOAuth2ClientCredsRequest.d.ts +17 -0
  1966. package/serialization/types/CreateOAuth2ClientCredsRequest.js +49 -0
  1967. package/serialization/types/CreateOAuth2JwtRequest.d.ts +21 -0
  1968. package/serialization/types/CreateOAuth2JwtRequest.js +53 -0
  1969. package/serialization/types/CreateOAuth2JwtRequestAlgorithm.d.ts +7 -0
  1970. package/serialization/types/CreateOAuth2JwtRequestAlgorithm.js +39 -0
  1971. package/serialization/types/CreatePrivateKeyJwtRequest.d.ts +19 -0
  1972. package/serialization/types/CreatePrivateKeyJwtRequest.js +51 -0
  1973. package/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +7 -0
  1974. package/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.js +39 -0
  1975. package/serialization/types/CreateSecretEnvironmentVariableRequest.d.ts +11 -0
  1976. package/serialization/types/CreateSecretEnvironmentVariableRequest.js +43 -0
  1977. package/serialization/types/CreateSimulationTestRequest.d.ts +3 -0
  1978. package/serialization/types/CreateSimulationTestRequest.js +3 -0
  1979. package/serialization/types/CreateStringEnvironmentVariableRequest.d.ts +10 -0
  1980. package/serialization/types/CreateStringEnvironmentVariableRequest.js +42 -0
  1981. package/serialization/types/CustomGuardrailConfig.d.ts +2 -0
  1982. package/serialization/types/CustomGuardrailConfig.js +2 -0
  1983. package/serialization/types/CustomGuardrailConfigTriggerAction.d.ts +15 -0
  1984. package/serialization/types/CustomGuardrailConfigTriggerAction.js +49 -0
  1985. package/serialization/types/CustomHeaderAuthResponse.d.ts +14 -0
  1986. package/serialization/types/CustomHeaderAuthResponse.js +46 -0
  1987. package/serialization/types/CustomLlm.d.ts +2 -2
  1988. package/serialization/types/CustomLlm.js +2 -2
  1989. package/serialization/types/CustomLlmApiKey.d.ts +9 -0
  1990. package/serialization/types/CustomLlmApiKey.js +41 -0
  1991. package/serialization/types/CustomLlmRequestHeadersValue.d.ts +2 -1
  1992. package/serialization/types/CustomLlmRequestHeadersValue.js +7 -1
  1993. package/serialization/types/DependentAvailableMcpServerIdentifier.d.ts +13 -0
  1994. package/serialization/types/DependentAvailableMcpServerIdentifier.js +45 -0
  1995. package/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  1996. package/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.js +39 -0
  1997. package/serialization/types/DependentIntegrationConnectionIdentifier.d.ts +10 -0
  1998. package/serialization/types/DependentIntegrationConnectionIdentifier.js +42 -0
  1999. package/serialization/types/DependentUnknownMcpServerIdentifier.d.ts +9 -0
  2000. package/serialization/types/DependentUnknownMcpServerIdentifier.js +41 -0
  2001. package/serialization/types/DependentUnknownToolIdentifier.d.ts +3 -1
  2002. package/serialization/types/DependentUnknownToolIdentifier.js +3 -1
  2003. package/serialization/types/DirectPublishingReadResponseModel.d.ts +1 -0
  2004. package/serialization/types/DirectPublishingReadResponseModel.js +1 -0
  2005. package/serialization/types/EmbeddingModelEnum.d.ts +1 -1
  2006. package/serialization/types/EmbeddingModelEnum.js +1 -1
  2007. package/serialization/types/EndCallTriggerAction.d.ts +7 -0
  2008. package/serialization/types/EndCallTriggerAction.js +39 -0
  2009. package/serialization/types/EnvironmentAuthConnectionLocator.d.ts +9 -0
  2010. package/serialization/types/EnvironmentAuthConnectionLocator.js +41 -0
  2011. package/serialization/types/EnvironmentVariableAuthConnectionValue.d.ts +9 -0
  2012. package/serialization/types/EnvironmentVariableAuthConnectionValue.js +41 -0
  2013. package/serialization/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +9 -0
  2014. package/serialization/types/EnvironmentVariableAuthConnectionValueRequest.js +41 -0
  2015. package/serialization/types/EnvironmentVariableResponse.d.ts +18 -0
  2016. package/serialization/types/EnvironmentVariableResponse.js +50 -0
  2017. package/serialization/types/EnvironmentVariableResponseType.d.ts +7 -0
  2018. package/serialization/types/EnvironmentVariableResponseType.js +39 -0
  2019. package/serialization/types/EnvironmentVariableResponseValues.d.ts +9 -0
  2020. package/serialization/types/EnvironmentVariableResponseValues.js +45 -0
  2021. package/serialization/types/EnvironmentVariableSecretValue.d.ts +9 -0
  2022. package/serialization/types/EnvironmentVariableSecretValue.js +41 -0
  2023. package/serialization/types/EnvironmentVariableSecretValueRequest.d.ts +9 -0
  2024. package/serialization/types/EnvironmentVariableSecretValueRequest.js +41 -0
  2025. package/serialization/types/EnvironmentVariablesListResponse.d.ts +12 -0
  2026. package/serialization/types/EnvironmentVariablesListResponse.js +44 -0
  2027. package/serialization/types/FeaturesUsageCommonModel.d.ts +1 -0
  2028. package/serialization/types/FeaturesUsageCommonModel.js +1 -0
  2029. package/serialization/types/FileInputConfig.d.ts +10 -0
  2030. package/serialization/types/FileInputConfig.js +42 -0
  2031. package/serialization/types/FileInputConfigWorkflowOverride.d.ts +10 -0
  2032. package/serialization/types/FileInputConfigWorkflowOverride.js +42 -0
  2033. package/serialization/types/GenesysRegion.d.ts +7 -0
  2034. package/serialization/types/GenesysRegion.js +57 -0
  2035. package/serialization/types/GetConvAiSettingsResponseModel.d.ts +1 -0
  2036. package/serialization/types/GetConvAiSettingsResponseModel.js +1 -0
  2037. package/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +2 -0
  2038. package/serialization/types/GetKnowledgeBaseFolderResponseModel.js +2 -0
  2039. package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +2 -0
  2040. package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +2 -0
  2041. package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -0
  2042. package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -0
  2043. package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -0
  2044. package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -0
  2045. package/serialization/types/GetSimulationTestResponseModel.d.ts +3 -0
  2046. package/serialization/types/GetSimulationTestResponseModel.js +3 -0
  2047. package/serialization/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  2048. package/serialization/types/GetTestSuiteInvocationResponseModel.js +1 -0
  2049. package/serialization/types/GuardrailsV1Input.d.ts +0 -2
  2050. package/serialization/types/GuardrailsV1Input.js +0 -2
  2051. package/serialization/types/GuardrailsV1Output.d.ts +0 -2
  2052. package/serialization/types/GuardrailsV1Output.js +0 -2
  2053. package/serialization/types/ListAuthConnectionsResponse.d.ts +10 -0
  2054. package/serialization/types/ListAuthConnectionsResponse.js +42 -0
  2055. package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +39 -0
  2056. package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +61 -0
  2057. package/serialization/types/LlmInfoModelInput.d.ts +1 -0
  2058. package/serialization/types/LlmInfoModelInput.js +1 -0
  2059. package/serialization/types/LlmInfoModelOutput.d.ts +1 -0
  2060. package/serialization/types/LlmInfoModelOutput.js +1 -0
  2061. package/serialization/types/LlmLiteralJsonSchemaProperty.d.ts +12 -0
  2062. package/serialization/types/LlmLiteralJsonSchemaProperty.js +44 -0
  2063. package/serialization/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  2064. package/serialization/types/LlmLiteralJsonSchemaPropertyType.js +39 -0
  2065. package/serialization/types/McpServerConfigInput.d.ts +2 -2
  2066. package/serialization/types/McpServerConfigInput.js +2 -2
  2067. package/serialization/types/McpServerConfigInputAuthConnection.d.ts +9 -0
  2068. package/serialization/types/McpServerConfigInputAuthConnection.js +41 -0
  2069. package/serialization/types/McpServerConfigInputRequestHeadersValue.d.ts +2 -1
  2070. package/serialization/types/McpServerConfigInputRequestHeadersValue.js +7 -1
  2071. package/serialization/types/McpServerConfigOutput.d.ts +2 -2
  2072. package/serialization/types/McpServerConfigOutput.js +2 -2
  2073. package/serialization/types/McpServerConfigOutputAuthConnection.d.ts +9 -0
  2074. package/serialization/types/McpServerConfigOutputAuthConnection.js +41 -0
  2075. package/serialization/types/McpServerConfigOutputRequestHeadersValue.d.ts +2 -1
  2076. package/serialization/types/McpServerConfigOutputRequestHeadersValue.js +7 -1
  2077. package/serialization/types/MessageSearchSortBy.d.ts +7 -0
  2078. package/serialization/types/MessageSearchSortBy.js +39 -0
  2079. package/serialization/types/MockNoMatchBehavior.d.ts +7 -0
  2080. package/serialization/types/MockNoMatchBehavior.js +39 -0
  2081. package/serialization/types/MockingStrategy.d.ts +7 -0
  2082. package/serialization/types/MockingStrategy.js +39 -0
  2083. package/serialization/types/OAuth2ClientCredsResponse.d.ts +18 -0
  2084. package/serialization/types/OAuth2ClientCredsResponse.js +50 -0
  2085. package/serialization/types/OAuth2JwtResponse.d.ts +23 -0
  2086. package/serialization/types/OAuth2JwtResponse.js +55 -0
  2087. package/serialization/types/OAuth2JwtResponseAlgorithm.d.ts +7 -0
  2088. package/serialization/types/OAuth2JwtResponseAlgorithm.js +39 -0
  2089. package/serialization/types/OAuthConnectionStatus.d.ts +7 -0
  2090. package/serialization/types/OAuthConnectionStatus.js +39 -0
  2091. package/serialization/types/OrchestratorToolMockBehaviorConfig.d.ts +13 -0
  2092. package/serialization/types/OrchestratorToolMockBehaviorConfig.js +45 -0
  2093. package/serialization/types/PermissionType.d.ts +1 -1
  2094. package/serialization/types/PermissionType.js +1 -0
  2095. package/serialization/types/PlayDtmfToolConfig.d.ts +1 -0
  2096. package/serialization/types/PlayDtmfToolConfig.js +1 -0
  2097. package/serialization/types/PreviewAudioDbModel.d.ts +2 -0
  2098. package/serialization/types/PreviewAudioDbModel.js +2 -0
  2099. package/serialization/types/PrivateKeyJwtResponse.d.ts +21 -0
  2100. package/serialization/types/PrivateKeyJwtResponse.js +53 -0
  2101. package/serialization/types/PrivateKeyJwtResponseAlgorithm.d.ts +7 -0
  2102. package/serialization/types/PrivateKeyJwtResponseAlgorithm.js +39 -0
  2103. package/serialization/types/ProcedureCompilerMode.d.ts +7 -0
  2104. package/serialization/types/ProcedureCompilerMode.js +39 -0
  2105. package/serialization/types/ProcedureSettings.d.ts +10 -0
  2106. package/serialization/types/ProcedureSettings.js +42 -0
  2107. package/serialization/types/ProjectExternalAudioResponseModel.d.ts +4 -1
  2108. package/serialization/types/ProjectExternalAudioResponseModel.js +4 -1
  2109. package/serialization/types/ProjectImageResponseModel.d.ts +1 -0
  2110. package/serialization/types/ProjectImageResponseModel.js +1 -0
  2111. package/serialization/types/ProjectVideoResponseModel.d.ts +1 -0
  2112. package/serialization/types/ProjectVideoResponseModel.js +1 -0
  2113. package/serialization/types/RetryTriggerAction.d.ts +9 -0
  2114. package/serialization/types/RetryTriggerAction.js +41 -0
  2115. package/serialization/types/SimulationTestModel.d.ts +3 -0
  2116. package/serialization/types/SimulationTestModel.js +3 -0
  2117. package/serialization/types/SimulationToolMockBehaviorConfig.d.ts +13 -0
  2118. package/serialization/types/SimulationToolMockBehaviorConfig.js +45 -0
  2119. package/serialization/types/SingleTestRunRequestModel.d.ts +2 -0
  2120. package/serialization/types/SingleTestRunRequestModel.js +2 -0
  2121. package/serialization/types/SpeechHistoryItemResponse.d.ts +1 -0
  2122. package/serialization/types/SpeechHistoryItemResponse.js +1 -0
  2123. package/serialization/types/Subscription.d.ts +2 -0
  2124. package/serialization/types/Subscription.js +2 -0
  2125. package/serialization/types/SystemToolConfigInputParams.d.ts +1 -21
  2126. package/serialization/types/SystemToolConfigInputParams.js +0 -10
  2127. package/serialization/types/SystemToolConfigOutputParams.d.ts +1 -21
  2128. package/serialization/types/SystemToolConfigOutputParams.js +0 -10
  2129. package/serialization/types/TelephonyDirection.d.ts +7 -0
  2130. package/serialization/types/TelephonyDirection.js +39 -0
  2131. package/serialization/types/ToolRequestModel.d.ts +2 -0
  2132. package/serialization/types/ToolRequestModel.js +2 -0
  2133. package/serialization/types/ToolResponseMockConfigInput.d.ts +11 -0
  2134. package/serialization/types/ToolResponseMockConfigInput.js +43 -0
  2135. package/serialization/types/ToolResponseMockConfigOutput.d.ts +11 -0
  2136. package/serialization/types/ToolResponseMockConfigOutput.js +43 -0
  2137. package/serialization/types/ToolResponseModel.d.ts +2 -0
  2138. package/serialization/types/ToolResponseModel.js +2 -0
  2139. package/serialization/types/UnitTestRunResponseModel.d.ts +3 -0
  2140. package/serialization/types/UnitTestRunResponseModel.js +3 -0
  2141. package/serialization/types/UpdateSimulationTestRequest.d.ts +3 -0
  2142. package/serialization/types/UpdateSimulationTestRequest.js +3 -0
  2143. package/serialization/types/VideoAnalysisResult.d.ts +2 -2
  2144. package/serialization/types/VideoAnalysisResult.js +2 -2
  2145. package/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -2
  2146. package/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -2
  2147. package/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +9 -0
  2148. package/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.js +41 -0
  2149. package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +2 -1
  2150. package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +7 -1
  2151. package/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -2
  2152. package/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -2
  2153. package/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +9 -0
  2154. package/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +41 -0
  2155. package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +2 -1
  2156. package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +7 -1
  2157. package/serialization/types/WhatsAppAuthResponse.d.ts +14 -0
  2158. package/serialization/types/WhatsAppAuthResponse.js +46 -0
  2159. package/serialization/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
  2160. package/serialization/types/WorkflowExpressionConditionModelInputExpression.js +8 -1
  2161. package/serialization/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
  2162. package/serialization/types/WorkflowExpressionConditionModelOutputExpression.js +5 -0
  2163. package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -2
  2164. package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -2
  2165. package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -2
  2166. package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -2
  2167. package/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
  2168. package/serialization/types/WorkspaceGroupPermission.js +1 -0
  2169. package/serialization/types/WorkspaceResourceType.d.ts +1 -1
  2170. package/serialization/types/WorkspaceResourceType.js +2 -0
  2171. package/serialization/types/index.d.ts +119 -25
  2172. package/serialization/types/index.js +119 -25
  2173. package/version.d.ts +1 -1
  2174. package/version.js +1 -1
  2175. package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -5
  2176. package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -8
  2177. package/api/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  2178. package/api/resources/conversationalAi/resources/twilio/types/index.js +0 -17
  2179. package/api/types/AgentPromptChangeToolConfig.d.ts +0 -1
  2180. package/api/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -14
  2181. package/api/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -2
  2182. package/api/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -13
  2183. package/api/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -14
  2184. package/api/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -2
  2185. package/api/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -13
  2186. package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -5
  2187. package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -8
  2188. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -16
  2189. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -7
  2190. package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -5
  2191. package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -8
  2192. package/api/types/ConversationSummaryResponseModelDirection.d.ts +0 -5
  2193. package/api/types/ConversationSummaryResponseModelDirection.js +0 -8
  2194. package/api/types/LiteralOverride.d.ts +0 -6
  2195. package/api/types/LiteralOverrideConstantValue.d.ts +0 -1
  2196. package/api/types/MemoryEntryCreateToolConfig.d.ts +0 -1
  2197. package/api/types/MemoryEntryDeleteToolConfig.d.ts +0 -1
  2198. package/api/types/MemoryEntrySearchToolConfig.d.ts +0 -1
  2199. package/api/types/MemoryEntryUpdateToolConfig.d.ts +0 -1
  2200. package/api/types/ObjectOverrideInput.d.ts +0 -6
  2201. package/api/types/ObjectOverrideInputPropertiesValue.d.ts +0 -2
  2202. package/api/types/ObjectOverrideOutput.d.ts +0 -6
  2203. package/api/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -2
  2204. package/api/types/QueryOverride.d.ts +0 -5
  2205. package/api/types/VideoTranscription.d.ts +0 -6
  2206. package/api/types/VideoTranscriptionWord.d.ts +0 -6
  2207. package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -5
  2208. package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -8
  2209. package/dist/api/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  2210. package/dist/api/resources/conversationalAi/resources/twilio/types/index.js +0 -17
  2211. package/dist/api/types/AgentPromptChangeToolConfig.d.ts +0 -1
  2212. package/dist/api/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -14
  2213. package/dist/api/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -2
  2214. package/dist/api/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -13
  2215. package/dist/api/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -14
  2216. package/dist/api/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -2
  2217. package/dist/api/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -13
  2218. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -5
  2219. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -8
  2220. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -16
  2221. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -7
  2222. package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -5
  2223. package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -8
  2224. package/dist/api/types/ConversationSummaryResponseModelDirection.d.ts +0 -5
  2225. package/dist/api/types/ConversationSummaryResponseModelDirection.js +0 -8
  2226. package/dist/api/types/LiteralOverride.d.ts +0 -6
  2227. package/dist/api/types/LiteralOverrideConstantValue.d.ts +0 -1
  2228. package/dist/api/types/MemoryEntryCreateToolConfig.d.ts +0 -1
  2229. package/dist/api/types/MemoryEntryDeleteToolConfig.d.ts +0 -1
  2230. package/dist/api/types/MemoryEntrySearchToolConfig.d.ts +0 -1
  2231. package/dist/api/types/MemoryEntryUpdateToolConfig.d.ts +0 -1
  2232. package/dist/api/types/ObjectOverrideInput.d.ts +0 -6
  2233. package/dist/api/types/ObjectOverrideInputPropertiesValue.d.ts +0 -2
  2234. package/dist/api/types/ObjectOverrideOutput.d.ts +0 -6
  2235. package/dist/api/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -2
  2236. package/dist/api/types/QueryOverride.d.ts +0 -5
  2237. package/dist/api/types/VideoTranscription.d.ts +0 -6
  2238. package/dist/api/types/VideoTranscriptionWord.d.ts +0 -6
  2239. package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -7
  2240. package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -39
  2241. package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  2242. package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.js +0 -17
  2243. package/dist/serialization/types/AgentPromptChangeToolConfig.d.ts +0 -7
  2244. package/dist/serialization/types/AgentPromptChangeToolConfig.js +0 -39
  2245. package/dist/serialization/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -20
  2246. package/dist/serialization/types/ApiIntegrationWebhookOverridesInput.js +0 -57
  2247. package/dist/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -8
  2248. package/dist/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js +0 -40
  2249. package/dist/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -19
  2250. package/dist/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js +0 -51
  2251. package/dist/serialization/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -20
  2252. package/dist/serialization/types/ApiIntegrationWebhookOverridesOutput.js +0 -57
  2253. package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -8
  2254. package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js +0 -40
  2255. package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -19
  2256. package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js +0 -51
  2257. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -7
  2258. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -39
  2259. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -22
  2260. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +0 -54
  2261. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -13
  2262. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +0 -45
  2263. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -7
  2264. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -39
  2265. package/dist/serialization/types/ConversationSummaryResponseModelDirection.d.ts +0 -7
  2266. package/dist/serialization/types/ConversationSummaryResponseModelDirection.js +0 -39
  2267. package/dist/serialization/types/LiteralOverride.d.ts +0 -12
  2268. package/dist/serialization/types/LiteralOverride.js +0 -44
  2269. package/dist/serialization/types/LiteralOverrideConstantValue.d.ts +0 -7
  2270. package/dist/serialization/types/LiteralOverrideConstantValue.js +0 -44
  2271. package/dist/serialization/types/MemoryEntryCreateToolConfig.d.ts +0 -7
  2272. package/dist/serialization/types/MemoryEntryCreateToolConfig.js +0 -39
  2273. package/dist/serialization/types/MemoryEntryDeleteToolConfig.d.ts +0 -7
  2274. package/dist/serialization/types/MemoryEntryDeleteToolConfig.js +0 -39
  2275. package/dist/serialization/types/MemoryEntrySearchToolConfig.d.ts +0 -7
  2276. package/dist/serialization/types/MemoryEntrySearchToolConfig.js +0 -39
  2277. package/dist/serialization/types/MemoryEntryUpdateToolConfig.d.ts +0 -7
  2278. package/dist/serialization/types/MemoryEntryUpdateToolConfig.js +0 -39
  2279. package/dist/serialization/types/ObjectOverrideInput.d.ts +0 -11
  2280. package/dist/serialization/types/ObjectOverrideInput.js +0 -46
  2281. package/dist/serialization/types/ObjectOverrideInputPropertiesValue.d.ts +0 -8
  2282. package/dist/serialization/types/ObjectOverrideInputPropertiesValue.js +0 -44
  2283. package/dist/serialization/types/ObjectOverrideOutput.d.ts +0 -11
  2284. package/dist/serialization/types/ObjectOverrideOutput.js +0 -46
  2285. package/dist/serialization/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -8
  2286. package/dist/serialization/types/ObjectOverrideOutputPropertiesValue.js +0 -44
  2287. package/dist/serialization/types/QueryOverride.d.ts +0 -11
  2288. package/dist/serialization/types/QueryOverride.js +0 -43
  2289. package/dist/serialization/types/VideoTranscription.d.ts +0 -12
  2290. package/dist/serialization/types/VideoTranscription.js +0 -44
  2291. package/dist/serialization/types/VideoTranscriptionWord.d.ts +0 -12
  2292. package/dist/serialization/types/VideoTranscriptionWord.js +0 -44
  2293. package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -7
  2294. package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -39
  2295. package/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  2296. package/serialization/resources/conversationalAi/resources/twilio/types/index.js +0 -17
  2297. package/serialization/types/AgentPromptChangeToolConfig.d.ts +0 -7
  2298. package/serialization/types/AgentPromptChangeToolConfig.js +0 -39
  2299. package/serialization/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -20
  2300. package/serialization/types/ApiIntegrationWebhookOverridesInput.js +0 -57
  2301. package/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -8
  2302. package/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js +0 -40
  2303. package/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -19
  2304. package/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js +0 -51
  2305. package/serialization/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -20
  2306. package/serialization/types/ApiIntegrationWebhookOverridesOutput.js +0 -57
  2307. package/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -8
  2308. package/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js +0 -40
  2309. package/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -19
  2310. package/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js +0 -51
  2311. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -7
  2312. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -39
  2313. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -22
  2314. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +0 -54
  2315. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -13
  2316. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +0 -45
  2317. package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -7
  2318. package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -39
  2319. package/serialization/types/ConversationSummaryResponseModelDirection.d.ts +0 -7
  2320. package/serialization/types/ConversationSummaryResponseModelDirection.js +0 -39
  2321. package/serialization/types/LiteralOverride.d.ts +0 -12
  2322. package/serialization/types/LiteralOverride.js +0 -44
  2323. package/serialization/types/LiteralOverrideConstantValue.d.ts +0 -7
  2324. package/serialization/types/LiteralOverrideConstantValue.js +0 -44
  2325. package/serialization/types/MemoryEntryCreateToolConfig.d.ts +0 -7
  2326. package/serialization/types/MemoryEntryCreateToolConfig.js +0 -39
  2327. package/serialization/types/MemoryEntryDeleteToolConfig.d.ts +0 -7
  2328. package/serialization/types/MemoryEntryDeleteToolConfig.js +0 -39
  2329. package/serialization/types/MemoryEntrySearchToolConfig.d.ts +0 -7
  2330. package/serialization/types/MemoryEntrySearchToolConfig.js +0 -39
  2331. package/serialization/types/MemoryEntryUpdateToolConfig.d.ts +0 -7
  2332. package/serialization/types/MemoryEntryUpdateToolConfig.js +0 -39
  2333. package/serialization/types/ObjectOverrideInput.d.ts +0 -11
  2334. package/serialization/types/ObjectOverrideInput.js +0 -46
  2335. package/serialization/types/ObjectOverrideInputPropertiesValue.d.ts +0 -8
  2336. package/serialization/types/ObjectOverrideInputPropertiesValue.js +0 -44
  2337. package/serialization/types/ObjectOverrideOutput.d.ts +0 -11
  2338. package/serialization/types/ObjectOverrideOutput.js +0 -46
  2339. package/serialization/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -8
  2340. package/serialization/types/ObjectOverrideOutputPropertiesValue.js +0 -44
  2341. package/serialization/types/QueryOverride.d.ts +0 -11
  2342. package/serialization/types/QueryOverride.js +0 -43
  2343. package/serialization/types/VideoTranscription.d.ts +0 -12
  2344. package/serialization/types/VideoTranscription.js +0 -44
  2345. package/serialization/types/VideoTranscriptionWord.d.ts +0 -12
  2346. package/serialization/types/VideoTranscriptionWord.js +0 -44
  2347. /package/api/{types/AgentPromptChangeToolConfig.js → resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js} +0 -0
  2348. /package/api/{types/ApiIntegrationWebhookOverridesInput.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.js} +0 -0
  2349. /package/api/{types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js → resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js} +0 -0
  2350. /package/api/{types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js → resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.js} +0 -0
  2351. /package/api/{types/ApiIntegrationWebhookOverridesOutput.js → resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.js} +0 -0
  2352. /package/api/{types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js → resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js} +0 -0
  2353. /package/api/{types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js → resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js} +0 -0
  2354. /package/api/{types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js} +0 -0
  2355. /package/api/{types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.js} +0 -0
  2356. /package/api/{types/LiteralOverride.js → resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js} +0 -0
  2357. /package/api/{types/LiteralOverrideConstantValue.js → resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js} +0 -0
  2358. /package/api/{types/MemoryEntryCreateToolConfig.js → resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js} +0 -0
  2359. /package/api/types/{MemoryEntryDeleteToolConfig.js → ApiIntegrationOAuth2AuthCodeResponse.js} +0 -0
  2360. /package/api/types/{MemoryEntrySearchToolConfig.js → ApiIntegrationWebhookOverrides.js} +0 -0
  2361. /package/api/types/{MemoryEntryUpdateToolConfig.js → ApiIntegrationWebhookOverridesRequestHeadersValue.js} +0 -0
  2362. /package/api/types/{ObjectOverrideInput.js → ApiIntegrationWebhookOverridesSchemaOverridesValue.js} +0 -0
  2363. /package/api/types/{ObjectOverrideInputPropertiesValue.js → AssetTranscription.js} +0 -0
  2364. /package/api/types/{ObjectOverrideOutput.js → AssetTranscriptionWord.js} +0 -0
  2365. /package/api/types/{ObjectOverrideOutputPropertiesValue.js → AstAdditionOperatorNodeInput.js} +0 -0
  2366. /package/api/types/{QueryOverride.js → AstAdditionOperatorNodeInputLeft.js} +0 -0
  2367. /package/api/types/{VideoTranscription.js → AstAdditionOperatorNodeInputRight.js} +0 -0
  2368. /package/api/types/{VideoTranscriptionWord.js → AstAdditionOperatorNodeOutput.js} +0 -0
  2369. /package/{dist/api/types/AgentPromptChangeToolConfig.js → api/types/AstAdditionOperatorNodeOutputLeft.js} +0 -0
  2370. /package/{dist/api/types/ApiIntegrationWebhookOverridesInput.js → api/types/AstAdditionOperatorNodeOutputRight.js} +0 -0
  2371. /package/{dist/api/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js → api/types/AstConditionalOperatorNodeInput.js} +0 -0
  2372. /package/{dist/api/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js → api/types/AstConditionalOperatorNodeInputCondition.js} +0 -0
  2373. /package/{dist/api/types/ApiIntegrationWebhookOverridesOutput.js → api/types/AstConditionalOperatorNodeInputFalseExpression.js} +0 -0
  2374. /package/{dist/api/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js → api/types/AstConditionalOperatorNodeInputTrueExpression.js} +0 -0
  2375. /package/{dist/api/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js → api/types/AstConditionalOperatorNodeOutput.js} +0 -0
  2376. /package/{dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → api/types/AstConditionalOperatorNodeOutputCondition.js} +0 -0
  2377. /package/{dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → api/types/AstConditionalOperatorNodeOutputFalseExpression.js} +0 -0
  2378. /package/{dist/api/types/LiteralOverride.js → api/types/AstConditionalOperatorNodeOutputTrueExpression.js} +0 -0
  2379. /package/{dist/api/types/LiteralOverrideConstantValue.js → api/types/AstDivisionOperatorNodeInput.js} +0 -0
  2380. /package/{dist/api/types/MemoryEntryCreateToolConfig.js → api/types/AstDivisionOperatorNodeInputLeft.js} +0 -0
  2381. /package/{dist/api/types/MemoryEntryDeleteToolConfig.js → api/types/AstDivisionOperatorNodeInputRight.js} +0 -0
  2382. /package/{dist/api/types/MemoryEntrySearchToolConfig.js → api/types/AstDivisionOperatorNodeOutput.js} +0 -0
  2383. /package/{dist/api/types/MemoryEntryUpdateToolConfig.js → api/types/AstDivisionOperatorNodeOutputLeft.js} +0 -0
  2384. /package/{dist/api/types/ObjectOverrideInput.js → api/types/AstDivisionOperatorNodeOutputRight.js} +0 -0
  2385. /package/{dist/api/types/ObjectOverrideInputPropertiesValue.js → api/types/AstMultiplicationOperatorNodeInput.js} +0 -0
  2386. /package/{dist/api/types/ObjectOverrideOutput.js → api/types/AstMultiplicationOperatorNodeInputLeft.js} +0 -0
  2387. /package/{dist/api/types/ObjectOverrideOutputPropertiesValue.js → api/types/AstMultiplicationOperatorNodeInputRight.js} +0 -0
  2388. /package/{dist/api/types/QueryOverride.js → api/types/AstMultiplicationOperatorNodeOutput.js} +0 -0
  2389. /package/{dist/api/types/VideoTranscription.js → api/types/AstMultiplicationOperatorNodeOutputLeft.js} +0 -0
  2390. /package/{dist/api/types/VideoTranscriptionWord.js → api/types/AstMultiplicationOperatorNodeOutputRight.js} +0 -0
package/BaseClient.js CHANGED
@@ -41,8 +41,8 @@ function normalizeClientOptions(options) {
41
41
  const headers = (0, headers_1.mergeHeaders)({
42
42
  "X-Fern-Language": "JavaScript",
43
43
  "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js",
44
- "X-Fern-SDK-Version": "v2.39.0",
45
- "User-Agent": "@elevenlabs/elevenlabs-js/v2.39.0",
44
+ "X-Fern-SDK-Version": "v2.41.0",
45
+ "User-Agent": "@elevenlabs/elevenlabs-js/v2.41.0",
46
46
  "X-Fern-Runtime": core.RUNTIME.type,
47
47
  "X-Fern-Runtime-Version": core.RUNTIME.version,
48
48
  "xi-api-key": options === null || options === void 0 ? void 0 : options.apiKey,
package/Client.d.ts CHANGED
@@ -2,6 +2,7 @@ import { AudioIsolationClient } from "./api/resources/audioIsolation/client/Clie
2
2
  import { AudioNativeClient } from "./api/resources/audioNative/client/Client";
3
3
  import { ConversationalAiClient } from "./api/resources/conversationalAi/client/Client";
4
4
  import { DubbingClient } from "./api/resources/dubbing/client/Client";
5
+ import { EnvironmentVariablesClient } from "./api/resources/environmentVariables/client/Client";
5
6
  import { ForcedAlignmentClient } from "./api/resources/forcedAlignment/client/Client";
6
7
  import { HistoryClient } from "./api/resources/history/client/Client";
7
8
  import { ModelsClient } from "./api/resources/models/client/Client";
@@ -43,6 +44,7 @@ export declare class ElevenLabsClient {
43
44
  protected _user: UserClient | undefined;
44
45
  protected _voices: VoicesClient | undefined;
45
46
  protected _studio: StudioClient | undefined;
47
+ protected _music: MusicClient | undefined;
46
48
  protected _dubbing: DubbingClient | undefined;
47
49
  protected _models: ModelsClient | undefined;
48
50
  protected _audioNative: AudioNativeClient | undefined;
@@ -53,7 +55,7 @@ export declare class ElevenLabsClient {
53
55
  protected _speechToText: SpeechToTextClient | undefined;
54
56
  protected _forcedAlignment: ForcedAlignmentClient | undefined;
55
57
  protected _conversationalAi: ConversationalAiClient | undefined;
56
- protected _music: MusicClient | undefined;
58
+ protected _environmentVariables: EnvironmentVariablesClient | undefined;
57
59
  protected _tokens: TokensClient | undefined;
58
60
  protected _workspace: WorkspaceClient | undefined;
59
61
  constructor(options?: ElevenLabsClient.Options);
@@ -68,6 +70,7 @@ export declare class ElevenLabsClient {
68
70
  get user(): UserClient;
69
71
  get voices(): VoicesClient;
70
72
  get studio(): StudioClient;
73
+ get music(): MusicClient;
71
74
  get dubbing(): DubbingClient;
72
75
  get models(): ModelsClient;
73
76
  get audioNative(): AudioNativeClient;
@@ -78,7 +81,7 @@ export declare class ElevenLabsClient {
78
81
  get speechToText(): SpeechToTextClient;
79
82
  get forcedAlignment(): ForcedAlignmentClient;
80
83
  get conversationalAi(): ConversationalAiClient;
81
- get music(): MusicClient;
84
+ get environmentVariables(): EnvironmentVariablesClient;
82
85
  get tokens(): TokensClient;
83
86
  get workspace(): WorkspaceClient;
84
87
  /**
package/Client.js CHANGED
@@ -48,26 +48,27 @@ const Client_1 = require("./api/resources/audioIsolation/client/Client");
48
48
  const Client_2 = require("./api/resources/audioNative/client/Client");
49
49
  const Client_3 = require("./api/resources/conversationalAi/client/Client");
50
50
  const Client_4 = require("./api/resources/dubbing/client/Client");
51
- const Client_5 = require("./api/resources/forcedAlignment/client/Client");
52
- const Client_6 = require("./api/resources/history/client/Client");
53
- const Client_7 = require("./api/resources/models/client/Client");
54
- const Client_8 = require("./api/resources/music/client/Client");
55
- const Client_9 = require("./api/resources/pronunciationDictionaries/client/Client");
56
- const Client_10 = require("./api/resources/samples/client/Client");
57
- const Client_11 = require("./api/resources/serviceAccounts/client/Client");
58
- const Client_12 = require("./api/resources/speechToSpeech/client/Client");
59
- const Client_13 = require("./api/resources/speechToText/client/Client");
60
- const Client_14 = require("./api/resources/studio/client/Client");
61
- const Client_15 = require("./api/resources/textToDialogue/client/Client");
62
- const Client_16 = require("./api/resources/textToSoundEffects/client/Client");
63
- const Client_17 = require("./api/resources/textToSpeech/client/Client");
64
- const Client_18 = require("./api/resources/textToVoice/client/Client");
65
- const Client_19 = require("./api/resources/tokens/client/Client");
66
- const Client_20 = require("./api/resources/usage/client/Client");
67
- const Client_21 = require("./api/resources/user/client/Client");
68
- const Client_22 = require("./api/resources/voices/client/Client");
69
- const Client_23 = require("./api/resources/webhooks/client/Client");
70
- const Client_24 = require("./api/resources/workspace/client/Client");
51
+ const Client_5 = require("./api/resources/environmentVariables/client/Client");
52
+ const Client_6 = require("./api/resources/forcedAlignment/client/Client");
53
+ const Client_7 = require("./api/resources/history/client/Client");
54
+ const Client_8 = require("./api/resources/models/client/Client");
55
+ const Client_9 = require("./api/resources/music/client/Client");
56
+ const Client_10 = require("./api/resources/pronunciationDictionaries/client/Client");
57
+ const Client_11 = require("./api/resources/samples/client/Client");
58
+ const Client_12 = require("./api/resources/serviceAccounts/client/Client");
59
+ const Client_13 = require("./api/resources/speechToSpeech/client/Client");
60
+ const Client_14 = require("./api/resources/speechToText/client/Client");
61
+ const Client_15 = require("./api/resources/studio/client/Client");
62
+ const Client_16 = require("./api/resources/textToDialogue/client/Client");
63
+ const Client_17 = require("./api/resources/textToSoundEffects/client/Client");
64
+ const Client_18 = require("./api/resources/textToSpeech/client/Client");
65
+ const Client_19 = require("./api/resources/textToVoice/client/Client");
66
+ const Client_20 = require("./api/resources/tokens/client/Client");
67
+ const Client_21 = require("./api/resources/usage/client/Client");
68
+ const Client_22 = require("./api/resources/user/client/Client");
69
+ const Client_23 = require("./api/resources/voices/client/Client");
70
+ const Client_24 = require("./api/resources/webhooks/client/Client");
71
+ const Client_25 = require("./api/resources/workspace/client/Client");
71
72
  const BaseClient_1 = require("./BaseClient");
72
73
  const core = __importStar(require("./core"));
73
74
  const headers_1 = require("./core/headers");
@@ -80,11 +81,11 @@ class ElevenLabsClient {
80
81
  }
81
82
  get history() {
82
83
  var _a;
83
- return ((_a = this._history) !== null && _a !== void 0 ? _a : (this._history = new Client_6.HistoryClient(this._options)));
84
+ return ((_a = this._history) !== null && _a !== void 0 ? _a : (this._history = new Client_7.HistoryClient(this._options)));
84
85
  }
85
86
  get textToSoundEffects() {
86
87
  var _a;
87
- return ((_a = this._textToSoundEffects) !== null && _a !== void 0 ? _a : (this._textToSoundEffects = new Client_16.TextToSoundEffectsClient(this._options)));
88
+ return ((_a = this._textToSoundEffects) !== null && _a !== void 0 ? _a : (this._textToSoundEffects = new Client_17.TextToSoundEffectsClient(this._options)));
88
89
  }
89
90
  get audioIsolation() {
90
91
  var _a;
@@ -92,35 +93,39 @@ class ElevenLabsClient {
92
93
  }
93
94
  get samples() {
94
95
  var _a;
95
- return ((_a = this._samples) !== null && _a !== void 0 ? _a : (this._samples = new Client_10.SamplesClient(this._options)));
96
+ return ((_a = this._samples) !== null && _a !== void 0 ? _a : (this._samples = new Client_11.SamplesClient(this._options)));
96
97
  }
97
98
  get textToSpeech() {
98
99
  var _a;
99
- return ((_a = this._textToSpeech) !== null && _a !== void 0 ? _a : (this._textToSpeech = new Client_17.TextToSpeechClient(this._options)));
100
+ return ((_a = this._textToSpeech) !== null && _a !== void 0 ? _a : (this._textToSpeech = new Client_18.TextToSpeechClient(this._options)));
100
101
  }
101
102
  get textToDialogue() {
102
103
  var _a;
103
- return ((_a = this._textToDialogue) !== null && _a !== void 0 ? _a : (this._textToDialogue = new Client_15.TextToDialogueClient(this._options)));
104
+ return ((_a = this._textToDialogue) !== null && _a !== void 0 ? _a : (this._textToDialogue = new Client_16.TextToDialogueClient(this._options)));
104
105
  }
105
106
  get speechToSpeech() {
106
107
  var _a;
107
- return ((_a = this._speechToSpeech) !== null && _a !== void 0 ? _a : (this._speechToSpeech = new Client_12.SpeechToSpeechClient(this._options)));
108
+ return ((_a = this._speechToSpeech) !== null && _a !== void 0 ? _a : (this._speechToSpeech = new Client_13.SpeechToSpeechClient(this._options)));
108
109
  }
109
110
  get textToVoice() {
110
111
  var _a;
111
- return ((_a = this._textToVoice) !== null && _a !== void 0 ? _a : (this._textToVoice = new Client_18.TextToVoiceClient(this._options)));
112
+ return ((_a = this._textToVoice) !== null && _a !== void 0 ? _a : (this._textToVoice = new Client_19.TextToVoiceClient(this._options)));
112
113
  }
113
114
  get user() {
114
115
  var _a;
115
- return ((_a = this._user) !== null && _a !== void 0 ? _a : (this._user = new Client_21.UserClient(this._options)));
116
+ return ((_a = this._user) !== null && _a !== void 0 ? _a : (this._user = new Client_22.UserClient(this._options)));
116
117
  }
117
118
  get voices() {
118
119
  var _a;
119
- return ((_a = this._voices) !== null && _a !== void 0 ? _a : (this._voices = new Client_22.VoicesClient(this._options)));
120
+ return ((_a = this._voices) !== null && _a !== void 0 ? _a : (this._voices = new Client_23.VoicesClient(this._options)));
120
121
  }
121
122
  get studio() {
122
123
  var _a;
123
- return ((_a = this._studio) !== null && _a !== void 0 ? _a : (this._studio = new Client_14.StudioClient(this._options)));
124
+ return ((_a = this._studio) !== null && _a !== void 0 ? _a : (this._studio = new Client_15.StudioClient(this._options)));
125
+ }
126
+ get music() {
127
+ var _a;
128
+ return ((_a = this._music) !== null && _a !== void 0 ? _a : (this._music = new Client_9.MusicClient(this._options)));
124
129
  }
125
130
  get dubbing() {
126
131
  var _a;
@@ -128,7 +133,7 @@ class ElevenLabsClient {
128
133
  }
129
134
  get models() {
130
135
  var _a;
131
- return ((_a = this._models) !== null && _a !== void 0 ? _a : (this._models = new Client_7.ModelsClient(this._options)));
136
+ return ((_a = this._models) !== null && _a !== void 0 ? _a : (this._models = new Client_8.ModelsClient(this._options)));
132
137
  }
133
138
  get audioNative() {
134
139
  var _a;
@@ -136,43 +141,43 @@ class ElevenLabsClient {
136
141
  }
137
142
  get usage() {
138
143
  var _a;
139
- return ((_a = this._usage) !== null && _a !== void 0 ? _a : (this._usage = new Client_20.UsageClient(this._options)));
144
+ return ((_a = this._usage) !== null && _a !== void 0 ? _a : (this._usage = new Client_21.UsageClient(this._options)));
140
145
  }
141
146
  get pronunciationDictionaries() {
142
147
  var _a;
143
- return ((_a = this._pronunciationDictionaries) !== null && _a !== void 0 ? _a : (this._pronunciationDictionaries = new Client_9.PronunciationDictionariesClient(this._options)));
148
+ return ((_a = this._pronunciationDictionaries) !== null && _a !== void 0 ? _a : (this._pronunciationDictionaries = new Client_10.PronunciationDictionariesClient(this._options)));
144
149
  }
145
150
  get serviceAccounts() {
146
151
  var _a;
147
- return ((_a = this._serviceAccounts) !== null && _a !== void 0 ? _a : (this._serviceAccounts = new Client_11.ServiceAccountsClient(this._options)));
152
+ return ((_a = this._serviceAccounts) !== null && _a !== void 0 ? _a : (this._serviceAccounts = new Client_12.ServiceAccountsClient(this._options)));
148
153
  }
149
154
  get webhooks() {
150
155
  var _a;
151
- return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new Client_23.WebhooksClient(this._options)));
156
+ return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new Client_24.WebhooksClient(this._options)));
152
157
  }
153
158
  get speechToText() {
154
159
  var _a;
155
- return ((_a = this._speechToText) !== null && _a !== void 0 ? _a : (this._speechToText = new Client_13.SpeechToTextClient(this._options)));
160
+ return ((_a = this._speechToText) !== null && _a !== void 0 ? _a : (this._speechToText = new Client_14.SpeechToTextClient(this._options)));
156
161
  }
157
162
  get forcedAlignment() {
158
163
  var _a;
159
- return ((_a = this._forcedAlignment) !== null && _a !== void 0 ? _a : (this._forcedAlignment = new Client_5.ForcedAlignmentClient(this._options)));
164
+ return ((_a = this._forcedAlignment) !== null && _a !== void 0 ? _a : (this._forcedAlignment = new Client_6.ForcedAlignmentClient(this._options)));
160
165
  }
161
166
  get conversationalAi() {
162
167
  var _a;
163
168
  return ((_a = this._conversationalAi) !== null && _a !== void 0 ? _a : (this._conversationalAi = new Client_3.ConversationalAiClient(this._options)));
164
169
  }
165
- get music() {
170
+ get environmentVariables() {
166
171
  var _a;
167
- return ((_a = this._music) !== null && _a !== void 0 ? _a : (this._music = new Client_8.MusicClient(this._options)));
172
+ return ((_a = this._environmentVariables) !== null && _a !== void 0 ? _a : (this._environmentVariables = new Client_5.EnvironmentVariablesClient(this._options)));
168
173
  }
169
174
  get tokens() {
170
175
  var _a;
171
- return ((_a = this._tokens) !== null && _a !== void 0 ? _a : (this._tokens = new Client_19.TokensClient(this._options)));
176
+ return ((_a = this._tokens) !== null && _a !== void 0 ? _a : (this._tokens = new Client_20.TokensClient(this._options)));
172
177
  }
173
178
  get workspace() {
174
179
  var _a;
175
- return ((_a = this._workspace) !== null && _a !== void 0 ? _a : (this._workspace = new Client_24.WorkspaceClient(this._options)));
180
+ return ((_a = this._workspace) !== null && _a !== void 0 ? _a : (this._workspace = new Client_25.WorkspaceClient(this._options)));
176
181
  }
177
182
  /**
178
183
  * @param {string} agent_id
@@ -1,6 +1,5 @@
1
1
  import type * as core from "../../core";
2
2
  import * as errors from "../../errors/index";
3
- import type * as ElevenLabs from "../index";
4
3
  export declare class BadRequestError extends errors.ElevenLabsError {
5
- constructor(body: ElevenLabs.BadRequestErrorBody, rawResponse?: core.RawResponse);
4
+ constructor(body?: unknown, rawResponse?: core.RawResponse);
6
5
  }
@@ -1,6 +1,5 @@
1
1
  import type * as core from "../../core";
2
2
  import * as errors from "../../errors/index";
3
- import type * as ElevenLabs from "../index";
4
3
  export declare class UnprocessableEntityError extends errors.ElevenLabsError {
5
- constructor(body: ElevenLabs.HttpValidationError, rawResponse?: core.RawResponse);
4
+ constructor(body?: unknown, rawResponse?: core.RawResponse);
6
5
  }
@@ -99,12 +99,7 @@ class AudioIsolationClient {
99
99
  if (_response.error.reason === "status-code") {
100
100
  switch (_response.error.statusCode) {
101
101
  case 422:
102
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
103
- unrecognizedObjectKeys: "passthrough",
104
- allowUnrecognizedUnionMembers: true,
105
- allowUnrecognizedEnumValues: true,
106
- breadcrumbsPrefix: ["response"],
107
- }), _response.rawResponse);
102
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
108
103
  default:
109
104
  throw new errors.ElevenLabsError({
110
105
  statusCode: _response.error.statusCode,
@@ -156,12 +151,7 @@ class AudioIsolationClient {
156
151
  if (_response.error.reason === "status-code") {
157
152
  switch (_response.error.statusCode) {
158
153
  case 422:
159
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
160
- unrecognizedObjectKeys: "passthrough",
161
- allowUnrecognizedUnionMembers: true,
162
- allowUnrecognizedEnumValues: true,
163
- breadcrumbsPrefix: ["response"],
164
- }), _response.rawResponse);
154
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
165
155
  default:
166
156
  throw new errors.ElevenLabsError({
167
157
  statusCode: _response.error.statusCode,
@@ -151,12 +151,7 @@ class AudioNativeClient {
151
151
  if (_response.error.reason === "status-code") {
152
152
  switch (_response.error.statusCode) {
153
153
  case 422:
154
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
155
- unrecognizedObjectKeys: "passthrough",
156
- allowUnrecognizedUnionMembers: true,
157
- allowUnrecognizedEnumValues: true,
158
- breadcrumbsPrefix: ["response"],
159
- }), _response.rawResponse);
154
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
160
155
  default:
161
156
  throw new errors.ElevenLabsError({
162
157
  statusCode: _response.error.statusCode,
@@ -211,12 +206,7 @@ class AudioNativeClient {
211
206
  if (_response.error.reason === "status-code") {
212
207
  switch (_response.error.statusCode) {
213
208
  case 422:
214
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
215
- unrecognizedObjectKeys: "passthrough",
216
- allowUnrecognizedUnionMembers: true,
217
- allowUnrecognizedEnumValues: true,
218
- breadcrumbsPrefix: ["response"],
219
- }), _response.rawResponse);
209
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
220
210
  default:
221
211
  throw new errors.ElevenLabsError({
222
212
  statusCode: _response.error.statusCode,
@@ -287,12 +277,7 @@ class AudioNativeClient {
287
277
  if (_response.error.reason === "status-code") {
288
278
  switch (_response.error.statusCode) {
289
279
  case 422:
290
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
291
- unrecognizedObjectKeys: "passthrough",
292
- allowUnrecognizedUnionMembers: true,
293
- allowUnrecognizedEnumValues: true,
294
- breadcrumbsPrefix: ["response"],
295
- }), _response.rawResponse);
280
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
296
281
  default:
297
282
  throw new errors.ElevenLabsError({
298
283
  statusCode: _response.error.statusCode,
@@ -354,12 +339,7 @@ class AudioNativeClient {
354
339
  if (_response.error.reason === "status-code") {
355
340
  switch (_response.error.statusCode) {
356
341
  case 422:
357
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
358
- unrecognizedObjectKeys: "passthrough",
359
- allowUnrecognizedUnionMembers: true,
360
- allowUnrecognizedEnumValues: true,
361
- breadcrumbsPrefix: ["response"],
362
- }), _response.rawResponse);
342
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
363
343
  default:
364
344
  throw new errors.ElevenLabsError({
365
345
  statusCode: _response.error.statusCode,
@@ -215,12 +215,7 @@ class ConversationalAiClient {
215
215
  if (_response.error.reason === "status-code") {
216
216
  switch (_response.error.statusCode) {
217
217
  case 422:
218
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
219
- unrecognizedObjectKeys: "passthrough",
220
- allowUnrecognizedUnionMembers: true,
221
- allowUnrecognizedEnumValues: true,
222
- breadcrumbsPrefix: ["response"],
223
- }), _response.rawResponse);
218
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
224
219
  default:
225
220
  throw new errors.ElevenLabsError({
226
221
  statusCode: _response.error.statusCode,
@@ -274,12 +269,7 @@ class ConversationalAiClient {
274
269
  if (_response.error.reason === "status-code") {
275
270
  switch (_response.error.statusCode) {
276
271
  case 422:
277
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
278
- unrecognizedObjectKeys: "passthrough",
279
- allowUnrecognizedUnionMembers: true,
280
- allowUnrecognizedEnumValues: true,
281
- breadcrumbsPrefix: ["response"],
282
- }), _response.rawResponse);
272
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
283
273
  default:
284
274
  throw new errors.ElevenLabsError({
285
275
  statusCode: _response.error.statusCode,
@@ -334,12 +324,7 @@ class ConversationalAiClient {
334
324
  if (_response.error.reason === "status-code") {
335
325
  switch (_response.error.statusCode) {
336
326
  case 422:
337
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
338
- unrecognizedObjectKeys: "passthrough",
339
- allowUnrecognizedUnionMembers: true,
340
- allowUnrecognizedEnumValues: true,
341
- breadcrumbsPrefix: ["response"],
342
- }), _response.rawResponse);
327
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
343
328
  default:
344
329
  throw new errors.ElevenLabsError({
345
330
  statusCode: _response.error.statusCode,
@@ -395,12 +380,7 @@ class ConversationalAiClient {
395
380
  if (_response.error.reason === "status-code") {
396
381
  switch (_response.error.statusCode) {
397
382
  case 422:
398
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
399
- unrecognizedObjectKeys: "passthrough",
400
- allowUnrecognizedUnionMembers: true,
401
- allowUnrecognizedEnumValues: true,
402
- breadcrumbsPrefix: ["response"],
403
- }), _response.rawResponse);
383
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
404
384
  default:
405
385
  throw new errors.ElevenLabsError({
406
386
  statusCode: _response.error.statusCode,
@@ -66,6 +66,18 @@ export declare class Conversation extends EventEmitter {
66
66
  * This sends a ping to the orchestrator to reset the timeout timer.
67
67
  */
68
68
  registerUserActivity(): void;
69
+ /**
70
+ * Send a multimodal message combining text and a file reference to the agent.
71
+ *
72
+ * At least one of `text` or `fileId` must be provided.
73
+ *
74
+ * @param options.text Optional text message to include
75
+ * @param options.fileId Optional ElevenLabs file ID to include
76
+ */
77
+ sendMultimodalMessage(options: {
78
+ text?: string;
79
+ fileId?: string;
80
+ }): void;
69
81
  /**
70
82
  * Send a contextual update to the conversation.
71
83
  *
@@ -120,6 +120,24 @@ class Conversation extends events_1.EventEmitter {
120
120
  };
121
121
  this.ws.send(JSON.stringify(event));
122
122
  }
123
+ /**
124
+ * Send a multimodal message combining text and a file reference to the agent.
125
+ *
126
+ * At least one of `text` or `fileId` must be provided.
127
+ *
128
+ * @param options.text Optional text message to include
129
+ * @param options.fileId Optional ElevenLabs file ID to include
130
+ */
131
+ sendMultimodalMessage(options) {
132
+ if (!this.ws || this.ws.readyState !== ws_1.default.OPEN) {
133
+ throw new Error("Session not started or websocket not connected");
134
+ }
135
+ if (!options.text && !options.fileId) {
136
+ throw new Error("At least one of text or fileId must be provided");
137
+ }
138
+ const event = Object.assign(Object.assign({ type: events_2.ClientToOrchestratorEvent.MULTIMODAL_MESSAGE }, (options.text && { text: { type: events_2.ClientToOrchestratorEvent.USER_MESSAGE, text: options.text } })), (options.fileId && { file: { type: "file_input", file_id: options.fileId } }));
139
+ this.ws.send(JSON.stringify(event));
140
+ }
123
141
  /**
124
142
  * Send a contextual update to the conversation.
125
143
  *
@@ -172,6 +172,31 @@ describe("Conversation", () => {
172
172
  text: "User is looking at product page",
173
173
  }));
174
174
  });
175
+ it("should send multimodal message with text and file", () => {
176
+ conversation.sendMultimodalMessage({ text: "What is in this file?", fileId: "file_abc123" });
177
+ expect(mockWebSocket.send).toHaveBeenCalledWith(JSON.stringify({
178
+ type: "multimodal_message",
179
+ text: { type: "user_message", text: "What is in this file?" },
180
+ file: { type: "file_input", file_id: "file_abc123" },
181
+ }));
182
+ });
183
+ it("should send multimodal message with text only", () => {
184
+ conversation.sendMultimodalMessage({ text: "Hello" });
185
+ expect(mockWebSocket.send).toHaveBeenCalledWith(JSON.stringify({
186
+ type: "multimodal_message",
187
+ text: { type: "user_message", text: "Hello" },
188
+ }));
189
+ });
190
+ it("should send multimodal message with file only", () => {
191
+ conversation.sendMultimodalMessage({ fileId: "file_abc123" });
192
+ expect(mockWebSocket.send).toHaveBeenCalledWith(JSON.stringify({
193
+ type: "multimodal_message",
194
+ file: { type: "file_input", file_id: "file_abc123" },
195
+ }));
196
+ });
197
+ it("should throw error when sending multimodal message without text or fileId", () => {
198
+ expect(() => conversation.sendMultimodalMessage({})).toThrow("At least one of text or fileId must be provided");
199
+ });
175
200
  it("should throw error when sending message without active session", () => {
176
201
  conversation.endSession();
177
202
  expect(() => conversation.sendUserMessage("test")).toThrow("Session not started or websocket not connected");
@@ -11,7 +11,9 @@ export declare enum ClientToOrchestratorEvent {
11
11
  CONTEXTUAL_UPDATE = "contextual_update",
12
12
  /** User text message. */
13
13
  USER_MESSAGE = "user_message",
14
- USER_ACTIVITY = "user_activity"
14
+ USER_ACTIVITY = "user_activity",
15
+ /** Multimodal message combining text and a file reference. */
16
+ MULTIMODAL_MESSAGE = "multimodal_message"
15
17
  }
16
18
  /**
17
19
  * Base interface for all client-to-orchestrator events.
@@ -72,6 +74,21 @@ export interface FeedbackEvent extends BaseClientToOrchestratorEvent {
72
74
  feedback: string;
73
75
  rating?: number;
74
76
  }
77
+ /**
78
+ * File component of a multimodal message.
79
+ */
80
+ export interface MultimodalMessageFile {
81
+ type: "file_input";
82
+ file_id: string;
83
+ }
84
+ /**
85
+ * Event for sending multimodal messages combining text and a file reference.
86
+ */
87
+ export interface MultimodalMessageClientToOrchestratorEvent extends BaseClientToOrchestratorEvent {
88
+ type: ClientToOrchestratorEvent.MULTIMODAL_MESSAGE;
89
+ text?: UserMessageClientToOrchestratorEvent;
90
+ file?: MultimodalMessageFile;
91
+ }
75
92
  /**
76
93
  * Event for sending user audio chunks.
77
94
  */
@@ -81,4 +98,4 @@ export interface UserAudioChunkEvent {
81
98
  /**
82
99
  * Union type for all client-to-orchestrator events.
83
100
  */
84
- export type ClientToOrchestratorEventUnion = UserMessageClientToOrchestratorEvent | UserActivityClientToOrchestratorEvent | ContextualUpdateClientToOrchestratorEvent | ConversationInitiationClientDataEvent | ClientToolResultEvent | PongEvent | FeedbackEvent;
101
+ export type ClientToOrchestratorEventUnion = UserMessageClientToOrchestratorEvent | UserActivityClientToOrchestratorEvent | ContextualUpdateClientToOrchestratorEvent | ConversationInitiationClientDataEvent | ClientToolResultEvent | PongEvent | FeedbackEvent | MultimodalMessageClientToOrchestratorEvent;
@@ -16,4 +16,6 @@ var ClientToOrchestratorEvent;
16
16
  /** User text message. */
17
17
  ClientToOrchestratorEvent["USER_MESSAGE"] = "user_message";
18
18
  ClientToOrchestratorEvent["USER_ACTIVITY"] = "user_activity";
19
+ /** Multimodal message combining text and a file reference. */
20
+ ClientToOrchestratorEvent["MULTIMODAL_MESSAGE"] = "multimodal_message";
19
21
  })(ClientToOrchestratorEvent || (exports.ClientToOrchestratorEvent = ClientToOrchestratorEvent = {}));
@@ -111,6 +111,7 @@ export declare class AgentsClient {
111
111
  * search: "search",
112
112
  * archived: true,
113
113
  * showOnlyOwnedAgents: true,
114
+ * createdByUserId: "created_by_user_id",
114
115
  * sortDirection: "asc",
115
116
  * sortBy: "name",
116
117
  * cursor: "cursor"