@elevenlabs/elevenlabs-js 2.39.0 → 2.40.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 (1472) hide show
  1. package/BaseClient.js +2 -2
  2. package/Client.d.ts +3 -0
  3. package/Client.js +45 -40
  4. package/api/errors/BadRequestError.d.ts +1 -2
  5. package/api/resources/conversationalAi/conversation/Conversation.d.ts +12 -0
  6. package/api/resources/conversationalAi/conversation/Conversation.js +18 -0
  7. package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +25 -0
  8. package/api/resources/conversationalAi/conversation/events.d.ts +19 -2
  9. package/api/resources/conversationalAi/conversation/events.js +2 -0
  10. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +1 -0
  11. package/api/resources/conversationalAi/resources/agents/client/Client.js +5 -1
  12. package/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +4 -1
  13. package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +4 -2
  14. package/api/resources/conversationalAi/resources/conversations/client/Client.js +29 -5
  15. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +4 -1
  16. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +4 -1
  17. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +4 -0
  18. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +17 -1
  19. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +4 -0
  20. package/api/resources/conversationalAi/resources/index.d.ts +0 -1
  21. package/api/resources/conversationalAi/resources/index.js +0 -1
  22. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +1 -0
  23. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +5 -1
  24. package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +4 -1
  25. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +13 -0
  26. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +60 -0
  27. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  28. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  29. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +16 -0
  30. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  31. package/{dist/serialization/resources/conversationalAi/resources/twilio → api/resources/conversationalAi/resources/knowledgeBase/resources/document}/types/index.js +1 -1
  32. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +4 -0
  33. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +4 -0
  34. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +5 -2
  35. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +16 -6
  36. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -1
  37. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +15 -0
  38. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.d.ts +11 -0
  39. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.d.ts +1 -0
  40. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.js +2 -0
  41. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
  42. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +1 -0
  43. package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  44. package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  45. package/api/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +1 -1
  46. package/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +5 -0
  47. package/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +1 -1
  48. package/api/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  49. package/api/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  50. package/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +2 -0
  51. package/api/resources/conversationalAi/resources/tools/client/Client.d.ts +6 -2
  52. package/api/resources/conversationalAi/resources/tools/client/Client.js +19 -7
  53. package/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.d.ts +10 -0
  54. package/api/resources/conversationalAi/resources/tools/client/requests/ToolsListRequest.d.ts +4 -1
  55. package/api/resources/conversationalAi/resources/tools/client/requests/index.d.ts +1 -0
  56. package/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +1 -1
  57. package/api/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  58. package/api/resources/conversationalAi/resources/twilio/index.js +0 -1
  59. package/api/resources/environmentVariables/client/Client.d.ts +86 -0
  60. package/api/resources/environmentVariables/client/Client.js +362 -0
  61. package/api/resources/environmentVariables/client/index.d.ts +1 -0
  62. package/{serialization/resources/conversationalAi/resources/twilio/types → api/resources/environmentVariables/client}/index.js +1 -1
  63. package/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.d.ts +23 -0
  64. package/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +11 -0
  65. package/api/resources/environmentVariables/client/requests/index.d.ts +2 -0
  66. package/api/resources/environmentVariables/client/requests/index.js +2 -0
  67. package/api/resources/environmentVariables/index.d.ts +2 -0
  68. package/{dist/api/resources/conversationalAi/resources/twilio/types → api/resources/environmentVariables}/index.js +2 -1
  69. package/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +13 -0
  70. package/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +6 -0
  71. package/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +9 -0
  72. package/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +2 -0
  73. package/api/resources/environmentVariables/types/index.d.ts +3 -0
  74. package/api/resources/environmentVariables/types/index.js +19 -0
  75. package/api/resources/history/client/Client.js +1 -6
  76. package/api/resources/index.d.ts +3 -0
  77. package/api/resources/index.js +4 -1
  78. package/api/resources/speechToText/client/Client.js +9 -0
  79. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +5 -1
  80. package/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +4 -0
  81. package/api/resources/speechToText/types/index.d.ts +1 -0
  82. package/api/resources/speechToText/types/index.js +1 -0
  83. package/api/resources/workspace/client/Client.d.ts +3 -0
  84. package/api/resources/workspace/client/Client.js +13 -8
  85. package/api/resources/workspace/resources/authConnections/client/Client.d.ts +58 -0
  86. package/api/resources/workspace/resources/authConnections/client/Client.js +243 -0
  87. package/api/resources/workspace/resources/authConnections/client/index.d.ts +1 -0
  88. package/api/resources/workspace/resources/authConnections/client/index.js +2 -0
  89. package/api/resources/workspace/resources/authConnections/index.d.ts +2 -0
  90. package/api/resources/{conversationalAi/resources/twilio/types → workspace/resources/authConnections}/index.js +2 -1
  91. package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +22 -0
  92. package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +31 -0
  93. package/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  94. package/api/resources/workspace/resources/authConnections/types/index.js +18 -0
  95. package/api/resources/workspace/resources/index.d.ts +2 -0
  96. package/api/resources/workspace/resources/index.js +3 -1
  97. package/api/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  98. package/api/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  99. package/api/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +18 -0
  100. package/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +6 -0
  101. package/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +9 -0
  102. package/api/types/AstAndOperatorNodeInputChildrenItem.d.ts +6 -2
  103. package/api/types/AstAndOperatorNodeOutputChildrenItem.d.ts +4 -1
  104. package/api/types/AstConditionalOperatorNodeInput.d.ts +9 -0
  105. package/api/types/AstConditionalOperatorNodeInputCondition.d.ts +50 -0
  106. package/api/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +50 -0
  107. package/api/types/AstConditionalOperatorNodeInputFalseExpression.js +3 -0
  108. package/api/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +50 -0
  109. package/api/types/AstConditionalOperatorNodeInputTrueExpression.js +3 -0
  110. package/api/types/AstConditionalOperatorNodeOutput.d.ts +9 -0
  111. package/api/types/AstConditionalOperatorNodeOutput.js +3 -0
  112. package/api/types/AstConditionalOperatorNodeOutputCondition.d.ts +49 -0
  113. package/api/types/AstConditionalOperatorNodeOutputCondition.js +3 -0
  114. package/api/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +49 -0
  115. package/api/types/AstConditionalOperatorNodeOutputFalseExpression.js +3 -0
  116. package/api/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +49 -0
  117. package/api/types/AstConditionalOperatorNodeOutputTrueExpression.js +3 -0
  118. package/api/types/AstEqualsOperatorNodeInputLeft.d.ts +6 -2
  119. package/api/types/AstEqualsOperatorNodeInputRight.d.ts +6 -2
  120. package/api/types/AstEqualsOperatorNodeOutputLeft.d.ts +4 -1
  121. package/api/types/AstEqualsOperatorNodeOutputRight.d.ts +4 -1
  122. package/api/types/AstGreaterThanOperatorNodeInputLeft.d.ts +6 -2
  123. package/api/types/AstGreaterThanOperatorNodeInputRight.d.ts +6 -2
  124. package/api/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +4 -1
  125. package/api/types/AstGreaterThanOperatorNodeOutputRight.d.ts +4 -1
  126. package/api/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  127. package/api/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  128. package/api/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  129. package/api/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  130. package/api/types/AstLessThanOperatorNodeInputLeft.d.ts +6 -2
  131. package/api/types/AstLessThanOperatorNodeInputRight.d.ts +6 -2
  132. package/api/types/AstLessThanOperatorNodeOutputLeft.d.ts +4 -1
  133. package/api/types/AstLessThanOperatorNodeOutputRight.d.ts +4 -1
  134. package/api/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  135. package/api/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  136. package/api/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  137. package/api/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  138. package/api/types/AstNotEqualsOperatorNodeInputLeft.d.ts +6 -2
  139. package/api/types/AstNotEqualsOperatorNodeInputRight.d.ts +6 -2
  140. package/api/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +4 -1
  141. package/api/types/AstNotEqualsOperatorNodeOutputRight.d.ts +4 -1
  142. package/api/types/AstOrOperatorNodeInputChildrenItem.d.ts +6 -2
  143. package/api/types/AstOrOperatorNodeOutputChildrenItem.d.ts +4 -1
  144. package/api/types/AstllmNodeInput.d.ts +2 -4
  145. package/api/types/AstllmNodeInputPrompt.d.ts +5 -0
  146. package/api/types/AstllmNodeInputPrompt.js +3 -0
  147. package/api/types/AstllmNodeInputValueSchema.d.ts +6 -0
  148. package/api/types/AstllmNodeInputValueSchema.js +3 -0
  149. package/api/types/AstllmNodeOutput.d.ts +4 -1
  150. package/api/types/AuthConnectionDependencies.d.ts +9 -0
  151. package/api/types/AuthConnectionDependencies.js +3 -0
  152. package/api/types/AuthConnectionDependenciesMcpServersItem.d.ts +10 -0
  153. package/api/types/AuthConnectionDependenciesMcpServersItem.js +3 -0
  154. package/api/types/AuthConnectionDependenciesToolsItem.d.ts +10 -0
  155. package/api/types/AuthConnectionDependenciesToolsItem.js +3 -0
  156. package/api/types/AutoSyncInfo.d.ts +10 -0
  157. package/api/types/AutoSyncInfo.js +3 -0
  158. package/api/types/BasicAuthResponse.d.ts +11 -0
  159. package/api/types/BasicAuthResponse.js +3 -0
  160. package/api/types/BearerAuthResponse.d.ts +10 -0
  161. package/api/types/BearerAuthResponse.js +3 -0
  162. package/api/types/CaptionStyleModel.d.ts +2 -0
  163. package/api/types/CaptionStyleModelTextBlendMode.d.ts +6 -0
  164. package/api/types/CaptionStyleModelTextBlendMode.js +9 -0
  165. package/api/types/CaptionStyleModelTextTransform.d.ts +5 -0
  166. package/api/types/CaptionStyleModelTextTransform.js +8 -0
  167. package/api/types/CaptionStyleModelTextWeight.d.ts +1 -0
  168. package/api/types/CaptionStyleModelTextWeight.js +1 -0
  169. package/api/types/ContentConfig.d.ts +7 -7
  170. package/api/types/ContentGuardrailInput.d.ts +1 -0
  171. package/api/types/ContentGuardrailInputTriggerAction.d.ts +10 -0
  172. package/api/types/ContentGuardrailInputTriggerAction.js +3 -0
  173. package/api/types/ContentGuardrailOutput.d.ts +1 -0
  174. package/api/types/ContentGuardrailOutputTriggerAction.d.ts +10 -0
  175. package/api/types/ContentGuardrailOutputTriggerAction.js +3 -0
  176. package/api/types/ContentThresholdGuardrail.d.ts +5 -0
  177. package/api/types/ContentThresholdGuardrail.js +3 -0
  178. package/api/types/ContentThresholdGuardrailThreshold.d.ts +1 -0
  179. package/api/types/ContentThresholdGuardrailThreshold.js +3 -0
  180. package/api/types/Contributor.d.ts +2 -0
  181. package/api/types/ConvAiEnvVarLocator.d.ts +6 -0
  182. package/api/types/ConvAiEnvVarLocator.js +3 -0
  183. package/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +1 -1
  184. package/api/types/{ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts → ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts} +4 -4
  185. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +3 -0
  186. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +16 -0
  187. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +3 -0
  188. package/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
  189. package/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
  190. package/api/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +1 -1
  191. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +7 -0
  192. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +3 -0
  193. package/api/types/{ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts → ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts} +1 -1
  194. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +3 -0
  195. package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +1 -1
  196. package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +1 -1
  197. package/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +1 -1
  198. package/api/types/ConversationSummaryResponseModel.d.ts +2 -1
  199. package/api/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +7 -0
  200. package/api/types/CreateAuthConnectionEnvironmentVariableRequest.js +3 -0
  201. package/api/types/CreateBasicAuthRequest.d.ts +9 -0
  202. package/api/types/CreateBasicAuthRequest.js +3 -0
  203. package/api/types/CreateCustomHeaderAuthRequest.d.ts +7 -0
  204. package/api/types/CreateCustomHeaderAuthRequest.js +3 -0
  205. package/api/types/CreateOAuth2ClientCredsRequest.d.ts +15 -0
  206. package/api/types/CreateOAuth2ClientCredsRequest.js +3 -0
  207. package/api/types/CreateOAuth2JwtRequest.d.ts +27 -0
  208. package/api/types/CreateOAuth2JwtRequest.js +3 -0
  209. package/api/types/CreateOAuth2JwtRequestAlgorithm.d.ts +10 -0
  210. package/api/types/CreateOAuth2JwtRequestAlgorithm.js +13 -0
  211. package/api/types/CreatePrivateKeyJwtRequest.d.ts +23 -0
  212. package/api/types/CreatePrivateKeyJwtRequest.js +3 -0
  213. package/api/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +10 -0
  214. package/api/types/CreatePrivateKeyJwtRequestAlgorithm.js +13 -0
  215. package/api/types/CreateSecretEnvironmentVariableRequest.d.ts +7 -0
  216. package/api/types/CreateSecretEnvironmentVariableRequest.js +3 -0
  217. package/api/types/CreateSimulationTestRequest.d.ts +2 -0
  218. package/api/types/CreateStringEnvironmentVariableRequest.d.ts +6 -0
  219. package/api/types/CreateStringEnvironmentVariableRequest.js +3 -0
  220. package/api/types/CustomGuardrailConfig.d.ts +1 -0
  221. package/api/types/CustomGuardrailConfigTriggerAction.d.ts +10 -0
  222. package/api/types/CustomGuardrailConfigTriggerAction.js +3 -0
  223. package/api/types/CustomHeaderAuthResponse.d.ts +12 -0
  224. package/api/types/CustomHeaderAuthResponse.js +3 -0
  225. package/api/types/CustomLlm.d.ts +1 -1
  226. package/api/types/CustomLlmApiKey.d.ts +5 -0
  227. package/api/types/CustomLlmApiKey.js +3 -0
  228. package/api/types/CustomLlmRequestHeadersValue.d.ts +1 -1
  229. package/api/types/DependentAvailableMcpServerIdentifier.d.ts +7 -0
  230. package/api/types/DependentAvailableMcpServerIdentifier.js +3 -0
  231. package/api/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  232. package/api/types/DependentAvailableMcpServerIdentifierAccessLevel.js +10 -0
  233. package/api/types/DependentIntegrationConnectionIdentifier.d.ts +7 -0
  234. package/api/types/DependentIntegrationConnectionIdentifier.js +3 -0
  235. package/api/types/DependentUnknownMcpServerIdentifier.d.ts +3 -0
  236. package/api/types/DependentUnknownMcpServerIdentifier.js +3 -0
  237. package/api/types/DirectPublishingReadResponseModel.d.ts +1 -0
  238. package/api/types/EndCallTriggerAction.d.ts +1 -0
  239. package/api/types/EndCallTriggerAction.js +3 -0
  240. package/api/types/EnvironmentAuthConnectionLocator.d.ts +8 -0
  241. package/api/types/EnvironmentAuthConnectionLocator.js +3 -0
  242. package/api/types/EnvironmentVariableAuthConnectionValue.d.ts +3 -0
  243. package/api/types/EnvironmentVariableAuthConnectionValue.js +3 -0
  244. package/api/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +3 -0
  245. package/api/types/EnvironmentVariableAuthConnectionValueRequest.js +3 -0
  246. package/api/types/EnvironmentVariableResponse.d.ts +11 -0
  247. package/api/types/EnvironmentVariableResponse.js +3 -0
  248. package/api/types/EnvironmentVariableResponseType.d.ts +6 -0
  249. package/api/types/EnvironmentVariableResponseType.js +9 -0
  250. package/api/types/EnvironmentVariableResponseValues.d.ts +2 -0
  251. package/api/types/EnvironmentVariableResponseValues.js +3 -0
  252. package/api/types/EnvironmentVariableSecretValue.d.ts +3 -0
  253. package/api/types/EnvironmentVariableSecretValue.js +3 -0
  254. package/api/types/EnvironmentVariableSecretValueRequest.d.ts +3 -0
  255. package/api/types/EnvironmentVariableSecretValueRequest.js +3 -0
  256. package/api/types/EnvironmentVariablesListResponse.d.ts +6 -0
  257. package/api/types/EnvironmentVariablesListResponse.js +3 -0
  258. package/api/types/GetConvAiSettingsResponseModel.d.ts +2 -0
  259. package/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +1 -0
  260. package/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +1 -0
  261. package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -0
  262. package/api/types/GetSimulationTestResponseModel.d.ts +2 -0
  263. package/api/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  264. package/api/types/GuardrailsV1Input.d.ts +0 -1
  265. package/api/types/GuardrailsV1Output.d.ts +0 -1
  266. package/api/types/ListAuthConnectionsResponse.d.ts +4 -0
  267. package/api/types/ListAuthConnectionsResponse.js +3 -0
  268. package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +31 -0
  269. package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.js +3 -0
  270. package/api/types/LlmLiteralJsonSchemaProperty.d.ts +7 -0
  271. package/api/types/LlmLiteralJsonSchemaProperty.js +3 -0
  272. package/api/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  273. package/api/types/LlmLiteralJsonSchemaPropertyType.js +10 -0
  274. package/api/types/McpServerConfigInput.d.ts +1 -1
  275. package/api/types/McpServerConfigInputAuthConnection.d.ts +5 -0
  276. package/api/types/McpServerConfigInputAuthConnection.js +3 -0
  277. package/api/types/McpServerConfigInputRequestHeadersValue.d.ts +1 -1
  278. package/api/types/McpServerConfigOutput.d.ts +1 -1
  279. package/api/types/McpServerConfigOutputAuthConnection.d.ts +5 -0
  280. package/api/types/McpServerConfigOutputAuthConnection.js +3 -0
  281. package/api/types/McpServerConfigOutputRequestHeadersValue.d.ts +1 -1
  282. package/api/types/OAuth2ClientCredsResponse.d.ts +16 -0
  283. package/api/types/OAuth2ClientCredsResponse.js +3 -0
  284. package/api/types/OAuth2JwtResponse.d.ts +28 -0
  285. package/api/types/OAuth2JwtResponse.js +3 -0
  286. package/api/types/OAuth2JwtResponseAlgorithm.d.ts +10 -0
  287. package/api/types/OAuth2JwtResponseAlgorithm.js +13 -0
  288. package/api/types/PlayDtmfToolConfig.d.ts +3 -1
  289. package/api/types/PreviewAudioDbModel.d.ts +2 -0
  290. package/api/types/PrivateKeyJwtResponse.d.ts +24 -0
  291. package/api/types/PrivateKeyJwtResponse.js +3 -0
  292. package/api/types/PrivateKeyJwtResponseAlgorithm.d.ts +10 -0
  293. package/api/types/PrivateKeyJwtResponseAlgorithm.js +13 -0
  294. package/api/types/ProjectExternalAudioResponseModel.d.ts +2 -1
  295. package/api/types/RetryTriggerAction.d.ts +4 -0
  296. package/api/types/RetryTriggerAction.js +3 -0
  297. package/api/types/SimulationTestModel.d.ts +2 -0
  298. package/api/types/SingleTestRunRequestModel.d.ts +4 -0
  299. package/api/types/SpeechHistoryItemResponse.d.ts +2 -0
  300. package/api/types/Subscription.d.ts +4 -0
  301. package/api/types/SystemToolConfigInputParams.d.ts +1 -16
  302. package/api/types/SystemToolConfigOutputParams.d.ts +1 -16
  303. package/api/types/TelephonyDirection.d.ts +5 -0
  304. package/api/types/{ConversationSummaryResponseModelDirection.js → TelephonyDirection.js} +2 -2
  305. package/api/types/UnitTestRunResponseModel.d.ts +3 -0
  306. package/api/types/UpdateSimulationTestRequest.d.ts +2 -0
  307. package/api/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
  308. package/api/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +5 -0
  309. package/api/types/WebhookToolApiSchemaConfigInputAuthConnection.js +3 -0
  310. package/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +1 -1
  311. package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
  312. package/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +5 -0
  313. package/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +3 -0
  314. package/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +1 -1
  315. package/api/types/WhatsAppAuthResponse.d.ts +8 -0
  316. package/api/types/WhatsAppAuthResponse.js +3 -0
  317. package/api/types/WorkflowExpressionConditionModelInputExpression.d.ts +6 -2
  318. package/api/types/WorkflowExpressionConditionModelOutputExpression.d.ts +4 -1
  319. package/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
  320. package/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
  321. package/api/types/index.d.ts +72 -10
  322. package/api/types/index.js +72 -10
  323. package/dist/BaseClient.js +2 -2
  324. package/dist/Client.d.ts +3 -0
  325. package/dist/Client.js +45 -40
  326. package/dist/api/errors/BadRequestError.d.ts +1 -2
  327. package/dist/api/resources/conversationalAi/conversation/Conversation.d.ts +12 -0
  328. package/dist/api/resources/conversationalAi/conversation/Conversation.js +18 -0
  329. package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +25 -0
  330. package/dist/api/resources/conversationalAi/conversation/events.d.ts +19 -2
  331. package/dist/api/resources/conversationalAi/conversation/events.js +2 -0
  332. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +1 -0
  333. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +5 -1
  334. package/dist/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +4 -1
  335. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +4 -2
  336. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +29 -5
  337. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +4 -1
  338. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +4 -1
  339. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +4 -0
  340. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +17 -1
  341. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +4 -0
  342. package/dist/api/resources/conversationalAi/resources/index.d.ts +0 -1
  343. package/dist/api/resources/conversationalAi/resources/index.js +0 -1
  344. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +1 -0
  345. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +5 -1
  346. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +4 -1
  347. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +13 -0
  348. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +60 -0
  349. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  350. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  351. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +16 -0
  352. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +3 -0
  353. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  354. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  355. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +4 -0
  356. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +4 -0
  357. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +5 -2
  358. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +16 -6
  359. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -1
  360. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +15 -0
  361. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.d.ts +11 -0
  362. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.js +3 -0
  363. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.d.ts +1 -0
  364. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.js +2 -0
  365. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
  366. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +1 -0
  367. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  368. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  369. package/dist/api/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +1 -1
  370. package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +5 -0
  371. package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +3 -0
  372. package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +1 -1
  373. package/dist/api/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  374. package/dist/api/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  375. package/dist/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +2 -0
  376. package/dist/api/resources/conversationalAi/resources/tools/client/Client.d.ts +6 -2
  377. package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +19 -7
  378. package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.d.ts +10 -0
  379. package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.js +3 -0
  380. package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsListRequest.d.ts +4 -1
  381. package/dist/api/resources/conversationalAi/resources/tools/client/requests/index.d.ts +1 -0
  382. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +1 -1
  383. package/dist/api/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  384. package/dist/api/resources/conversationalAi/resources/twilio/index.js +0 -1
  385. package/dist/api/resources/environmentVariables/client/Client.d.ts +86 -0
  386. package/dist/api/resources/environmentVariables/client/Client.js +362 -0
  387. package/dist/api/resources/environmentVariables/client/index.d.ts +1 -0
  388. package/dist/api/resources/environmentVariables/client/index.js +17 -0
  389. package/dist/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.d.ts +23 -0
  390. package/dist/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.js +3 -0
  391. package/dist/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +11 -0
  392. package/dist/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +3 -0
  393. package/dist/api/resources/environmentVariables/client/requests/index.d.ts +2 -0
  394. package/dist/api/resources/environmentVariables/client/requests/index.js +2 -0
  395. package/dist/api/resources/environmentVariables/index.d.ts +2 -0
  396. package/dist/api/resources/environmentVariables/index.js +18 -0
  397. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +13 -0
  398. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +3 -0
  399. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +6 -0
  400. package/dist/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +9 -0
  401. package/dist/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +2 -0
  402. package/dist/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +3 -0
  403. package/dist/api/resources/environmentVariables/types/index.d.ts +3 -0
  404. package/dist/api/resources/environmentVariables/types/index.js +19 -0
  405. package/dist/api/resources/history/client/Client.js +1 -6
  406. package/dist/api/resources/index.d.ts +3 -0
  407. package/dist/api/resources/index.js +4 -1
  408. package/dist/api/resources/speechToText/client/Client.js +9 -0
  409. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +5 -1
  410. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +4 -0
  411. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +3 -0
  412. package/dist/api/resources/speechToText/types/index.d.ts +1 -0
  413. package/dist/api/resources/speechToText/types/index.js +1 -0
  414. package/dist/api/resources/workspace/client/Client.d.ts +3 -0
  415. package/dist/api/resources/workspace/client/Client.js +13 -8
  416. package/dist/api/resources/workspace/resources/authConnections/client/Client.d.ts +58 -0
  417. package/dist/api/resources/workspace/resources/authConnections/client/Client.js +243 -0
  418. package/dist/api/resources/workspace/resources/authConnections/client/index.d.ts +1 -0
  419. package/dist/api/resources/workspace/resources/authConnections/client/index.js +2 -0
  420. package/dist/api/resources/workspace/resources/authConnections/index.d.ts +2 -0
  421. package/dist/api/resources/workspace/resources/authConnections/index.js +18 -0
  422. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +22 -0
  423. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +3 -0
  424. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +31 -0
  425. package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +3 -0
  426. package/dist/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  427. package/dist/api/resources/workspace/resources/authConnections/types/index.js +18 -0
  428. package/dist/api/resources/workspace/resources/index.d.ts +2 -0
  429. package/dist/api/resources/workspace/resources/index.js +3 -1
  430. package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  431. package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  432. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +18 -0
  433. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponse.js +3 -0
  434. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +6 -0
  435. package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +9 -0
  436. package/dist/api/types/AstAndOperatorNodeInputChildrenItem.d.ts +6 -2
  437. package/dist/api/types/AstAndOperatorNodeOutputChildrenItem.d.ts +4 -1
  438. package/dist/api/types/AstConditionalOperatorNodeInput.d.ts +9 -0
  439. package/dist/api/types/AstConditionalOperatorNodeInput.js +3 -0
  440. package/dist/api/types/AstConditionalOperatorNodeInputCondition.d.ts +50 -0
  441. package/dist/api/types/AstConditionalOperatorNodeInputCondition.js +3 -0
  442. package/dist/api/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +50 -0
  443. package/dist/api/types/AstConditionalOperatorNodeInputFalseExpression.js +3 -0
  444. package/dist/api/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +50 -0
  445. package/dist/api/types/AstConditionalOperatorNodeInputTrueExpression.js +3 -0
  446. package/dist/api/types/AstConditionalOperatorNodeOutput.d.ts +9 -0
  447. package/dist/api/types/AstConditionalOperatorNodeOutput.js +3 -0
  448. package/dist/api/types/AstConditionalOperatorNodeOutputCondition.d.ts +49 -0
  449. package/dist/api/types/AstConditionalOperatorNodeOutputCondition.js +3 -0
  450. package/dist/api/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +49 -0
  451. package/dist/api/types/AstConditionalOperatorNodeOutputFalseExpression.js +3 -0
  452. package/dist/api/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +49 -0
  453. package/dist/api/types/AstConditionalOperatorNodeOutputTrueExpression.js +3 -0
  454. package/dist/api/types/AstEqualsOperatorNodeInputLeft.d.ts +6 -2
  455. package/dist/api/types/AstEqualsOperatorNodeInputRight.d.ts +6 -2
  456. package/dist/api/types/AstEqualsOperatorNodeOutputLeft.d.ts +4 -1
  457. package/dist/api/types/AstEqualsOperatorNodeOutputRight.d.ts +4 -1
  458. package/dist/api/types/AstGreaterThanOperatorNodeInputLeft.d.ts +6 -2
  459. package/dist/api/types/AstGreaterThanOperatorNodeInputRight.d.ts +6 -2
  460. package/dist/api/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +4 -1
  461. package/dist/api/types/AstGreaterThanOperatorNodeOutputRight.d.ts +4 -1
  462. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  463. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  464. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  465. package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  466. package/dist/api/types/AstLessThanOperatorNodeInputLeft.d.ts +6 -2
  467. package/dist/api/types/AstLessThanOperatorNodeInputRight.d.ts +6 -2
  468. package/dist/api/types/AstLessThanOperatorNodeOutputLeft.d.ts +4 -1
  469. package/dist/api/types/AstLessThanOperatorNodeOutputRight.d.ts +4 -1
  470. package/dist/api/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  471. package/dist/api/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  472. package/dist/api/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  473. package/dist/api/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  474. package/dist/api/types/AstNotEqualsOperatorNodeInputLeft.d.ts +6 -2
  475. package/dist/api/types/AstNotEqualsOperatorNodeInputRight.d.ts +6 -2
  476. package/dist/api/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +4 -1
  477. package/dist/api/types/AstNotEqualsOperatorNodeOutputRight.d.ts +4 -1
  478. package/dist/api/types/AstOrOperatorNodeInputChildrenItem.d.ts +6 -2
  479. package/dist/api/types/AstOrOperatorNodeOutputChildrenItem.d.ts +4 -1
  480. package/dist/api/types/AstllmNodeInput.d.ts +2 -4
  481. package/dist/api/types/AstllmNodeInputPrompt.d.ts +5 -0
  482. package/dist/api/types/AstllmNodeInputPrompt.js +3 -0
  483. package/dist/api/types/AstllmNodeInputValueSchema.d.ts +6 -0
  484. package/dist/api/types/AstllmNodeInputValueSchema.js +3 -0
  485. package/dist/api/types/AstllmNodeOutput.d.ts +4 -1
  486. package/dist/api/types/AuthConnectionDependencies.d.ts +9 -0
  487. package/dist/api/types/AuthConnectionDependencies.js +3 -0
  488. package/dist/api/types/AuthConnectionDependenciesMcpServersItem.d.ts +10 -0
  489. package/dist/api/types/AuthConnectionDependenciesMcpServersItem.js +3 -0
  490. package/dist/api/types/AuthConnectionDependenciesToolsItem.d.ts +10 -0
  491. package/dist/api/types/AuthConnectionDependenciesToolsItem.js +3 -0
  492. package/dist/api/types/AutoSyncInfo.d.ts +10 -0
  493. package/dist/api/types/AutoSyncInfo.js +3 -0
  494. package/dist/api/types/BasicAuthResponse.d.ts +11 -0
  495. package/dist/api/types/BasicAuthResponse.js +3 -0
  496. package/dist/api/types/BearerAuthResponse.d.ts +10 -0
  497. package/dist/api/types/BearerAuthResponse.js +3 -0
  498. package/dist/api/types/CaptionStyleModel.d.ts +2 -0
  499. package/dist/api/types/CaptionStyleModelTextBlendMode.d.ts +6 -0
  500. package/dist/api/types/CaptionStyleModelTextBlendMode.js +9 -0
  501. package/dist/api/types/CaptionStyleModelTextTransform.d.ts +5 -0
  502. package/dist/api/types/CaptionStyleModelTextTransform.js +8 -0
  503. package/dist/api/types/CaptionStyleModelTextWeight.d.ts +1 -0
  504. package/dist/api/types/CaptionStyleModelTextWeight.js +1 -0
  505. package/dist/api/types/ContentConfig.d.ts +7 -7
  506. package/dist/api/types/ContentGuardrailInput.d.ts +1 -0
  507. package/dist/api/types/ContentGuardrailInputTriggerAction.d.ts +10 -0
  508. package/dist/api/types/ContentGuardrailInputTriggerAction.js +3 -0
  509. package/dist/api/types/ContentGuardrailOutput.d.ts +1 -0
  510. package/dist/api/types/ContentGuardrailOutputTriggerAction.d.ts +10 -0
  511. package/dist/api/types/ContentGuardrailOutputTriggerAction.js +3 -0
  512. package/dist/api/types/ContentThresholdGuardrail.d.ts +5 -0
  513. package/dist/api/types/ContentThresholdGuardrail.js +3 -0
  514. package/dist/api/types/ContentThresholdGuardrailThreshold.d.ts +1 -0
  515. package/dist/api/types/ContentThresholdGuardrailThreshold.js +3 -0
  516. package/dist/api/types/Contributor.d.ts +2 -0
  517. package/dist/api/types/ConvAiEnvVarLocator.d.ts +6 -0
  518. package/dist/api/types/ConvAiEnvVarLocator.js +3 -0
  519. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +1 -1
  520. package/dist/api/types/{ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts → ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts} +4 -4
  521. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +3 -0
  522. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +16 -0
  523. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +3 -0
  524. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
  525. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
  526. package/dist/api/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +1 -1
  527. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +7 -0
  528. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +3 -0
  529. package/dist/api/types/{ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts → ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts} +1 -1
  530. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +3 -0
  531. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +1 -1
  532. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +1 -1
  533. package/dist/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +1 -1
  534. package/dist/api/types/ConversationSummaryResponseModel.d.ts +2 -1
  535. package/dist/api/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +7 -0
  536. package/dist/api/types/CreateAuthConnectionEnvironmentVariableRequest.js +3 -0
  537. package/dist/api/types/CreateBasicAuthRequest.d.ts +9 -0
  538. package/dist/api/types/CreateBasicAuthRequest.js +3 -0
  539. package/dist/api/types/CreateCustomHeaderAuthRequest.d.ts +7 -0
  540. package/dist/api/types/CreateCustomHeaderAuthRequest.js +3 -0
  541. package/dist/api/types/CreateOAuth2ClientCredsRequest.d.ts +15 -0
  542. package/dist/api/types/CreateOAuth2ClientCredsRequest.js +3 -0
  543. package/dist/api/types/CreateOAuth2JwtRequest.d.ts +27 -0
  544. package/dist/api/types/CreateOAuth2JwtRequest.js +3 -0
  545. package/dist/api/types/CreateOAuth2JwtRequestAlgorithm.d.ts +10 -0
  546. package/dist/api/types/CreateOAuth2JwtRequestAlgorithm.js +13 -0
  547. package/dist/api/types/CreatePrivateKeyJwtRequest.d.ts +23 -0
  548. package/dist/api/types/CreatePrivateKeyJwtRequest.js +3 -0
  549. package/dist/api/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +10 -0
  550. package/dist/api/types/CreatePrivateKeyJwtRequestAlgorithm.js +13 -0
  551. package/dist/api/types/CreateSecretEnvironmentVariableRequest.d.ts +7 -0
  552. package/dist/api/types/CreateSecretEnvironmentVariableRequest.js +3 -0
  553. package/dist/api/types/CreateSimulationTestRequest.d.ts +2 -0
  554. package/dist/api/types/CreateStringEnvironmentVariableRequest.d.ts +6 -0
  555. package/dist/api/types/CreateStringEnvironmentVariableRequest.js +3 -0
  556. package/dist/api/types/CustomGuardrailConfig.d.ts +1 -0
  557. package/dist/api/types/CustomGuardrailConfigTriggerAction.d.ts +10 -0
  558. package/dist/api/types/CustomGuardrailConfigTriggerAction.js +3 -0
  559. package/dist/api/types/CustomHeaderAuthResponse.d.ts +12 -0
  560. package/dist/api/types/CustomHeaderAuthResponse.js +3 -0
  561. package/dist/api/types/CustomLlm.d.ts +1 -1
  562. package/dist/api/types/CustomLlmApiKey.d.ts +5 -0
  563. package/dist/api/types/CustomLlmApiKey.js +3 -0
  564. package/dist/api/types/CustomLlmRequestHeadersValue.d.ts +1 -1
  565. package/dist/api/types/DependentAvailableMcpServerIdentifier.d.ts +7 -0
  566. package/dist/api/types/DependentAvailableMcpServerIdentifier.js +3 -0
  567. package/dist/api/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  568. package/dist/api/types/DependentAvailableMcpServerIdentifierAccessLevel.js +10 -0
  569. package/dist/api/types/DependentIntegrationConnectionIdentifier.d.ts +7 -0
  570. package/dist/api/types/DependentIntegrationConnectionIdentifier.js +3 -0
  571. package/dist/api/types/DependentUnknownMcpServerIdentifier.d.ts +3 -0
  572. package/dist/api/types/DependentUnknownMcpServerIdentifier.js +3 -0
  573. package/dist/api/types/DirectPublishingReadResponseModel.d.ts +1 -0
  574. package/dist/api/types/EndCallTriggerAction.d.ts +1 -0
  575. package/dist/api/types/EndCallTriggerAction.js +3 -0
  576. package/dist/api/types/EnvironmentAuthConnectionLocator.d.ts +8 -0
  577. package/dist/api/types/EnvironmentAuthConnectionLocator.js +3 -0
  578. package/dist/api/types/EnvironmentVariableAuthConnectionValue.d.ts +3 -0
  579. package/dist/api/types/EnvironmentVariableAuthConnectionValue.js +3 -0
  580. package/dist/api/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +3 -0
  581. package/dist/api/types/EnvironmentVariableAuthConnectionValueRequest.js +3 -0
  582. package/dist/api/types/EnvironmentVariableResponse.d.ts +11 -0
  583. package/dist/api/types/EnvironmentVariableResponse.js +3 -0
  584. package/dist/api/types/EnvironmentVariableResponseType.d.ts +6 -0
  585. package/dist/api/types/EnvironmentVariableResponseType.js +9 -0
  586. package/dist/api/types/EnvironmentVariableResponseValues.d.ts +2 -0
  587. package/dist/api/types/EnvironmentVariableResponseValues.js +3 -0
  588. package/dist/api/types/EnvironmentVariableSecretValue.d.ts +3 -0
  589. package/dist/api/types/EnvironmentVariableSecretValue.js +3 -0
  590. package/dist/api/types/EnvironmentVariableSecretValueRequest.d.ts +3 -0
  591. package/dist/api/types/EnvironmentVariableSecretValueRequest.js +3 -0
  592. package/dist/api/types/EnvironmentVariablesListResponse.d.ts +6 -0
  593. package/dist/api/types/EnvironmentVariablesListResponse.js +3 -0
  594. package/dist/api/types/GetConvAiSettingsResponseModel.d.ts +2 -0
  595. package/dist/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +1 -0
  596. package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +1 -0
  597. package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -0
  598. package/dist/api/types/GetSimulationTestResponseModel.d.ts +2 -0
  599. package/dist/api/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  600. package/dist/api/types/GuardrailsV1Input.d.ts +0 -1
  601. package/dist/api/types/GuardrailsV1Output.d.ts +0 -1
  602. package/dist/api/types/ListAuthConnectionsResponse.d.ts +4 -0
  603. package/dist/api/types/ListAuthConnectionsResponse.js +3 -0
  604. package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +31 -0
  605. package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.js +3 -0
  606. package/dist/api/types/LlmLiteralJsonSchemaProperty.d.ts +7 -0
  607. package/dist/api/types/LlmLiteralJsonSchemaProperty.js +3 -0
  608. package/dist/api/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  609. package/dist/api/types/LlmLiteralJsonSchemaPropertyType.js +10 -0
  610. package/dist/api/types/McpServerConfigInput.d.ts +1 -1
  611. package/dist/api/types/McpServerConfigInputAuthConnection.d.ts +5 -0
  612. package/dist/api/types/McpServerConfigInputAuthConnection.js +3 -0
  613. package/dist/api/types/McpServerConfigInputRequestHeadersValue.d.ts +1 -1
  614. package/dist/api/types/McpServerConfigOutput.d.ts +1 -1
  615. package/dist/api/types/McpServerConfigOutputAuthConnection.d.ts +5 -0
  616. package/dist/api/types/McpServerConfigOutputAuthConnection.js +3 -0
  617. package/dist/api/types/McpServerConfigOutputRequestHeadersValue.d.ts +1 -1
  618. package/dist/api/types/OAuth2ClientCredsResponse.d.ts +16 -0
  619. package/dist/api/types/OAuth2ClientCredsResponse.js +3 -0
  620. package/dist/api/types/OAuth2JwtResponse.d.ts +28 -0
  621. package/dist/api/types/OAuth2JwtResponse.js +3 -0
  622. package/dist/api/types/OAuth2JwtResponseAlgorithm.d.ts +10 -0
  623. package/dist/api/types/OAuth2JwtResponseAlgorithm.js +13 -0
  624. package/dist/api/types/PlayDtmfToolConfig.d.ts +3 -1
  625. package/dist/api/types/PreviewAudioDbModel.d.ts +2 -0
  626. package/dist/api/types/PrivateKeyJwtResponse.d.ts +24 -0
  627. package/dist/api/types/PrivateKeyJwtResponse.js +3 -0
  628. package/dist/api/types/PrivateKeyJwtResponseAlgorithm.d.ts +10 -0
  629. package/dist/api/types/PrivateKeyJwtResponseAlgorithm.js +13 -0
  630. package/dist/api/types/ProjectExternalAudioResponseModel.d.ts +2 -1
  631. package/dist/api/types/RetryTriggerAction.d.ts +4 -0
  632. package/dist/api/types/RetryTriggerAction.js +3 -0
  633. package/dist/api/types/SimulationTestModel.d.ts +2 -0
  634. package/dist/api/types/SingleTestRunRequestModel.d.ts +4 -0
  635. package/dist/api/types/SpeechHistoryItemResponse.d.ts +2 -0
  636. package/dist/api/types/Subscription.d.ts +4 -0
  637. package/dist/api/types/SystemToolConfigInputParams.d.ts +1 -16
  638. package/dist/api/types/SystemToolConfigOutputParams.d.ts +1 -16
  639. package/dist/api/types/TelephonyDirection.d.ts +5 -0
  640. package/dist/api/types/{ConversationSummaryResponseModelDirection.js → TelephonyDirection.js} +2 -2
  641. package/dist/api/types/UnitTestRunResponseModel.d.ts +3 -0
  642. package/dist/api/types/UpdateSimulationTestRequest.d.ts +2 -0
  643. package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
  644. package/dist/api/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +5 -0
  645. package/dist/api/types/WebhookToolApiSchemaConfigInputAuthConnection.js +3 -0
  646. package/dist/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +1 -1
  647. package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
  648. package/dist/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +5 -0
  649. package/dist/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +3 -0
  650. package/dist/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +1 -1
  651. package/dist/api/types/WhatsAppAuthResponse.d.ts +8 -0
  652. package/dist/api/types/WhatsAppAuthResponse.js +3 -0
  653. package/dist/api/types/WorkflowExpressionConditionModelInputExpression.d.ts +6 -2
  654. package/dist/api/types/WorkflowExpressionConditionModelOutputExpression.d.ts +4 -1
  655. package/dist/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
  656. package/dist/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
  657. package/dist/api/types/index.d.ts +72 -10
  658. package/dist/api/types/index.js +72 -10
  659. package/dist/serialization/resources/conversationalAi/resources/index.d.ts +0 -1
  660. package/dist/serialization/resources/conversationalAi/resources/index.js +0 -1
  661. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  662. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  663. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +23 -0
  664. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +53 -0
  665. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  666. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  667. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +2 -0
  668. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.js +2 -0
  669. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
  670. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +2 -0
  671. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  672. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  673. package/dist/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +2 -2
  674. package/dist/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.js +2 -2
  675. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +9 -0
  676. package/{serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js → dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js} +4 -2
  677. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +2 -1
  678. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.js +7 -1
  679. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  680. package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  681. package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +1 -0
  682. package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +1 -0
  683. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +2 -2
  684. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +2 -2
  685. package/dist/serialization/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  686. package/dist/serialization/resources/conversationalAi/resources/twilio/index.js +0 -1
  687. package/dist/serialization/resources/environmentVariables/client/index.d.ts +1 -0
  688. package/dist/serialization/resources/environmentVariables/client/index.js +17 -0
  689. package/dist/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +10 -0
  690. package/dist/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +42 -0
  691. package/dist/serialization/resources/environmentVariables/client/requests/index.d.ts +1 -0
  692. package/dist/serialization/resources/environmentVariables/client/requests/index.js +5 -0
  693. package/dist/serialization/resources/environmentVariables/index.d.ts +2 -0
  694. package/dist/serialization/resources/environmentVariables/index.js +18 -0
  695. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +19 -0
  696. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +51 -0
  697. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +7 -0
  698. package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +39 -0
  699. package/dist/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +9 -0
  700. package/dist/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +45 -0
  701. package/dist/serialization/resources/environmentVariables/types/index.d.ts +3 -0
  702. package/dist/serialization/resources/environmentVariables/types/index.js +19 -0
  703. package/dist/serialization/resources/index.d.ts +3 -0
  704. package/dist/serialization/resources/index.js +4 -1
  705. package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +7 -0
  706. package/dist/serialization/resources/{conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js → speechToText/types/SpeechToTextConvertRequestEntityRedaction.js} +6 -3
  707. package/dist/serialization/resources/speechToText/types/index.d.ts +1 -0
  708. package/dist/serialization/resources/speechToText/types/index.js +1 -0
  709. package/dist/serialization/resources/workspace/resources/authConnections/index.d.ts +1 -0
  710. package/dist/serialization/resources/workspace/resources/authConnections/index.js +17 -0
  711. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +27 -0
  712. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +55 -0
  713. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +39 -0
  714. package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +61 -0
  715. package/dist/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  716. package/dist/serialization/resources/workspace/resources/authConnections/types/index.js +18 -0
  717. package/dist/serialization/resources/workspace/resources/index.d.ts +2 -0
  718. package/dist/serialization/resources/workspace/resources/index.js +3 -1
  719. package/dist/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  720. package/dist/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
  721. package/dist/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  722. package/dist/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
  723. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +20 -0
  724. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.js +52 -0
  725. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +7 -0
  726. package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +39 -0
  727. package/dist/serialization/types/AstAndOperatorNodeInputChildrenItem.d.ts +6 -2
  728. package/dist/serialization/types/AstAndOperatorNodeInputChildrenItem.js +4 -1
  729. package/dist/serialization/types/AstAndOperatorNodeOutputChildrenItem.d.ts +4 -1
  730. package/dist/serialization/types/AstAndOperatorNodeOutputChildrenItem.js +1 -0
  731. package/dist/serialization/types/AstConditionalOperatorNodeInput.d.ts +11 -0
  732. package/dist/serialization/types/AstConditionalOperatorNodeInput.js +44 -0
  733. package/dist/serialization/types/AstConditionalOperatorNodeInputCondition.d.ts +55 -0
  734. package/dist/serialization/types/AstConditionalOperatorNodeInputCondition.js +67 -0
  735. package/dist/serialization/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +55 -0
  736. package/dist/serialization/types/AstConditionalOperatorNodeInputFalseExpression.js +67 -0
  737. package/dist/serialization/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +55 -0
  738. package/dist/serialization/types/AstConditionalOperatorNodeInputTrueExpression.js +67 -0
  739. package/dist/serialization/types/AstConditionalOperatorNodeOutput.d.ts +11 -0
  740. package/dist/serialization/types/AstConditionalOperatorNodeOutput.js +44 -0
  741. package/dist/serialization/types/AstConditionalOperatorNodeOutputCondition.d.ts +54 -0
  742. package/dist/serialization/types/AstConditionalOperatorNodeOutputCondition.js +65 -0
  743. package/dist/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +54 -0
  744. package/dist/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.js +65 -0
  745. package/dist/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +54 -0
  746. package/dist/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.js +65 -0
  747. package/dist/serialization/types/AstEqualsOperatorNodeInputLeft.d.ts +6 -2
  748. package/dist/serialization/types/AstEqualsOperatorNodeInputLeft.js +4 -1
  749. package/dist/serialization/types/AstEqualsOperatorNodeInputRight.d.ts +6 -2
  750. package/dist/serialization/types/AstEqualsOperatorNodeInputRight.js +4 -1
  751. package/dist/serialization/types/AstEqualsOperatorNodeOutputLeft.d.ts +4 -1
  752. package/dist/serialization/types/AstEqualsOperatorNodeOutputLeft.js +1 -0
  753. package/dist/serialization/types/AstEqualsOperatorNodeOutputRight.d.ts +4 -1
  754. package/dist/serialization/types/AstEqualsOperatorNodeOutputRight.js +1 -0
  755. package/dist/serialization/types/AstGreaterThanOperatorNodeInputLeft.d.ts +6 -2
  756. package/dist/serialization/types/AstGreaterThanOperatorNodeInputLeft.js +4 -1
  757. package/dist/serialization/types/AstGreaterThanOperatorNodeInputRight.d.ts +6 -2
  758. package/dist/serialization/types/AstGreaterThanOperatorNodeInputRight.js +4 -1
  759. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +4 -1
  760. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputLeft.js +1 -0
  761. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputRight.d.ts +4 -1
  762. package/dist/serialization/types/AstGreaterThanOperatorNodeOutputRight.js +1 -0
  763. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  764. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.js +4 -1
  765. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  766. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.js +4 -1
  767. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  768. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.js +1 -0
  769. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  770. package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.js +1 -0
  771. package/dist/serialization/types/AstLessThanOperatorNodeInputLeft.d.ts +6 -2
  772. package/dist/serialization/types/AstLessThanOperatorNodeInputLeft.js +4 -1
  773. package/dist/serialization/types/AstLessThanOperatorNodeInputRight.d.ts +6 -2
  774. package/dist/serialization/types/AstLessThanOperatorNodeInputRight.js +4 -1
  775. package/dist/serialization/types/AstLessThanOperatorNodeOutputLeft.d.ts +4 -1
  776. package/dist/serialization/types/AstLessThanOperatorNodeOutputLeft.js +1 -0
  777. package/dist/serialization/types/AstLessThanOperatorNodeOutputRight.d.ts +4 -1
  778. package/dist/serialization/types/AstLessThanOperatorNodeOutputRight.js +1 -0
  779. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  780. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.js +4 -1
  781. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  782. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.js +4 -1
  783. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  784. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.js +1 -0
  785. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  786. package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.js +1 -0
  787. package/dist/serialization/types/AstNotEqualsOperatorNodeInputLeft.d.ts +6 -2
  788. package/dist/serialization/types/AstNotEqualsOperatorNodeInputLeft.js +4 -1
  789. package/dist/serialization/types/AstNotEqualsOperatorNodeInputRight.d.ts +6 -2
  790. package/dist/serialization/types/AstNotEqualsOperatorNodeInputRight.js +4 -1
  791. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +4 -1
  792. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputLeft.js +1 -0
  793. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputRight.d.ts +4 -1
  794. package/dist/serialization/types/AstNotEqualsOperatorNodeOutputRight.js +1 -0
  795. package/dist/serialization/types/AstOrOperatorNodeInputChildrenItem.d.ts +6 -2
  796. package/dist/serialization/types/AstOrOperatorNodeInputChildrenItem.js +4 -1
  797. package/dist/serialization/types/AstOrOperatorNodeOutputChildrenItem.d.ts +4 -1
  798. package/dist/serialization/types/AstOrOperatorNodeOutputChildrenItem.js +1 -0
  799. package/dist/serialization/types/AstllmNodeInput.d.ts +4 -4
  800. package/dist/serialization/types/AstllmNodeInput.js +3 -3
  801. package/dist/serialization/types/AstllmNodeInputPrompt.d.ts +10 -0
  802. package/dist/serialization/types/AstllmNodeInputPrompt.js +42 -0
  803. package/dist/serialization/types/AstllmNodeInputValueSchema.d.ts +11 -0
  804. package/dist/serialization/types/AstllmNodeInputValueSchema.js +43 -0
  805. package/dist/serialization/types/AstllmNodeOutput.d.ts +2 -0
  806. package/dist/serialization/types/AstllmNodeOutput.js +2 -0
  807. package/dist/serialization/types/AuthConnectionDependencies.d.ts +14 -0
  808. package/dist/serialization/types/AuthConnectionDependencies.js +46 -0
  809. package/dist/serialization/types/AuthConnectionDependenciesMcpServersItem.d.ts +15 -0
  810. package/dist/serialization/types/AuthConnectionDependenciesMcpServersItem.js +49 -0
  811. package/dist/serialization/types/AuthConnectionDependenciesToolsItem.d.ts +15 -0
  812. package/dist/serialization/types/AuthConnectionDependenciesToolsItem.js +49 -0
  813. package/dist/serialization/types/AutoSyncInfo.d.ts +12 -0
  814. package/dist/serialization/types/AutoSyncInfo.js +44 -0
  815. package/dist/serialization/types/BasicAuthResponse.d.ts +14 -0
  816. package/dist/serialization/types/BasicAuthResponse.js +46 -0
  817. package/dist/serialization/types/BearerAuthResponse.d.ts +13 -0
  818. package/dist/serialization/types/BearerAuthResponse.js +45 -0
  819. package/dist/serialization/types/CaptionStyleModel.d.ts +4 -0
  820. package/dist/serialization/types/CaptionStyleModel.js +4 -0
  821. package/dist/serialization/types/CaptionStyleModelTextBlendMode.d.ts +7 -0
  822. package/dist/serialization/types/CaptionStyleModelTextBlendMode.js +39 -0
  823. package/dist/serialization/types/CaptionStyleModelTextTransform.d.ts +7 -0
  824. package/dist/serialization/types/CaptionStyleModelTextTransform.js +39 -0
  825. package/dist/serialization/types/CaptionStyleModelTextWeight.d.ts +1 -1
  826. package/dist/serialization/types/CaptionStyleModelTextWeight.js +1 -1
  827. package/dist/serialization/types/ContentConfig.d.ts +8 -8
  828. package/dist/serialization/types/ContentConfig.js +8 -8
  829. package/dist/serialization/types/ContentGuardrailInput.d.ts +2 -0
  830. package/dist/serialization/types/ContentGuardrailInput.js +2 -0
  831. package/dist/serialization/types/ContentGuardrailInputTriggerAction.d.ts +15 -0
  832. package/dist/serialization/types/ContentGuardrailInputTriggerAction.js +49 -0
  833. package/dist/serialization/types/ContentGuardrailOutput.d.ts +2 -0
  834. package/dist/serialization/types/ContentGuardrailOutput.js +2 -0
  835. package/dist/serialization/types/ContentGuardrailOutputTriggerAction.d.ts +15 -0
  836. package/dist/serialization/types/ContentGuardrailOutputTriggerAction.js +49 -0
  837. package/dist/serialization/types/ContentThresholdGuardrail.d.ts +11 -0
  838. package/dist/serialization/types/ContentThresholdGuardrail.js +43 -0
  839. package/dist/serialization/types/ContentThresholdGuardrailThreshold.d.ts +7 -0
  840. package/dist/serialization/types/ContentThresholdGuardrailThreshold.js +44 -0
  841. package/dist/serialization/types/Contributor.d.ts +2 -0
  842. package/dist/serialization/types/Contributor.js +2 -0
  843. package/dist/serialization/types/ConvAiEnvVarLocator.d.ts +9 -0
  844. package/dist/serialization/types/{ConversationHistorySipTrunkingPhoneCallModelDirection.js → ConvAiEnvVarLocator.js} +4 -2
  845. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +2 -2
  846. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +2 -2
  847. package/{serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts → dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts} +5 -5
  848. package/{serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js} +5 -5
  849. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +22 -0
  850. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +54 -0
  851. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -2
  852. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -2
  853. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -2
  854. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -2
  855. package/dist/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +2 -2
  856. package/dist/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.js +2 -2
  857. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +13 -0
  858. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +45 -0
  859. package/dist/serialization/types/{ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts → ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts} +2 -2
  860. package/{serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js} +2 -2
  861. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +2 -2
  862. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +2 -2
  863. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +2 -2
  864. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +2 -2
  865. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +2 -2
  866. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +2 -2
  867. package/dist/serialization/types/ConversationSummaryResponseModel.d.ts +3 -2
  868. package/dist/serialization/types/ConversationSummaryResponseModel.js +3 -2
  869. package/dist/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +11 -0
  870. package/dist/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.js +43 -0
  871. package/dist/serialization/types/CreateBasicAuthRequest.d.ts +12 -0
  872. package/dist/serialization/types/CreateBasicAuthRequest.js +44 -0
  873. package/dist/serialization/types/CreateCustomHeaderAuthRequest.d.ts +12 -0
  874. package/dist/serialization/types/CreateCustomHeaderAuthRequest.js +44 -0
  875. package/dist/serialization/types/CreateOAuth2ClientCredsRequest.d.ts +17 -0
  876. package/dist/serialization/types/CreateOAuth2ClientCredsRequest.js +49 -0
  877. package/dist/serialization/types/CreateOAuth2JwtRequest.d.ts +21 -0
  878. package/dist/serialization/types/CreateOAuth2JwtRequest.js +53 -0
  879. package/dist/serialization/types/CreateOAuth2JwtRequestAlgorithm.d.ts +7 -0
  880. package/dist/serialization/types/CreateOAuth2JwtRequestAlgorithm.js +39 -0
  881. package/dist/serialization/types/CreatePrivateKeyJwtRequest.d.ts +19 -0
  882. package/dist/serialization/types/CreatePrivateKeyJwtRequest.js +51 -0
  883. package/dist/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +7 -0
  884. package/dist/serialization/types/{ConversationHistoryTwilioPhoneCallModelDirection.js → CreatePrivateKeyJwtRequestAlgorithm.js} +2 -2
  885. package/dist/serialization/types/CreateSecretEnvironmentVariableRequest.d.ts +11 -0
  886. package/dist/serialization/types/CreateSecretEnvironmentVariableRequest.js +43 -0
  887. package/dist/serialization/types/CreateSimulationTestRequest.d.ts +1 -0
  888. package/dist/serialization/types/CreateSimulationTestRequest.js +1 -0
  889. package/dist/serialization/types/CreateStringEnvironmentVariableRequest.d.ts +10 -0
  890. package/dist/serialization/types/CreateStringEnvironmentVariableRequest.js +42 -0
  891. package/dist/serialization/types/CustomGuardrailConfig.d.ts +2 -0
  892. package/dist/serialization/types/CustomGuardrailConfig.js +2 -0
  893. package/dist/serialization/types/CustomGuardrailConfigTriggerAction.d.ts +15 -0
  894. package/dist/serialization/types/CustomGuardrailConfigTriggerAction.js +49 -0
  895. package/dist/serialization/types/CustomHeaderAuthResponse.d.ts +14 -0
  896. package/dist/serialization/types/CustomHeaderAuthResponse.js +46 -0
  897. package/dist/serialization/types/CustomLlm.d.ts +2 -2
  898. package/dist/serialization/types/CustomLlm.js +2 -2
  899. package/dist/serialization/types/CustomLlmApiKey.d.ts +9 -0
  900. package/dist/serialization/types/CustomLlmApiKey.js +41 -0
  901. package/dist/serialization/types/CustomLlmRequestHeadersValue.d.ts +2 -1
  902. package/dist/serialization/types/CustomLlmRequestHeadersValue.js +7 -1
  903. package/dist/serialization/types/DependentAvailableMcpServerIdentifier.d.ts +13 -0
  904. package/dist/serialization/types/DependentAvailableMcpServerIdentifier.js +45 -0
  905. package/dist/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  906. package/{serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js → dist/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.js} +2 -2
  907. package/dist/serialization/types/DependentIntegrationConnectionIdentifier.d.ts +10 -0
  908. package/dist/serialization/types/DependentIntegrationConnectionIdentifier.js +42 -0
  909. package/dist/serialization/types/DependentUnknownMcpServerIdentifier.d.ts +9 -0
  910. package/dist/serialization/types/DependentUnknownMcpServerIdentifier.js +41 -0
  911. package/dist/serialization/types/DirectPublishingReadResponseModel.d.ts +1 -0
  912. package/dist/serialization/types/DirectPublishingReadResponseModel.js +1 -0
  913. package/dist/serialization/types/EndCallTriggerAction.d.ts +7 -0
  914. package/dist/serialization/types/{AgentPromptChangeToolConfig.js → EndCallTriggerAction.js} +2 -2
  915. package/dist/serialization/types/EnvironmentAuthConnectionLocator.d.ts +9 -0
  916. package/dist/serialization/types/EnvironmentAuthConnectionLocator.js +41 -0
  917. package/dist/serialization/types/EnvironmentVariableAuthConnectionValue.d.ts +9 -0
  918. package/dist/serialization/types/EnvironmentVariableAuthConnectionValue.js +41 -0
  919. package/dist/serialization/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +9 -0
  920. package/dist/serialization/types/EnvironmentVariableAuthConnectionValueRequest.js +41 -0
  921. package/dist/serialization/types/EnvironmentVariableResponse.d.ts +18 -0
  922. package/dist/serialization/types/EnvironmentVariableResponse.js +50 -0
  923. package/dist/serialization/types/EnvironmentVariableResponseType.d.ts +7 -0
  924. package/dist/serialization/types/EnvironmentVariableResponseType.js +39 -0
  925. package/dist/serialization/types/EnvironmentVariableResponseValues.d.ts +9 -0
  926. package/dist/serialization/types/EnvironmentVariableResponseValues.js +45 -0
  927. package/dist/serialization/types/EnvironmentVariableSecretValue.d.ts +9 -0
  928. package/dist/serialization/types/EnvironmentVariableSecretValue.js +41 -0
  929. package/dist/serialization/types/EnvironmentVariableSecretValueRequest.d.ts +9 -0
  930. package/dist/serialization/types/EnvironmentVariableSecretValueRequest.js +41 -0
  931. package/dist/serialization/types/EnvironmentVariablesListResponse.d.ts +12 -0
  932. package/dist/serialization/types/EnvironmentVariablesListResponse.js +44 -0
  933. package/dist/serialization/types/GetConvAiSettingsResponseModel.d.ts +1 -0
  934. package/dist/serialization/types/GetConvAiSettingsResponseModel.js +1 -0
  935. package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +2 -0
  936. package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.js +2 -0
  937. package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +2 -0
  938. package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +2 -0
  939. package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -0
  940. package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -0
  941. package/dist/serialization/types/GetSimulationTestResponseModel.d.ts +1 -0
  942. package/dist/serialization/types/GetSimulationTestResponseModel.js +1 -0
  943. package/dist/serialization/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  944. package/dist/serialization/types/GetTestSuiteInvocationResponseModel.js +1 -0
  945. package/dist/serialization/types/GuardrailsV1Input.d.ts +0 -2
  946. package/dist/serialization/types/GuardrailsV1Input.js +0 -2
  947. package/dist/serialization/types/GuardrailsV1Output.d.ts +0 -2
  948. package/dist/serialization/types/GuardrailsV1Output.js +0 -2
  949. package/dist/serialization/types/ListAuthConnectionsResponse.d.ts +10 -0
  950. package/dist/serialization/types/ListAuthConnectionsResponse.js +42 -0
  951. package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +39 -0
  952. package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +61 -0
  953. package/dist/serialization/types/LlmLiteralJsonSchemaProperty.d.ts +12 -0
  954. package/dist/serialization/types/LlmLiteralJsonSchemaProperty.js +44 -0
  955. package/dist/serialization/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  956. package/dist/serialization/types/{ConversationSummaryResponseModelDirection.js → LlmLiteralJsonSchemaPropertyType.js} +2 -2
  957. package/dist/serialization/types/McpServerConfigInput.d.ts +2 -2
  958. package/dist/serialization/types/McpServerConfigInput.js +2 -2
  959. package/dist/serialization/types/McpServerConfigInputAuthConnection.d.ts +9 -0
  960. package/dist/serialization/types/McpServerConfigInputAuthConnection.js +41 -0
  961. package/dist/serialization/types/McpServerConfigInputRequestHeadersValue.d.ts +2 -1
  962. package/dist/serialization/types/McpServerConfigInputRequestHeadersValue.js +7 -1
  963. package/dist/serialization/types/McpServerConfigOutput.d.ts +2 -2
  964. package/dist/serialization/types/McpServerConfigOutput.js +2 -2
  965. package/dist/serialization/types/McpServerConfigOutputAuthConnection.d.ts +9 -0
  966. package/dist/serialization/types/McpServerConfigOutputAuthConnection.js +41 -0
  967. package/dist/serialization/types/McpServerConfigOutputRequestHeadersValue.d.ts +2 -1
  968. package/dist/serialization/types/McpServerConfigOutputRequestHeadersValue.js +7 -1
  969. package/dist/serialization/types/OAuth2ClientCredsResponse.d.ts +18 -0
  970. package/dist/serialization/types/OAuth2ClientCredsResponse.js +50 -0
  971. package/dist/serialization/types/OAuth2JwtResponse.d.ts +23 -0
  972. package/dist/serialization/types/OAuth2JwtResponse.js +55 -0
  973. package/dist/serialization/types/OAuth2JwtResponseAlgorithm.d.ts +7 -0
  974. package/dist/serialization/types/OAuth2JwtResponseAlgorithm.js +39 -0
  975. package/dist/serialization/types/PlayDtmfToolConfig.d.ts +1 -0
  976. package/dist/serialization/types/PlayDtmfToolConfig.js +1 -0
  977. package/dist/serialization/types/PreviewAudioDbModel.d.ts +2 -0
  978. package/dist/serialization/types/PreviewAudioDbModel.js +2 -0
  979. package/dist/serialization/types/PrivateKeyJwtResponse.d.ts +21 -0
  980. package/dist/serialization/types/PrivateKeyJwtResponse.js +53 -0
  981. package/dist/serialization/types/PrivateKeyJwtResponseAlgorithm.d.ts +7 -0
  982. package/dist/serialization/types/PrivateKeyJwtResponseAlgorithm.js +39 -0
  983. package/dist/serialization/types/ProjectExternalAudioResponseModel.d.ts +2 -1
  984. package/dist/serialization/types/ProjectExternalAudioResponseModel.js +2 -1
  985. package/dist/serialization/types/RetryTriggerAction.d.ts +9 -0
  986. package/dist/serialization/types/RetryTriggerAction.js +41 -0
  987. package/dist/serialization/types/SimulationTestModel.d.ts +1 -0
  988. package/dist/serialization/types/SimulationTestModel.js +1 -0
  989. package/dist/serialization/types/SingleTestRunRequestModel.d.ts +2 -0
  990. package/dist/serialization/types/SingleTestRunRequestModel.js +2 -0
  991. package/dist/serialization/types/SpeechHistoryItemResponse.d.ts +1 -0
  992. package/dist/serialization/types/SpeechHistoryItemResponse.js +1 -0
  993. package/dist/serialization/types/Subscription.d.ts +2 -0
  994. package/dist/serialization/types/Subscription.js +2 -0
  995. package/dist/serialization/types/SystemToolConfigInputParams.d.ts +1 -21
  996. package/dist/serialization/types/SystemToolConfigInputParams.js +0 -10
  997. package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +1 -21
  998. package/dist/serialization/types/SystemToolConfigOutputParams.js +0 -10
  999. package/dist/serialization/types/TelephonyDirection.d.ts +7 -0
  1000. package/dist/serialization/types/{MemoryEntryCreateToolConfig.js → TelephonyDirection.js} +2 -2
  1001. package/dist/serialization/types/UnitTestRunResponseModel.d.ts +3 -0
  1002. package/dist/serialization/types/UnitTestRunResponseModel.js +3 -0
  1003. package/dist/serialization/types/UpdateSimulationTestRequest.d.ts +1 -0
  1004. package/dist/serialization/types/UpdateSimulationTestRequest.js +1 -0
  1005. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -2
  1006. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -2
  1007. package/dist/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +9 -0
  1008. package/dist/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.js +41 -0
  1009. package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +2 -1
  1010. package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +7 -1
  1011. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -2
  1012. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -2
  1013. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +9 -0
  1014. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +41 -0
  1015. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +2 -1
  1016. package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +7 -1
  1017. package/dist/serialization/types/WhatsAppAuthResponse.d.ts +14 -0
  1018. package/dist/serialization/types/WhatsAppAuthResponse.js +46 -0
  1019. package/dist/serialization/types/WorkflowExpressionConditionModelInputExpression.d.ts +6 -2
  1020. package/dist/serialization/types/WorkflowExpressionConditionModelInputExpression.js +4 -1
  1021. package/dist/serialization/types/WorkflowExpressionConditionModelOutputExpression.d.ts +4 -1
  1022. package/dist/serialization/types/WorkflowExpressionConditionModelOutputExpression.js +1 -0
  1023. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -2
  1024. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -2
  1025. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -2
  1026. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -2
  1027. package/dist/serialization/types/index.d.ts +72 -10
  1028. package/dist/serialization/types/index.js +72 -10
  1029. package/dist/version.d.ts +1 -1
  1030. package/dist/version.js +1 -1
  1031. package/package.json +1 -1
  1032. package/reference.md +558 -6
  1033. package/serialization/resources/conversationalAi/resources/index.d.ts +0 -1
  1034. package/serialization/resources/conversationalAi/resources/index.js +0 -1
  1035. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  1036. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
  1037. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +23 -0
  1038. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +53 -0
  1039. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  1040. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
  1041. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +2 -0
  1042. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.js +2 -0
  1043. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
  1044. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +2 -0
  1045. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
  1046. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
  1047. package/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +2 -2
  1048. package/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.js +2 -2
  1049. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +9 -0
  1050. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +41 -0
  1051. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +2 -1
  1052. package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.js +7 -1
  1053. package/serialization/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
  1054. package/serialization/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
  1055. package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +1 -0
  1056. package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +1 -0
  1057. package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +2 -2
  1058. package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +2 -2
  1059. package/serialization/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
  1060. package/serialization/resources/conversationalAi/resources/twilio/index.js +0 -1
  1061. package/serialization/resources/environmentVariables/client/index.d.ts +1 -0
  1062. package/serialization/resources/environmentVariables/client/index.js +17 -0
  1063. package/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +10 -0
  1064. package/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +42 -0
  1065. package/serialization/resources/environmentVariables/client/requests/index.d.ts +1 -0
  1066. package/serialization/resources/environmentVariables/client/requests/index.js +5 -0
  1067. package/serialization/resources/environmentVariables/index.d.ts +2 -0
  1068. package/serialization/resources/environmentVariables/index.js +18 -0
  1069. package/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +19 -0
  1070. package/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +51 -0
  1071. package/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +7 -0
  1072. package/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +39 -0
  1073. package/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +9 -0
  1074. package/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +45 -0
  1075. package/serialization/resources/environmentVariables/types/index.d.ts +3 -0
  1076. package/serialization/resources/environmentVariables/types/index.js +19 -0
  1077. package/serialization/resources/index.d.ts +3 -0
  1078. package/serialization/resources/index.js +4 -1
  1079. package/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +7 -0
  1080. package/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +42 -0
  1081. package/serialization/resources/speechToText/types/index.d.ts +1 -0
  1082. package/serialization/resources/speechToText/types/index.js +1 -0
  1083. package/serialization/resources/workspace/resources/authConnections/index.d.ts +1 -0
  1084. package/serialization/resources/workspace/resources/authConnections/index.js +17 -0
  1085. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +27 -0
  1086. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +55 -0
  1087. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +39 -0
  1088. package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +61 -0
  1089. package/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
  1090. package/serialization/resources/workspace/resources/authConnections/types/index.js +18 -0
  1091. package/serialization/resources/workspace/resources/index.d.ts +2 -0
  1092. package/serialization/resources/workspace/resources/index.js +3 -1
  1093. package/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  1094. package/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
  1095. package/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  1096. package/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
  1097. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +20 -0
  1098. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.js +52 -0
  1099. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +7 -0
  1100. package/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +39 -0
  1101. package/serialization/types/AstAndOperatorNodeInputChildrenItem.d.ts +6 -2
  1102. package/serialization/types/AstAndOperatorNodeInputChildrenItem.js +4 -1
  1103. package/serialization/types/AstAndOperatorNodeOutputChildrenItem.d.ts +4 -1
  1104. package/serialization/types/AstAndOperatorNodeOutputChildrenItem.js +1 -0
  1105. package/serialization/types/AstConditionalOperatorNodeInput.d.ts +11 -0
  1106. package/serialization/types/AstConditionalOperatorNodeInput.js +44 -0
  1107. package/serialization/types/AstConditionalOperatorNodeInputCondition.d.ts +55 -0
  1108. package/serialization/types/AstConditionalOperatorNodeInputCondition.js +67 -0
  1109. package/serialization/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +55 -0
  1110. package/serialization/types/AstConditionalOperatorNodeInputFalseExpression.js +67 -0
  1111. package/serialization/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +55 -0
  1112. package/serialization/types/AstConditionalOperatorNodeInputTrueExpression.js +67 -0
  1113. package/serialization/types/AstConditionalOperatorNodeOutput.d.ts +11 -0
  1114. package/serialization/types/AstConditionalOperatorNodeOutput.js +44 -0
  1115. package/serialization/types/AstConditionalOperatorNodeOutputCondition.d.ts +54 -0
  1116. package/serialization/types/AstConditionalOperatorNodeOutputCondition.js +65 -0
  1117. package/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +54 -0
  1118. package/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.js +65 -0
  1119. package/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +54 -0
  1120. package/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.js +65 -0
  1121. package/serialization/types/AstEqualsOperatorNodeInputLeft.d.ts +6 -2
  1122. package/serialization/types/AstEqualsOperatorNodeInputLeft.js +4 -1
  1123. package/serialization/types/AstEqualsOperatorNodeInputRight.d.ts +6 -2
  1124. package/serialization/types/AstEqualsOperatorNodeInputRight.js +4 -1
  1125. package/serialization/types/AstEqualsOperatorNodeOutputLeft.d.ts +4 -1
  1126. package/serialization/types/AstEqualsOperatorNodeOutputLeft.js +1 -0
  1127. package/serialization/types/AstEqualsOperatorNodeOutputRight.d.ts +4 -1
  1128. package/serialization/types/AstEqualsOperatorNodeOutputRight.js +1 -0
  1129. package/serialization/types/AstGreaterThanOperatorNodeInputLeft.d.ts +6 -2
  1130. package/serialization/types/AstGreaterThanOperatorNodeInputLeft.js +4 -1
  1131. package/serialization/types/AstGreaterThanOperatorNodeInputRight.d.ts +6 -2
  1132. package/serialization/types/AstGreaterThanOperatorNodeInputRight.js +4 -1
  1133. package/serialization/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +4 -1
  1134. package/serialization/types/AstGreaterThanOperatorNodeOutputLeft.js +1 -0
  1135. package/serialization/types/AstGreaterThanOperatorNodeOutputRight.d.ts +4 -1
  1136. package/serialization/types/AstGreaterThanOperatorNodeOutputRight.js +1 -0
  1137. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  1138. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.js +4 -1
  1139. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  1140. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.js +4 -1
  1141. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  1142. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.js +1 -0
  1143. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  1144. package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.js +1 -0
  1145. package/serialization/types/AstLessThanOperatorNodeInputLeft.d.ts +6 -2
  1146. package/serialization/types/AstLessThanOperatorNodeInputLeft.js +4 -1
  1147. package/serialization/types/AstLessThanOperatorNodeInputRight.d.ts +6 -2
  1148. package/serialization/types/AstLessThanOperatorNodeInputRight.js +4 -1
  1149. package/serialization/types/AstLessThanOperatorNodeOutputLeft.d.ts +4 -1
  1150. package/serialization/types/AstLessThanOperatorNodeOutputLeft.js +1 -0
  1151. package/serialization/types/AstLessThanOperatorNodeOutputRight.d.ts +4 -1
  1152. package/serialization/types/AstLessThanOperatorNodeOutputRight.js +1 -0
  1153. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +6 -2
  1154. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.js +4 -1
  1155. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +6 -2
  1156. package/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.js +4 -1
  1157. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +4 -1
  1158. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.js +1 -0
  1159. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +4 -1
  1160. package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.js +1 -0
  1161. package/serialization/types/AstNotEqualsOperatorNodeInputLeft.d.ts +6 -2
  1162. package/serialization/types/AstNotEqualsOperatorNodeInputLeft.js +4 -1
  1163. package/serialization/types/AstNotEqualsOperatorNodeInputRight.d.ts +6 -2
  1164. package/serialization/types/AstNotEqualsOperatorNodeInputRight.js +4 -1
  1165. package/serialization/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +4 -1
  1166. package/serialization/types/AstNotEqualsOperatorNodeOutputLeft.js +1 -0
  1167. package/serialization/types/AstNotEqualsOperatorNodeOutputRight.d.ts +4 -1
  1168. package/serialization/types/AstNotEqualsOperatorNodeOutputRight.js +1 -0
  1169. package/serialization/types/AstOrOperatorNodeInputChildrenItem.d.ts +6 -2
  1170. package/serialization/types/AstOrOperatorNodeInputChildrenItem.js +4 -1
  1171. package/serialization/types/AstOrOperatorNodeOutputChildrenItem.d.ts +4 -1
  1172. package/serialization/types/AstOrOperatorNodeOutputChildrenItem.js +1 -0
  1173. package/serialization/types/AstllmNodeInput.d.ts +4 -4
  1174. package/serialization/types/AstllmNodeInput.js +3 -3
  1175. package/serialization/types/AstllmNodeInputPrompt.d.ts +10 -0
  1176. package/serialization/types/AstllmNodeInputPrompt.js +42 -0
  1177. package/serialization/types/AstllmNodeInputValueSchema.d.ts +11 -0
  1178. package/serialization/types/AstllmNodeInputValueSchema.js +43 -0
  1179. package/serialization/types/AstllmNodeOutput.d.ts +2 -0
  1180. package/serialization/types/AstllmNodeOutput.js +2 -0
  1181. package/serialization/types/AuthConnectionDependencies.d.ts +14 -0
  1182. package/serialization/types/AuthConnectionDependencies.js +46 -0
  1183. package/serialization/types/AuthConnectionDependenciesMcpServersItem.d.ts +15 -0
  1184. package/serialization/types/AuthConnectionDependenciesMcpServersItem.js +49 -0
  1185. package/serialization/types/AuthConnectionDependenciesToolsItem.d.ts +15 -0
  1186. package/serialization/types/AuthConnectionDependenciesToolsItem.js +49 -0
  1187. package/serialization/types/AutoSyncInfo.d.ts +12 -0
  1188. package/serialization/types/AutoSyncInfo.js +44 -0
  1189. package/serialization/types/BasicAuthResponse.d.ts +14 -0
  1190. package/serialization/types/BasicAuthResponse.js +46 -0
  1191. package/serialization/types/BearerAuthResponse.d.ts +13 -0
  1192. package/serialization/types/BearerAuthResponse.js +45 -0
  1193. package/serialization/types/CaptionStyleModel.d.ts +4 -0
  1194. package/serialization/types/CaptionStyleModel.js +4 -0
  1195. package/serialization/types/CaptionStyleModelTextBlendMode.d.ts +7 -0
  1196. package/serialization/types/CaptionStyleModelTextBlendMode.js +39 -0
  1197. package/serialization/types/CaptionStyleModelTextTransform.d.ts +7 -0
  1198. package/serialization/types/CaptionStyleModelTextTransform.js +39 -0
  1199. package/serialization/types/CaptionStyleModelTextWeight.d.ts +1 -1
  1200. package/serialization/types/CaptionStyleModelTextWeight.js +1 -1
  1201. package/serialization/types/ContentConfig.d.ts +8 -8
  1202. package/serialization/types/ContentConfig.js +8 -8
  1203. package/serialization/types/ContentGuardrailInput.d.ts +2 -0
  1204. package/serialization/types/ContentGuardrailInput.js +2 -0
  1205. package/serialization/types/ContentGuardrailInputTriggerAction.d.ts +15 -0
  1206. package/serialization/types/ContentGuardrailInputTriggerAction.js +49 -0
  1207. package/serialization/types/ContentGuardrailOutput.d.ts +2 -0
  1208. package/serialization/types/ContentGuardrailOutput.js +2 -0
  1209. package/serialization/types/ContentGuardrailOutputTriggerAction.d.ts +15 -0
  1210. package/serialization/types/ContentGuardrailOutputTriggerAction.js +49 -0
  1211. package/serialization/types/ContentThresholdGuardrail.d.ts +11 -0
  1212. package/serialization/types/ContentThresholdGuardrail.js +43 -0
  1213. package/serialization/types/ContentThresholdGuardrailThreshold.d.ts +7 -0
  1214. package/serialization/types/ContentThresholdGuardrailThreshold.js +44 -0
  1215. package/serialization/types/Contributor.d.ts +2 -0
  1216. package/serialization/types/Contributor.js +2 -0
  1217. package/serialization/types/ConvAiEnvVarLocator.d.ts +9 -0
  1218. package/serialization/types/ConvAiEnvVarLocator.js +41 -0
  1219. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +2 -2
  1220. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +2 -2
  1221. package/{dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts → serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts} +5 -5
  1222. package/{dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js} +5 -5
  1223. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +22 -0
  1224. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +54 -0
  1225. package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -2
  1226. package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -2
  1227. package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -2
  1228. package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -2
  1229. package/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +2 -2
  1230. package/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.js +2 -2
  1231. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +13 -0
  1232. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +45 -0
  1233. package/serialization/types/{ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts → ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts} +2 -2
  1234. package/{dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js} +2 -2
  1235. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +2 -2
  1236. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +2 -2
  1237. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +2 -2
  1238. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +2 -2
  1239. package/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +2 -2
  1240. package/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +2 -2
  1241. package/serialization/types/ConversationSummaryResponseModel.d.ts +3 -2
  1242. package/serialization/types/ConversationSummaryResponseModel.js +3 -2
  1243. package/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +11 -0
  1244. package/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.js +43 -0
  1245. package/serialization/types/CreateBasicAuthRequest.d.ts +12 -0
  1246. package/serialization/types/CreateBasicAuthRequest.js +44 -0
  1247. package/serialization/types/CreateCustomHeaderAuthRequest.d.ts +12 -0
  1248. package/serialization/types/CreateCustomHeaderAuthRequest.js +44 -0
  1249. package/serialization/types/CreateOAuth2ClientCredsRequest.d.ts +17 -0
  1250. package/serialization/types/CreateOAuth2ClientCredsRequest.js +49 -0
  1251. package/serialization/types/CreateOAuth2JwtRequest.d.ts +21 -0
  1252. package/serialization/types/CreateOAuth2JwtRequest.js +53 -0
  1253. package/serialization/types/CreateOAuth2JwtRequestAlgorithm.d.ts +7 -0
  1254. package/serialization/types/CreateOAuth2JwtRequestAlgorithm.js +39 -0
  1255. package/serialization/types/CreatePrivateKeyJwtRequest.d.ts +19 -0
  1256. package/serialization/types/CreatePrivateKeyJwtRequest.js +51 -0
  1257. package/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +7 -0
  1258. package/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.js +39 -0
  1259. package/serialization/types/CreateSecretEnvironmentVariableRequest.d.ts +11 -0
  1260. package/serialization/types/CreateSecretEnvironmentVariableRequest.js +43 -0
  1261. package/serialization/types/CreateSimulationTestRequest.d.ts +1 -0
  1262. package/serialization/types/CreateSimulationTestRequest.js +1 -0
  1263. package/serialization/types/CreateStringEnvironmentVariableRequest.d.ts +10 -0
  1264. package/serialization/types/CreateStringEnvironmentVariableRequest.js +42 -0
  1265. package/serialization/types/CustomGuardrailConfig.d.ts +2 -0
  1266. package/serialization/types/CustomGuardrailConfig.js +2 -0
  1267. package/serialization/types/CustomGuardrailConfigTriggerAction.d.ts +15 -0
  1268. package/serialization/types/CustomGuardrailConfigTriggerAction.js +49 -0
  1269. package/serialization/types/CustomHeaderAuthResponse.d.ts +14 -0
  1270. package/serialization/types/CustomHeaderAuthResponse.js +46 -0
  1271. package/serialization/types/CustomLlm.d.ts +2 -2
  1272. package/serialization/types/CustomLlm.js +2 -2
  1273. package/serialization/types/CustomLlmApiKey.d.ts +9 -0
  1274. package/serialization/types/CustomLlmApiKey.js +41 -0
  1275. package/serialization/types/CustomLlmRequestHeadersValue.d.ts +2 -1
  1276. package/serialization/types/CustomLlmRequestHeadersValue.js +7 -1
  1277. package/serialization/types/DependentAvailableMcpServerIdentifier.d.ts +13 -0
  1278. package/serialization/types/DependentAvailableMcpServerIdentifier.js +45 -0
  1279. package/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
  1280. package/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.js +39 -0
  1281. package/serialization/types/DependentIntegrationConnectionIdentifier.d.ts +10 -0
  1282. package/serialization/types/DependentIntegrationConnectionIdentifier.js +42 -0
  1283. package/serialization/types/DependentUnknownMcpServerIdentifier.d.ts +9 -0
  1284. package/serialization/types/DependentUnknownMcpServerIdentifier.js +41 -0
  1285. package/serialization/types/DirectPublishingReadResponseModel.d.ts +1 -0
  1286. package/serialization/types/DirectPublishingReadResponseModel.js +1 -0
  1287. package/serialization/types/EndCallTriggerAction.d.ts +7 -0
  1288. package/{dist/serialization/types/MemoryEntrySearchToolConfig.js → serialization/types/EndCallTriggerAction.js} +2 -2
  1289. package/serialization/types/EnvironmentAuthConnectionLocator.d.ts +9 -0
  1290. package/serialization/types/EnvironmentAuthConnectionLocator.js +41 -0
  1291. package/serialization/types/EnvironmentVariableAuthConnectionValue.d.ts +9 -0
  1292. package/serialization/types/EnvironmentVariableAuthConnectionValue.js +41 -0
  1293. package/serialization/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +9 -0
  1294. package/serialization/types/EnvironmentVariableAuthConnectionValueRequest.js +41 -0
  1295. package/serialization/types/EnvironmentVariableResponse.d.ts +18 -0
  1296. package/serialization/types/EnvironmentVariableResponse.js +50 -0
  1297. package/serialization/types/EnvironmentVariableResponseType.d.ts +7 -0
  1298. package/serialization/types/EnvironmentVariableResponseType.js +39 -0
  1299. package/serialization/types/EnvironmentVariableResponseValues.d.ts +9 -0
  1300. package/serialization/types/EnvironmentVariableResponseValues.js +45 -0
  1301. package/serialization/types/EnvironmentVariableSecretValue.d.ts +9 -0
  1302. package/serialization/types/EnvironmentVariableSecretValue.js +41 -0
  1303. package/serialization/types/EnvironmentVariableSecretValueRequest.d.ts +9 -0
  1304. package/serialization/types/EnvironmentVariableSecretValueRequest.js +41 -0
  1305. package/serialization/types/EnvironmentVariablesListResponse.d.ts +12 -0
  1306. package/serialization/types/EnvironmentVariablesListResponse.js +44 -0
  1307. package/serialization/types/GetConvAiSettingsResponseModel.d.ts +1 -0
  1308. package/serialization/types/GetConvAiSettingsResponseModel.js +1 -0
  1309. package/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +2 -0
  1310. package/serialization/types/GetKnowledgeBaseFolderResponseModel.js +2 -0
  1311. package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +2 -0
  1312. package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +2 -0
  1313. package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -0
  1314. package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -0
  1315. package/serialization/types/GetSimulationTestResponseModel.d.ts +1 -0
  1316. package/serialization/types/GetSimulationTestResponseModel.js +1 -0
  1317. package/serialization/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
  1318. package/serialization/types/GetTestSuiteInvocationResponseModel.js +1 -0
  1319. package/serialization/types/GuardrailsV1Input.d.ts +0 -2
  1320. package/serialization/types/GuardrailsV1Input.js +0 -2
  1321. package/serialization/types/GuardrailsV1Output.d.ts +0 -2
  1322. package/serialization/types/GuardrailsV1Output.js +0 -2
  1323. package/serialization/types/ListAuthConnectionsResponse.d.ts +10 -0
  1324. package/serialization/types/ListAuthConnectionsResponse.js +42 -0
  1325. package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +39 -0
  1326. package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +61 -0
  1327. package/serialization/types/LlmLiteralJsonSchemaProperty.d.ts +12 -0
  1328. package/serialization/types/LlmLiteralJsonSchemaProperty.js +44 -0
  1329. package/serialization/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
  1330. package/serialization/types/LlmLiteralJsonSchemaPropertyType.js +39 -0
  1331. package/serialization/types/McpServerConfigInput.d.ts +2 -2
  1332. package/serialization/types/McpServerConfigInput.js +2 -2
  1333. package/serialization/types/McpServerConfigInputAuthConnection.d.ts +9 -0
  1334. package/serialization/types/McpServerConfigInputAuthConnection.js +41 -0
  1335. package/serialization/types/McpServerConfigInputRequestHeadersValue.d.ts +2 -1
  1336. package/serialization/types/McpServerConfigInputRequestHeadersValue.js +7 -1
  1337. package/serialization/types/McpServerConfigOutput.d.ts +2 -2
  1338. package/serialization/types/McpServerConfigOutput.js +2 -2
  1339. package/serialization/types/McpServerConfigOutputAuthConnection.d.ts +9 -0
  1340. package/serialization/types/McpServerConfigOutputAuthConnection.js +41 -0
  1341. package/serialization/types/McpServerConfigOutputRequestHeadersValue.d.ts +2 -1
  1342. package/serialization/types/McpServerConfigOutputRequestHeadersValue.js +7 -1
  1343. package/serialization/types/OAuth2ClientCredsResponse.d.ts +18 -0
  1344. package/serialization/types/OAuth2ClientCredsResponse.js +50 -0
  1345. package/serialization/types/OAuth2JwtResponse.d.ts +23 -0
  1346. package/serialization/types/OAuth2JwtResponse.js +55 -0
  1347. package/serialization/types/OAuth2JwtResponseAlgorithm.d.ts +7 -0
  1348. package/serialization/types/OAuth2JwtResponseAlgorithm.js +39 -0
  1349. package/serialization/types/PlayDtmfToolConfig.d.ts +1 -0
  1350. package/serialization/types/PlayDtmfToolConfig.js +1 -0
  1351. package/serialization/types/PreviewAudioDbModel.d.ts +2 -0
  1352. package/serialization/types/PreviewAudioDbModel.js +2 -0
  1353. package/serialization/types/PrivateKeyJwtResponse.d.ts +21 -0
  1354. package/serialization/types/PrivateKeyJwtResponse.js +53 -0
  1355. package/serialization/types/PrivateKeyJwtResponseAlgorithm.d.ts +7 -0
  1356. package/serialization/types/PrivateKeyJwtResponseAlgorithm.js +39 -0
  1357. package/serialization/types/ProjectExternalAudioResponseModel.d.ts +2 -1
  1358. package/serialization/types/ProjectExternalAudioResponseModel.js +2 -1
  1359. package/serialization/types/RetryTriggerAction.d.ts +9 -0
  1360. package/serialization/types/RetryTriggerAction.js +41 -0
  1361. package/serialization/types/SimulationTestModel.d.ts +1 -0
  1362. package/serialization/types/SimulationTestModel.js +1 -0
  1363. package/serialization/types/SingleTestRunRequestModel.d.ts +2 -0
  1364. package/serialization/types/SingleTestRunRequestModel.js +2 -0
  1365. package/serialization/types/SpeechHistoryItemResponse.d.ts +1 -0
  1366. package/serialization/types/SpeechHistoryItemResponse.js +1 -0
  1367. package/serialization/types/Subscription.d.ts +2 -0
  1368. package/serialization/types/Subscription.js +2 -0
  1369. package/serialization/types/SystemToolConfigInputParams.d.ts +1 -21
  1370. package/serialization/types/SystemToolConfigInputParams.js +0 -10
  1371. package/serialization/types/SystemToolConfigOutputParams.d.ts +1 -21
  1372. package/serialization/types/SystemToolConfigOutputParams.js +0 -10
  1373. package/serialization/types/TelephonyDirection.d.ts +7 -0
  1374. package/{dist/serialization/types/MemoryEntryDeleteToolConfig.js → serialization/types/TelephonyDirection.js} +2 -2
  1375. package/serialization/types/UnitTestRunResponseModel.d.ts +3 -0
  1376. package/serialization/types/UnitTestRunResponseModel.js +3 -0
  1377. package/serialization/types/UpdateSimulationTestRequest.d.ts +1 -0
  1378. package/serialization/types/UpdateSimulationTestRequest.js +1 -0
  1379. package/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -2
  1380. package/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -2
  1381. package/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +9 -0
  1382. package/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.js +41 -0
  1383. package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +2 -1
  1384. package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +7 -1
  1385. package/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -2
  1386. package/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -2
  1387. package/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +9 -0
  1388. package/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +41 -0
  1389. package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +2 -1
  1390. package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +7 -1
  1391. package/serialization/types/WhatsAppAuthResponse.d.ts +14 -0
  1392. package/serialization/types/WhatsAppAuthResponse.js +46 -0
  1393. package/serialization/types/WorkflowExpressionConditionModelInputExpression.d.ts +6 -2
  1394. package/serialization/types/WorkflowExpressionConditionModelInputExpression.js +4 -1
  1395. package/serialization/types/WorkflowExpressionConditionModelOutputExpression.d.ts +4 -1
  1396. package/serialization/types/WorkflowExpressionConditionModelOutputExpression.js +1 -0
  1397. package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -2
  1398. package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -2
  1399. package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -2
  1400. package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -2
  1401. package/serialization/types/index.d.ts +72 -10
  1402. package/serialization/types/index.js +72 -10
  1403. package/version.d.ts +1 -1
  1404. package/version.js +1 -1
  1405. package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -5
  1406. package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -8
  1407. package/api/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  1408. package/api/types/AgentPromptChangeToolConfig.d.ts +0 -1
  1409. package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -5
  1410. package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -8
  1411. package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -5
  1412. package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -8
  1413. package/api/types/ConversationSummaryResponseModelDirection.d.ts +0 -5
  1414. package/api/types/MemoryEntryCreateToolConfig.d.ts +0 -1
  1415. package/api/types/MemoryEntryDeleteToolConfig.d.ts +0 -1
  1416. package/api/types/MemoryEntrySearchToolConfig.d.ts +0 -1
  1417. package/api/types/MemoryEntryUpdateToolConfig.d.ts +0 -1
  1418. package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -5
  1419. package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -8
  1420. package/dist/api/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  1421. package/dist/api/types/AgentPromptChangeToolConfig.d.ts +0 -1
  1422. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -5
  1423. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -8
  1424. package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -5
  1425. package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -8
  1426. package/dist/api/types/ConversationSummaryResponseModelDirection.d.ts +0 -5
  1427. package/dist/api/types/MemoryEntryCreateToolConfig.d.ts +0 -1
  1428. package/dist/api/types/MemoryEntryDeleteToolConfig.d.ts +0 -1
  1429. package/dist/api/types/MemoryEntrySearchToolConfig.d.ts +0 -1
  1430. package/dist/api/types/MemoryEntryUpdateToolConfig.d.ts +0 -1
  1431. package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -7
  1432. package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  1433. package/dist/serialization/types/AgentPromptChangeToolConfig.d.ts +0 -7
  1434. package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -7
  1435. package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -7
  1436. package/dist/serialization/types/ConversationSummaryResponseModelDirection.d.ts +0 -7
  1437. package/dist/serialization/types/MemoryEntryCreateToolConfig.d.ts +0 -7
  1438. package/dist/serialization/types/MemoryEntryDeleteToolConfig.d.ts +0 -7
  1439. package/dist/serialization/types/MemoryEntrySearchToolConfig.d.ts +0 -7
  1440. package/dist/serialization/types/MemoryEntryUpdateToolConfig.d.ts +0 -7
  1441. package/dist/serialization/types/MemoryEntryUpdateToolConfig.js +0 -39
  1442. package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -7
  1443. package/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
  1444. package/serialization/types/AgentPromptChangeToolConfig.d.ts +0 -7
  1445. package/serialization/types/AgentPromptChangeToolConfig.js +0 -39
  1446. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -7
  1447. package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -39
  1448. package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -7
  1449. package/serialization/types/ConversationSummaryResponseModelDirection.d.ts +0 -7
  1450. package/serialization/types/ConversationSummaryResponseModelDirection.js +0 -39
  1451. package/serialization/types/MemoryEntryCreateToolConfig.d.ts +0 -7
  1452. package/serialization/types/MemoryEntryCreateToolConfig.js +0 -39
  1453. package/serialization/types/MemoryEntryDeleteToolConfig.d.ts +0 -7
  1454. package/serialization/types/MemoryEntryDeleteToolConfig.js +0 -39
  1455. package/serialization/types/MemoryEntrySearchToolConfig.d.ts +0 -7
  1456. package/serialization/types/MemoryEntrySearchToolConfig.js +0 -39
  1457. package/serialization/types/MemoryEntryUpdateToolConfig.d.ts +0 -7
  1458. package/serialization/types/MemoryEntryUpdateToolConfig.js +0 -39
  1459. /package/api/{types/AgentPromptChangeToolConfig.js → resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js} +0 -0
  1460. /package/api/{types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.js} +0 -0
  1461. /package/api/{types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js} +0 -0
  1462. /package/api/{types/MemoryEntryCreateToolConfig.js → resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.js} +0 -0
  1463. /package/api/{types/MemoryEntryDeleteToolConfig.js → resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.js} +0 -0
  1464. /package/api/{types/MemoryEntrySearchToolConfig.js → resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js} +0 -0
  1465. /package/api/{types/MemoryEntryUpdateToolConfig.js → resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js} +0 -0
  1466. /package/{dist/api/types/AgentPromptChangeToolConfig.js → api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js} +0 -0
  1467. /package/{dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js} +0 -0
  1468. /package/{dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js} +0 -0
  1469. /package/{dist/api/types/MemoryEntryCreateToolConfig.js → api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js} +0 -0
  1470. /package/{dist/api/types/MemoryEntryDeleteToolConfig.js → api/types/ApiIntegrationOAuth2AuthCodeResponse.js} +0 -0
  1471. /package/{dist/api/types/MemoryEntrySearchToolConfig.js → api/types/AstConditionalOperatorNodeInput.js} +0 -0
  1472. /package/{dist/api/types/MemoryEntryUpdateToolConfig.js → api/types/AstConditionalOperatorNodeInputCondition.js} +0 -0
@@ -79,6 +79,7 @@ class KnowledgeBaseClient {
79
79
  * pageSize: 1,
80
80
  * search: "search",
81
81
  * showOnlyOwnedDocuments: true,
82
+ * createdByUserId: "created_by_user_id",
82
83
  * parentFolderId: "parent_folder_id",
83
84
  * ancestorFolderId: "ancestor_folder_id",
84
85
  * foldersFirst: true,
@@ -93,7 +94,7 @@ class KnowledgeBaseClient {
93
94
  __list() {
94
95
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
95
96
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
96
- const { pageSize, search, showOnlyOwnedDocuments, types, parentFolderId, ancestorFolderId, foldersFirst, sortDirection, sortBy, cursor, } = request;
97
+ const { pageSize, search, showOnlyOwnedDocuments, createdByUserId, types, parentFolderId, ancestorFolderId, foldersFirst, sortDirection, sortBy, cursor, } = request;
97
98
  const _queryParams = {};
98
99
  if (pageSize != null) {
99
100
  _queryParams.page_size = pageSize.toString();
@@ -104,6 +105,9 @@ class KnowledgeBaseClient {
104
105
  if (showOnlyOwnedDocuments != null) {
105
106
  _queryParams.show_only_owned_documents = showOnlyOwnedDocuments.toString();
106
107
  }
108
+ if (createdByUserId != null) {
109
+ _queryParams.created_by_user_id = createdByUserId;
110
+ }
107
111
  if (types != null) {
108
112
  if (Array.isArray(types)) {
109
113
  _queryParams.types = types.map((item) => serializers.KnowledgeBaseDocumentType.jsonOrThrow(item, { unrecognizedObjectKeys: "strip" }));
@@ -5,6 +5,7 @@ import type * as ElevenLabs from "../../../../../../index";
5
5
  * pageSize: 1,
6
6
  * search: "search",
7
7
  * showOnlyOwnedDocuments: true,
8
+ * createdByUserId: "created_by_user_id",
8
9
  * parentFolderId: "parent_folder_id",
9
10
  * ancestorFolderId: "ancestor_folder_id",
10
11
  * foldersFirst: true,
@@ -18,8 +19,10 @@ export interface KnowledgeBaseListRequest {
18
19
  pageSize?: number;
19
20
  /** If specified, the endpoint returns only such knowledge base documents whose names start with this string. */
20
21
  search?: string;
21
- /** If set to true, the endpoint will return only documents owned by you (and not shared from somebody else). */
22
+ /** If set to true, the endpoint will return only documents owned by you (and not shared from somebody else). Deprecated: use created_by_user_id instead. */
22
23
  showOnlyOwnedDocuments?: boolean;
24
+ /** Filter documents by creator user ID. When set, only documents created by this user are returned. Takes precedence over show_only_owned_documents. Use '@me' to refer to the authenticated user. */
25
+ createdByUserId?: string;
23
26
  /** If present, the endpoint will return only documents of the given types. */
24
27
  types?: ElevenLabs.KnowledgeBaseDocumentType | ElevenLabs.KnowledgeBaseDocumentType[];
25
28
  /** If set, the endpoint will return only documents that are direct children of the given folder. */
@@ -10,6 +10,19 @@ export declare namespace DocumentClient {
10
10
  export declare class DocumentClient {
11
11
  protected readonly _options: NormalizedClientOptions<DocumentClient.Options>;
12
12
  constructor(options?: DocumentClient.Options);
13
+ /**
14
+ * Manually refresh a URL document by re-fetching its content from the source URL.
15
+ *
16
+ * @param {string} documentation_id - The id of a document from the knowledge base. This is returned on document addition.
17
+ * @param {DocumentClient.RequestOptions} requestOptions - Request-specific configuration.
18
+ *
19
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
20
+ *
21
+ * @example
22
+ * await client.conversationalAi.knowledgeBase.document.refresh("21m00Tcm4TlvDq8ikWAM")
23
+ */
24
+ refresh(documentation_id: string, requestOptions?: DocumentClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.conversationalAi.knowledgeBase.DocumentRefreshResponse>;
25
+ private __refresh;
13
26
  /**
14
27
  * In case the document is not RAG indexed, it triggers rag indexing task, otherwise it just returns the current status.
15
28
  *
@@ -56,6 +56,66 @@ class DocumentClient {
56
56
  constructor(options = {}) {
57
57
  this._options = (0, BaseClient_1.normalizeClientOptions)(options);
58
58
  }
59
+ /**
60
+ * Manually refresh a URL document by re-fetching its content from the source URL.
61
+ *
62
+ * @param {string} documentation_id - The id of a document from the knowledge base. This is returned on document addition.
63
+ * @param {DocumentClient.RequestOptions} requestOptions - Request-specific configuration.
64
+ *
65
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
66
+ *
67
+ * @example
68
+ * await client.conversationalAi.knowledgeBase.document.refresh("21m00Tcm4TlvDq8ikWAM")
69
+ */
70
+ refresh(documentation_id, requestOptions) {
71
+ return core.HttpResponsePromise.fromPromise(this.__refresh(documentation_id, requestOptions));
72
+ }
73
+ __refresh(documentation_id, requestOptions) {
74
+ return __awaiter(this, void 0, void 0, function* () {
75
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
76
+ const _headers = (0, headers_1.mergeHeaders)((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, (0, headers_1.mergeOnlyDefinedHeaders)({ "xi-api-key": (_b = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey) !== null && _b !== void 0 ? _b : (_c = this._options) === null || _c === void 0 ? void 0 : _c.apiKey }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
77
+ const _response = yield ((_d = this._options.fetcher) !== null && _d !== void 0 ? _d : core.fetcher)({
78
+ url: core.url.join((_f = (_e = (yield core.Supplier.get(this._options.baseUrl))) !== null && _e !== void 0 ? _e : (yield core.Supplier.get(this._options.environment))) !== null && _f !== void 0 ? _f : environments.ElevenLabsEnvironment.Production, `v1/convai/knowledge-base/${core.url.encodePathParam(documentation_id)}/refresh`),
79
+ method: "POST",
80
+ headers: _headers,
81
+ queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
82
+ timeoutMs: ((_j = (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.timeoutInSeconds) !== null && _j !== void 0 ? _j : 240) * 1000,
83
+ maxRetries: (_k = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _k !== void 0 ? _k : (_l = this._options) === null || _l === void 0 ? void 0 : _l.maxRetries,
84
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
85
+ fetchFn: (_m = this._options) === null || _m === void 0 ? void 0 : _m.fetch,
86
+ logging: this._options.logging,
87
+ });
88
+ if (_response.ok) {
89
+ return {
90
+ data: serializers.conversationalAi.knowledgeBase.DocumentRefreshResponse.parseOrThrow(_response.body, {
91
+ unrecognizedObjectKeys: "passthrough",
92
+ allowUnrecognizedUnionMembers: true,
93
+ allowUnrecognizedEnumValues: true,
94
+ breadcrumbsPrefix: ["response"],
95
+ }),
96
+ rawResponse: _response.rawResponse,
97
+ };
98
+ }
99
+ if (_response.error.reason === "status-code") {
100
+ switch (_response.error.statusCode) {
101
+ case 422:
102
+ throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
103
+ unrecognizedObjectKeys: "passthrough",
104
+ allowUnrecognizedUnionMembers: true,
105
+ allowUnrecognizedEnumValues: true,
106
+ breadcrumbsPrefix: ["response"],
107
+ }), _response.rawResponse);
108
+ default:
109
+ throw new errors.ElevenLabsError({
110
+ statusCode: _response.error.statusCode,
111
+ body: _response.error.body,
112
+ rawResponse: _response.rawResponse,
113
+ });
114
+ }
115
+ }
116
+ return (0, handleNonStatusCodeError_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "POST", "/v1/convai/knowledge-base/{documentation_id}/refresh");
117
+ });
118
+ }
59
119
  /**
60
120
  * In case the document is not RAG indexed, it triggers rag indexing task, otherwise it just returns the current status.
61
121
  *
@@ -1 +1,2 @@
1
1
  export * from "./client";
2
+ export * from "./types";
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./client"), exports);
18
+ __exportStar(require("./types"), exports);
@@ -0,0 +1,16 @@
1
+ import type * as ElevenLabs from "../../../../../../../index";
2
+ export type DocumentRefreshResponse = ElevenLabs.conversationalAi.knowledgeBase.DocumentRefreshResponse.Url | ElevenLabs.conversationalAi.knowledgeBase.DocumentRefreshResponse.File_ | ElevenLabs.conversationalAi.knowledgeBase.DocumentRefreshResponse.Text | ElevenLabs.conversationalAi.knowledgeBase.DocumentRefreshResponse.Folder;
3
+ export declare namespace DocumentRefreshResponse {
4
+ interface Url extends ElevenLabs.GetKnowledgeBaseUrlResponseModel {
5
+ type: "url";
6
+ }
7
+ interface File_ extends ElevenLabs.GetKnowledgeBaseFileResponseModel {
8
+ type: "file";
9
+ }
10
+ interface Text extends ElevenLabs.GetKnowledgeBaseTextResponseModel {
11
+ type: "text";
12
+ }
13
+ interface Folder extends ElevenLabs.GetKnowledgeBaseFolderResponseModel {
14
+ type: "folder";
15
+ }
16
+ }
@@ -0,0 +1 @@
1
+ export * from "./DocumentRefreshResponse";
@@ -14,4 +14,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection"), exports);
17
+ __exportStar(require("./DocumentRefreshResponse"), exports);
@@ -9,4 +9,8 @@ export interface BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost {
9
9
  name: string;
10
10
  /** If set, the created document or folder will be placed inside the given folder. */
11
11
  parentFolderId?: string;
12
+ /** Whether to enable auto-sync for this URL document. */
13
+ enableAutoSync?: boolean;
14
+ /** Whether to automatically remove the document if the URL becomes unavailable. Only applicable when auto-sync is enabled. */
15
+ autoRemove?: boolean;
12
16
  }
@@ -11,4 +11,8 @@ export interface BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost {
11
11
  name?: string;
12
12
  /** If set, the created document or folder will be placed inside the given folder. */
13
13
  parentFolderId?: string;
14
+ /** Whether to enable auto-sync for this URL document. */
15
+ enableAutoSync?: boolean;
16
+ /** Whether to automatically remove the document if the URL becomes unavailable. Only applicable when auto-sync is enabled. */
17
+ autoRemove?: boolean;
14
18
  }
@@ -15,13 +15,16 @@ export declare class ChunkClient {
15
15
  *
16
16
  * @param {string} documentation_id - The id of a document from the knowledge base. This is returned on document addition.
17
17
  * @param {string} chunk_id - The id of a document RAG chunk from the knowledge base.
18
+ * @param {ElevenLabs.conversationalAi.knowledgeBase.documents.ChunkGetRequest} request
18
19
  * @param {ChunkClient.RequestOptions} requestOptions - Request-specific configuration.
19
20
  *
20
21
  * @throws {@link ElevenLabs.UnprocessableEntityError}
21
22
  *
22
23
  * @example
23
- * await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8ikWAM", "chunk_id")
24
+ * await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8ikWAM", "chunk_id", {
25
+ * embeddingModel: "e5_mistral_7b_instruct"
26
+ * })
24
27
  */
25
- get(documentation_id: string, chunk_id: string, requestOptions?: ChunkClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.KnowledgeBaseDocumentChunkResponseModel>;
28
+ get(documentation_id: string, chunk_id: string, request?: ElevenLabs.conversationalAi.knowledgeBase.documents.ChunkGetRequest, requestOptions?: ChunkClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.KnowledgeBaseDocumentChunkResponseModel>;
26
29
  private __get;
27
30
  }
@@ -61,25 +61,35 @@ class ChunkClient {
61
61
  *
62
62
  * @param {string} documentation_id - The id of a document from the knowledge base. This is returned on document addition.
63
63
  * @param {string} chunk_id - The id of a document RAG chunk from the knowledge base.
64
+ * @param {ElevenLabs.conversationalAi.knowledgeBase.documents.ChunkGetRequest} request
64
65
  * @param {ChunkClient.RequestOptions} requestOptions - Request-specific configuration.
65
66
  *
66
67
  * @throws {@link ElevenLabs.UnprocessableEntityError}
67
68
  *
68
69
  * @example
69
- * await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8ikWAM", "chunk_id")
70
+ * await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8ikWAM", "chunk_id", {
71
+ * embeddingModel: "e5_mistral_7b_instruct"
72
+ * })
70
73
  */
71
- get(documentation_id, chunk_id, requestOptions) {
72
- return core.HttpResponsePromise.fromPromise(this.__get(documentation_id, chunk_id, requestOptions));
74
+ get(documentation_id, chunk_id, request = {}, requestOptions) {
75
+ return core.HttpResponsePromise.fromPromise(this.__get(documentation_id, chunk_id, request, requestOptions));
73
76
  }
74
- __get(documentation_id, chunk_id, requestOptions) {
75
- return __awaiter(this, void 0, void 0, function* () {
77
+ __get(documentation_id_1, chunk_id_1) {
78
+ return __awaiter(this, arguments, void 0, function* (documentation_id, chunk_id, request = {}, requestOptions) {
76
79
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
80
+ const { embeddingModel } = request;
81
+ const _queryParams = {};
82
+ if (embeddingModel != null) {
83
+ _queryParams.embedding_model = serializers.EmbeddingModelEnum.jsonOrThrow(embeddingModel, {
84
+ unrecognizedObjectKeys: "strip",
85
+ });
86
+ }
77
87
  const _headers = (0, headers_1.mergeHeaders)((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, (0, headers_1.mergeOnlyDefinedHeaders)({ "xi-api-key": (_b = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey) !== null && _b !== void 0 ? _b : (_c = this._options) === null || _c === void 0 ? void 0 : _c.apiKey }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
78
88
  const _response = yield ((_d = this._options.fetcher) !== null && _d !== void 0 ? _d : core.fetcher)({
79
89
  url: core.url.join((_f = (_e = (yield core.Supplier.get(this._options.baseUrl))) !== null && _e !== void 0 ? _e : (yield core.Supplier.get(this._options.environment))) !== null && _f !== void 0 ? _f : environments.ElevenLabsEnvironment.Production, `v1/convai/knowledge-base/${core.url.encodePathParam(documentation_id)}/chunk/${core.url.encodePathParam(chunk_id)}`),
80
90
  method: "GET",
81
91
  headers: _headers,
82
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
92
+ queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
83
93
  timeoutMs: ((_j = (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.timeoutInSeconds) !== null && _j !== void 0 ? _j : 240) * 1000,
84
94
  maxRetries: (_k = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _k !== void 0 ? _k : (_l = this._options) === null || _l === void 0 ? void 0 : _l.maxRetries,
85
95
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -1,2 +1,17 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
2
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);
@@ -0,0 +1,11 @@
1
+ import type * as ElevenLabs from "../../../../../../../../../../index";
2
+ /**
3
+ * @example
4
+ * {
5
+ * embeddingModel: "e5_mistral_7b_instruct"
6
+ * }
7
+ */
8
+ export interface ChunkGetRequest {
9
+ /** The embedding model used to retrieve the chunk. */
10
+ embeddingModel?: ElevenLabs.EmbeddingModelEnum;
11
+ }
@@ -0,0 +1 @@
1
+ export type { ChunkGetRequest } from "./ChunkGetRequest";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,5 @@
1
1
  export * as chunk from "./chunk";
2
+ export * from "./chunk/client/requests";
2
3
  export * as summaries from "./summaries";
3
4
  export * from "./summaries/client/requests";
4
5
  export * from "./summaries/types";
@@ -38,6 +38,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.summaries = exports.chunk = void 0;
40
40
  exports.chunk = __importStar(require("./chunk"));
41
+ __exportStar(require("./chunk/client/requests"), exports);
41
42
  exports.summaries = __importStar(require("./summaries"));
42
43
  __exportStar(require("./summaries/client/requests"), exports);
43
44
  __exportStar(require("./summaries/types"), exports);
@@ -1,5 +1,6 @@
1
1
  export * as document from "./document";
2
2
  export * from "./document/client/requests";
3
+ export * from "./document/types";
3
4
  export * as documents from "./documents";
4
5
  export * from "./documents/client/requests";
5
6
  export * from "./documents/types";
@@ -39,6 +39,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.documents = exports.document = void 0;
40
40
  exports.document = __importStar(require("./document"));
41
41
  __exportStar(require("./document/client/requests"), exports);
42
+ __exportStar(require("./document/types"), exports);
42
43
  exports.documents = __importStar(require("./documents"));
43
44
  __exportStar(require("./documents/client/requests"), exports);
44
45
  __exportStar(require("./documents/types"), exports);
@@ -23,5 +23,5 @@ export interface McpServerConfigUpdateRequestModel {
23
23
  /** Optional secret token for authentication with this MCP server */
24
24
  secretToken?: ElevenLabs.ConvAiSecretLocator;
25
25
  /** Optional auth connection to use for authentication with this MCP server */
26
- authConnection?: ElevenLabs.AuthConnectionLocator;
26
+ authConnection?: ElevenLabs.conversationalAi.McpServerConfigUpdateRequestModelAuthConnection;
27
27
  }
@@ -0,0 +1,5 @@
1
+ import type * as ElevenLabs from "../../../../../index";
2
+ /**
3
+ * Optional auth connection to use for authentication with this MCP server
4
+ */
5
+ export type McpServerConfigUpdateRequestModelAuthConnection = ElevenLabs.AuthConnectionLocator | ElevenLabs.EnvironmentAuthConnectionLocator;
@@ -1,2 +1,2 @@
1
1
  import type * as ElevenLabs from "../../../../../index";
2
- export type McpServerConfigUpdateRequestModelRequestHeadersValue = string | ElevenLabs.ConvAiSecretLocator | ElevenLabs.ConvAiDynamicVariable;
2
+ export type McpServerConfigUpdateRequestModelRequestHeadersValue = string | ElevenLabs.ConvAiSecretLocator | ElevenLabs.ConvAiDynamicVariable | ElevenLabs.ConvAiEnvVarLocator;
@@ -1 +1,2 @@
1
+ export * from "./McpServerConfigUpdateRequestModelAuthConnection";
1
2
  export * from "./McpServerConfigUpdateRequestModelRequestHeadersValue";
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./McpServerConfigUpdateRequestModelAuthConnection"), exports);
17
18
  __exportStar(require("./McpServerConfigUpdateRequestModelRequestHeadersValue"), exports);
@@ -9,5 +9,7 @@ export interface PatchConvAiSettingsRequest {
9
9
  /** Whether the workspace can use MCP servers */
10
10
  canUseMcpServers?: boolean;
11
11
  ragRetentionPeriodDays?: number;
12
+ /** Days to retain conversation embeddings. None means use the system default (30 days). */
13
+ conversationEmbeddingRetentionDays?: number;
12
14
  defaultLivekitStack?: ElevenLabs.LivekitStackType;
13
15
  }
@@ -23,6 +23,7 @@ export declare class ToolsClient {
23
23
  * search: "search",
24
24
  * pageSize: 1,
25
25
  * showOnlyOwnedDocuments: true,
26
+ * createdByUserId: "created_by_user_id",
26
27
  * sortDirection: "asc",
27
28
  * sortBy: "name",
28
29
  * cursor: "cursor"
@@ -67,14 +68,17 @@ export declare class ToolsClient {
67
68
  * Delete tool from the workspace.
68
69
  *
69
70
  * @param {string} tool_id - ID of the requested tool.
71
+ * @param {ElevenLabs.conversationalAi.ToolsDeleteRequest} request
70
72
  * @param {ToolsClient.RequestOptions} requestOptions - Request-specific configuration.
71
73
  *
72
74
  * @throws {@link ElevenLabs.UnprocessableEntityError}
73
75
  *
74
76
  * @example
75
- * await client.conversationalAi.tools.delete("tool_id")
77
+ * await client.conversationalAi.tools.delete("tool_id", {
78
+ * force: true
79
+ * })
76
80
  */
77
- delete(tool_id: string, requestOptions?: ToolsClient.RequestOptions): core.HttpResponsePromise<unknown>;
81
+ delete(tool_id: string, request?: ElevenLabs.conversationalAi.ToolsDeleteRequest, requestOptions?: ToolsClient.RequestOptions): core.HttpResponsePromise<unknown>;
78
82
  private __delete;
79
83
  /**
80
84
  * Update tool that is available in the workspace.
@@ -69,6 +69,7 @@ class ToolsClient {
69
69
  * search: "search",
70
70
  * pageSize: 1,
71
71
  * showOnlyOwnedDocuments: true,
72
+ * createdByUserId: "created_by_user_id",
72
73
  * sortDirection: "asc",
73
74
  * sortBy: "name",
74
75
  * cursor: "cursor"
@@ -80,7 +81,7 @@ class ToolsClient {
80
81
  __list() {
81
82
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
82
83
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
83
- const { search, pageSize, showOnlyOwnedDocuments, types, sortDirection, sortBy, cursor } = request;
84
+ const { search, pageSize, showOnlyOwnedDocuments, createdByUserId, types, sortDirection, sortBy, cursor } = request;
84
85
  const _queryParams = {};
85
86
  if (search != null) {
86
87
  _queryParams.search = search;
@@ -91,6 +92,9 @@ class ToolsClient {
91
92
  if (showOnlyOwnedDocuments != null) {
92
93
  _queryParams.show_only_owned_documents = showOnlyOwnedDocuments.toString();
93
94
  }
95
+ if (createdByUserId != null) {
96
+ _queryParams.created_by_user_id = createdByUserId;
97
+ }
94
98
  if (types != null) {
95
99
  if (Array.isArray(types)) {
96
100
  _queryParams.types = types.map((item) => serializers.ToolTypeFilter.jsonOrThrow(item, { unrecognizedObjectKeys: "strip" }));
@@ -287,25 +291,33 @@ class ToolsClient {
287
291
  * Delete tool from the workspace.
288
292
  *
289
293
  * @param {string} tool_id - ID of the requested tool.
294
+ * @param {ElevenLabs.conversationalAi.ToolsDeleteRequest} request
290
295
  * @param {ToolsClient.RequestOptions} requestOptions - Request-specific configuration.
291
296
  *
292
297
  * @throws {@link ElevenLabs.UnprocessableEntityError}
293
298
  *
294
299
  * @example
295
- * await client.conversationalAi.tools.delete("tool_id")
300
+ * await client.conversationalAi.tools.delete("tool_id", {
301
+ * force: true
302
+ * })
296
303
  */
297
- delete(tool_id, requestOptions) {
298
- return core.HttpResponsePromise.fromPromise(this.__delete(tool_id, requestOptions));
304
+ delete(tool_id, request = {}, requestOptions) {
305
+ return core.HttpResponsePromise.fromPromise(this.__delete(tool_id, request, requestOptions));
299
306
  }
300
- __delete(tool_id, requestOptions) {
301
- return __awaiter(this, void 0, void 0, function* () {
307
+ __delete(tool_id_1) {
308
+ return __awaiter(this, arguments, void 0, function* (tool_id, request = {}, requestOptions) {
302
309
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
310
+ const { force } = request;
311
+ const _queryParams = {};
312
+ if (force != null) {
313
+ _queryParams.force = force.toString();
314
+ }
303
315
  const _headers = (0, headers_1.mergeHeaders)((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, (0, headers_1.mergeOnlyDefinedHeaders)({ "xi-api-key": (_b = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey) !== null && _b !== void 0 ? _b : (_c = this._options) === null || _c === void 0 ? void 0 : _c.apiKey }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
304
316
  const _response = yield ((_d = this._options.fetcher) !== null && _d !== void 0 ? _d : core.fetcher)({
305
317
  url: core.url.join((_f = (_e = (yield core.Supplier.get(this._options.baseUrl))) !== null && _e !== void 0 ? _e : (yield core.Supplier.get(this._options.environment))) !== null && _f !== void 0 ? _f : environments.ElevenLabsEnvironment.Production, `v1/convai/tools/${core.url.encodePathParam(tool_id)}`),
306
318
  method: "DELETE",
307
319
  headers: _headers,
308
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
320
+ queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
309
321
  timeoutMs: ((_j = (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.timeoutInSeconds) !== null && _j !== void 0 ? _j : 240) * 1000,
310
322
  maxRetries: (_k = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _k !== void 0 ? _k : (_l = this._options) === null || _l === void 0 ? void 0 : _l.maxRetries,
311
323
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -0,0 +1,10 @@
1
+ /**
2
+ * @example
3
+ * {
4
+ * force: true
5
+ * }
6
+ */
7
+ export interface ToolsDeleteRequest {
8
+ /** If set to true, the tool will be deleted regardless of whether it is used by any agents and it will be removed from the dependent agents and branches. */
9
+ force?: boolean;
10
+ }
@@ -5,6 +5,7 @@ import type * as ElevenLabs from "../../../../../../index";
5
5
  * search: "search",
6
6
  * pageSize: 1,
7
7
  * showOnlyOwnedDocuments: true,
8
+ * createdByUserId: "created_by_user_id",
8
9
  * sortDirection: "asc",
9
10
  * sortBy: "name",
10
11
  * cursor: "cursor"
@@ -15,8 +16,10 @@ export interface ToolsListRequest {
15
16
  search?: string;
16
17
  /** How many documents to return at maximum. Can not exceed 100, defaults to 30. */
17
18
  pageSize?: number;
18
- /** If set to true, the endpoint will return only tools owned by you (and not shared from somebody else). */
19
+ /** If set to true, the endpoint will return only tools owned by you (and not shared from somebody else). Deprecated: use created_by_user_id instead. */
19
20
  showOnlyOwnedDocuments?: boolean;
21
+ /** Filter tools by creator user ID. When set, only tools created by this user are returned. Takes precedence over show_only_owned_documents. Use '@me' to refer to the authenticated user. */
22
+ createdByUserId?: string;
20
23
  /** If present, the endpoint will return only tools of the given types. */
21
24
  types?: ElevenLabs.ToolTypeFilter | ElevenLabs.ToolTypeFilter[];
22
25
  /** The direction to sort the results */
@@ -1,2 +1,3 @@
1
+ export type { ToolsDeleteRequest } from "./ToolsDeleteRequest";
1
2
  export type { ToolsGetDependentAgentsRequest } from "./ToolsGetDependentAgentsRequest";
2
3
  export type { ToolsListRequest } from "./ToolsListRequest";
@@ -11,6 +11,6 @@ export interface BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCall
11
11
  agentId: string;
12
12
  fromNumber: string;
13
13
  toNumber: string;
14
- direction?: ElevenLabs.conversationalAi.BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection;
14
+ direction?: ElevenLabs.TelephonyDirection;
15
15
  conversationInitiationClientData?: ElevenLabs.ConversationInitiationClientDataRequestInput;
16
16
  }
@@ -1,2 +1 @@
1
1
  export * from "./client";
2
- export * from "./types";
@@ -15,4 +15,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./client"), exports);
18
- __exportStar(require("./types"), exports);
@@ -0,0 +1,86 @@
1
+ import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient";
2
+ import { type NormalizedClientOptions } from "../../../../BaseClient";
3
+ import * as core from "../../../../core";
4
+ import * as ElevenLabs from "../../../index";
5
+ export declare namespace EnvironmentVariablesClient {
6
+ type Options = BaseClientOptions;
7
+ interface RequestOptions extends BaseRequestOptions {
8
+ }
9
+ }
10
+ export declare class EnvironmentVariablesClient {
11
+ protected readonly _options: NormalizedClientOptions<EnvironmentVariablesClient.Options>;
12
+ constructor(options?: EnvironmentVariablesClient.Options);
13
+ /**
14
+ * List all environment variables for the workspace with optional filtering
15
+ *
16
+ * @param {ElevenLabs.EnvironmentVariablesListRequest} request
17
+ * @param {EnvironmentVariablesClient.RequestOptions} requestOptions - Request-specific configuration.
18
+ *
19
+ * @throws {@link ElevenLabs.BadRequestError}
20
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
21
+ *
22
+ * @example
23
+ * await client.environmentVariables.list({
24
+ * cursor: "cursor",
25
+ * pageSize: 1,
26
+ * label: "label",
27
+ * environment: "environment",
28
+ * type: "string"
29
+ * })
30
+ */
31
+ list(request?: ElevenLabs.EnvironmentVariablesListRequest, requestOptions?: EnvironmentVariablesClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.EnvironmentVariablesListResponse>;
32
+ private __list;
33
+ /**
34
+ * Create a new environment variable for the workspace
35
+ *
36
+ * @param {ElevenLabs.EnvironmentVariablesCreateRequestBody} request
37
+ * @param {EnvironmentVariablesClient.RequestOptions} requestOptions - Request-specific configuration.
38
+ *
39
+ * @throws {@link ElevenLabs.BadRequestError}
40
+ * @throws {@link ElevenLabs.ConflictError}
41
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
42
+ *
43
+ * @example
44
+ * await client.environmentVariables.create({
45
+ * type: "string",
46
+ * label: "label",
47
+ * values: {
48
+ * "key": "value"
49
+ * }
50
+ * })
51
+ */
52
+ create(request: ElevenLabs.EnvironmentVariablesCreateRequestBody, requestOptions?: EnvironmentVariablesClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.EnvironmentVariableResponse>;
53
+ private __create;
54
+ /**
55
+ * Get a specific environment variable by ID
56
+ *
57
+ * @param {string} env_var_id
58
+ * @param {EnvironmentVariablesClient.RequestOptions} requestOptions - Request-specific configuration.
59
+ *
60
+ * @throws {@link ElevenLabs.NotFoundError}
61
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
62
+ *
63
+ * @example
64
+ * await client.environmentVariables.get("env_var_id")
65
+ */
66
+ get(env_var_id: string, requestOptions?: EnvironmentVariablesClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.EnvironmentVariableResponse>;
67
+ private __get;
68
+ /**
69
+ * Replace an environment variable's values. Use null to remove an environment (except production).
70
+ *
71
+ * @param {string} env_var_id
72
+ * @param {ElevenLabs.UpdateEnvironmentVariableRequest} request
73
+ * @param {EnvironmentVariablesClient.RequestOptions} requestOptions - Request-specific configuration.
74
+ *
75
+ * @throws {@link ElevenLabs.BadRequestError}
76
+ * @throws {@link ElevenLabs.NotFoundError}
77
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
78
+ *
79
+ * @example
80
+ * await client.environmentVariables.update("env_var_id", {
81
+ * values: {}
82
+ * })
83
+ */
84
+ update(env_var_id: string, request: ElevenLabs.UpdateEnvironmentVariableRequest, requestOptions?: EnvironmentVariablesClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.EnvironmentVariableResponse>;
85
+ private __update;
86
+ }