twilio 5.3.6 → 5.4.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 (579) hide show
  1. package/README.md +7 -0
  2. package/lib/auth_strategy/AuthStrategy.d.ts +7 -0
  3. package/lib/auth_strategy/AuthStrategy.js +11 -0
  4. package/lib/auth_strategy/BasicAuthStrategy.d.ts +8 -0
  5. package/lib/auth_strategy/BasicAuthStrategy.js +21 -0
  6. package/lib/auth_strategy/NoAuthStrategy.d.ts +6 -0
  7. package/lib/auth_strategy/NoAuthStrategy.js +18 -0
  8. package/lib/auth_strategy/TokenAuthStrategy.d.ts +16 -0
  9. package/lib/auth_strategy/TokenAuthStrategy.js +60 -0
  10. package/lib/base/BaseTwilio.d.ts +11 -2
  11. package/lib/base/BaseTwilio.js +44 -16
  12. package/lib/base/Page.js +3 -0
  13. package/lib/base/RequestClient.d.ts +6 -0
  14. package/lib/base/RequestClient.js +5 -1
  15. package/lib/credential_provider/ClientCredentialProvider.d.ts +22 -0
  16. package/lib/credential_provider/ClientCredentialProvider.js +50 -0
  17. package/lib/credential_provider/CredentialProvider.d.ts +7 -0
  18. package/lib/credential_provider/CredentialProvider.js +11 -0
  19. package/lib/credential_provider/NoAuthCredentialProvider.d.ts +9 -0
  20. package/lib/credential_provider/NoAuthCredentialProvider.js +19 -0
  21. package/lib/credential_provider/OrgsCredentialProvider.d.ts +22 -0
  22. package/lib/credential_provider/OrgsCredentialProvider.js +50 -0
  23. package/lib/http/bearer_token/ApiTokenManager.d.ts +8 -0
  24. package/lib/http/bearer_token/ApiTokenManager.js +33 -0
  25. package/lib/http/bearer_token/OrgsTokenManager.d.ts +8 -0
  26. package/lib/http/bearer_token/OrgsTokenManager.js +33 -0
  27. package/lib/http/bearer_token/TokenManager.d.ts +3 -0
  28. package/lib/http/bearer_token/TokenManager.js +5 -0
  29. package/lib/index.d.ts +9 -0
  30. package/lib/index.js +6 -0
  31. package/lib/rest/PreviewIam.d.ts +18 -0
  32. package/lib/rest/PreviewIam.js +29 -0
  33. package/lib/rest/PreviewIamBase.d.ts +13 -0
  34. package/lib/rest/PreviewIamBase.js +31 -0
  35. package/lib/rest/Twilio.d.ts +5 -0
  36. package/lib/rest/Twilio.js +6 -0
  37. package/lib/rest/accounts/v1/authTokenPromotion.js +3 -0
  38. package/lib/rest/accounts/v1/bulkConsents.js +1 -0
  39. package/lib/rest/accounts/v1/bulkContacts.js +1 -0
  40. package/lib/rest/accounts/v1/credential/aws.js +8 -0
  41. package/lib/rest/accounts/v1/credential/publicKey.js +8 -0
  42. package/lib/rest/accounts/v1/safelist.js +2 -0
  43. package/lib/rest/accounts/v1/secondaryAuthToken.js +5 -0
  44. package/lib/rest/api/v2010/account/address/dependentPhoneNumber.js +1 -0
  45. package/lib/rest/api/v2010/account/address.js +8 -0
  46. package/lib/rest/api/v2010/account/application.js +8 -0
  47. package/lib/rest/api/v2010/account/authorizedConnectApp.js +4 -0
  48. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.js +1 -0
  49. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.js +1 -0
  50. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.js +1 -0
  51. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.js +1 -0
  52. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.js +1 -0
  53. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.js +1 -0
  54. package/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.js +1 -0
  55. package/lib/rest/api/v2010/account/availablePhoneNumberCountry.js +4 -0
  56. package/lib/rest/api/v2010/account/balance.js +3 -0
  57. package/lib/rest/api/v2010/account/call/event.js +1 -0
  58. package/lib/rest/api/v2010/account/call/notification.js +4 -0
  59. package/lib/rest/api/v2010/account/call/payment.js +2 -0
  60. package/lib/rest/api/v2010/account/call/recording.js +8 -0
  61. package/lib/rest/api/v2010/account/call/siprec.js +2 -0
  62. package/lib/rest/api/v2010/account/call/stream.js +2 -0
  63. package/lib/rest/api/v2010/account/call/transcription.d.ts +2 -0
  64. package/lib/rest/api/v2010/account/call/transcription.js +4 -0
  65. package/lib/rest/api/v2010/account/call/userDefinedMessage.js +1 -0
  66. package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.js +3 -0
  67. package/lib/rest/api/v2010/account/call.js +8 -0
  68. package/lib/rest/api/v2010/account/conference/participant.js +8 -0
  69. package/lib/rest/api/v2010/account/conference/recording.js +7 -0
  70. package/lib/rest/api/v2010/account/conference.js +5 -0
  71. package/lib/rest/api/v2010/account/connectApp.js +7 -0
  72. package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.js +4 -0
  73. package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.js +7 -0
  74. package/lib/rest/api/v2010/account/incomingPhoneNumber/local.js +2 -0
  75. package/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.js +2 -0
  76. package/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.js +2 -0
  77. package/lib/rest/api/v2010/account/incomingPhoneNumber.js +8 -0
  78. package/lib/rest/api/v2010/account/key.js +7 -0
  79. package/lib/rest/api/v2010/account/message/feedback.js +1 -0
  80. package/lib/rest/api/v2010/account/message/media.js +6 -0
  81. package/lib/rest/api/v2010/account/message.js +8 -0
  82. package/lib/rest/api/v2010/account/newKey.js +1 -0
  83. package/lib/rest/api/v2010/account/newSigningKey.js +1 -0
  84. package/lib/rest/api/v2010/account/notification.js +4 -0
  85. package/lib/rest/api/v2010/account/outgoingCallerId.js +7 -0
  86. package/lib/rest/api/v2010/account/queue/member.js +5 -0
  87. package/lib/rest/api/v2010/account/queue.js +8 -0
  88. package/lib/rest/api/v2010/account/recording/addOnResult/payload/data.js +3 -0
  89. package/lib/rest/api/v2010/account/recording/addOnResult/payload.js +6 -0
  90. package/lib/rest/api/v2010/account/recording/addOnResult.js +6 -0
  91. package/lib/rest/api/v2010/account/recording/transcription.js +6 -0
  92. package/lib/rest/api/v2010/account/recording.js +4 -0
  93. package/lib/rest/api/v2010/account/shortCode.js +5 -0
  94. package/lib/rest/api/v2010/account/signingKey.js +7 -0
  95. package/lib/rest/api/v2010/account/sip/credentialList/credential.js +8 -0
  96. package/lib/rest/api/v2010/account/sip/credentialList.js +8 -0
  97. package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.js +7 -0
  98. package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.js +7 -0
  99. package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.js +7 -0
  100. package/lib/rest/api/v2010/account/sip/domain/credentialListMapping.js +7 -0
  101. package/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.js +7 -0
  102. package/lib/rest/api/v2010/account/sip/domain.js +8 -0
  103. package/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.js +8 -0
  104. package/lib/rest/api/v2010/account/sip/ipAccessControlList.js +8 -0
  105. package/lib/rest/api/v2010/account/token.js +1 -0
  106. package/lib/rest/api/v2010/account/transcription.js +6 -0
  107. package/lib/rest/api/v2010/account/usage/record/allTime.js +1 -0
  108. package/lib/rest/api/v2010/account/usage/record/daily.js +1 -0
  109. package/lib/rest/api/v2010/account/usage/record/lastMonth.js +1 -0
  110. package/lib/rest/api/v2010/account/usage/record/monthly.js +1 -0
  111. package/lib/rest/api/v2010/account/usage/record/thisMonth.js +1 -0
  112. package/lib/rest/api/v2010/account/usage/record/today.js +1 -0
  113. package/lib/rest/api/v2010/account/usage/record/yearly.js +1 -0
  114. package/lib/rest/api/v2010/account/usage/record/yesterday.js +1 -0
  115. package/lib/rest/api/v2010/account/usage/record.js +1 -0
  116. package/lib/rest/api/v2010/account/usage/trigger.js +8 -0
  117. package/lib/rest/api/v2010/account/validationRequest.js +1 -0
  118. package/lib/rest/api/v2010/account.js +6 -0
  119. package/lib/rest/assistants/v1/assistant/assistantsKnowledge.js +5 -0
  120. package/lib/rest/assistants/v1/assistant/assistantsTool.js +5 -0
  121. package/lib/rest/assistants/v1/assistant/feedback.d.ts +4 -3
  122. package/lib/rest/assistants/v1/assistant/feedback.js +6 -2
  123. package/lib/rest/assistants/v1/assistant/message.d.ts +3 -2
  124. package/lib/rest/assistants/v1/assistant/message.js +5 -2
  125. package/lib/rest/assistants/v1/assistant.d.ts +26 -23
  126. package/lib/rest/assistants/v1/assistant.js +16 -4
  127. package/lib/rest/assistants/v1/knowledge/chunk.js +1 -0
  128. package/lib/rest/assistants/v1/knowledge/knowledgeStatus.js +3 -0
  129. package/lib/rest/assistants/v1/knowledge.d.ts +11 -8
  130. package/lib/rest/assistants/v1/knowledge.js +16 -4
  131. package/lib/rest/assistants/v1/policy.js +1 -0
  132. package/lib/rest/assistants/v1/session/message.js +1 -0
  133. package/lib/rest/assistants/v1/session.js +4 -0
  134. package/lib/rest/assistants/v1/tool.d.ts +15 -12
  135. package/lib/rest/assistants/v1/tool.js +16 -4
  136. package/lib/rest/bulkexports/v1/export/day.js +4 -0
  137. package/lib/rest/bulkexports/v1/export/exportCustomJob.js +2 -0
  138. package/lib/rest/bulkexports/v1/export/job.js +5 -0
  139. package/lib/rest/bulkexports/v1/export.js +3 -0
  140. package/lib/rest/bulkexports/v1/exportConfiguration.js +4 -0
  141. package/lib/rest/chat/v1/credential.js +8 -0
  142. package/lib/rest/chat/v1/service/channel/invite.js +7 -0
  143. package/lib/rest/chat/v1/service/channel/member.js +8 -0
  144. package/lib/rest/chat/v1/service/channel/message.js +8 -0
  145. package/lib/rest/chat/v1/service/channel.js +8 -0
  146. package/lib/rest/chat/v1/service/role.js +8 -0
  147. package/lib/rest/chat/v1/service/user/userChannel.js +1 -0
  148. package/lib/rest/chat/v1/service/user.js +8 -0
  149. package/lib/rest/chat/v1/service.js +8 -0
  150. package/lib/rest/chat/v2/credential.js +8 -0
  151. package/lib/rest/chat/v2/service/binding.js +6 -0
  152. package/lib/rest/chat/v2/service/channel/invite.js +7 -0
  153. package/lib/rest/chat/v2/service/channel/member.js +6 -0
  154. package/lib/rest/chat/v2/service/channel/message.js +6 -0
  155. package/lib/rest/chat/v2/service/channel/webhook.js +8 -0
  156. package/lib/rest/chat/v2/service/channel.js +6 -0
  157. package/lib/rest/chat/v2/service/role.js +8 -0
  158. package/lib/rest/chat/v2/service/user/userBinding.js +6 -0
  159. package/lib/rest/chat/v2/service/user/userChannel.js +5 -0
  160. package/lib/rest/chat/v2/service/user.js +8 -0
  161. package/lib/rest/chat/v2/service.js +8 -0
  162. package/lib/rest/chat/v3/channel.js +1 -0
  163. package/lib/rest/content/v1/content/approvalCreate.d.ts +2 -1
  164. package/lib/rest/content/v1/content/approvalCreate.js +5 -2
  165. package/lib/rest/content/v1/content/approvalFetch.js +3 -0
  166. package/lib/rest/content/v1/content.d.ts +25 -24
  167. package/lib/rest/content/v1/content.js +11 -2
  168. package/lib/rest/content/v1/contentAndApprovals.js +1 -0
  169. package/lib/rest/content/v1/legacyContent.js +1 -0
  170. package/lib/rest/content/v2/content.js +1 -0
  171. package/lib/rest/content/v2/contentAndApprovals.js +1 -0
  172. package/lib/rest/conversations/v1/addressConfiguration.js +8 -0
  173. package/lib/rest/conversations/v1/configuration/webhook.js +4 -0
  174. package/lib/rest/conversations/v1/configuration.js +4 -0
  175. package/lib/rest/conversations/v1/conversation/message/deliveryReceipt.js +4 -0
  176. package/lib/rest/conversations/v1/conversation/message.js +6 -0
  177. package/lib/rest/conversations/v1/conversation/participant.js +6 -0
  178. package/lib/rest/conversations/v1/conversation/webhook.js +8 -0
  179. package/lib/rest/conversations/v1/conversation.js +6 -0
  180. package/lib/rest/conversations/v1/conversationWithParticipants.js +1 -0
  181. package/lib/rest/conversations/v1/credential.js +8 -0
  182. package/lib/rest/conversations/v1/participantConversation.js +1 -0
  183. package/lib/rest/conversations/v1/role.js +8 -0
  184. package/lib/rest/conversations/v1/service/binding.js +6 -0
  185. package/lib/rest/conversations/v1/service/configuration/notification.js +4 -0
  186. package/lib/rest/conversations/v1/service/configuration/webhook.js +4 -0
  187. package/lib/rest/conversations/v1/service/configuration.js +4 -0
  188. package/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.js +4 -0
  189. package/lib/rest/conversations/v1/service/conversation/message.js +6 -0
  190. package/lib/rest/conversations/v1/service/conversation/participant.js +6 -0
  191. package/lib/rest/conversations/v1/service/conversation/webhook.js +8 -0
  192. package/lib/rest/conversations/v1/service/conversation.js +6 -0
  193. package/lib/rest/conversations/v1/service/conversationWithParticipants.js +1 -0
  194. package/lib/rest/conversations/v1/service/participantConversation.js +1 -0
  195. package/lib/rest/conversations/v1/service/role.js +8 -0
  196. package/lib/rest/conversations/v1/service/user/userConversation.js +7 -0
  197. package/lib/rest/conversations/v1/service/user.js +6 -0
  198. package/lib/rest/conversations/v1/service.js +7 -0
  199. package/lib/rest/conversations/v1/user/userConversation.js +7 -0
  200. package/lib/rest/conversations/v1/user.js +6 -0
  201. package/lib/rest/events/v1/eventType.js +4 -0
  202. package/lib/rest/events/v1/schema/schemaVersion.js +4 -0
  203. package/lib/rest/events/v1/schema.js +3 -0
  204. package/lib/rest/events/v1/sink/sinkTest.js +3 -0
  205. package/lib/rest/events/v1/sink/sinkValidate.js +1 -0
  206. package/lib/rest/events/v1/sink.js +8 -0
  207. package/lib/rest/events/v1/subscription/subscribedEvent.js +8 -0
  208. package/lib/rest/events/v1/subscription.js +8 -0
  209. package/lib/rest/flexApi/v1/assessments.js +3 -0
  210. package/lib/rest/flexApi/v1/channel.js +7 -0
  211. package/lib/rest/flexApi/v1/configuration.d.ts +5 -3
  212. package/lib/rest/flexApi/v1/configuration.js +6 -2
  213. package/lib/rest/flexApi/v1/flexFlow.js +8 -0
  214. package/lib/rest/flexApi/v1/insightsAssessmentsComment.js +2 -0
  215. package/lib/rest/flexApi/v1/insightsConversations.js +1 -0
  216. package/lib/rest/flexApi/v1/insightsQuestionnaires.js +4 -0
  217. package/lib/rest/flexApi/v1/insightsQuestionnairesCategory.js +3 -0
  218. package/lib/rest/flexApi/v1/insightsQuestionnairesQuestion.js +3 -0
  219. package/lib/rest/flexApi/v1/insightsSegments.js +1 -0
  220. package/lib/rest/flexApi/v1/insightsSession.js +1 -0
  221. package/lib/rest/flexApi/v1/insightsSettingsAnswerSets.js +1 -0
  222. package/lib/rest/flexApi/v1/insightsSettingsComment.js +1 -0
  223. package/lib/rest/flexApi/v1/insightsUserRoles.js +1 -0
  224. package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.js +2 -0
  225. package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.js +3 -0
  226. package/lib/rest/flexApi/v1/interaction/interactionChannel.js +5 -0
  227. package/lib/rest/flexApi/v1/interaction.js +4 -0
  228. package/lib/rest/flexApi/v1/plugin/pluginVersions.js +3 -0
  229. package/lib/rest/flexApi/v1/plugin.js +4 -0
  230. package/lib/rest/flexApi/v1/pluginArchive.js +1 -0
  231. package/lib/rest/flexApi/v1/pluginConfiguration/configuredPlugin.js +2 -0
  232. package/lib/rest/flexApi/v1/pluginConfiguration.js +3 -0
  233. package/lib/rest/flexApi/v1/pluginConfigurationArchive.js +1 -0
  234. package/lib/rest/flexApi/v1/pluginRelease.js +3 -0
  235. package/lib/rest/flexApi/v1/pluginVersionArchive.js +1 -0
  236. package/lib/rest/flexApi/v1/provisioningStatus.js +3 -0
  237. package/lib/rest/flexApi/v1/webChannel.js +8 -0
  238. package/lib/rest/flexApi/v2/flexUser.js +4 -0
  239. package/lib/rest/flexApi/v2/webChannels.js +1 -0
  240. package/lib/rest/frontlineApi/v1/user.js +4 -0
  241. package/lib/rest/iam/V1.d.ts +5 -5
  242. package/lib/rest/iam/V1.js +5 -5
  243. package/lib/rest/iam/v1/apiKey.js +6 -0
  244. package/lib/rest/iam/v1/getApiKeys.js +1 -0
  245. package/lib/rest/iam/v1/{key.d.ts → newApiKey.d.ts} +14 -14
  246. package/lib/rest/iam/v1/{key.js → newApiKey.js} +7 -6
  247. package/lib/rest/insights/v1/call/annotation.js +4 -0
  248. package/lib/rest/insights/v1/call/callSummary.js +1 -0
  249. package/lib/rest/insights/v1/call/event.js +1 -0
  250. package/lib/rest/insights/v1/call/metric.js +1 -0
  251. package/lib/rest/insights/v1/call.js +3 -0
  252. package/lib/rest/insights/v1/callSummaries.js +1 -0
  253. package/lib/rest/insights/v1/conference/conferenceParticipant.js +2 -0
  254. package/lib/rest/insights/v1/conference.js +4 -0
  255. package/lib/rest/insights/v1/room/participant.js +4 -0
  256. package/lib/rest/insights/v1/room.js +4 -0
  257. package/lib/rest/insights/v1/setting.js +2 -0
  258. package/lib/rest/intelligence/v2/customOperator.js +8 -0
  259. package/lib/rest/intelligence/v2/operator.js +4 -0
  260. package/lib/rest/intelligence/v2/operatorAttachment.js +5 -0
  261. package/lib/rest/intelligence/v2/operatorAttachments.js +3 -0
  262. package/lib/rest/intelligence/v2/operatorType.js +4 -0
  263. package/lib/rest/intelligence/v2/prebuiltOperator.js +4 -0
  264. package/lib/rest/intelligence/v2/service.js +8 -0
  265. package/lib/rest/intelligence/v2/transcript/media.js +1 -0
  266. package/lib/rest/intelligence/v2/transcript/operatorResult.js +2 -0
  267. package/lib/rest/intelligence/v2/transcript/sentence.js +1 -0
  268. package/lib/rest/intelligence/v2/transcript.js +7 -0
  269. package/lib/rest/ipMessaging/v1/credential.js +8 -0
  270. package/lib/rest/ipMessaging/v1/service/channel/invite.js +7 -0
  271. package/lib/rest/ipMessaging/v1/service/channel/member.js +8 -0
  272. package/lib/rest/ipMessaging/v1/service/channel/message.js +8 -0
  273. package/lib/rest/ipMessaging/v1/service/channel.js +8 -0
  274. package/lib/rest/ipMessaging/v1/service/role.js +8 -0
  275. package/lib/rest/ipMessaging/v1/service/user/userChannel.js +1 -0
  276. package/lib/rest/ipMessaging/v1/service/user.js +8 -0
  277. package/lib/rest/ipMessaging/v1/service.js +8 -0
  278. package/lib/rest/ipMessaging/v2/credential.js +8 -0
  279. package/lib/rest/ipMessaging/v2/service/binding.js +6 -0
  280. package/lib/rest/ipMessaging/v2/service/channel/invite.js +7 -0
  281. package/lib/rest/ipMessaging/v2/service/channel/member.js +6 -0
  282. package/lib/rest/ipMessaging/v2/service/channel/message.js +6 -0
  283. package/lib/rest/ipMessaging/v2/service/channel/webhook.js +8 -0
  284. package/lib/rest/ipMessaging/v2/service/channel.js +6 -0
  285. package/lib/rest/ipMessaging/v2/service/role.js +8 -0
  286. package/lib/rest/ipMessaging/v2/service/user/userBinding.js +6 -0
  287. package/lib/rest/ipMessaging/v2/service/user/userChannel.js +7 -0
  288. package/lib/rest/ipMessaging/v2/service/user.js +8 -0
  289. package/lib/rest/ipMessaging/v2/service.js +8 -0
  290. package/lib/rest/lookups/v1/phoneNumber.js +1 -0
  291. package/lib/rest/lookups/v2/phoneNumber.js +1 -0
  292. package/lib/rest/marketplace/v1/availableAddOn/availableAddOnExtension.js +4 -0
  293. package/lib/rest/marketplace/v1/availableAddOn.js +4 -0
  294. package/lib/rest/marketplace/v1/installedAddOn/installedAddOnExtension.js +5 -0
  295. package/lib/rest/marketplace/v1/installedAddOn/installedAddOnUsage.d.ts +4 -3
  296. package/lib/rest/marketplace/v1/installedAddOn/installedAddOnUsage.js +5 -2
  297. package/lib/rest/marketplace/v1/installedAddOn.js +8 -0
  298. package/lib/rest/marketplace/v1/moduleDataManagement.js +4 -0
  299. package/lib/rest/marketplace/v1/referralConversion.d.ts +3 -2
  300. package/lib/rest/marketplace/v1/referralConversion.js +5 -2
  301. package/lib/rest/messaging/v1/brandRegistration/brandRegistrationOtp.js +3 -0
  302. package/lib/rest/messaging/v1/brandRegistration/brandVetting.js +5 -0
  303. package/lib/rest/messaging/v1/brandRegistration.js +8 -0
  304. package/lib/rest/messaging/v1/deactivations.js +1 -0
  305. package/lib/rest/messaging/v1/domainCerts.js +6 -0
  306. package/lib/rest/messaging/v1/domainConfig.js +4 -0
  307. package/lib/rest/messaging/v1/domainConfigMessagingService.js +3 -0
  308. package/lib/rest/messaging/v1/externalCampaign.js +1 -0
  309. package/lib/rest/messaging/v1/linkshorteningMessagingService.js +5 -0
  310. package/lib/rest/messaging/v1/linkshorteningMessagingServiceDomainAssociation.js +3 -0
  311. package/lib/rest/messaging/v1/requestManagedCert.js +3 -0
  312. package/lib/rest/messaging/v1/service/alphaSender.js +7 -0
  313. package/lib/rest/messaging/v1/service/channelSender.js +7 -0
  314. package/lib/rest/messaging/v1/service/phoneNumber.js +7 -0
  315. package/lib/rest/messaging/v1/service/shortCode.js +7 -0
  316. package/lib/rest/messaging/v1/service/usAppToPerson.js +8 -0
  317. package/lib/rest/messaging/v1/service/usAppToPersonUsecase.js +1 -0
  318. package/lib/rest/messaging/v1/service.js +8 -0
  319. package/lib/rest/messaging/v1/tollfreeVerification.js +8 -0
  320. package/lib/rest/messaging/v1/usecase.js +3 -0
  321. package/lib/rest/microvisor/v1/accountConfig.js +8 -0
  322. package/lib/rest/microvisor/v1/accountSecret.js +8 -0
  323. package/lib/rest/microvisor/v1/app/appManifest.js +3 -0
  324. package/lib/rest/microvisor/v1/app.js +6 -0
  325. package/lib/rest/microvisor/v1/device/deviceConfig.js +8 -0
  326. package/lib/rest/microvisor/v1/device/deviceSecret.js +8 -0
  327. package/lib/rest/microvisor/v1/device.js +5 -0
  328. package/lib/rest/monitor/v1/alert.js +4 -0
  329. package/lib/rest/monitor/v1/event.js +4 -0
  330. package/lib/rest/notify/v1/credential.js +8 -0
  331. package/lib/rest/notify/v1/service/binding.js +7 -0
  332. package/lib/rest/notify/v1/service/notification.js +1 -0
  333. package/lib/rest/notify/v1/service.js +8 -0
  334. package/lib/rest/numbers/v1/bulkEligibility.d.ts +2 -1
  335. package/lib/rest/numbers/v1/bulkEligibility.js +8 -2
  336. package/lib/rest/numbers/v1/eligibility.d.ts +2 -1
  337. package/lib/rest/numbers/v1/eligibility.js +5 -2
  338. package/lib/rest/numbers/v1/portingPortIn.d.ts +2 -1
  339. package/lib/rest/numbers/v1/portingPortIn.js +10 -2
  340. package/lib/rest/numbers/v1/portingPortInPhoneNumber.js +5 -0
  341. package/lib/rest/numbers/v1/portingPortability.js +1 -0
  342. package/lib/rest/numbers/v1/portingWebhookConfiguration.d.ts +2 -1
  343. package/lib/rest/numbers/v1/portingWebhookConfiguration.js +5 -2
  344. package/lib/rest/numbers/v1/portingWebhookConfigurationDelete.js +2 -0
  345. package/lib/rest/numbers/v1/signingRequestConfiguration.d.ts +2 -1
  346. package/lib/rest/numbers/v1/signingRequestConfiguration.js +6 -2
  347. package/lib/rest/numbers/v1/webhook.js +3 -0
  348. package/lib/rest/numbers/v2/authorizationDocument/dependentHostedNumberOrder.js +1 -0
  349. package/lib/rest/numbers/v2/authorizationDocument.js +7 -0
  350. package/lib/rest/numbers/v2/bulkHostedNumberOrder.d.ts +2 -1
  351. package/lib/rest/numbers/v2/bulkHostedNumberOrder.js +6 -2
  352. package/lib/rest/numbers/v2/bundleClone.js +1 -0
  353. package/lib/rest/numbers/v2/hostedNumberOrder.d.ts +65 -1
  354. package/lib/rest/numbers/v2/hostedNumberOrder.js +49 -0
  355. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.js +2 -0
  356. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.js +7 -0
  357. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.js +7 -0
  358. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.js +1 -0
  359. package/lib/rest/numbers/v2/regulatoryCompliance/bundle.js +8 -0
  360. package/lib/rest/numbers/v2/regulatoryCompliance/endUser.js +8 -0
  361. package/lib/rest/numbers/v2/regulatoryCompliance/endUserType.js +4 -0
  362. package/lib/rest/numbers/v2/regulatoryCompliance/regulation.js +2 -0
  363. package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.js +8 -0
  364. package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.js +4 -0
  365. package/lib/rest/oauth/v1/authorize.js +1 -0
  366. package/lib/rest/oauth/v1/token.js +1 -0
  367. package/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.js +1 -0
  368. package/lib/rest/preview/hosted_numbers/authorizationDocument.js +6 -0
  369. package/lib/rest/preview/hosted_numbers/hostedNumberOrder.js +8 -0
  370. package/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.js +4 -0
  371. package/lib/rest/preview/marketplace/availableAddOn.js +4 -0
  372. package/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.js +5 -0
  373. package/lib/rest/preview/marketplace/installedAddOn.js +8 -0
  374. package/lib/rest/preview/sync/service/document/documentPermission.js +7 -0
  375. package/lib/rest/preview/sync/service/document.js +8 -0
  376. package/lib/rest/preview/sync/service/syncList/syncListItem.js +6 -0
  377. package/lib/rest/preview/sync/service/syncList/syncListPermission.js +7 -0
  378. package/lib/rest/preview/sync/service/syncList.js +7 -0
  379. package/lib/rest/preview/sync/service/syncMap/syncMapItem.js +6 -0
  380. package/lib/rest/preview/sync/service/syncMap/syncMapPermission.js +7 -0
  381. package/lib/rest/preview/sync/service/syncMap.js +7 -0
  382. package/lib/rest/preview/sync/service.js +8 -0
  383. package/lib/rest/preview/wireless/command.js +5 -0
  384. package/lib/rest/preview/wireless/ratePlan.js +8 -0
  385. package/lib/rest/preview/wireless/sim/usage.js +1 -0
  386. package/lib/rest/preview/wireless/sim.js +5 -0
  387. package/lib/rest/previewIam/V1.d.ts +20 -0
  388. package/lib/rest/previewIam/V1.js +42 -0
  389. package/lib/rest/previewIam/Versionless.d.ts +15 -0
  390. package/lib/rest/previewIam/Versionless.js +36 -0
  391. package/lib/rest/previewIam/v1/authorize.d.ts +69 -0
  392. package/lib/rest/previewIam/v1/authorize.js +84 -0
  393. package/lib/rest/previewIam/v1/token.d.ts +88 -0
  394. package/lib/rest/previewIam/v1/token.js +99 -0
  395. package/lib/rest/previewIam/versionless/organization/account.d.ts +216 -0
  396. package/lib/rest/previewIam/versionless/organization/account.js +195 -0
  397. package/lib/rest/previewIam/versionless/organization/roleAssignment.d.ts +274 -0
  398. package/lib/rest/previewIam/versionless/organization/roleAssignment.js +221 -0
  399. package/lib/rest/previewIam/versionless/organization/user.d.ts +448 -0
  400. package/lib/rest/previewIam/versionless/organization/user.js +299 -0
  401. package/lib/rest/previewIam/versionless/organization.d.ts +53 -0
  402. package/lib/rest/previewIam/versionless/organization.js +80 -0
  403. package/lib/rest/pricing/v1/messaging/country.d.ts +6 -6
  404. package/lib/rest/pricing/v1/messaging/country.js +4 -0
  405. package/lib/rest/pricing/v1/phoneNumber/country.d.ts +3 -3
  406. package/lib/rest/pricing/v1/phoneNumber/country.js +4 -0
  407. package/lib/rest/pricing/v1/voice/country.d.ts +6 -6
  408. package/lib/rest/pricing/v1/voice/country.js +4 -0
  409. package/lib/rest/pricing/v1/voice/number.d.ts +5 -5
  410. package/lib/rest/pricing/v1/voice/number.js +3 -0
  411. package/lib/rest/pricing/v2/country.d.ts +8 -8
  412. package/lib/rest/pricing/v2/country.js +4 -0
  413. package/lib/rest/pricing/v2/number.d.ts +8 -8
  414. package/lib/rest/pricing/v2/number.js +1 -0
  415. package/lib/rest/pricing/v2/voice/country.d.ts +8 -8
  416. package/lib/rest/pricing/v2/voice/country.js +4 -0
  417. package/lib/rest/pricing/v2/voice/number.d.ts +6 -6
  418. package/lib/rest/pricing/v2/voice/number.js +1 -0
  419. package/lib/rest/proxy/v1/service/phoneNumber.js +8 -0
  420. package/lib/rest/proxy/v1/service/session/interaction.js +6 -0
  421. package/lib/rest/proxy/v1/service/session/participant/messageInteraction.js +5 -0
  422. package/lib/rest/proxy/v1/service/session/participant.js +7 -0
  423. package/lib/rest/proxy/v1/service/session.js +8 -0
  424. package/lib/rest/proxy/v1/service/shortCode.js +8 -0
  425. package/lib/rest/proxy/v1/service.js +8 -0
  426. package/lib/rest/routes/v2/phoneNumber.js +4 -0
  427. package/lib/rest/routes/v2/sipDomain.js +4 -0
  428. package/lib/rest/routes/v2/trunk.js +4 -0
  429. package/lib/rest/serverless/v1/service/asset/assetVersion.js +4 -0
  430. package/lib/rest/serverless/v1/service/asset.js +8 -0
  431. package/lib/rest/serverless/v1/service/build/buildStatus.js +3 -0
  432. package/lib/rest/serverless/v1/service/build.js +7 -0
  433. package/lib/rest/serverless/v1/service/environment/deployment.js +5 -0
  434. package/lib/rest/serverless/v1/service/environment/log.js +4 -0
  435. package/lib/rest/serverless/v1/service/environment/variable.js +8 -0
  436. package/lib/rest/serverless/v1/service/environment.js +7 -0
  437. package/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.js +3 -0
  438. package/lib/rest/serverless/v1/service/function/functionVersion.js +4 -0
  439. package/lib/rest/serverless/v1/service/function.js +8 -0
  440. package/lib/rest/serverless/v1/service.js +8 -0
  441. package/lib/rest/studio/v1/flow/engagement/engagementContext.js +3 -0
  442. package/lib/rest/studio/v1/flow/engagement/step/stepContext.js +3 -0
  443. package/lib/rest/studio/v1/flow/engagement/step.js +4 -0
  444. package/lib/rest/studio/v1/flow/engagement.js +7 -0
  445. package/lib/rest/studio/v1/flow/execution/executionContext.js +3 -0
  446. package/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.js +3 -0
  447. package/lib/rest/studio/v1/flow/execution/executionStep.js +4 -0
  448. package/lib/rest/studio/v1/flow/execution.js +8 -0
  449. package/lib/rest/studio/v1/flow.js +6 -0
  450. package/lib/rest/studio/v2/flow/execution/executionContext.js +3 -0
  451. package/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.js +3 -0
  452. package/lib/rest/studio/v2/flow/execution/executionStep.js +4 -0
  453. package/lib/rest/studio/v2/flow/execution.js +8 -0
  454. package/lib/rest/studio/v2/flow/flowRevision.js +4 -0
  455. package/lib/rest/studio/v2/flow/flowTestUser.js +4 -0
  456. package/lib/rest/studio/v2/flow.js +8 -0
  457. package/lib/rest/studio/v2/flowValidate.js +1 -0
  458. package/lib/rest/supersim/v1/esimProfile.js +5 -0
  459. package/lib/rest/supersim/v1/fleet.js +6 -0
  460. package/lib/rest/supersim/v1/ipCommand.js +5 -0
  461. package/lib/rest/supersim/v1/network.js +4 -0
  462. package/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.js +7 -0
  463. package/lib/rest/supersim/v1/networkAccessProfile.js +6 -0
  464. package/lib/rest/supersim/v1/settingsUpdate.js +1 -0
  465. package/lib/rest/supersim/v1/sim/billingPeriod.js +1 -0
  466. package/lib/rest/supersim/v1/sim/simIpAddress.js +1 -0
  467. package/lib/rest/supersim/v1/sim.js +6 -0
  468. package/lib/rest/supersim/v1/smsCommand.js +5 -0
  469. package/lib/rest/supersim/v1/usageRecord.js +1 -0
  470. package/lib/rest/sync/v1/service/document/documentPermission.js +7 -0
  471. package/lib/rest/sync/v1/service/document.js +8 -0
  472. package/lib/rest/sync/v1/service/syncList/syncListItem.js +6 -0
  473. package/lib/rest/sync/v1/service/syncList/syncListPermission.js +7 -0
  474. package/lib/rest/sync/v1/service/syncList.js +8 -0
  475. package/lib/rest/sync/v1/service/syncMap/syncMapItem.js +6 -0
  476. package/lib/rest/sync/v1/service/syncMap/syncMapPermission.js +7 -0
  477. package/lib/rest/sync/v1/service/syncMap.js +8 -0
  478. package/lib/rest/sync/v1/service/syncStream/streamMessage.js +1 -0
  479. package/lib/rest/sync/v1/service/syncStream.js +8 -0
  480. package/lib/rest/sync/v1/service.js +8 -0
  481. package/lib/rest/taskrouter/v1/workspace/activity.js +8 -0
  482. package/lib/rest/taskrouter/v1/workspace/event.js +4 -0
  483. package/lib/rest/taskrouter/v1/workspace/task/reservation.js +5 -0
  484. package/lib/rest/taskrouter/v1/workspace/task.js +6 -0
  485. package/lib/rest/taskrouter/v1/workspace/taskChannel.js +8 -0
  486. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueBulkRealTimeStatistics.d.ts +2 -1
  487. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueBulkRealTimeStatistics.js +5 -2
  488. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.js +1 -0
  489. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.js +1 -0
  490. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.js +1 -0
  491. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.js +1 -0
  492. package/lib/rest/taskrouter/v1/workspace/taskQueue.js +8 -0
  493. package/lib/rest/taskrouter/v1/workspace/worker/reservation.js +5 -0
  494. package/lib/rest/taskrouter/v1/workspace/worker/workerChannel.js +5 -0
  495. package/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.js +1 -0
  496. package/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.js +1 -0
  497. package/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.js +1 -0
  498. package/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.js +1 -0
  499. package/lib/rest/taskrouter/v1/workspace/worker.js +6 -0
  500. package/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.js +1 -0
  501. package/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.js +1 -0
  502. package/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.js +1 -0
  503. package/lib/rest/taskrouter/v1/workspace/workflow.js +8 -0
  504. package/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.js +1 -0
  505. package/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.js +1 -0
  506. package/lib/rest/taskrouter/v1/workspace/workspaceStatistics.js +1 -0
  507. package/lib/rest/taskrouter/v1/workspace.js +8 -0
  508. package/lib/rest/trunking/v1/trunk/credentialList.js +7 -0
  509. package/lib/rest/trunking/v1/trunk/ipAccessControlList.js +7 -0
  510. package/lib/rest/trunking/v1/trunk/originationUrl.js +8 -0
  511. package/lib/rest/trunking/v1/trunk/phoneNumber.js +7 -0
  512. package/lib/rest/trunking/v1/trunk/recording.js +4 -0
  513. package/lib/rest/trunking/v1/trunk.js +8 -0
  514. package/lib/rest/trusthub/v1/complianceInquiries.js +2 -0
  515. package/lib/rest/trusthub/v1/complianceRegistrationInquiries.js +2 -0
  516. package/lib/rest/trusthub/v1/complianceTollfreeInquiries.js +1 -0
  517. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.js +7 -0
  518. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.js +7 -0
  519. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.js +5 -0
  520. package/lib/rest/trusthub/v1/customerProfiles.js +8 -0
  521. package/lib/rest/trusthub/v1/endUser.js +8 -0
  522. package/lib/rest/trusthub/v1/endUserType.js +4 -0
  523. package/lib/rest/trusthub/v1/policies.js +4 -0
  524. package/lib/rest/trusthub/v1/supportingDocument.js +8 -0
  525. package/lib/rest/trusthub/v1/supportingDocumentType.js +4 -0
  526. package/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.js +7 -0
  527. package/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.js +7 -0
  528. package/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.js +5 -0
  529. package/lib/rest/trusthub/v1/trustProducts.js +8 -0
  530. package/lib/rest/verify/v2/form.js +3 -0
  531. package/lib/rest/verify/v2/safelist.js +6 -0
  532. package/lib/rest/verify/v2/service/accessToken.js +4 -0
  533. package/lib/rest/verify/v2/service/entity/challenge/notification.js +1 -0
  534. package/lib/rest/verify/v2/service/entity/challenge.js +6 -0
  535. package/lib/rest/verify/v2/service/entity/factor.js +7 -0
  536. package/lib/rest/verify/v2/service/entity/newFactor.js +1 -0
  537. package/lib/rest/verify/v2/service/entity.js +7 -0
  538. package/lib/rest/verify/v2/service/messagingConfiguration.js +8 -0
  539. package/lib/rest/verify/v2/service/rateLimit/bucket.js +8 -0
  540. package/lib/rest/verify/v2/service/rateLimit.js +8 -0
  541. package/lib/rest/verify/v2/service/verification.js +5 -0
  542. package/lib/rest/verify/v2/service/verificationCheck.js +1 -0
  543. package/lib/rest/verify/v2/service/webhook.js +8 -0
  544. package/lib/rest/verify/v2/service.js +8 -0
  545. package/lib/rest/verify/v2/template.js +1 -0
  546. package/lib/rest/verify/v2/verificationAttempt.js +4 -0
  547. package/lib/rest/verify/v2/verificationAttemptsSummary.js +1 -0
  548. package/lib/rest/video/v1/composition.js +7 -0
  549. package/lib/rest/video/v1/compositionHook.js +8 -0
  550. package/lib/rest/video/v1/compositionSettings.js +4 -0
  551. package/lib/rest/video/v1/recording.js +6 -0
  552. package/lib/rest/video/v1/recordingSettings.js +4 -0
  553. package/lib/rest/video/v1/room/participant/anonymize.js +3 -0
  554. package/lib/rest/video/v1/room/participant/publishedTrack.js +4 -0
  555. package/lib/rest/video/v1/room/participant/subscribeRules.js +4 -0
  556. package/lib/rest/video/v1/room/participant/subscribedTrack.js +4 -0
  557. package/lib/rest/video/v1/room/participant.js +5 -0
  558. package/lib/rest/video/v1/room/recordingRules.js +4 -0
  559. package/lib/rest/video/v1/room/roomRecording.js +6 -0
  560. package/lib/rest/video/v1/room.js +6 -0
  561. package/lib/rest/voice/v1/archivedCall.js +2 -0
  562. package/lib/rest/voice/v1/byocTrunk.js +8 -0
  563. package/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.js +8 -0
  564. package/lib/rest/voice/v1/connectionPolicy.js +8 -0
  565. package/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.js +1 -0
  566. package/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.js +1 -0
  567. package/lib/rest/voice/v1/dialingPermissions/country.js +4 -0
  568. package/lib/rest/voice/v1/dialingPermissions/settings.js +4 -0
  569. package/lib/rest/voice/v1/ipRecord.js +8 -0
  570. package/lib/rest/voice/v1/sourceIpMapping.js +8 -0
  571. package/lib/rest/wireless/v1/command.js +7 -0
  572. package/lib/rest/wireless/v1/ratePlan.js +8 -0
  573. package/lib/rest/wireless/v1/sim/dataSession.js +1 -0
  574. package/lib/rest/wireless/v1/sim/usageRecord.js +1 -0
  575. package/lib/rest/wireless/v1/sim.js +7 -0
  576. package/lib/rest/wireless/v1/usageRecord.js +1 -0
  577. package/lib/twiml/VoiceResponse.d.ts +186 -0
  578. package/lib/twiml/VoiceResponse.js +81 -0
  579. package/package.json +1 -1
@@ -35,19 +35,24 @@ class ConnectionPolicyTargetContextImpl {
35
35
  this._uri = `/ConnectionPolicies/${connectionPolicySid}/Targets/${sid}`;
36
36
  }
37
37
  remove(callback) {
38
+ const headers = {};
38
39
  const instance = this;
39
40
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
40
41
  uri: instance._uri,
41
42
  method: "delete",
43
+ headers,
42
44
  });
43
45
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
44
46
  return operationPromise;
45
47
  }
46
48
  fetch(callback) {
49
+ const headers = {};
50
+ headers["Accept"] = "application/json";
47
51
  const instance = this;
48
52
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
49
53
  uri: instance._uri,
50
54
  method: "get",
55
+ headers,
51
56
  });
52
57
  operationPromise = operationPromise.then((payload) => new ConnectionPolicyTargetInstance(operationVersion, payload, instance._solution.connectionPolicySid, instance._solution.sid));
53
58
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -74,6 +79,7 @@ class ConnectionPolicyTargetContextImpl {
74
79
  data["Enabled"] = serialize.bool(params["enabled"]);
75
80
  const headers = {};
76
81
  headers["Content-Type"] = "application/x-www-form-urlencoded";
82
+ headers["Accept"] = "application/json";
77
83
  const instance = this;
78
84
  let operationVersion = instance._version, operationPromise = operationVersion.update({
79
85
  uri: instance._uri,
@@ -198,6 +204,7 @@ function ConnectionPolicyTargetListInstance(version, connectionPolicySid) {
198
204
  data["Enabled"] = serialize.bool(params["enabled"]);
199
205
  const headers = {};
200
206
  headers["Content-Type"] = "application/x-www-form-urlencoded";
207
+ headers["Accept"] = "application/json";
201
208
  let operationVersion = version, operationPromise = operationVersion.create({
202
209
  uri: instance._uri,
203
210
  method: "post",
@@ -224,6 +231,7 @@ function ConnectionPolicyTargetListInstance(version, connectionPolicySid) {
224
231
  if (params.pageToken !== undefined)
225
232
  data["PageToken"] = params.pageToken;
226
233
  const headers = {};
234
+ headers["Accept"] = "application/json";
227
235
  let operationVersion = version, operationPromise = operationVersion.page({
228
236
  uri: instance._uri,
229
237
  method: "get",
@@ -39,19 +39,24 @@ class ConnectionPolicyContextImpl {
39
39
  return this._targets;
40
40
  }
41
41
  remove(callback) {
42
+ const headers = {};
42
43
  const instance = this;
43
44
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
44
45
  uri: instance._uri,
45
46
  method: "delete",
47
+ headers,
46
48
  });
47
49
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
48
50
  return operationPromise;
49
51
  }
50
52
  fetch(callback) {
53
+ const headers = {};
54
+ headers["Accept"] = "application/json";
51
55
  const instance = this;
52
56
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
53
57
  uri: instance._uri,
54
58
  method: "get",
59
+ headers,
55
60
  });
56
61
  operationPromise = operationPromise.then((payload) => new ConnectionPolicyInstance(operationVersion, payload, instance._solution.sid));
57
62
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -70,6 +75,7 @@ class ConnectionPolicyContextImpl {
70
75
  data["FriendlyName"] = params["friendlyName"];
71
76
  const headers = {};
72
77
  headers["Content-Type"] = "application/x-www-form-urlencoded";
78
+ headers["Accept"] = "application/json";
73
79
  const instance = this;
74
80
  let operationVersion = instance._version, operationPromise = operationVersion.update({
75
81
  uri: instance._uri,
@@ -183,6 +189,7 @@ function ConnectionPolicyListInstance(version) {
183
189
  data["FriendlyName"] = params["friendlyName"];
184
190
  const headers = {};
185
191
  headers["Content-Type"] = "application/x-www-form-urlencoded";
192
+ headers["Accept"] = "application/json";
186
193
  let operationVersion = version, operationPromise = operationVersion.create({
187
194
  uri: instance._uri,
188
195
  method: "post",
@@ -209,6 +216,7 @@ function ConnectionPolicyListInstance(version) {
209
216
  if (params.pageToken !== undefined)
210
217
  data["PageToken"] = params.pageToken;
211
218
  const headers = {};
219
+ headers["Accept"] = "application/json";
212
220
  let operationVersion = version, operationPromise = operationVersion.page({
213
221
  uri: instance._uri,
214
222
  method: "get",
@@ -34,6 +34,7 @@ function BulkCountryUpdateListInstance(version) {
34
34
  data["UpdateRequest"] = params["updateRequest"];
35
35
  const headers = {};
36
36
  headers["Content-Type"] = "application/x-www-form-urlencoded";
37
+ headers["Accept"] = "application/json";
37
38
  let operationVersion = version, operationPromise = operationVersion.create({
38
39
  uri: instance._uri,
39
40
  method: "post",
@@ -46,6 +46,7 @@ function HighriskSpecialPrefixListInstance(version, isoCode) {
46
46
  if (params.pageToken !== undefined)
47
47
  data["PageToken"] = params.pageToken;
48
48
  const headers = {};
49
+ headers["Accept"] = "application/json";
49
50
  let operationVersion = version, operationPromise = operationVersion.page({
50
51
  uri: instance._uri,
51
52
  method: "get",
@@ -39,10 +39,13 @@ class CountryContextImpl {
39
39
  return this._highriskSpecialPrefixes;
40
40
  }
41
41
  fetch(callback) {
42
+ const headers = {};
43
+ headers["Accept"] = "application/json";
42
44
  const instance = this;
43
45
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
44
46
  uri: instance._uri,
45
47
  method: "get",
48
+ headers,
46
49
  });
47
50
  operationPromise = operationPromise.then((payload) => new CountryInstance(operationVersion, payload, instance._solution.isoCode));
48
51
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -158,6 +161,7 @@ function CountryListInstance(version) {
158
161
  if (params.pageToken !== undefined)
159
162
  data["PageToken"] = params.pageToken;
160
163
  const headers = {};
164
+ headers["Accept"] = "application/json";
161
165
  let operationVersion = version, operationPromise = operationVersion.page({
162
166
  uri: instance._uri,
163
167
  method: "get",
@@ -24,10 +24,13 @@ class SettingsContextImpl {
24
24
  this._uri = `/Settings`;
25
25
  }
26
26
  fetch(callback) {
27
+ const headers = {};
28
+ headers["Accept"] = "application/json";
27
29
  const instance = this;
28
30
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
29
31
  uri: instance._uri,
30
32
  method: "get",
33
+ headers,
31
34
  });
32
35
  operationPromise = operationPromise.then((payload) => new SettingsInstance(operationVersion, payload));
33
36
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -46,6 +49,7 @@ class SettingsContextImpl {
46
49
  data["DialingPermissionsInheritance"] = serialize.bool(params["dialingPermissionsInheritance"]);
47
50
  const headers = {};
48
51
  headers["Content-Type"] = "application/x-www-form-urlencoded";
52
+ headers["Accept"] = "application/json";
49
53
  const instance = this;
50
54
  let operationVersion = instance._version, operationPromise = operationVersion.update({
51
55
  uri: instance._uri,
@@ -32,19 +32,24 @@ class IpRecordContextImpl {
32
32
  this._uri = `/IpRecords/${sid}`;
33
33
  }
34
34
  remove(callback) {
35
+ const headers = {};
35
36
  const instance = this;
36
37
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
37
38
  uri: instance._uri,
38
39
  method: "delete",
40
+ headers,
39
41
  });
40
42
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
41
43
  return operationPromise;
42
44
  }
43
45
  fetch(callback) {
46
+ const headers = {};
47
+ headers["Accept"] = "application/json";
44
48
  const instance = this;
45
49
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
46
50
  uri: instance._uri,
47
51
  method: "get",
52
+ headers,
48
53
  });
49
54
  operationPromise = operationPromise.then((payload) => new IpRecordInstance(operationVersion, payload, instance._solution.sid));
50
55
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -63,6 +68,7 @@ class IpRecordContextImpl {
63
68
  data["FriendlyName"] = params["friendlyName"];
64
69
  const headers = {};
65
70
  headers["Content-Type"] = "application/x-www-form-urlencoded";
71
+ headers["Accept"] = "application/json";
66
72
  const instance = this;
67
73
  let operationVersion = instance._version, operationPromise = operationVersion.update({
68
74
  uri: instance._uri,
@@ -174,6 +180,7 @@ function IpRecordListInstance(version) {
174
180
  data["CidrPrefixLength"] = params["cidrPrefixLength"];
175
181
  const headers = {};
176
182
  headers["Content-Type"] = "application/x-www-form-urlencoded";
183
+ headers["Accept"] = "application/json";
177
184
  let operationVersion = version, operationPromise = operationVersion.create({
178
185
  uri: instance._uri,
179
186
  method: "post",
@@ -200,6 +207,7 @@ function IpRecordListInstance(version) {
200
207
  if (params.pageToken !== undefined)
201
208
  data["PageToken"] = params.pageToken;
202
209
  const headers = {};
210
+ headers["Accept"] = "application/json";
203
211
  let operationVersion = version, operationPromise = operationVersion.page({
204
212
  uri: instance._uri,
205
213
  method: "get",
@@ -32,19 +32,24 @@ class SourceIpMappingContextImpl {
32
32
  this._uri = `/SourceIpMappings/${sid}`;
33
33
  }
34
34
  remove(callback) {
35
+ const headers = {};
35
36
  const instance = this;
36
37
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
37
38
  uri: instance._uri,
38
39
  method: "delete",
40
+ headers,
39
41
  });
40
42
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
41
43
  return operationPromise;
42
44
  }
43
45
  fetch(callback) {
46
+ const headers = {};
47
+ headers["Accept"] = "application/json";
44
48
  const instance = this;
45
49
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
46
50
  uri: instance._uri,
47
51
  method: "get",
52
+ headers,
48
53
  });
49
54
  operationPromise = operationPromise.then((payload) => new SourceIpMappingInstance(operationVersion, payload, instance._solution.sid));
50
55
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -62,6 +67,7 @@ class SourceIpMappingContextImpl {
62
67
  data["SipDomainSid"] = params["sipDomainSid"];
63
68
  const headers = {};
64
69
  headers["Content-Type"] = "application/x-www-form-urlencoded";
70
+ headers["Accept"] = "application/json";
65
71
  const instance = this;
66
72
  let operationVersion = instance._version, operationPromise = operationVersion.update({
67
73
  uri: instance._uri,
@@ -170,6 +176,7 @@ function SourceIpMappingListInstance(version) {
170
176
  data["SipDomainSid"] = params["sipDomainSid"];
171
177
  const headers = {};
172
178
  headers["Content-Type"] = "application/x-www-form-urlencoded";
179
+ headers["Accept"] = "application/json";
173
180
  let operationVersion = version, operationPromise = operationVersion.create({
174
181
  uri: instance._uri,
175
182
  method: "post",
@@ -196,6 +203,7 @@ function SourceIpMappingListInstance(version) {
196
203
  if (params.pageToken !== undefined)
197
204
  data["PageToken"] = params.pageToken;
198
205
  const headers = {};
206
+ headers["Accept"] = "application/json";
199
207
  let operationVersion = version, operationPromise = operationVersion.page({
200
208
  uri: instance._uri,
201
209
  method: "get",
@@ -32,19 +32,24 @@ class CommandContextImpl {
32
32
  this._uri = `/Commands/${sid}`;
33
33
  }
34
34
  remove(callback) {
35
+ const headers = {};
35
36
  const instance = this;
36
37
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
37
38
  uri: instance._uri,
38
39
  method: "delete",
40
+ headers,
39
41
  });
40
42
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
41
43
  return operationPromise;
42
44
  }
43
45
  fetch(callback) {
46
+ const headers = {};
47
+ headers["Accept"] = "application/json";
44
48
  const instance = this;
45
49
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
46
50
  uri: instance._uri,
47
51
  method: "get",
52
+ headers,
48
53
  });
49
54
  operationPromise = operationPromise.then((payload) => new CommandInstance(operationVersion, payload, instance._solution.sid));
50
55
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -163,6 +168,7 @@ function CommandListInstance(version) {
163
168
  data["DeliveryReceiptRequested"] = serialize.bool(params["deliveryReceiptRequested"]);
164
169
  const headers = {};
165
170
  headers["Content-Type"] = "application/x-www-form-urlencoded";
171
+ headers["Accept"] = "application/json";
166
172
  let operationVersion = version, operationPromise = operationVersion.create({
167
173
  uri: instance._uri,
168
174
  method: "post",
@@ -197,6 +203,7 @@ function CommandListInstance(version) {
197
203
  if (params.pageToken !== undefined)
198
204
  data["PageToken"] = params.pageToken;
199
205
  const headers = {};
206
+ headers["Accept"] = "application/json";
200
207
  let operationVersion = version, operationPromise = operationVersion.page({
201
208
  uri: instance._uri,
202
209
  method: "get",
@@ -32,19 +32,24 @@ class RatePlanContextImpl {
32
32
  this._uri = `/RatePlans/${sid}`;
33
33
  }
34
34
  remove(callback) {
35
+ const headers = {};
35
36
  const instance = this;
36
37
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
37
38
  uri: instance._uri,
38
39
  method: "delete",
40
+ headers,
39
41
  });
40
42
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
41
43
  return operationPromise;
42
44
  }
43
45
  fetch(callback) {
46
+ const headers = {};
47
+ headers["Accept"] = "application/json";
44
48
  const instance = this;
45
49
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
46
50
  uri: instance._uri,
47
51
  method: "get",
52
+ headers,
48
53
  });
49
54
  operationPromise = operationPromise.then((payload) => new RatePlanInstance(operationVersion, payload, instance._solution.sid));
50
55
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -65,6 +70,7 @@ class RatePlanContextImpl {
65
70
  data["FriendlyName"] = params["friendlyName"];
66
71
  const headers = {};
67
72
  headers["Content-Type"] = "application/x-www-form-urlencoded";
73
+ headers["Accept"] = "application/json";
68
74
  const instance = this;
69
75
  let operationVersion = instance._version, operationPromise = operationVersion.update({
70
76
  uri: instance._uri,
@@ -211,6 +217,7 @@ function RatePlanListInstance(version) {
211
217
  params["internationalRoamingDataLimit"];
212
218
  const headers = {};
213
219
  headers["Content-Type"] = "application/x-www-form-urlencoded";
220
+ headers["Accept"] = "application/json";
214
221
  let operationVersion = version, operationPromise = operationVersion.create({
215
222
  uri: instance._uri,
216
223
  method: "post",
@@ -237,6 +244,7 @@ function RatePlanListInstance(version) {
237
244
  if (params.pageToken !== undefined)
238
245
  data["PageToken"] = params.pageToken;
239
246
  const headers = {};
247
+ headers["Accept"] = "application/json";
240
248
  let operationVersion = version, operationPromise = operationVersion.page({
241
249
  uri: instance._uri,
242
250
  method: "get",
@@ -46,6 +46,7 @@ function DataSessionListInstance(version, simSid) {
46
46
  if (params.pageToken !== undefined)
47
47
  data["PageToken"] = params.pageToken;
48
48
  const headers = {};
49
+ headers["Accept"] = "application/json";
49
50
  let operationVersion = version, operationPromise = operationVersion.page({
50
51
  uri: instance._uri,
51
52
  method: "get",
@@ -52,6 +52,7 @@ function UsageRecordListInstance(version, simSid) {
52
52
  if (params.pageToken !== undefined)
53
53
  data["PageToken"] = params.pageToken;
54
54
  const headers = {};
55
+ headers["Accept"] = "application/json";
55
56
  let operationVersion = version, operationPromise = operationVersion.page({
56
57
  uri: instance._uri,
57
58
  method: "get",
@@ -46,19 +46,24 @@ class SimContextImpl {
46
46
  return this._usageRecords;
47
47
  }
48
48
  remove(callback) {
49
+ const headers = {};
49
50
  const instance = this;
50
51
  let operationVersion = instance._version, operationPromise = operationVersion.remove({
51
52
  uri: instance._uri,
52
53
  method: "delete",
54
+ headers,
53
55
  });
54
56
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
55
57
  return operationPromise;
56
58
  }
57
59
  fetch(callback) {
60
+ const headers = {};
61
+ headers["Accept"] = "application/json";
58
62
  const instance = this;
59
63
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
60
64
  uri: instance._uri,
61
65
  method: "get",
66
+ headers,
62
67
  });
63
68
  operationPromise = operationPromise.then((payload) => new SimInstance(operationVersion, payload, instance._solution.sid));
64
69
  operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
@@ -111,6 +116,7 @@ class SimContextImpl {
111
116
  data["AccountSid"] = params["accountSid"];
112
117
  const headers = {};
113
118
  headers["Content-Type"] = "application/x-www-form-urlencoded";
119
+ headers["Accept"] = "application/json";
114
120
  const instance = this;
115
121
  let operationVersion = instance._version, operationPromise = operationVersion.update({
116
122
  uri: instance._uri,
@@ -276,6 +282,7 @@ function SimListInstance(version) {
276
282
  if (params.pageToken !== undefined)
277
283
  data["PageToken"] = params.pageToken;
278
284
  const headers = {};
285
+ headers["Accept"] = "application/json";
279
286
  let operationVersion = version, operationPromise = operationVersion.page({
280
287
  uri: instance._uri,
281
288
  method: "get",
@@ -48,6 +48,7 @@ function UsageRecordListInstance(version) {
48
48
  if (params.pageToken !== undefined)
49
49
  data["PageToken"] = params.pageToken;
50
50
  const headers = {};
51
+ headers["Accept"] = "application/json";
51
52
  let operationVersion = version, operationPromise = operationVersion.page({
52
53
  uri: instance._uri,
53
54
  method: "get",
@@ -178,6 +178,7 @@ declare namespace VoiceResponse {
178
178
  type ConversationRecord = "do-not-record" | "record-from-answer" | "record-from-ringing" | "record-from-answer-dual" | "record-from-ringing-dual" | "true" | "false";
179
179
  type ConversationRecordingEvent = "in-progress" | "completed" | "absent";
180
180
  type ConversationTrim = "trim-silence" | "do-not-trim";
181
+ type DialEvents = "call-progress-event";
181
182
  type DialRecord = "do-not-record" | "record-from-answer" | "record-from-ringing" | "record-from-answer-dual" | "record-from-ringing-dual";
182
183
  type DialRecordingEvent = "in-progress" | "completed" | "absent";
183
184
  type DialRecordingTrack = "both" | "inbound" | "outbound";
@@ -234,6 +235,8 @@ declare namespace VoiceResponse {
234
235
  answerOnBridge?: boolean;
235
236
  /** callerId - Caller ID to display */
236
237
  callerId?: string;
238
+ /** events - Subscription to events */
239
+ events?: DialEvents;
237
240
  /** hangupOnStar - Hangup call on star press */
238
241
  hangupOnStar?: boolean;
239
242
  /** method - Action URL method */
@@ -535,6 +538,8 @@ declare namespace VoiceResponse {
535
538
  hints?: string;
536
539
  /** inboundTrackLabel - Friendly name given to the Inbound Track */
537
540
  inboundTrackLabel?: string;
541
+ /** intelligenceService - The SID or the unique name of the Intelligence Service to be used */
542
+ intelligenceService?: string;
538
543
  /** languageCode - Language Code used by the transcription engine */
539
544
  languageCode?: string;
540
545
  /** name - Friendly name given to the Transcription */
@@ -634,6 +639,8 @@ declare namespace VoiceResponse {
634
639
  hints?: string;
635
640
  /** inboundTrackLabel - Friendly name given to the Inbound Track */
636
641
  inboundTrackLabel?: string;
642
+ /** intelligenceService - The SID or the unique name of the Intelligence Service to be used */
643
+ intelligenceService?: string;
637
644
  /** languageCode - Language Code used by the transcription engine */
638
645
  languageCode?: string;
639
646
  /** name - Friendly name given to the Transcription */
@@ -1456,6 +1463,128 @@ declare namespace VoiceResponse {
1456
1463
  /** url - TwiML URL */
1457
1464
  url?: string;
1458
1465
  }
1466
+ /**
1467
+ * Attributes to pass to conversationRelay
1468
+ */
1469
+ export interface ConversationRelayAttributes {
1470
+ /** debug - Whether debugging on the session is enabled */
1471
+ debug?: boolean;
1472
+ /** dtmfDetection - Whether DTMF tones should be detected and reported in speech transcription */
1473
+ dtmfDetection?: boolean;
1474
+ /** interruptByDtmf - Whether DTMF tone can interrupt the play of text-to-speech */
1475
+ interruptByDtmf?: boolean;
1476
+ /** interruptible - Whether caller's speaking can interrupt the play of text-to-speech */
1477
+ interruptible?: boolean;
1478
+ /** language - Language to be used for both text-to-speech and transcription */
1479
+ language?: string;
1480
+ /** partialPrompts - Whether partial prompts should be reported to WebSocket server before the caller finishes speaking */
1481
+ partialPrompts?: boolean;
1482
+ /** profanityFilter - Whether profanities should be filtered out of the speech transcription */
1483
+ profanityFilter?: boolean;
1484
+ /** speechModel - Speech model to be used for transcription */
1485
+ speechModel?: string;
1486
+ /** transcriptionLanguage - Language to be used for transcription */
1487
+ transcriptionLanguage?: string;
1488
+ /** transcriptionProvider - Provider to be used for transcription */
1489
+ transcriptionProvider?: string;
1490
+ /** ttsLanguage - Language to be used for text-to-speech */
1491
+ ttsLanguage?: string;
1492
+ /** ttsProvider - Provider to be used for text-to-speech */
1493
+ ttsProvider?: string;
1494
+ /** url - URL of the remote service where the session is connected to */
1495
+ url?: string;
1496
+ /** voice - Voice to be used for text-to-speech */
1497
+ voice?: string;
1498
+ /** welcomeGreeting - The sentence to be played automatically when the session is connected */
1499
+ welcomeGreeting?: string;
1500
+ /** welcomeGreetingInterruptible - Whether caller's speaking can interrupt the welcome greeting */
1501
+ welcomeGreetingInterruptible?: boolean;
1502
+ }
1503
+ /**
1504
+ * Attributes to pass to assistant
1505
+ */
1506
+ export interface AssistantAttributes {
1507
+ /** debug - Whether debugging on the session is enabled */
1508
+ debug?: boolean;
1509
+ /** dtmfDetection - Whether DTMF tones should be detected and reported in speech transcription */
1510
+ dtmfDetection?: boolean;
1511
+ /** id - The assistant ID of the AI Assistant */
1512
+ id?: string;
1513
+ /** interruptByDtmf - Whether DTMF tone can interrupt the play of text-to-speech */
1514
+ interruptByDtmf?: boolean;
1515
+ /** interruptible - Whether caller's speaking can interrupt the play of text-to-speech */
1516
+ interruptible?: boolean;
1517
+ /** language - Language to be used for both text-to-speech and transcription */
1518
+ language?: string;
1519
+ /** partialPrompts - Whether partial prompts should be reported to WebSocket server before the caller finishes speaking */
1520
+ partialPrompts?: boolean;
1521
+ /** profanityFilter - Whether profanities should be filtered out of the speech transcription */
1522
+ profanityFilter?: boolean;
1523
+ /** speechModel - Speech model to be used for transcription */
1524
+ speechModel?: string;
1525
+ /** transcriptionLanguage - Language to be used for transcription */
1526
+ transcriptionLanguage?: string;
1527
+ /** transcriptionProvider - Provider to be used for transcription */
1528
+ transcriptionProvider?: string;
1529
+ /** ttsLanguage - Language to be used for text-to-speech */
1530
+ ttsLanguage?: string;
1531
+ /** ttsProvider - Provider to be used for text-to-speech */
1532
+ ttsProvider?: string;
1533
+ /** voice - Voice to be used for text-to-speech */
1534
+ voice?: string;
1535
+ /** welcomeGreeting - The sentence to be played automatically when the session is connected */
1536
+ welcomeGreeting?: string;
1537
+ /** welcomeGreetingInterruptible - Whether caller's speaking can interrupt the welcome greeting */
1538
+ welcomeGreetingInterruptible?: boolean;
1539
+ }
1540
+ /**
1541
+ * Attributes to pass to language
1542
+ */
1543
+ export interface LanguageAttributes {
1544
+ /** code - Language code of this language setting is for */
1545
+ code?: string;
1546
+ /** speechModel - Speech model to be used for transcription of this language */
1547
+ speechModel?: string;
1548
+ /** transcriptionProvider - Provider to be used for transcription of this language */
1549
+ transcriptionProvider?: string;
1550
+ /** ttsProvider - Provider to be used for text-to-speech of this language */
1551
+ ttsProvider?: string;
1552
+ /** voice - Voice to be used for text-to-speech of this language */
1553
+ voice?: string;
1554
+ }
1555
+ /**
1556
+ * Attributes to pass to parameter
1557
+ */
1558
+ export interface ParameterAttributes {
1559
+ /** name - The name of the custom parameter */
1560
+ name?: string;
1561
+ /** value - The value of the custom parameter */
1562
+ value?: string;
1563
+ }
1564
+ /**
1565
+ * Attributes to pass to language
1566
+ */
1567
+ export interface LanguageAttributes {
1568
+ /** code - Language code of this language setting is for */
1569
+ code?: string;
1570
+ /** speechModel - Speech model to be used for transcription of this language */
1571
+ speechModel?: string;
1572
+ /** transcriptionProvider - Provider to be used for transcription of this language */
1573
+ transcriptionProvider?: string;
1574
+ /** ttsProvider - Provider to be used for text-to-speech of this language */
1575
+ ttsProvider?: string;
1576
+ /** voice - Voice to be used for text-to-speech of this language */
1577
+ voice?: string;
1578
+ }
1579
+ /**
1580
+ * Attributes to pass to parameter
1581
+ */
1582
+ export interface ParameterAttributes {
1583
+ /** name - The name of the custom parameter */
1584
+ name?: string;
1585
+ /** value - The value of the custom parameter */
1586
+ value?: string;
1587
+ }
1459
1588
  /**
1460
1589
  * Attributes to pass to config
1461
1590
  */
@@ -1502,6 +1631,25 @@ declare namespace VoiceResponse {
1502
1631
  */
1503
1632
  constructor(applicationSid: XMLElement);
1504
1633
  }
1634
+ export class Assistant extends TwiML {
1635
+ assistant: XMLElement;
1636
+ /**
1637
+ * <Assistant> TwiML Noun
1638
+ */
1639
+ constructor(assistant: XMLElement);
1640
+ /**
1641
+ * <Language> TwiML Noun
1642
+ *
1643
+ * @param attributes - TwiML attributes
1644
+ */
1645
+ language(attributes?: VoiceResponse.LanguageAttributes): VoiceResponse.Language;
1646
+ /**
1647
+ * <Parameter> TwiML Noun
1648
+ *
1649
+ * @param attributes - TwiML attributes
1650
+ */
1651
+ parameter(attributes?: VoiceResponse.ParameterAttributes): VoiceResponse.Parameter;
1652
+ }
1505
1653
  export class Autopilot extends TwiML {
1506
1654
  autopilot: XMLElement;
1507
1655
  /**
@@ -1550,6 +1698,12 @@ declare namespace VoiceResponse {
1550
1698
  * <Connect> TwiML Verb
1551
1699
  */
1552
1700
  constructor(connect: XMLElement);
1701
+ /**
1702
+ * <Assistant> TwiML Noun
1703
+ *
1704
+ * @param attributes - TwiML attributes
1705
+ */
1706
+ assistant(attributes?: VoiceResponse.AssistantAttributes): VoiceResponse.Assistant;
1553
1707
  /**
1554
1708
  * <Autopilot> TwiML Noun
1555
1709
  *
@@ -1564,6 +1718,12 @@ declare namespace VoiceResponse {
1564
1718
  * @param attributes - TwiML attributes
1565
1719
  */
1566
1720
  conversation(attributes?: VoiceResponse.ConversationAttributes): VoiceResponse.Conversation;
1721
+ /**
1722
+ * <ConversationRelay> TwiML Noun
1723
+ *
1724
+ * @param attributes - TwiML attributes
1725
+ */
1726
+ conversationRelay(attributes?: VoiceResponse.ConversationRelayAttributes): VoiceResponse.ConversationRelay;
1567
1727
  /**
1568
1728
  * <Room> TwiML Noun
1569
1729
  *
@@ -1592,6 +1752,25 @@ declare namespace VoiceResponse {
1592
1752
  */
1593
1753
  constructor(conversation: XMLElement);
1594
1754
  }
1755
+ export class ConversationRelay extends TwiML {
1756
+ conversationRelay: XMLElement;
1757
+ /**
1758
+ * <ConversationRelay> TwiML Noun
1759
+ */
1760
+ constructor(conversationRelay: XMLElement);
1761
+ /**
1762
+ * <Language> TwiML Noun
1763
+ *
1764
+ * @param attributes - TwiML attributes
1765
+ */
1766
+ language(attributes?: VoiceResponse.LanguageAttributes): VoiceResponse.Language;
1767
+ /**
1768
+ * <Parameter> TwiML Noun
1769
+ *
1770
+ * @param attributes - TwiML attributes
1771
+ */
1772
+ parameter(attributes?: VoiceResponse.ParameterAttributes): VoiceResponse.Parameter;
1773
+ }
1595
1774
  export class Dial extends TwiML {
1596
1775
  dial: XMLElement;
1597
1776
  /**
@@ -1726,6 +1905,13 @@ declare namespace VoiceResponse {
1726
1905
  */
1727
1906
  constructor(identity: XMLElement);
1728
1907
  }
1908
+ export class Language extends TwiML {
1909
+ language: XMLElement;
1910
+ /**
1911
+ * <Language> TwiML Noun
1912
+ */
1913
+ constructor(language: XMLElement);
1914
+ }
1729
1915
  export class Leave extends TwiML {
1730
1916
  leave: XMLElement;
1731
1917
  /**