@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
@@ -163,12 +163,7 @@ class AgentsClient {
163
163
  if (_response.error.reason === "status-code") {
164
164
  switch (_response.error.statusCode) {
165
165
  case 422:
166
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
167
- unrecognizedObjectKeys: "passthrough",
168
- allowUnrecognizedUnionMembers: true,
169
- allowUnrecognizedEnumValues: true,
170
- breadcrumbsPrefix: ["response"],
171
- }), _response.rawResponse);
166
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
172
167
  default:
173
168
  throw new errors.ElevenLabsError({
174
169
  statusCode: _response.error.statusCode,
@@ -235,12 +230,7 @@ class AgentsClient {
235
230
  if (_response.error.reason === "status-code") {
236
231
  switch (_response.error.statusCode) {
237
232
  case 422:
238
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
239
- unrecognizedObjectKeys: "passthrough",
240
- allowUnrecognizedUnionMembers: true,
241
- allowUnrecognizedEnumValues: true,
242
- breadcrumbsPrefix: ["response"],
243
- }), _response.rawResponse);
233
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
244
234
  default:
245
235
  throw new errors.ElevenLabsError({
246
236
  statusCode: _response.error.statusCode,
@@ -287,12 +277,7 @@ class AgentsClient {
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,
@@ -364,12 +349,7 @@ class AgentsClient {
364
349
  if (_response.error.reason === "status-code") {
365
350
  switch (_response.error.statusCode) {
366
351
  case 422:
367
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
368
- unrecognizedObjectKeys: "passthrough",
369
- allowUnrecognizedUnionMembers: true,
370
- allowUnrecognizedEnumValues: true,
371
- breadcrumbsPrefix: ["response"],
372
- }), _response.rawResponse);
352
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
373
353
  default:
374
354
  throw new errors.ElevenLabsError({
375
355
  statusCode: _response.error.statusCode,
@@ -395,6 +375,7 @@ class AgentsClient {
395
375
  * search: "search",
396
376
  * archived: true,
397
377
  * showOnlyOwnedAgents: true,
378
+ * createdByUserId: "created_by_user_id",
398
379
  * sortDirection: "asc",
399
380
  * sortBy: "name",
400
381
  * cursor: "cursor"
@@ -406,7 +387,7 @@ class AgentsClient {
406
387
  __list() {
407
388
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
408
389
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
409
- const { pageSize, search, archived, showOnlyOwnedAgents, sortDirection, sortBy, cursor } = request;
390
+ const { pageSize, search, archived, showOnlyOwnedAgents, createdByUserId, sortDirection, sortBy, cursor } = request;
410
391
  const _queryParams = {};
411
392
  if (pageSize != null) {
412
393
  _queryParams.page_size = pageSize.toString();
@@ -420,6 +401,9 @@ class AgentsClient {
420
401
  if (showOnlyOwnedAgents != null) {
421
402
  _queryParams.show_only_owned_agents = showOnlyOwnedAgents.toString();
422
403
  }
404
+ if (createdByUserId != null) {
405
+ _queryParams.created_by_user_id = createdByUserId;
406
+ }
423
407
  if (sortDirection != null) {
424
408
  _queryParams.sort_direction = serializers.SortDirection.jsonOrThrow(sortDirection, {
425
409
  unrecognizedObjectKeys: "strip",
@@ -457,12 +441,7 @@ class AgentsClient {
457
441
  if (_response.error.reason === "status-code") {
458
442
  switch (_response.error.statusCode) {
459
443
  case 422:
460
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
461
- unrecognizedObjectKeys: "passthrough",
462
- allowUnrecognizedUnionMembers: true,
463
- allowUnrecognizedEnumValues: true,
464
- breadcrumbsPrefix: ["response"],
465
- }), _response.rawResponse);
444
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
466
445
  default:
467
446
  throw new errors.ElevenLabsError({
468
447
  statusCode: _response.error.statusCode,
@@ -521,12 +500,7 @@ class AgentsClient {
521
500
  if (_response.error.reason === "status-code") {
522
501
  switch (_response.error.statusCode) {
523
502
  case 422:
524
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
525
- unrecognizedObjectKeys: "passthrough",
526
- allowUnrecognizedUnionMembers: true,
527
- allowUnrecognizedEnumValues: true,
528
- breadcrumbsPrefix: ["response"],
529
- }), _response.rawResponse);
503
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
530
504
  default:
531
505
  throw new errors.ElevenLabsError({
532
506
  statusCode: _response.error.statusCode,
@@ -593,12 +567,7 @@ class AgentsClient {
593
567
  if (_response.error.reason === "status-code") {
594
568
  switch (_response.error.statusCode) {
595
569
  case 422:
596
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
597
- unrecognizedObjectKeys: "passthrough",
598
- allowUnrecognizedUnionMembers: true,
599
- allowUnrecognizedEnumValues: true,
600
- breadcrumbsPrefix: ["response"],
601
- }), _response.rawResponse);
570
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
602
571
  default:
603
572
  throw new errors.ElevenLabsError({
604
573
  statusCode: _response.error.statusCode,
@@ -657,12 +626,7 @@ class AgentsClient {
657
626
  if (_response.error.reason === "status-code") {
658
627
  switch (_response.error.statusCode) {
659
628
  case 422:
660
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
661
- unrecognizedObjectKeys: "passthrough",
662
- allowUnrecognizedUnionMembers: true,
663
- allowUnrecognizedEnumValues: true,
664
- breadcrumbsPrefix: ["response"],
665
- }), _response.rawResponse);
629
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
666
630
  default:
667
631
  throw new errors.ElevenLabsError({
668
632
  statusCode: _response.error.statusCode,
@@ -727,12 +691,7 @@ class AgentsClient {
727
691
  if (_response.error.reason === "status-code") {
728
692
  switch (_response.error.statusCode) {
729
693
  case 422:
730
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
731
- unrecognizedObjectKeys: "passthrough",
732
- allowUnrecognizedUnionMembers: true,
733
- allowUnrecognizedEnumValues: true,
734
- breadcrumbsPrefix: ["response"],
735
- }), _response.rawResponse);
694
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
736
695
  default:
737
696
  throw new errors.ElevenLabsError({
738
697
  statusCode: _response.error.statusCode,
@@ -6,6 +6,7 @@ import type * as ElevenLabs from "../../../../../../index";
6
6
  * search: "search",
7
7
  * archived: true,
8
8
  * showOnlyOwnedAgents: true,
9
+ * createdByUserId: "created_by_user_id",
9
10
  * sortDirection: "asc",
10
11
  * sortBy: "name",
11
12
  * cursor: "cursor"
@@ -18,8 +19,10 @@ export interface AgentsListRequest {
18
19
  search?: string;
19
20
  /** Filter agents by archived status */
20
21
  archived?: boolean;
21
- /** If set to true, the endpoint will omit any agents that were shared with you by someone else and include only the ones you own */
22
+ /** If set to true, the endpoint will omit any agents that were shared with you by someone else and include only the ones you own. Deprecated: use created_by_user_id instead. */
22
23
  showOnlyOwnedAgents?: boolean;
24
+ /** Filter agents by creator user ID. When set, only agents created by this user are returned. Takes precedence over show_only_owned_agents. Use '@me' to refer to the authenticated user. */
25
+ createdByUserId?: string;
23
26
  /** The direction to sort the results */
24
27
  sortDirection?: ElevenLabs.SortDirection;
25
28
  /** The field to sort the results by */
@@ -122,12 +122,7 @@ class BranchesClient {
122
122
  if (_response.error.reason === "status-code") {
123
123
  switch (_response.error.statusCode) {
124
124
  case 422:
125
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
126
- unrecognizedObjectKeys: "passthrough",
127
- allowUnrecognizedUnionMembers: true,
128
- allowUnrecognizedEnumValues: true,
129
- breadcrumbsPrefix: ["response"],
130
- }), _response.rawResponse);
125
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
131
126
  default:
132
127
  throw new errors.ElevenLabsError({
133
128
  statusCode: _response.error.statusCode,
@@ -190,12 +185,7 @@ class BranchesClient {
190
185
  if (_response.error.reason === "status-code") {
191
186
  switch (_response.error.statusCode) {
192
187
  case 422:
193
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
194
- unrecognizedObjectKeys: "passthrough",
195
- allowUnrecognizedUnionMembers: true,
196
- allowUnrecognizedEnumValues: true,
197
- breadcrumbsPrefix: ["response"],
198
- }), _response.rawResponse);
188
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
199
189
  default:
200
190
  throw new errors.ElevenLabsError({
201
191
  statusCode: _response.error.statusCode,
@@ -251,12 +241,7 @@ class BranchesClient {
251
241
  if (_response.error.reason === "status-code") {
252
242
  switch (_response.error.statusCode) {
253
243
  case 422:
254
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
255
- unrecognizedObjectKeys: "passthrough",
256
- allowUnrecognizedUnionMembers: true,
257
- allowUnrecognizedEnumValues: true,
258
- breadcrumbsPrefix: ["response"],
259
- }), _response.rawResponse);
244
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
260
245
  default:
261
246
  throw new errors.ElevenLabsError({
262
247
  statusCode: _response.error.statusCode,
@@ -316,12 +301,7 @@ class BranchesClient {
316
301
  if (_response.error.reason === "status-code") {
317
302
  switch (_response.error.statusCode) {
318
303
  case 422:
319
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
320
- unrecognizedObjectKeys: "passthrough",
321
- allowUnrecognizedUnionMembers: true,
322
- allowUnrecognizedEnumValues: true,
323
- breadcrumbsPrefix: ["response"],
324
- }), _response.rawResponse);
304
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
325
305
  default:
326
306
  throw new errors.ElevenLabsError({
327
307
  statusCode: _response.error.statusCode,
@@ -378,12 +358,7 @@ class BranchesClient {
378
358
  if (_response.error.reason === "status-code") {
379
359
  switch (_response.error.statusCode) {
380
360
  case 422:
381
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
382
- unrecognizedObjectKeys: "passthrough",
383
- allowUnrecognizedUnionMembers: true,
384
- allowUnrecognizedEnumValues: true,
385
- breadcrumbsPrefix: ["response"],
386
- }), _response.rawResponse);
361
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
387
362
  default:
388
363
  throw new errors.ElevenLabsError({
389
364
  statusCode: _response.error.statusCode,
@@ -113,12 +113,7 @@ class DeploymentsClient {
113
113
  if (_response.error.reason === "status-code") {
114
114
  switch (_response.error.statusCode) {
115
115
  case 422:
116
- throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
117
- unrecognizedObjectKeys: "passthrough",
118
- allowUnrecognizedUnionMembers: true,
119
- allowUnrecognizedEnumValues: true,
120
- breadcrumbsPrefix: ["response"],
121
- }), _response.rawResponse);
116
+ throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
122
117
  default:
123
118
  throw new errors.ElevenLabsError({
124
119
  statusCode: _response.error.statusCode,
@@ -36,11 +36,21 @@ export declare class DraftsClient {
36
36
  * forwardCondition: {
37
37
  * type: "expression",
38
38
  * expression: {
39
- * type: "and_operator",
40
- * children: [{
41
- * type: "boolean_literal",
42
- * value: true
43
- * }]
39
+ * type: "add_operator",
40
+ * left: {
41
+ * type: "and_operator",
42
+ * children: [{
43
+ * type: "boolean_literal",
44
+ * value: true
45
+ * }]
46
+ * },
47
+ * right: {
48
+ * type: "and_operator",
49
+ * children: [{
50
+ * type: "boolean_literal",
51
+ * value: true
52
+ * }]
53
+ * }
44
54
  * }
45
55
  * }
46
56
  * },
@@ -50,11 +60,21 @@ export declare class DraftsClient {
50
60
  * forwardCondition: {
51
61
  * type: "expression",
52
62
  * expression: {
53
- * type: "and_operator",
54
- * children: [{
55
- * type: "boolean_literal",
56
- * value: true
57
- * }]
63
+ * type: "add_operator",
64
+ * left: {
65
+ * type: "and_operator",
66
+ * children: [{
67
+ * type: "boolean_literal",
68
+ * value: true
69
+ * }]
70
+ * },
71
+ * right: {
72
+ * type: "and_operator",
73
+ * children: [{
74
+ * type: "boolean_literal",
75
+ * value: true
76
+ * }]
77
+ * }
58
78
  * }
59
79
  * }
60
80
  * },
@@ -64,11 +84,21 @@ export declare class DraftsClient {
64
84
  * forwardCondition: {
65
85
  * type: "expression",
66
86
  * expression: {
67
- * type: "and_operator",
68
- * children: [{
69
- * type: "boolean_literal",
70
- * value: true
71
- * }]
87
+ * type: "add_operator",
88
+ * left: {
89
+ * type: "and_operator",
90
+ * children: [{
91
+ * type: "boolean_literal",
92
+ * value: true
93
+ * }]
94
+ * },
95
+ * right: {
96
+ * type: "and_operator",
97
+ * children: [{
98
+ * type: "boolean_literal",
99
+ * value: true
100
+ * }]
101
+ * }
72
102
  * }
73
103
  * }
74
104
  * },
@@ -78,11 +108,21 @@ export declare class DraftsClient {
78
108
  * forwardCondition: {
79
109
  * type: "expression",
80
110
  * expression: {
81
- * type: "and_operator",
82
- * children: [{
83
- * type: "boolean_literal",
84
- * value: true
85
- * }]
111
+ * type: "add_operator",
112
+ * left: {
113
+ * type: "and_operator",
114
+ * children: [{
115
+ * type: "boolean_literal",
116
+ * value: true
117
+ * }]
118
+ * },
119
+ * right: {
120
+ * type: "and_operator",
121
+ * children: [{
122
+ * type: "boolean_literal",
123
+ * value: true
124
+ * }]
125
+ * }
86
126
  * }
87
127
  * }
88
128
  * },
@@ -92,11 +132,21 @@ export declare class DraftsClient {
92
132
  * forwardCondition: {
93
133
  * type: "expression",
94
134
  * expression: {
95
- * type: "and_operator",
96
- * children: [{
97
- * type: "boolean_literal",
98
- * value: true
99
- * }]
135
+ * type: "add_operator",
136
+ * left: {
137
+ * type: "and_operator",
138
+ * children: [{
139
+ * type: "boolean_literal",
140
+ * value: true
141
+ * }]
142
+ * },
143
+ * right: {
144
+ * type: "and_operator",
145
+ * children: [{
146
+ * type: "boolean_literal",
147
+ * value: true
148
+ * }]
149
+ * }
100
150
  * }
101
151
  * }
102
152
  * },
@@ -106,11 +156,21 @@ export declare class DraftsClient {
106
156
  * forwardCondition: {
107
157
  * type: "expression",
108
158
  * expression: {
109
- * type: "and_operator",
110
- * children: [{
111
- * type: "boolean_literal",
112
- * value: true
113
- * }]
159
+ * type: "add_operator",
160
+ * left: {
161
+ * type: "and_operator",
162
+ * children: [{
163
+ * type: "boolean_literal",
164
+ * value: true
165
+ * }]
166
+ * },
167
+ * right: {
168
+ * type: "and_operator",
169
+ * children: [{
170
+ * type: "boolean_literal",
171
+ * value: true
172
+ * }]
173
+ * }
114
174
  * }
115
175
  * }
116
176
  * },
@@ -120,11 +180,21 @@ export declare class DraftsClient {
120
180
  * forwardCondition: {
121
181
  * type: "expression",
122
182
  * expression: {
123
- * type: "and_operator",
124
- * children: [{
125
- * type: "boolean_literal",
126
- * value: true
127
- * }]
183
+ * type: "add_operator",
184
+ * left: {
185
+ * type: "and_operator",
186
+ * children: [{
187
+ * type: "boolean_literal",
188
+ * value: true
189
+ * }]
190
+ * },
191
+ * right: {
192
+ * type: "and_operator",
193
+ * children: [{
194
+ * type: "boolean_literal",
195
+ * value: true
196
+ * }]
197
+ * }
128
198
  * }
129
199
  * }
130
200
  * },
@@ -134,11 +204,21 @@ export declare class DraftsClient {
134
204
  * forwardCondition: {
135
205
  * type: "expression",
136
206
  * expression: {
137
- * type: "and_operator",
138
- * children: [{
139
- * type: "boolean_literal",
140
- * value: true
141
- * }]
207
+ * type: "add_operator",
208
+ * left: {
209
+ * type: "and_operator",
210
+ * children: [{
211
+ * type: "boolean_literal",
212
+ * value: true
213
+ * }]
214
+ * },
215
+ * right: {
216
+ * type: "and_operator",
217
+ * children: [{
218
+ * type: "boolean_literal",
219
+ * value: true
220
+ * }]
221
+ * }
142
222
  * }
143
223
  * }
144
224
  * }