twilio 3.83.4 → 4.0.0-rc.2

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 (2305) hide show
  1. package/README.md +22 -6
  2. package/dist/index.d.ts +12 -0
  3. package/dist/index.js +1 -0
  4. package/dist/lib/base/BaseTwilio.d.ts +84 -0
  5. package/dist/lib/base/BaseTwilio.js +165 -0
  6. package/dist/lib/base/Domain.d.ts +37 -0
  7. package/dist/lib/base/Domain.js +49 -0
  8. package/dist/lib/base/Page.d.ts +90 -0
  9. package/dist/lib/base/Page.js +180 -0
  10. package/dist/lib/base/RequestClient.d.ts +51 -0
  11. package/dist/lib/base/RequestClient.js +161 -0
  12. package/dist/lib/base/RestException.d.ts +9 -0
  13. package/dist/lib/base/RestException.js +15 -0
  14. package/dist/lib/base/Version.d.ts +102 -0
  15. package/dist/lib/base/Version.js +274 -0
  16. package/dist/lib/base/deserialize.d.ts +45 -0
  17. package/dist/lib/base/deserialize.js +83 -0
  18. package/dist/lib/base/serialize.d.ts +6 -0
  19. package/dist/lib/base/serialize.js +136 -0
  20. package/dist/lib/base/utility.d.ts +1 -0
  21. package/dist/lib/base/utility.js +5 -0
  22. package/dist/lib/base/values.d.ts +12 -0
  23. package/dist/lib/base/values.js +18 -0
  24. package/dist/lib/http/request.js +81 -0
  25. package/dist/lib/http/response.js +10 -0
  26. package/dist/lib/index.d.ts +23 -0
  27. package/dist/lib/index.js +61 -0
  28. package/dist/lib/jwt/AccessToken.d.ts +146 -0
  29. package/dist/lib/jwt/AccessToken.js +250 -0
  30. package/dist/lib/jwt/ClientCapability.d.ts +54 -0
  31. package/dist/lib/jwt/ClientCapability.js +114 -0
  32. package/dist/lib/jwt/taskrouter/TaskRouterCapability.d.ts +54 -0
  33. package/dist/lib/jwt/taskrouter/TaskRouterCapability.js +94 -0
  34. package/dist/lib/jwt/taskrouter/util.d.ts +67 -0
  35. package/dist/lib/jwt/taskrouter/util.js +169 -0
  36. package/dist/lib/rest/Accounts.d.ts +19 -0
  37. package/dist/lib/rest/Accounts.js +29 -0
  38. package/dist/lib/rest/AccountsBase.d.ts +13 -0
  39. package/dist/lib/rest/AccountsBase.js +31 -0
  40. package/dist/lib/rest/Api.d.ts +127 -0
  41. package/dist/lib/rest/Api.js +182 -0
  42. package/dist/lib/rest/ApiBase.d.ts +13 -0
  43. package/dist/lib/rest/ApiBase.js +31 -0
  44. package/dist/lib/rest/Autopilot.d.ts +14 -0
  45. package/dist/lib/rest/Autopilot.js +22 -0
  46. package/dist/lib/rest/AutopilotBase.d.ts +13 -0
  47. package/dist/lib/rest/AutopilotBase.js +31 -0
  48. package/dist/lib/rest/Bulkexports.d.ts +14 -0
  49. package/dist/lib/rest/Bulkexports.js +22 -0
  50. package/dist/lib/rest/BulkexportsBase.d.ts +13 -0
  51. package/dist/lib/rest/BulkexportsBase.js +31 -0
  52. package/dist/lib/rest/Chat.d.ts +19 -0
  53. package/dist/lib/rest/Chat.js +29 -0
  54. package/dist/lib/rest/ChatBase.d.ts +19 -0
  55. package/dist/lib/rest/ChatBase.js +41 -0
  56. package/dist/lib/rest/Content.d.ts +4 -0
  57. package/dist/lib/rest/Content.js +8 -0
  58. package/dist/lib/rest/ContentBase.d.ts +13 -0
  59. package/dist/lib/rest/ContentBase.js +31 -0
  60. package/dist/lib/rest/Conversations.d.ts +44 -0
  61. package/dist/lib/rest/Conversations.js +64 -0
  62. package/dist/lib/rest/ConversationsBase.d.ts +13 -0
  63. package/dist/lib/rest/ConversationsBase.js +31 -0
  64. package/dist/lib/rest/Events.d.ts +24 -0
  65. package/dist/lib/rest/Events.js +36 -0
  66. package/dist/lib/rest/EventsBase.d.ts +13 -0
  67. package/dist/lib/rest/EventsBase.js +31 -0
  68. package/dist/lib/rest/FlexApi.d.ts +29 -0
  69. package/dist/lib/rest/FlexApi.js +43 -0
  70. package/dist/lib/rest/FlexApiBase.d.ts +13 -0
  71. package/dist/lib/rest/FlexApiBase.js +31 -0
  72. package/dist/lib/rest/FrontlineApi.d.ts +9 -0
  73. package/dist/lib/rest/FrontlineApi.js +15 -0
  74. package/dist/lib/rest/FrontlineApiBase.d.ts +13 -0
  75. package/dist/lib/rest/FrontlineApiBase.js +31 -0
  76. package/dist/lib/rest/Insights.d.ts +29 -0
  77. package/dist/lib/rest/Insights.js +43 -0
  78. package/dist/lib/rest/InsightsBase.d.ts +13 -0
  79. package/dist/lib/rest/InsightsBase.js +31 -0
  80. package/dist/lib/rest/IpMessaging.d.ts +14 -0
  81. package/dist/lib/rest/IpMessaging.js +22 -0
  82. package/dist/lib/rest/IpMessagingBase.d.ts +16 -0
  83. package/dist/lib/rest/IpMessagingBase.js +36 -0
  84. package/dist/lib/rest/Lookups.d.ts +9 -0
  85. package/dist/lib/rest/Lookups.js +15 -0
  86. package/dist/lib/rest/LookupsBase.d.ts +16 -0
  87. package/dist/lib/rest/LookupsBase.js +36 -0
  88. package/dist/lib/rest/Media.d.ts +19 -0
  89. package/dist/lib/rest/Media.js +29 -0
  90. package/dist/lib/rest/MediaBase.d.ts +13 -0
  91. package/dist/lib/rest/MediaBase.js +31 -0
  92. package/dist/lib/rest/Messaging.d.ts +29 -0
  93. package/dist/lib/rest/Messaging.js +43 -0
  94. package/dist/lib/rest/MessagingBase.d.ts +13 -0
  95. package/dist/lib/rest/MessagingBase.js +31 -0
  96. package/dist/lib/rest/Microvisor.d.ts +14 -0
  97. package/dist/lib/rest/Microvisor.js +22 -0
  98. package/dist/lib/rest/MicrovisorBase.d.ts +13 -0
  99. package/dist/lib/rest/MicrovisorBase.js +31 -0
  100. package/dist/lib/rest/Monitor.d.ts +14 -0
  101. package/dist/lib/rest/Monitor.js +22 -0
  102. package/dist/lib/rest/MonitorBase.d.ts +13 -0
  103. package/dist/lib/rest/MonitorBase.js +31 -0
  104. package/dist/lib/rest/Notify.d.ts +14 -0
  105. package/dist/lib/rest/Notify.js +22 -0
  106. package/dist/lib/rest/NotifyBase.d.ts +13 -0
  107. package/dist/lib/rest/NotifyBase.js +31 -0
  108. package/dist/lib/rest/Numbers.d.ts +9 -0
  109. package/dist/lib/rest/Numbers.js +15 -0
  110. package/dist/lib/rest/NumbersBase.d.ts +13 -0
  111. package/dist/lib/rest/NumbersBase.js +31 -0
  112. package/dist/lib/rest/Oauth.d.ts +24 -0
  113. package/dist/lib/rest/Oauth.js +36 -0
  114. package/dist/lib/rest/OauthBase.d.ts +13 -0
  115. package/dist/lib/rest/OauthBase.js +31 -0
  116. package/dist/lib/rest/Preview.d.ts +74 -0
  117. package/dist/lib/rest/Preview.js +106 -0
  118. package/dist/lib/rest/PreviewBase.d.ts +28 -0
  119. package/dist/lib/rest/PreviewBase.js +57 -0
  120. package/dist/lib/rest/Pricing.d.ts +29 -0
  121. package/dist/lib/rest/Pricing.js +43 -0
  122. package/dist/lib/rest/PricingBase.d.ts +16 -0
  123. package/dist/lib/rest/PricingBase.js +36 -0
  124. package/dist/lib/rest/Proxy.d.ts +9 -0
  125. package/dist/lib/rest/Proxy.js +15 -0
  126. package/dist/lib/rest/ProxyBase.d.ts +13 -0
  127. package/dist/lib/rest/ProxyBase.js +31 -0
  128. package/dist/lib/rest/Routes.d.ts +19 -0
  129. package/dist/lib/rest/Routes.js +29 -0
  130. package/dist/lib/rest/RoutesBase.d.ts +13 -0
  131. package/dist/lib/rest/RoutesBase.js +31 -0
  132. package/dist/lib/rest/Serverless.d.ts +9 -0
  133. package/dist/lib/rest/Serverless.js +15 -0
  134. package/dist/lib/rest/ServerlessBase.d.ts +13 -0
  135. package/dist/lib/rest/ServerlessBase.js +31 -0
  136. package/dist/lib/rest/Studio.d.ts +14 -0
  137. package/dist/lib/rest/Studio.js +22 -0
  138. package/dist/lib/rest/StudioBase.d.ts +16 -0
  139. package/dist/lib/rest/StudioBase.js +36 -0
  140. package/dist/lib/rest/Supersim.d.ts +44 -0
  141. package/dist/lib/rest/Supersim.js +64 -0
  142. package/dist/lib/rest/SupersimBase.d.ts +13 -0
  143. package/dist/lib/rest/SupersimBase.js +31 -0
  144. package/dist/lib/rest/Sync.d.ts +9 -0
  145. package/dist/lib/rest/Sync.js +15 -0
  146. package/dist/lib/rest/SyncBase.d.ts +13 -0
  147. package/dist/lib/rest/SyncBase.js +31 -0
  148. package/dist/lib/rest/Taskrouter.d.ts +9 -0
  149. package/dist/lib/rest/Taskrouter.js +15 -0
  150. package/dist/lib/rest/TaskrouterBase.d.ts +13 -0
  151. package/dist/lib/rest/TaskrouterBase.js +31 -0
  152. package/dist/lib/rest/Trunking.d.ts +9 -0
  153. package/dist/lib/rest/Trunking.js +15 -0
  154. package/dist/lib/rest/TrunkingBase.d.ts +13 -0
  155. package/dist/lib/rest/TrunkingBase.js +31 -0
  156. package/dist/lib/rest/Trusthub.d.ts +39 -0
  157. package/dist/lib/rest/Trusthub.js +57 -0
  158. package/dist/lib/rest/TrusthubBase.d.ts +13 -0
  159. package/dist/lib/rest/TrusthubBase.js +31 -0
  160. package/dist/lib/rest/Twilio.d.ts +171 -0
  161. package/dist/lib/rest/Twilio.js +447 -0
  162. package/dist/lib/rest/Verify.d.ts +29 -0
  163. package/dist/lib/rest/Verify.js +43 -0
  164. package/dist/lib/rest/VerifyBase.d.ts +13 -0
  165. package/dist/lib/rest/VerifyBase.js +31 -0
  166. package/dist/lib/rest/Video.d.ts +34 -0
  167. package/dist/lib/rest/Video.js +50 -0
  168. package/dist/lib/rest/VideoBase.d.ts +13 -0
  169. package/dist/lib/rest/VideoBase.js +31 -0
  170. package/dist/lib/rest/Voice.d.ts +34 -0
  171. package/dist/lib/rest/Voice.js +50 -0
  172. package/dist/lib/rest/VoiceBase.d.ts +13 -0
  173. package/dist/lib/rest/VoiceBase.js +31 -0
  174. package/dist/lib/rest/Wireless.d.ts +24 -0
  175. package/dist/lib/rest/Wireless.js +36 -0
  176. package/dist/lib/rest/WirelessBase.d.ts +13 -0
  177. package/dist/lib/rest/WirelessBase.js +31 -0
  178. package/dist/lib/rest/accounts/V1.d.ts +23 -0
  179. package/dist/lib/rest/accounts/V1.js +51 -0
  180. package/dist/lib/rest/accounts/v1/authTokenPromotion.d.ts +105 -0
  181. package/dist/lib/rest/accounts/v1/authTokenPromotion.js +110 -0
  182. package/dist/lib/rest/accounts/v1/credential/aws.d.ts +358 -0
  183. package/dist/lib/rest/accounts/v1/credential/aws.js +246 -0
  184. package/dist/lib/rest/accounts/v1/credential/publicKey.d.ts +358 -0
  185. package/dist/lib/rest/accounts/v1/credential/publicKey.js +247 -0
  186. package/dist/lib/rest/accounts/v1/credential.d.ts +18 -0
  187. package/dist/lib/rest/accounts/v1/credential.js +53 -0
  188. package/dist/lib/rest/accounts/v1/secondaryAuthToken.d.ts +122 -0
  189. package/dist/lib/rest/accounts/v1/secondaryAuthToken.js +128 -0
  190. package/dist/lib/rest/api/V2010.d.ts +19 -0
  191. package/dist/lib/rest/api/V2010.js +43 -0
  192. package/dist/lib/rest/api/v2010/account/address/dependentPhoneNumber.d.ts +353 -0
  193. package/dist/lib/rest/api/v2010/account/address/dependentPhoneNumber.js +170 -0
  194. package/dist/lib/rest/api/v2010/account/address.d.ts +466 -0
  195. package/dist/lib/rest/api/v2010/account/address.js +321 -0
  196. package/dist/lib/rest/api/v2010/account/application.d.ts +515 -0
  197. package/dist/lib/rest/api/v2010/account/application.js +331 -0
  198. package/dist/lib/rest/api/v2010/account/authorizedConnectApp.d.ts +302 -0
  199. package/dist/lib/rest/api/v2010/account/authorizedConnectApp.js +189 -0
  200. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.d.ts +380 -0
  201. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.js +180 -0
  202. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.d.ts +380 -0
  203. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.js +180 -0
  204. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.d.ts +380 -0
  205. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.js +180 -0
  206. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.d.ts +380 -0
  207. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.js +180 -0
  208. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.d.ts +380 -0
  209. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.js +180 -0
  210. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.d.ts +380 -0
  211. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.js +180 -0
  212. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.d.ts +380 -0
  213. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.js +180 -0
  214. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry.d.ts +327 -0
  215. package/dist/lib/rest/api/v2010/account/availablePhoneNumberCountry.js +270 -0
  216. package/dist/lib/rest/api/v2010/account/balance.d.ts +58 -0
  217. package/dist/lib/rest/api/v2010/account/balance.js +68 -0
  218. package/dist/lib/rest/api/v2010/account/call/event.d.ts +208 -0
  219. package/dist/lib/rest/api/v2010/account/call/event.js +122 -0
  220. package/dist/lib/rest/api/v2010/account/call/feedback.d.ts +162 -0
  221. package/dist/lib/rest/api/v2010/account/call/feedback.js +141 -0
  222. package/dist/lib/rest/api/v2010/account/call/feedbackSummary.d.ts +203 -0
  223. package/dist/lib/rest/api/v2010/account/call/feedbackSummary.js +179 -0
  224. package/dist/lib/rest/api/v2010/account/call/notification.d.ts +370 -0
  225. package/dist/lib/rest/api/v2010/account/call/notification.js +208 -0
  226. package/dist/lib/rest/api/v2010/account/call/payment.d.ts +186 -0
  227. package/dist/lib/rest/api/v2010/account/call/payment.js +183 -0
  228. package/dist/lib/rest/api/v2010/account/call/recording.d.ts +448 -0
  229. package/dist/lib/rest/api/v2010/account/call/recording.js +286 -0
  230. package/dist/lib/rest/api/v2010/account/call/siprec.d.ts +563 -0
  231. package/dist/lib/rest/api/v2010/account/call/siprec.js +547 -0
  232. package/dist/lib/rest/api/v2010/account/call/stream.d.ts +555 -0
  233. package/dist/lib/rest/api/v2010/account/call/stream.js +545 -0
  234. package/dist/lib/rest/api/v2010/account/call/userDefinedMessage.d.ts +77 -0
  235. package/dist/lib/rest/api/v2010/account/call/userDefinedMessage.js +84 -0
  236. package/dist/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.js +92 -0
  237. package/dist/lib/rest/api/v2010/account/call.d.ts +693 -0
  238. package/dist/lib/rest/api/v2010/account/call.js +520 -0
  239. package/dist/lib/rest/api/v2010/account/conference/participant.d.ts +534 -0
  240. package/dist/lib/rest/api/v2010/account/conference/participant.js +390 -0
  241. package/dist/lib/rest/api/v2010/account/conference/recording.d.ts +406 -0
  242. package/dist/lib/rest/api/v2010/account/conference/recording.js +250 -0
  243. package/dist/lib/rest/api/v2010/account/conference.d.ts +422 -0
  244. package/dist/lib/rest/api/v2010/account/conference.js +262 -0
  245. package/dist/lib/rest/api/v2010/account/connectApp.d.ts +384 -0
  246. package/dist/lib/rest/api/v2010/account/connectApp.js +246 -0
  247. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.d.ts +299 -0
  248. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.js +189 -0
  249. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.d.ts +352 -0
  250. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.js +241 -0
  251. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/local.d.ts +477 -0
  252. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/local.js +259 -0
  253. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.d.ts +477 -0
  254. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.js +259 -0
  255. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.d.ts +477 -0
  256. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.js +259 -0
  257. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber.d.ts +652 -0
  258. package/dist/lib/rest/api/v2010/account/incomingPhoneNumber.js +439 -0
  259. package/dist/lib/rest/api/v2010/account/key.d.ts +326 -0
  260. package/dist/lib/rest/api/v2010/account/key.js +218 -0
  261. package/dist/lib/rest/api/v2010/account/message/feedback.d.ts +93 -0
  262. package/dist/lib/rest/api/v2010/account/message/feedback.js +88 -0
  263. package/dist/lib/rest/api/v2010/account/message/media.d.ts +320 -0
  264. package/dist/lib/rest/api/v2010/account/message/media.js +204 -0
  265. package/dist/lib/rest/api/v2010/account/message.d.ts +530 -0
  266. package/dist/lib/rest/api/v2010/account/message.js +351 -0
  267. package/dist/lib/rest/api/v2010/account/newKey.d.ts +88 -0
  268. package/dist/lib/rest/api/v2010/account/newKey.js +86 -0
  269. package/dist/lib/rest/api/v2010/account/newSigningKey.d.ts +88 -0
  270. package/dist/lib/rest/api/v2010/account/newSigningKey.js +86 -0
  271. package/dist/lib/rest/api/v2010/account/notification.d.ts +368 -0
  272. package/dist/lib/rest/api/v2010/account/notification.js +208 -0
  273. package/dist/lib/rest/api/v2010/account/outgoingCallerId.d.ts +356 -0
  274. package/dist/lib/rest/api/v2010/account/outgoingCallerId.js +228 -0
  275. package/dist/lib/rest/api/v2010/account/queue/member.d.ts +309 -0
  276. package/dist/lib/rest/api/v2010/account/queue/member.js +204 -0
  277. package/dist/lib/rest/api/v2010/account/queue.d.ts +386 -0
  278. package/dist/lib/rest/api/v2010/account/queue.js +267 -0
  279. package/dist/lib/rest/api/v2010/account/recording/addOnResult/payload.d.ts +328 -0
  280. package/dist/lib/rest/api/v2010/account/recording/addOnResult/payload.js +211 -0
  281. package/dist/lib/rest/api/v2010/account/recording/addOnResult.d.ts +326 -0
  282. package/dist/lib/rest/api/v2010/account/recording/addOnResult.js +217 -0
  283. package/dist/lib/rest/api/v2010/account/recording/transcription.d.ts +336 -0
  284. package/dist/lib/rest/api/v2010/account/recording/transcription.js +210 -0
  285. package/dist/lib/rest/api/v2010/account/recording.d.ts +447 -0
  286. package/dist/lib/rest/api/v2010/account/recording.js +266 -0
  287. package/dist/lib/rest/api/v2010/account/shortCode.d.ts +381 -0
  288. package/dist/lib/rest/api/v2010/account/shortCode.js +230 -0
  289. package/dist/lib/rest/api/v2010/account/signingKey.d.ts +314 -0
  290. package/dist/lib/rest/api/v2010/account/signingKey.js +218 -0
  291. package/dist/lib/rest/api/v2010/account/sip/credentialList/credential.d.ts +366 -0
  292. package/dist/lib/rest/api/v2010/account/sip/credentialList/credential.js +249 -0
  293. package/dist/lib/rest/api/v2010/account/sip/credentialList.d.ts +354 -0
  294. package/dist/lib/rest/api/v2010/account/sip/credentialList.js +258 -0
  295. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.d.ts +308 -0
  296. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.js +216 -0
  297. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.d.ts +308 -0
  298. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.js +216 -0
  299. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.d.ts +20 -0
  300. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.js +55 -0
  301. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.d.ts +308 -0
  302. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.js +216 -0
  303. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.d.ts +18 -0
  304. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.js +45 -0
  305. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes.d.ts +20 -0
  306. package/dist/lib/rest/api/v2010/account/sip/domain/authTypes.js +53 -0
  307. package/dist/lib/rest/api/v2010/account/sip/domain/credentialListMapping.d.ts +320 -0
  308. package/dist/lib/rest/api/v2010/account/sip/domain/credentialListMapping.js +220 -0
  309. package/dist/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.d.ts +320 -0
  310. package/dist/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.js +220 -0
  311. package/dist/lib/rest/api/v2010/account/sip/domain.d.ts +521 -0
  312. package/dist/lib/rest/api/v2010/account/sip/domain.js +360 -0
  313. package/dist/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.d.ts +384 -0
  314. package/dist/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.js +264 -0
  315. package/dist/lib/rest/api/v2010/account/sip/ipAccessControlList.d.ts +354 -0
  316. package/dist/lib/rest/api/v2010/account/sip/ipAccessControlList.js +258 -0
  317. package/dist/lib/rest/api/v2010/account/sip.d.ts +21 -0
  318. package/dist/lib/rest/api/v2010/account/sip.js +62 -0
  319. package/dist/lib/rest/api/v2010/account/token.d.ts +106 -0
  320. package/dist/lib/rest/api/v2010/account/token.js +93 -0
  321. package/dist/lib/rest/api/v2010/account/transcription.d.ts +334 -0
  322. package/dist/lib/rest/api/v2010/account/transcription.js +210 -0
  323. package/dist/lib/rest/api/v2010/account/usage/record/allTime.d.ts +307 -0
  324. package/dist/lib/rest/api/v2010/account/usage/record/allTime.js +156 -0
  325. package/dist/lib/rest/api/v2010/account/usage/record/daily.d.ts +307 -0
  326. package/dist/lib/rest/api/v2010/account/usage/record/daily.js +156 -0
  327. package/dist/lib/rest/api/v2010/account/usage/record/lastMonth.d.ts +307 -0
  328. package/dist/lib/rest/api/v2010/account/usage/record/lastMonth.js +156 -0
  329. package/dist/lib/rest/api/v2010/account/usage/record/monthly.d.ts +307 -0
  330. package/dist/lib/rest/api/v2010/account/usage/record/monthly.js +156 -0
  331. package/dist/lib/rest/api/v2010/account/usage/record/thisMonth.d.ts +307 -0
  332. package/dist/lib/rest/api/v2010/account/usage/record/thisMonth.js +156 -0
  333. package/dist/lib/rest/api/v2010/account/usage/record/today.d.ts +307 -0
  334. package/dist/lib/rest/api/v2010/account/usage/record/today.js +156 -0
  335. package/dist/lib/rest/api/v2010/account/usage/record/yearly.d.ts +307 -0
  336. package/dist/lib/rest/api/v2010/account/usage/record/yearly.js +156 -0
  337. package/dist/lib/rest/api/v2010/account/usage/record/yesterday.d.ts +307 -0
  338. package/dist/lib/rest/api/v2010/account/usage/record/yesterday.js +156 -0
  339. package/dist/lib/rest/api/v2010/account/usage/record.d.ts +323 -0
  340. package/dist/lib/rest/api/v2010/account/usage/record.js +228 -0
  341. package/dist/lib/rest/api/v2010/account/usage/trigger.d.ts +445 -0
  342. package/dist/lib/rest/api/v2010/account/usage/trigger.js +291 -0
  343. package/dist/lib/rest/api/v2010/account/usage.d.ts +19 -0
  344. package/dist/lib/rest/api/v2010/account/usage.js +53 -0
  345. package/dist/lib/rest/api/v2010/account/validationRequest.d.ts +90 -0
  346. package/dist/lib/rest/api/v2010/account/validationRequest.js +94 -0
  347. package/dist/lib/rest/api/v2010/account.d.ts +571 -0
  348. package/dist/lib/rest/api/v2010/account.js +542 -0
  349. package/dist/lib/rest/autopilot/V1.d.ts +19 -0
  350. package/dist/lib/rest/autopilot/V1.js +44 -0
  351. package/dist/lib/rest/autopilot/v1/assistant/defaults.d.ts +145 -0
  352. package/dist/lib/rest/autopilot/v1/assistant/defaults.js +135 -0
  353. package/dist/lib/rest/autopilot/v1/assistant/dialogue.d.ts +108 -0
  354. package/dist/lib/rest/autopilot/v1/assistant/dialogue.js +111 -0
  355. package/dist/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.d.ts +348 -0
  356. package/dist/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.js +233 -0
  357. package/dist/lib/rest/autopilot/v1/assistant/fieldType.d.ts +386 -0
  358. package/dist/lib/rest/autopilot/v1/assistant/fieldType.js +266 -0
  359. package/dist/lib/rest/autopilot/v1/assistant/modelBuild.d.ts +388 -0
  360. package/dist/lib/rest/autopilot/v1/assistant/modelBuild.js +255 -0
  361. package/dist/lib/rest/autopilot/v1/assistant/query.d.ts +436 -0
  362. package/dist/lib/rest/autopilot/v1/assistant/query.js +277 -0
  363. package/dist/lib/rest/autopilot/v1/assistant/styleSheet.d.ts +145 -0
  364. package/dist/lib/rest/autopilot/v1/assistant/styleSheet.js +135 -0
  365. package/dist/lib/rest/autopilot/v1/assistant/task/field.d.ts +334 -0
  366. package/dist/lib/rest/autopilot/v1/assistant/task/field.js +227 -0
  367. package/dist/lib/rest/autopilot/v1/assistant/task/sample.d.ts +396 -0
  368. package/dist/lib/rest/autopilot/v1/assistant/task/sample.js +263 -0
  369. package/dist/lib/rest/autopilot/v1/assistant/task/taskActions.d.ts +153 -0
  370. package/dist/lib/rest/autopilot/v1/assistant/task/taskActions.js +137 -0
  371. package/dist/lib/rest/autopilot/v1/assistant/task/taskStatistics.d.ts +115 -0
  372. package/dist/lib/rest/autopilot/v1/assistant/task/taskStatistics.js +113 -0
  373. package/dist/lib/rest/autopilot/v1/assistant/task.d.ts +424 -0
  374. package/dist/lib/rest/autopilot/v1/assistant/task.js +315 -0
  375. package/dist/lib/rest/autopilot/v1/assistant/webhook.d.ts +392 -0
  376. package/dist/lib/rest/autopilot/v1/assistant/webhook.js +267 -0
  377. package/dist/lib/rest/autopilot/v1/assistant.d.ts +500 -0
  378. package/dist/lib/rest/autopilot/v1/assistant.js +387 -0
  379. package/dist/lib/rest/autopilot/v1/restoreAssistant.d.ts +121 -0
  380. package/dist/lib/rest/autopilot/v1/restoreAssistant.js +98 -0
  381. package/dist/lib/rest/bulkexports/V1.d.ts +19 -0
  382. package/dist/lib/rest/bulkexports/V1.js +44 -0
  383. package/dist/lib/rest/bulkexports/v1/export/day.d.ts +244 -0
  384. package/dist/lib/rest/bulkexports/v1/export/day.js +168 -0
  385. package/dist/lib/rest/bulkexports/v1/export/exportCustomJob.d.ts +289 -0
  386. package/dist/lib/rest/bulkexports/v1/export/exportCustomJob.js +176 -0
  387. package/dist/lib/rest/bulkexports/v1/export/job.d.ts +162 -0
  388. package/dist/lib/rest/bulkexports/v1/export/job.js +142 -0
  389. package/dist/lib/rest/bulkexports/v1/export.d.ts +112 -0
  390. package/dist/lib/rest/bulkexports/v1/export.js +141 -0
  391. package/dist/lib/rest/bulkexports/v1/exportConfiguration.d.ts +154 -0
  392. package/dist/lib/rest/bulkexports/v1/exportConfiguration.js +141 -0
  393. package/dist/lib/rest/chat/V1.d.ts +19 -0
  394. package/dist/lib/rest/chat/V1.js +43 -0
  395. package/dist/lib/rest/chat/V2.d.ts +19 -0
  396. package/dist/lib/rest/chat/V2.js +43 -0
  397. package/dist/lib/rest/chat/V3.d.ts +15 -0
  398. package/dist/lib/rest/chat/V3.js +37 -0
  399. package/dist/lib/rest/chat/v1/credential.d.ts +386 -0
  400. package/dist/lib/rest/chat/v1/credential.js +269 -0
  401. package/dist/lib/rest/chat/v1/service/channel/invite.d.ts +346 -0
  402. package/dist/lib/rest/chat/v1/service/channel/invite.js +229 -0
  403. package/dist/lib/rest/chat/v1/service/channel/member.d.ts +398 -0
  404. package/dist/lib/rest/chat/v1/service/channel/member.js +259 -0
  405. package/dist/lib/rest/chat/v1/service/channel/message.d.ts +413 -0
  406. package/dist/lib/rest/chat/v1/service/channel/message.js +265 -0
  407. package/dist/lib/rest/chat/v1/service/channel.d.ts +450 -0
  408. package/dist/lib/rest/chat/v1/service/channel.js +312 -0
  409. package/dist/lib/rest/chat/v1/service/role.d.ts +360 -0
  410. package/dist/lib/rest/chat/v1/service/role.js +256 -0
  411. package/dist/lib/rest/chat/v1/service/user/userChannel.d.ts +242 -0
  412. package/dist/lib/rest/chat/v1/service/user/userChannel.js +134 -0
  413. package/dist/lib/rest/chat/v1/service/user.d.ts +422 -0
  414. package/dist/lib/rest/chat/v1/service/user.js +282 -0
  415. package/dist/lib/rest/chat/v1/service.d.ts +574 -0
  416. package/dist/lib/rest/chat/v1/service.js +449 -0
  417. package/dist/lib/rest/chat/v2/credential.d.ts +386 -0
  418. package/dist/lib/rest/chat/v2/credential.js +269 -0
  419. package/dist/lib/rest/chat/v2/service/binding.d.ts +340 -0
  420. package/dist/lib/rest/chat/v2/service/binding.js +212 -0
  421. package/dist/lib/rest/chat/v2/service/channel/invite.d.ts +346 -0
  422. package/dist/lib/rest/chat/v2/service/channel/invite.js +229 -0
  423. package/dist/lib/rest/chat/v2/service/channel/member.d.ts +454 -0
  424. package/dist/lib/rest/chat/v2/service/channel/member.js +289 -0
  425. package/dist/lib/rest/chat/v2/service/channel/message.d.ts +487 -0
  426. package/dist/lib/rest/chat/v2/service/channel/message.js +299 -0
  427. package/dist/lib/rest/chat/v2/service/channel/webhook.d.ts +400 -0
  428. package/dist/lib/rest/chat/v2/service/channel/webhook.js +271 -0
  429. package/dist/lib/rest/chat/v2/service/channel.d.ts +502 -0
  430. package/dist/lib/rest/chat/v2/service/channel.js +347 -0
  431. package/dist/lib/rest/chat/v2/service/role.d.ts +360 -0
  432. package/dist/lib/rest/chat/v2/service/role.js +256 -0
  433. package/dist/lib/rest/chat/v2/service/user/userBinding.d.ts +336 -0
  434. package/dist/lib/rest/chat/v2/service/user/userBinding.js +210 -0
  435. package/dist/lib/rest/chat/v2/service/user/userChannel.d.ts +398 -0
  436. package/dist/lib/rest/chat/v2/service/user/userChannel.js +246 -0
  437. package/dist/lib/rest/chat/v2/service/user.d.ts +435 -0
  438. package/dist/lib/rest/chat/v2/service/user.js +299 -0
  439. package/dist/lib/rest/chat/v2/service.d.ts +548 -0
  440. package/dist/lib/rest/chat/v2/service.js +396 -0
  441. package/dist/lib/rest/chat/v3/channel.d.ts +191 -0
  442. package/dist/lib/rest/chat/v3/channel.js +140 -0
  443. package/dist/lib/rest/content/V1.d.ts +15 -0
  444. package/dist/lib/rest/content/V1.js +37 -0
  445. package/dist/lib/rest/content/v1/content/approvalFetch.d.ts +101 -0
  446. package/dist/lib/rest/content/v1/content/approvalFetch.js +109 -0
  447. package/dist/lib/rest/content/v1/content.d.ts +324 -0
  448. package/dist/lib/rest/content/v1/content.js +217 -0
  449. package/dist/lib/rest/conversations/V1.d.ts +43 -0
  450. package/dist/lib/rest/conversations/V1.js +83 -0
  451. package/dist/lib/rest/conversations/v1/addressConfiguration.d.ts +417 -0
  452. package/dist/lib/rest/conversations/v1/addressConfiguration.js +293 -0
  453. package/dist/lib/rest/conversations/v1/configuration/webhook.d.ts +165 -0
  454. package/dist/lib/rest/conversations/v1/configuration/webhook.js +147 -0
  455. package/dist/lib/rest/conversations/v1/configuration.d.ts +169 -0
  456. package/dist/lib/rest/conversations/v1/configuration.js +155 -0
  457. package/dist/lib/rest/conversations/v1/conversation/message/deliveryReceipt.d.ts +307 -0
  458. package/dist/lib/rest/conversations/v1/conversation/message/deliveryReceipt.js +188 -0
  459. package/dist/lib/rest/conversations/v1/conversation/message.d.ts +477 -0
  460. package/dist/lib/rest/conversations/v1/conversation/message.js +304 -0
  461. package/dist/lib/rest/conversations/v1/conversation/participant.d.ts +462 -0
  462. package/dist/lib/rest/conversations/v1/conversation/participant.js +301 -0
  463. package/dist/lib/rest/conversations/v1/conversation/webhook.d.ts +390 -0
  464. package/dist/lib/rest/conversations/v1/conversation/webhook.js +267 -0
  465. package/dist/lib/rest/conversations/v1/conversation.d.ts +493 -0
  466. package/dist/lib/rest/conversations/v1/conversation.js +340 -0
  467. package/dist/lib/rest/conversations/v1/credential.d.ts +388 -0
  468. package/dist/lib/rest/conversations/v1/credential.js +271 -0
  469. package/dist/lib/rest/conversations/v1/participantConversation.d.ts +300 -0
  470. package/dist/lib/rest/conversations/v1/participantConversation.js +154 -0
  471. package/dist/lib/rest/conversations/v1/role.d.ts +358 -0
  472. package/dist/lib/rest/conversations/v1/role.js +255 -0
  473. package/dist/lib/rest/conversations/v1/service/binding.d.ts +334 -0
  474. package/dist/lib/rest/conversations/v1/service/binding.js +210 -0
  475. package/dist/lib/rest/conversations/v1/service/configuration/notification.d.ts +187 -0
  476. package/dist/lib/rest/conversations/v1/service/configuration/notification.js +169 -0
  477. package/dist/lib/rest/conversations/v1/service/configuration/webhook.d.ts +167 -0
  478. package/dist/lib/rest/conversations/v1/service/configuration/webhook.js +147 -0
  479. package/dist/lib/rest/conversations/v1/service/configuration.d.ts +173 -0
  480. package/dist/lib/rest/conversations/v1/service/configuration.js +167 -0
  481. package/dist/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.d.ts +315 -0
  482. package/dist/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.js +195 -0
  483. package/dist/lib/rest/conversations/v1/service/conversation/message.d.ts +485 -0
  484. package/dist/lib/rest/conversations/v1/service/conversation/message.js +306 -0
  485. package/dist/lib/rest/conversations/v1/service/conversation/participant.d.ts +470 -0
  486. package/dist/lib/rest/conversations/v1/service/conversation/participant.js +303 -0
  487. package/dist/lib/rest/conversations/v1/service/conversation/webhook.d.ts +398 -0
  488. package/dist/lib/rest/conversations/v1/service/conversation/webhook.js +269 -0
  489. package/dist/lib/rest/conversations/v1/service/conversation.d.ts +495 -0
  490. package/dist/lib/rest/conversations/v1/service/conversation.js +342 -0
  491. package/dist/lib/rest/conversations/v1/service/participantConversation.d.ts +301 -0
  492. package/dist/lib/rest/conversations/v1/service/participantConversation.js +154 -0
  493. package/dist/lib/rest/conversations/v1/service/role.d.ts +360 -0
  494. package/dist/lib/rest/conversations/v1/service/role.js +256 -0
  495. package/dist/lib/rest/conversations/v1/service/user/userConversation.d.ts +409 -0
  496. package/dist/lib/rest/conversations/v1/service/user/userConversation.js +254 -0
  497. package/dist/lib/rest/conversations/v1/service/user.d.ts +445 -0
  498. package/dist/lib/rest/conversations/v1/service/user.js +290 -0
  499. package/dist/lib/rest/conversations/v1/service.d.ts +364 -0
  500. package/dist/lib/rest/conversations/v1/service.js +295 -0
  501. package/dist/lib/rest/conversations/v1/user/userConversation.d.ts +407 -0
  502. package/dist/lib/rest/conversations/v1/user/userConversation.js +253 -0
  503. package/dist/lib/rest/conversations/v1/user.d.ts +443 -0
  504. package/dist/lib/rest/conversations/v1/user.js +289 -0
  505. package/dist/lib/rest/events/V1.d.ts +27 -0
  506. package/dist/lib/rest/events/V1.js +55 -0
  507. package/dist/lib/rest/events/v1/eventType.d.ts +284 -0
  508. package/dist/lib/rest/events/v1/eventType.js +182 -0
  509. package/dist/lib/rest/events/v1/schema/schemaVersion.d.ts +268 -0
  510. package/dist/lib/rest/events/v1/schema/schemaVersion.js +176 -0
  511. package/dist/lib/rest/events/v1/schema.d.ts +114 -0
  512. package/dist/lib/rest/events/v1/schema.js +123 -0
  513. package/dist/lib/rest/events/v1/sink/sinkTest.d.ts +46 -0
  514. package/dist/lib/rest/events/v1/sink/sinkTest.js +64 -0
  515. package/dist/lib/rest/events/v1/sink/sinkValidate.d.ts +56 -0
  516. package/dist/lib/rest/events/v1/sink/sinkValidate.js +76 -0
  517. package/dist/lib/rest/events/v1/sink.d.ts +384 -0
  518. package/dist/lib/rest/events/v1/sink.js +284 -0
  519. package/dist/lib/rest/events/v1/subscription/subscribedEvent.d.ts +352 -0
  520. package/dist/lib/rest/events/v1/subscription/subscribedEvent.js +243 -0
  521. package/dist/lib/rest/events/v1/subscription.d.ts +386 -0
  522. package/dist/lib/rest/events/v1/subscription.js +272 -0
  523. package/dist/lib/rest/flexApi/V1.d.ts +43 -0
  524. package/dist/lib/rest/flexApi/V1.js +80 -0
  525. package/dist/lib/rest/flexApi/v1/assessments.d.ts +81 -0
  526. package/dist/lib/rest/flexApi/v1/assessments.js +101 -0
  527. package/dist/lib/rest/flexApi/v1/channel.d.ts +340 -0
  528. package/dist/lib/rest/flexApi/v1/channel.js +247 -0
  529. package/dist/lib/rest/flexApi/v1/configuration.d.ts +370 -0
  530. package/dist/lib/rest/flexApi/v1/configuration.js +196 -0
  531. package/dist/lib/rest/flexApi/v1/flexFlow.d.ts +468 -0
  532. package/dist/lib/rest/flexApi/v1/flexFlow.js +331 -0
  533. package/dist/lib/rest/flexApi/v1/goodData.d.ts +132 -0
  534. package/dist/lib/rest/flexApi/v1/goodData.js +115 -0
  535. package/dist/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.d.ts +241 -0
  536. package/dist/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.js +149 -0
  537. package/dist/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.d.ts +300 -0
  538. package/dist/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.js +207 -0
  539. package/dist/lib/rest/flexApi/v1/interaction/interactionChannel.d.ts +326 -0
  540. package/dist/lib/rest/flexApi/v1/interaction/interactionChannel.js +234 -0
  541. package/dist/lib/rest/flexApi/v1/interaction.d.ts +128 -0
  542. package/dist/lib/rest/flexApi/v1/interaction.js +149 -0
  543. package/dist/lib/rest/flexApi/v1/userRoles.d.ts +111 -0
  544. package/dist/lib/rest/flexApi/v1/userRoles.js +109 -0
  545. package/dist/lib/rest/flexApi/v1/webChannel.d.ts +367 -0
  546. package/dist/lib/rest/flexApi/v1/webChannel.js +263 -0
  547. package/dist/lib/rest/frontlineApi/V1.d.ts +15 -0
  548. package/dist/lib/rest/frontlineApi/V1.js +37 -0
  549. package/dist/lib/rest/frontlineApi/v1/user.d.ts +166 -0
  550. package/dist/lib/rest/frontlineApi/v1/user.js +146 -0
  551. package/dist/lib/rest/insights/V1.d.ts +31 -0
  552. package/dist/lib/rest/insights/V1.js +62 -0
  553. package/dist/lib/rest/insights/v1/call/annotation.d.ts +189 -0
  554. package/dist/lib/rest/insights/v1/call/annotation.js +159 -0
  555. package/dist/lib/rest/insights/v1/call/callSummary.d.ts +177 -0
  556. package/dist/lib/rest/insights/v1/call/callSummary.js +153 -0
  557. package/dist/lib/rest/insights/v1/call/event.d.ts +236 -0
  558. package/dist/lib/rest/insights/v1/call/event.js +142 -0
  559. package/dist/lib/rest/insights/v1/call/metric.d.ts +236 -0
  560. package/dist/lib/rest/insights/v1/call/metric.js +140 -0
  561. package/dist/lib/rest/insights/v1/call.d.ts +117 -0
  562. package/dist/lib/rest/insights/v1/call.js +156 -0
  563. package/dist/lib/rest/insights/v1/callSummaries.d.ts +374 -0
  564. package/dist/lib/rest/insights/v1/callSummaries.js +198 -0
  565. package/dist/lib/rest/insights/v1/conference/conferenceParticipant.d.ts +435 -0
  566. package/dist/lib/rest/insights/v1/conference/conferenceParticipant.js +237 -0
  567. package/dist/lib/rest/insights/v1/conference.d.ts +435 -0
  568. package/dist/lib/rest/insights/v1/conference.js +245 -0
  569. package/dist/lib/rest/insights/v1/room/participant.d.ts +338 -0
  570. package/dist/lib/rest/insights/v1/room/participant.js +203 -0
  571. package/dist/lib/rest/insights/v1/room.d.ts +421 -0
  572. package/dist/lib/rest/insights/v1/room.js +241 -0
  573. package/dist/lib/rest/insights/v1/setting.d.ts +162 -0
  574. package/dist/lib/rest/insights/v1/setting.js +143 -0
  575. package/dist/lib/rest/ipMessaging/V1.d.ts +19 -0
  576. package/dist/lib/rest/ipMessaging/V1.js +43 -0
  577. package/dist/lib/rest/ipMessaging/V2.d.ts +19 -0
  578. package/dist/lib/rest/ipMessaging/V2.js +43 -0
  579. package/dist/lib/rest/ipMessaging/v1/credential.d.ts +365 -0
  580. package/dist/lib/rest/ipMessaging/v1/credential.js +269 -0
  581. package/dist/lib/rest/ipMessaging/v1/service/channel/invite.d.ts +316 -0
  582. package/dist/lib/rest/ipMessaging/v1/service/channel/invite.js +229 -0
  583. package/dist/lib/rest/ipMessaging/v1/service/channel/member.d.ts +365 -0
  584. package/dist/lib/rest/ipMessaging/v1/service/channel/member.js +259 -0
  585. package/dist/lib/rest/ipMessaging/v1/service/channel/message.d.ts +374 -0
  586. package/dist/lib/rest/ipMessaging/v1/service/channel/message.js +265 -0
  587. package/dist/lib/rest/ipMessaging/v1/service/channel.d.ts +411 -0
  588. package/dist/lib/rest/ipMessaging/v1/service/channel.js +312 -0
  589. package/dist/lib/rest/ipMessaging/v1/service/role.d.ts +336 -0
  590. package/dist/lib/rest/ipMessaging/v1/service/role.js +256 -0
  591. package/dist/lib/rest/ipMessaging/v1/service/user/userChannel.d.ts +221 -0
  592. package/dist/lib/rest/ipMessaging/v1/service/user/userChannel.js +134 -0
  593. package/dist/lib/rest/ipMessaging/v1/service/user.d.ts +380 -0
  594. package/dist/lib/rest/ipMessaging/v1/service/user.js +282 -0
  595. package/dist/lib/rest/ipMessaging/v1/service.d.ts +511 -0
  596. package/dist/lib/rest/ipMessaging/v1/service.js +449 -0
  597. package/dist/lib/rest/ipMessaging/v2/credential.d.ts +365 -0
  598. package/dist/lib/rest/ipMessaging/v2/credential.js +269 -0
  599. package/dist/lib/rest/ipMessaging/v2/service/binding.d.ts +307 -0
  600. package/dist/lib/rest/ipMessaging/v2/service/binding.js +212 -0
  601. package/dist/lib/rest/ipMessaging/v2/service/channel/invite.d.ts +316 -0
  602. package/dist/lib/rest/ipMessaging/v2/service/channel/invite.js +229 -0
  603. package/dist/lib/rest/ipMessaging/v2/service/channel/member.d.ts +418 -0
  604. package/dist/lib/rest/ipMessaging/v2/service/channel/member.js +289 -0
  605. package/dist/lib/rest/ipMessaging/v2/service/channel/message.d.ts +439 -0
  606. package/dist/lib/rest/ipMessaging/v2/service/channel/message.js +299 -0
  607. package/dist/lib/rest/ipMessaging/v2/service/channel/webhook.d.ts +373 -0
  608. package/dist/lib/rest/ipMessaging/v2/service/channel/webhook.js +271 -0
  609. package/dist/lib/rest/ipMessaging/v2/service/channel.d.ts +463 -0
  610. package/dist/lib/rest/ipMessaging/v2/service/channel.js +347 -0
  611. package/dist/lib/rest/ipMessaging/v2/service/role.d.ts +336 -0
  612. package/dist/lib/rest/ipMessaging/v2/service/role.js +256 -0
  613. package/dist/lib/rest/ipMessaging/v2/service/user/userBinding.d.ts +303 -0
  614. package/dist/lib/rest/ipMessaging/v2/service/user/userBinding.js +210 -0
  615. package/dist/lib/rest/ipMessaging/v2/service/user/userChannel.d.ts +343 -0
  616. package/dist/lib/rest/ipMessaging/v2/service/user/userChannel.js +240 -0
  617. package/dist/lib/rest/ipMessaging/v2/service/user.d.ts +393 -0
  618. package/dist/lib/rest/ipMessaging/v2/service/user.js +299 -0
  619. package/dist/lib/rest/ipMessaging/v2/service.d.ts +479 -0
  620. package/dist/lib/rest/ipMessaging/v2/service.js +396 -0
  621. package/dist/lib/rest/lookups/V1.d.ts +15 -0
  622. package/dist/lib/rest/lookups/V1.js +37 -0
  623. package/dist/lib/rest/lookups/V2.d.ts +15 -0
  624. package/dist/lib/rest/lookups/V2.js +37 -0
  625. package/dist/lib/rest/lookups/v1/phoneNumber.d.ts +151 -0
  626. package/dist/lib/rest/lookups/v1/phoneNumber.js +130 -0
  627. package/dist/lib/rest/lookups/v2/phoneNumber.d.ts +204 -0
  628. package/dist/lib/rest/lookups/v2/phoneNumber.js +155 -0
  629. package/dist/lib/rest/media/V1.d.ts +23 -0
  630. package/dist/lib/rest/media/V1.js +52 -0
  631. package/dist/lib/rest/media/v1/mediaProcessor.d.ts +380 -0
  632. package/dist/lib/rest/media/v1/mediaProcessor.js +252 -0
  633. package/dist/lib/rest/media/v1/mediaRecording.d.ts +368 -0
  634. package/dist/lib/rest/media/v1/mediaRecording.js +222 -0
  635. package/dist/lib/rest/media/v1/playerStreamer/playbackGrant.d.ts +153 -0
  636. package/dist/lib/rest/media/v1/playerStreamer/playbackGrant.js +139 -0
  637. package/dist/lib/rest/media/v1/playerStreamer.d.ts +390 -0
  638. package/dist/lib/rest/media/v1/playerStreamer.js +260 -0
  639. package/dist/lib/rest/messaging/V1.d.ts +43 -0
  640. package/dist/lib/rest/messaging/V1.js +83 -0
  641. package/dist/lib/rest/messaging/v1/brandRegistration/brandVetting.d.ts +325 -0
  642. package/dist/lib/rest/messaging/v1/brandRegistration/brandVetting.js +215 -0
  643. package/dist/lib/rest/messaging/v1/brandRegistration.d.ts +404 -0
  644. package/dist/lib/rest/messaging/v1/brandRegistration.js +271 -0
  645. package/dist/lib/rest/messaging/v1/deactivations.d.ts +108 -0
  646. package/dist/lib/rest/messaging/v1/deactivations.js +108 -0
  647. package/dist/lib/rest/messaging/v1/domainCerts.d.ts +166 -0
  648. package/dist/lib/rest/messaging/v1/domainCerts.js +159 -0
  649. package/dist/lib/rest/messaging/v1/domainConfig.d.ts +155 -0
  650. package/dist/lib/rest/messaging/v1/domainConfig.js +148 -0
  651. package/dist/lib/rest/messaging/v1/externalCampaign.d.ts +81 -0
  652. package/dist/lib/rest/messaging/v1/externalCampaign.js +89 -0
  653. package/dist/lib/rest/messaging/v1/service/alphaSender.d.ts +324 -0
  654. package/dist/lib/rest/messaging/v1/service/alphaSender.js +221 -0
  655. package/dist/lib/rest/messaging/v1/service/phoneNumber.d.ts +330 -0
  656. package/dist/lib/rest/messaging/v1/service/phoneNumber.js +224 -0
  657. package/dist/lib/rest/messaging/v1/service/shortCode.d.ts +330 -0
  658. package/dist/lib/rest/messaging/v1/service/shortCode.js +224 -0
  659. package/dist/lib/rest/messaging/v1/service/usAppToPerson.d.ts +444 -0
  660. package/dist/lib/rest/messaging/v1/service/usAppToPerson.js +292 -0
  661. package/dist/lib/rest/messaging/v1/service/usAppToPersonUsecase.d.ts +64 -0
  662. package/dist/lib/rest/messaging/v1/service/usAppToPersonUsecase.js +77 -0
  663. package/dist/lib/rest/messaging/v1/service.d.ts +556 -0
  664. package/dist/lib/rest/messaging/v1/service.js +403 -0
  665. package/dist/lib/rest/messaging/v1/tollfreeVerification.d.ts +493 -0
  666. package/dist/lib/rest/messaging/v1/tollfreeVerification.js +323 -0
  667. package/dist/lib/rest/messaging/v1/usecase.d.ts +45 -0
  668. package/dist/lib/rest/messaging/v1/usecase.js +64 -0
  669. package/dist/lib/rest/microvisor/V1.d.ts +19 -0
  670. package/dist/lib/rest/microvisor/V1.js +43 -0
  671. package/dist/lib/rest/microvisor/v1/app.d.ts +298 -0
  672. package/dist/lib/rest/microvisor/v1/app.js +197 -0
  673. package/dist/lib/rest/microvisor/v1/device.d.ts +341 -0
  674. package/dist/lib/rest/microvisor/v1/device.js +213 -0
  675. package/dist/lib/rest/monitor/V1.d.ts +19 -0
  676. package/dist/lib/rest/monitor/V1.js +43 -0
  677. package/dist/lib/rest/monitor/v1/alert.d.ts +372 -0
  678. package/dist/lib/rest/monitor/v1/alert.js +209 -0
  679. package/dist/lib/rest/monitor/v1/event.d.ts +359 -0
  680. package/dist/lib/rest/monitor/v1/event.js +205 -0
  681. package/dist/lib/rest/notify/V1.d.ts +19 -0
  682. package/dist/lib/rest/notify/V1.js +43 -0
  683. package/dist/lib/rest/notify/v1/credential.d.ts +386 -0
  684. package/dist/lib/rest/notify/v1/credential.js +269 -0
  685. package/dist/lib/rest/notify/v1/service/binding.d.ts +397 -0
  686. package/dist/lib/rest/notify/v1/service/binding.js +258 -0
  687. package/dist/lib/rest/notify/v1/service/notification.d.ts +210 -0
  688. package/dist/lib/rest/notify/v1/service/notification.js +150 -0
  689. package/dist/lib/rest/notify/v1/service.d.ts +520 -0
  690. package/dist/lib/rest/notify/v1/service.js +364 -0
  691. package/dist/lib/rest/numbers/V2.d.ts +15 -0
  692. package/dist/lib/rest/numbers/V2.js +38 -0
  693. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.d.ts +279 -0
  694. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.js +161 -0
  695. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.d.ts +289 -0
  696. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.js +191 -0
  697. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.d.ts +312 -0
  698. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.js +217 -0
  699. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.d.ts +108 -0
  700. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.js +95 -0
  701. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle.d.ts +507 -0
  702. package/dist/lib/rest/numbers/v2/regulatoryCompliance/bundle.js +349 -0
  703. package/dist/lib/rest/numbers/v2/regulatoryCompliance/endUser.d.ts +370 -0
  704. package/dist/lib/rest/numbers/v2/regulatoryCompliance/endUser.js +256 -0
  705. package/dist/lib/rest/numbers/v2/regulatoryCompliance/endUserType.d.ts +269 -0
  706. package/dist/lib/rest/numbers/v2/regulatoryCompliance/endUserType.js +176 -0
  707. package/dist/lib/rest/numbers/v2/regulatoryCompliance/regulation.d.ts +297 -0
  708. package/dist/lib/rest/numbers/v2/regulatoryCompliance/regulation.js +186 -0
  709. package/dist/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.d.ts +388 -0
  710. package/dist/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.js +262 -0
  711. package/dist/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.d.ts +269 -0
  712. package/dist/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.js +176 -0
  713. package/dist/lib/rest/numbers/v2/regulatoryCompliance.d.ts +26 -0
  714. package/dist/lib/rest/numbers/v2/regulatoryCompliance.js +89 -0
  715. package/dist/lib/rest/oauth/V1.d.ts +27 -0
  716. package/dist/lib/rest/oauth/V1.js +56 -0
  717. package/dist/lib/rest/oauth/v1/oauth.d.ts +84 -0
  718. package/dist/lib/rest/oauth/v1/oauth.js +103 -0
  719. package/dist/lib/rest/oauth/v1/openidDiscovery.d.ts +150 -0
  720. package/dist/lib/rest/oauth/v1/openidDiscovery.js +127 -0
  721. package/dist/lib/rest/oauth/v1/token.d.ts +90 -0
  722. package/dist/lib/rest/oauth/v1/token.js +100 -0
  723. package/dist/lib/rest/oauth/v1/userInfo.d.ts +108 -0
  724. package/dist/lib/rest/oauth/v1/userInfo.js +111 -0
  725. package/dist/lib/rest/preview/DeployedDevices.d.ts +15 -0
  726. package/dist/lib/rest/preview/DeployedDevices.js +37 -0
  727. package/dist/lib/rest/preview/HostedNumbers.d.ts +19 -0
  728. package/dist/lib/rest/preview/HostedNumbers.js +45 -0
  729. package/dist/lib/rest/preview/Marketplace.d.ts +19 -0
  730. package/dist/lib/rest/preview/Marketplace.js +45 -0
  731. package/dist/lib/rest/preview/Sync.d.ts +15 -0
  732. package/dist/lib/rest/preview/Sync.js +37 -0
  733. package/dist/lib/rest/preview/Understand.d.ts +15 -0
  734. package/dist/lib/rest/preview/Understand.js +37 -0
  735. package/dist/lib/rest/preview/Wireless.d.ts +23 -0
  736. package/dist/lib/rest/preview/Wireless.js +49 -0
  737. package/dist/lib/rest/preview/deployed_devices/fleet/certificate.d.ts +386 -0
  738. package/dist/lib/rest/preview/deployed_devices/fleet/certificate.js +258 -0
  739. package/dist/lib/rest/preview/deployed_devices/fleet/deployment.d.ts +380 -0
  740. package/dist/lib/rest/preview/deployed_devices/fleet/deployment.js +253 -0
  741. package/dist/lib/rest/preview/deployed_devices/fleet/device.d.ts +420 -0
  742. package/dist/lib/rest/preview/deployed_devices/fleet/device.js +273 -0
  743. package/dist/lib/rest/preview/deployed_devices/fleet/key.d.ts +392 -0
  744. package/dist/lib/rest/preview/deployed_devices/fleet/key.js +257 -0
  745. package/dist/lib/rest/preview/deployed_devices/fleet.d.ts +414 -0
  746. package/dist/lib/rest/preview/deployed_devices/fleet.js +302 -0
  747. package/dist/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.d.ts +351 -0
  748. package/dist/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.js +172 -0
  749. package/dist/lib/rest/preview/hosted_numbers/authorizationDocument.d.ts +389 -0
  750. package/dist/lib/rest/preview/hosted_numbers/authorizationDocument.js +281 -0
  751. package/dist/lib/rest/preview/hosted_numbers/hostedNumberOrder.d.ts +530 -0
  752. package/dist/lib/rest/preview/hosted_numbers/hostedNumberOrder.js +340 -0
  753. package/dist/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.d.ts +277 -0
  754. package/dist/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.js +178 -0
  755. package/dist/lib/rest/preview/marketplace/availableAddOn.d.ts +289 -0
  756. package/dist/lib/rest/preview/marketplace/availableAddOn.js +193 -0
  757. package/dist/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.d.ts +311 -0
  758. package/dist/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.js +204 -0
  759. package/dist/lib/rest/preview/marketplace/installedAddOn.d.ts +394 -0
  760. package/dist/lib/rest/preview/marketplace/installedAddOn.js +276 -0
  761. package/dist/lib/rest/preview/sync/service/document/documentPermission.d.ts +340 -0
  762. package/dist/lib/rest/preview/sync/service/document/documentPermission.js +236 -0
  763. package/dist/lib/rest/preview/sync/service/document.d.ts +357 -0
  764. package/dist/lib/rest/preview/sync/service/document.js +270 -0
  765. package/dist/lib/rest/preview/sync/service/syncList/syncListItem.d.ts +385 -0
  766. package/dist/lib/rest/preview/sync/service/syncList/syncListItem.js +263 -0
  767. package/dist/lib/rest/preview/sync/service/syncList/syncListPermission.d.ts +340 -0
  768. package/dist/lib/rest/preview/sync/service/syncList/syncListPermission.js +236 -0
  769. package/dist/lib/rest/preview/sync/service/syncList.d.ts +330 -0
  770. package/dist/lib/rest/preview/sync/service/syncList.js +253 -0
  771. package/dist/lib/rest/preview/sync/service/syncMap/syncMapItem.d.ts +387 -0
  772. package/dist/lib/rest/preview/sync/service/syncMap/syncMapItem.js +267 -0
  773. package/dist/lib/rest/preview/sync/service/syncMap/syncMapPermission.d.ts +340 -0
  774. package/dist/lib/rest/preview/sync/service/syncMap/syncMapPermission.js +236 -0
  775. package/dist/lib/rest/preview/sync/service/syncMap.d.ts +330 -0
  776. package/dist/lib/rest/preview/sync/service/syncMap.js +253 -0
  777. package/dist/lib/rest/preview/sync/service.d.ts +392 -0
  778. package/dist/lib/rest/preview/sync/service.js +303 -0
  779. package/dist/lib/rest/preview/understand/assistant/assistantFallbackActions.d.ts +133 -0
  780. package/dist/lib/rest/preview/understand/assistant/assistantFallbackActions.js +135 -0
  781. package/dist/lib/rest/preview/understand/assistant/assistantInitiationActions.d.ts +133 -0
  782. package/dist/lib/rest/preview/understand/assistant/assistantInitiationActions.js +135 -0
  783. package/dist/lib/rest/preview/understand/assistant/dialogue.d.ts +105 -0
  784. package/dist/lib/rest/preview/understand/assistant/dialogue.js +111 -0
  785. package/dist/lib/rest/preview/understand/assistant/fieldType/fieldValue.d.ts +345 -0
  786. package/dist/lib/rest/preview/understand/assistant/fieldType/fieldValue.js +233 -0
  787. package/dist/lib/rest/preview/understand/assistant/fieldType.d.ts +380 -0
  788. package/dist/lib/rest/preview/understand/assistant/fieldType.js +266 -0
  789. package/dist/lib/rest/preview/understand/assistant/modelBuild.d.ts +382 -0
  790. package/dist/lib/rest/preview/understand/assistant/modelBuild.js +255 -0
  791. package/dist/lib/rest/preview/understand/assistant/query.d.ts +423 -0
  792. package/dist/lib/rest/preview/understand/assistant/query.js +275 -0
  793. package/dist/lib/rest/preview/understand/assistant/styleSheet.d.ts +142 -0
  794. package/dist/lib/rest/preview/understand/assistant/styleSheet.js +135 -0
  795. package/dist/lib/rest/preview/understand/assistant/task/field.d.ts +331 -0
  796. package/dist/lib/rest/preview/understand/assistant/task/field.js +227 -0
  797. package/dist/lib/rest/preview/understand/assistant/task/sample.d.ts +393 -0
  798. package/dist/lib/rest/preview/understand/assistant/task/sample.js +263 -0
  799. package/dist/lib/rest/preview/understand/assistant/task/taskActions.d.ts +147 -0
  800. package/dist/lib/rest/preview/understand/assistant/task/taskActions.js +137 -0
  801. package/dist/lib/rest/preview/understand/assistant/task/taskStatistics.d.ts +112 -0
  802. package/dist/lib/rest/preview/understand/assistant/task/taskStatistics.js +113 -0
  803. package/dist/lib/rest/preview/understand/assistant/task.d.ts +418 -0
  804. package/dist/lib/rest/preview/understand/assistant/task.js +315 -0
  805. package/dist/lib/rest/preview/understand/assistant.d.ts +484 -0
  806. package/dist/lib/rest/preview/understand/assistant.js +387 -0
  807. package/dist/lib/rest/preview/wireless/command.d.ts +326 -0
  808. package/dist/lib/rest/preview/wireless/command.js +229 -0
  809. package/dist/lib/rest/preview/wireless/ratePlan.d.ts +388 -0
  810. package/dist/lib/rest/preview/wireless/ratePlan.js +281 -0
  811. package/dist/lib/rest/preview/wireless/sim/usage.d.ts +133 -0
  812. package/dist/lib/rest/preview/wireless/sim/usage.js +127 -0
  813. package/dist/lib/rest/preview/wireless/sim.d.ts +421 -0
  814. package/dist/lib/rest/preview/wireless/sim.js +287 -0
  815. package/dist/lib/rest/pricing/V1.d.ts +23 -0
  816. package/dist/lib/rest/pricing/V1.js +49 -0
  817. package/dist/lib/rest/pricing/V2.d.ts +23 -0
  818. package/dist/lib/rest/pricing/V2.js +49 -0
  819. package/dist/lib/rest/pricing/v1/messaging/country.js +184 -0
  820. package/dist/lib/rest/pricing/v1/messaging.d.ts +16 -0
  821. package/dist/lib/rest/pricing/v1/messaging.js +44 -0
  822. package/dist/lib/rest/pricing/v1/phoneNumber/country.d.ts +274 -0
  823. package/dist/lib/rest/pricing/v1/phoneNumber/country.js +179 -0
  824. package/dist/lib/rest/pricing/v1/phoneNumber.d.ts +16 -0
  825. package/dist/lib/rest/pricing/v1/phoneNumber.js +44 -0
  826. package/dist/lib/rest/pricing/v1/voice/country.d.ts +286 -0
  827. package/dist/lib/rest/pricing/v1/voice/country.js +184 -0
  828. package/dist/lib/rest/pricing/v1/voice/number.d.ts +127 -0
  829. package/dist/lib/rest/pricing/v1/voice/number.js +127 -0
  830. package/dist/lib/rest/pricing/v1/voice.d.ts +18 -0
  831. package/dist/lib/rest/pricing/v1/voice.js +53 -0
  832. package/dist/lib/rest/pricing/v2/country.d.ts +287 -0
  833. package/dist/lib/rest/pricing/v2/country.js +184 -0
  834. package/dist/lib/rest/pricing/v2/number.d.ts +160 -0
  835. package/dist/lib/rest/pricing/v2/number.js +134 -0
  836. package/dist/lib/rest/pricing/v2/voice/country.d.ts +287 -0
  837. package/dist/lib/rest/pricing/v2/voice/country.js +184 -0
  838. package/dist/lib/rest/pricing/v2/voice/number.d.ts +161 -0
  839. package/dist/lib/rest/pricing/v2/voice/number.js +134 -0
  840. package/dist/lib/rest/pricing/v2/voice.d.ts +18 -0
  841. package/dist/lib/rest/pricing/v2/voice.js +53 -0
  842. package/dist/lib/rest/proxy/V1.d.ts +15 -0
  843. package/dist/lib/rest/proxy/V1.js +37 -0
  844. package/dist/lib/rest/proxy/v1/service/phoneNumber.d.ts +402 -0
  845. package/dist/lib/rest/proxy/v1/service/phoneNumber.js +261 -0
  846. package/dist/lib/rest/proxy/v1/service/session/interaction.d.ts +367 -0
  847. package/dist/lib/rest/proxy/v1/service/session/interaction.js +222 -0
  848. package/dist/lib/rest/proxy/v1/service/session/participant/messageInteraction.d.ts +386 -0
  849. package/dist/lib/rest/proxy/v1/service/session/participant/messageInteraction.js +236 -0
  850. package/dist/lib/rest/proxy/v1/service/session/participant.d.ts +370 -0
  851. package/dist/lib/rest/proxy/v1/service/session/participant.js +250 -0
  852. package/dist/lib/rest/proxy/v1/service/session.d.ts +450 -0
  853. package/dist/lib/rest/proxy/v1/service/session.js +305 -0
  854. package/dist/lib/rest/proxy/v1/service/shortCode.d.ts +378 -0
  855. package/dist/lib/rest/proxy/v1/service/shortCode.js +251 -0
  856. package/dist/lib/rest/proxy/v1/service.d.ts +450 -0
  857. package/dist/lib/rest/proxy/v1/service.js +325 -0
  858. package/dist/lib/rest/routes/V2.d.ts +23 -0
  859. package/dist/lib/rest/routes/V2.js +49 -0
  860. package/dist/lib/rest/routes/v2/phoneNumber.d.ts +170 -0
  861. package/dist/lib/rest/routes/v2/phoneNumber.js +145 -0
  862. package/dist/lib/rest/routes/v2/sipDomain.d.ts +146 -0
  863. package/dist/lib/rest/routes/v2/sipDomain.js +145 -0
  864. package/dist/lib/rest/routes/v2/trunk.d.ts +170 -0
  865. package/dist/lib/rest/routes/v2/trunk.js +145 -0
  866. package/dist/lib/rest/serverless/V1.d.ts +15 -0
  867. package/dist/lib/rest/serverless/V1.js +37 -0
  868. package/dist/lib/rest/serverless/v1/service/asset/assetVersion.d.ts +289 -0
  869. package/dist/lib/rest/serverless/v1/service/asset/assetVersion.js +182 -0
  870. package/dist/lib/rest/serverless/v1/service/asset.d.ts +360 -0
  871. package/dist/lib/rest/serverless/v1/service/asset.js +260 -0
  872. package/dist/lib/rest/serverless/v1/service/build/buildStatus.d.ts +107 -0
  873. package/dist/lib/rest/serverless/v1/service/build/buildStatus.js +111 -0
  874. package/dist/lib/rest/serverless/v1/service/build.d.ts +363 -0
  875. package/dist/lib/rest/serverless/v1/service/build.js +250 -0
  876. package/dist/lib/rest/serverless/v1/service/environment/deployment.d.ts +317 -0
  877. package/dist/lib/rest/serverless/v1/service/environment/deployment.js +205 -0
  878. package/dist/lib/rest/serverless/v1/service/environment/log.d.ts +331 -0
  879. package/dist/lib/rest/serverless/v1/service/environment/log.js +196 -0
  880. package/dist/lib/rest/serverless/v1/service/environment/variable.d.ts +380 -0
  881. package/dist/lib/rest/serverless/v1/service/environment/variable.js +255 -0
  882. package/dist/lib/rest/serverless/v1/service/environment.d.ts +368 -0
  883. package/dist/lib/rest/serverless/v1/service/environment.js +268 -0
  884. package/dist/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.d.ts +114 -0
  885. package/dist/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.js +113 -0
  886. package/dist/lib/rest/serverless/v1/service/function/functionVersion.d.ts +300 -0
  887. package/dist/lib/rest/serverless/v1/service/function/functionVersion.js +197 -0
  888. package/dist/lib/rest/serverless/v1/service/function.d.ts +360 -0
  889. package/dist/lib/rest/serverless/v1/service/function.js +260 -0
  890. package/dist/lib/rest/serverless/v1/service.d.ts +426 -0
  891. package/dist/lib/rest/serverless/v1/service.js +316 -0
  892. package/dist/lib/rest/studio/V1.d.ts +15 -0
  893. package/dist/lib/rest/studio/V1.js +37 -0
  894. package/dist/lib/rest/studio/V2.d.ts +19 -0
  895. package/dist/lib/rest/studio/V2.js +43 -0
  896. package/dist/lib/rest/studio/v1/flow/engagement/engagementContext.d.ts +109 -0
  897. package/dist/lib/rest/studio/v1/flow/engagement/engagementContext.js +114 -0
  898. package/dist/lib/rest/studio/v1/flow/engagement/step/stepContext.d.ts +117 -0
  899. package/dist/lib/rest/studio/v1/flow/engagement/step/stepContext.js +117 -0
  900. package/dist/lib/rest/studio/v1/flow/engagement/step.d.ts +323 -0
  901. package/dist/lib/rest/studio/v1/flow/engagement/step.js +203 -0
  902. package/dist/lib/rest/studio/v1/flow/engagement.d.ts +360 -0
  903. package/dist/lib/rest/studio/v1/flow/engagement.js +259 -0
  904. package/dist/lib/rest/studio/v1/flow/execution/executionContext.d.ts +109 -0
  905. package/dist/lib/rest/studio/v1/flow/execution/executionContext.js +114 -0
  906. package/dist/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.d.ts +117 -0
  907. package/dist/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.js +117 -0
  908. package/dist/lib/rest/studio/v1/flow/execution/executionStep.d.ts +323 -0
  909. package/dist/lib/rest/studio/v1/flow/execution/executionStep.js +203 -0
  910. package/dist/lib/rest/studio/v1/flow/execution.d.ts +400 -0
  911. package/dist/lib/rest/studio/v1/flow/execution.js +287 -0
  912. package/dist/lib/rest/studio/v1/flow.d.ts +324 -0
  913. package/dist/lib/rest/studio/v1/flow.js +227 -0
  914. package/dist/lib/rest/studio/v2/flow/execution/executionContext.d.ts +109 -0
  915. package/dist/lib/rest/studio/v2/flow/execution/executionContext.js +114 -0
  916. package/dist/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.d.ts +117 -0
  917. package/dist/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.js +117 -0
  918. package/dist/lib/rest/studio/v2/flow/execution/executionStep.d.ts +323 -0
  919. package/dist/lib/rest/studio/v2/flow/execution/executionStep.js +203 -0
  920. package/dist/lib/rest/studio/v2/flow/execution.d.ts +394 -0
  921. package/dist/lib/rest/studio/v2/flow/execution.js +285 -0
  922. package/dist/lib/rest/studio/v2/flow/flowRevision.d.ts +311 -0
  923. package/dist/lib/rest/studio/v2/flow/flowRevision.js +190 -0
  924. package/dist/lib/rest/studio/v2/flow/flowTestUser.d.ts +123 -0
  925. package/dist/lib/rest/studio/v2/flow/flowTestUser.js +131 -0
  926. package/dist/lib/rest/studio/v2/flow.d.ts +423 -0
  927. package/dist/lib/rest/studio/v2/flow.js +314 -0
  928. package/dist/lib/rest/studio/v2/flowValidate.d.ts +62 -0
  929. package/dist/lib/rest/studio/v2/flowValidate.js +87 -0
  930. package/dist/lib/rest/supersim/V1.d.ts +47 -0
  931. package/dist/lib/rest/supersim/V1.js +87 -0
  932. package/dist/lib/rest/supersim/v1/esimProfile.d.ts +357 -0
  933. package/dist/lib/rest/supersim/v1/esimProfile.js +223 -0
  934. package/dist/lib/rest/supersim/v1/fleet.d.ts +425 -0
  935. package/dist/lib/rest/supersim/v1/fleet.js +273 -0
  936. package/dist/lib/rest/supersim/v1/ipCommand.d.ts +363 -0
  937. package/dist/lib/rest/supersim/v1/ipCommand.js +235 -0
  938. package/dist/lib/rest/supersim/v1/network.d.ts +287 -0
  939. package/dist/lib/rest/supersim/v1/network.js +182 -0
  940. package/dist/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.d.ts +312 -0
  941. package/dist/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.js +217 -0
  942. package/dist/lib/rest/supersim/v1/networkAccessProfile.d.ts +358 -0
  943. package/dist/lib/rest/supersim/v1/networkAccessProfile.js +244 -0
  944. package/dist/lib/rest/supersim/v1/settingsUpdate.d.ts +246 -0
  945. package/dist/lib/rest/supersim/v1/settingsUpdate.js +136 -0
  946. package/dist/lib/rest/supersim/v1/sim/billingPeriod.d.ts +241 -0
  947. package/dist/lib/rest/supersim/v1/sim/billingPeriod.js +134 -0
  948. package/dist/lib/rest/supersim/v1/sim/simIpAddress.d.ts +205 -0
  949. package/dist/lib/rest/supersim/v1/sim/simIpAddress.js +122 -0
  950. package/dist/lib/rest/supersim/v1/sim.d.ts +403 -0
  951. package/dist/lib/rest/supersim/v1/sim.js +279 -0
  952. package/dist/lib/rest/supersim/v1/smsCommand.d.ts +331 -0
  953. package/dist/lib/rest/supersim/v1/smsCommand.js +219 -0
  954. package/dist/lib/rest/supersim/v1/usageRecord.d.ts +310 -0
  955. package/dist/lib/rest/supersim/v1/usageRecord.js +156 -0
  956. package/dist/lib/rest/sync/V1.d.ts +15 -0
  957. package/dist/lib/rest/sync/V1.js +37 -0
  958. package/dist/lib/rest/sync/v1/service/document/documentPermission.d.ts +340 -0
  959. package/dist/lib/rest/sync/v1/service/document/documentPermission.js +236 -0
  960. package/dist/lib/rest/sync/v1/service/document.d.ts +416 -0
  961. package/dist/lib/rest/sync/v1/service/document.js +278 -0
  962. package/dist/lib/rest/sync/v1/service/syncList/syncListItem.d.ts +449 -0
  963. package/dist/lib/rest/sync/v1/service/syncList/syncListItem.js +279 -0
  964. package/dist/lib/rest/sync/v1/service/syncList/syncListPermission.d.ts +340 -0
  965. package/dist/lib/rest/sync/v1/service/syncList/syncListPermission.js +236 -0
  966. package/dist/lib/rest/sync/v1/service/syncList.d.ts +416 -0
  967. package/dist/lib/rest/sync/v1/service/syncList.js +287 -0
  968. package/dist/lib/rest/sync/v1/service/syncMap/syncMapItem.d.ts +451 -0
  969. package/dist/lib/rest/sync/v1/service/syncMap/syncMapItem.js +283 -0
  970. package/dist/lib/rest/sync/v1/service/syncMap/syncMapPermission.d.ts +340 -0
  971. package/dist/lib/rest/sync/v1/service/syncMap/syncMapPermission.js +236 -0
  972. package/dist/lib/rest/sync/v1/service/syncMap.d.ts +416 -0
  973. package/dist/lib/rest/sync/v1/service/syncMap.js +287 -0
  974. package/dist/lib/rest/sync/v1/service/syncStream/streamMessage.d.ts +63 -0
  975. package/dist/lib/rest/sync/v1/service/syncStream/streamMessage.js +78 -0
  976. package/dist/lib/rest/sync/v1/service/syncStream.d.ts +398 -0
  977. package/dist/lib/rest/sync/v1/service/syncStream.js +268 -0
  978. package/dist/lib/rest/sync/v1/service.d.ts +466 -0
  979. package/dist/lib/rest/sync/v1/service.js +339 -0
  980. package/dist/lib/rest/taskrouter/V1.d.ts +15 -0
  981. package/dist/lib/rest/taskrouter/V1.js +37 -0
  982. package/dist/lib/rest/taskrouter/v1/workspace/activity.d.ts +385 -0
  983. package/dist/lib/rest/taskrouter/v1/workspace/activity.js +256 -0
  984. package/dist/lib/rest/taskrouter/v1/workspace/event.d.ts +409 -0
  985. package/dist/lib/rest/taskrouter/v1/workspace/event.js +222 -0
  986. package/dist/lib/rest/taskrouter/v1/workspace/task/reservation.d.ts +472 -0
  987. package/dist/lib/rest/taskrouter/v1/workspace/task/reservation.js +328 -0
  988. package/dist/lib/rest/taskrouter/v1/workspace/task.d.ts +559 -0
  989. package/dist/lib/rest/taskrouter/v1/workspace/task.js +330 -0
  990. package/dist/lib/rest/taskrouter/v1/workspace/taskChannel.d.ts +386 -0
  991. package/dist/lib/rest/taskrouter/v1/workspace/taskChannel.js +260 -0
  992. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.d.ts +246 -0
  993. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.js +163 -0
  994. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.d.ts +190 -0
  995. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.js +139 -0
  996. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.d.ts +150 -0
  997. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.js +130 -0
  998. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.d.ts +261 -0
  999. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.js +140 -0
  1000. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue.d.ts +478 -0
  1001. package/dist/lib/rest/taskrouter/v1/workspace/taskQueue.js +338 -0
  1002. package/dist/lib/rest/taskrouter/v1/workspace/worker/reservation.d.ts +461 -0
  1003. package/dist/lib/rest/taskrouter/v1/workspace/worker/reservation.js +322 -0
  1004. package/dist/lib/rest/taskrouter/v1/workspace/worker/workerChannel.d.ts +367 -0
  1005. package/dist/lib/rest/taskrouter/v1/workspace/worker/workerChannel.js +220 -0
  1006. package/dist/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.d.ts +142 -0
  1007. package/dist/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.js +123 -0
  1008. package/dist/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.d.ts +182 -0
  1009. package/dist/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.js +137 -0
  1010. package/dist/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.d.ts +134 -0
  1011. package/dist/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.js +117 -0
  1012. package/dist/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.d.ts +146 -0
  1013. package/dist/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.js +129 -0
  1014. package/dist/lib/rest/taskrouter/v1/workspace/worker.d.ts +515 -0
  1015. package/dist/lib/rest/taskrouter/v1/workspace/worker.js +358 -0
  1016. package/dist/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.d.ts +246 -0
  1017. package/dist/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.js +162 -0
  1018. package/dist/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.d.ts +160 -0
  1019. package/dist/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.js +128 -0
  1020. package/dist/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.d.ts +150 -0
  1021. package/dist/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.js +130 -0
  1022. package/dist/lib/rest/taskrouter/v1/workspace/workflow.d.ts +446 -0
  1023. package/dist/lib/rest/taskrouter/v1/workspace/workflow.js +323 -0
  1024. package/dist/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.d.ts +238 -0
  1025. package/dist/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.js +157 -0
  1026. package/dist/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.d.ts +164 -0
  1027. package/dist/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.js +127 -0
  1028. package/dist/lib/rest/taskrouter/v1/workspace/workspaceStatistics.d.ts +142 -0
  1029. package/dist/lib/rest/taskrouter/v1/workspace/workspaceStatistics.js +125 -0
  1030. package/dist/lib/rest/taskrouter/v1/workspace.d.ts +514 -0
  1031. package/dist/lib/rest/taskrouter/v1/workspace.js +413 -0
  1032. package/dist/lib/rest/trunking/V1.d.ts +15 -0
  1033. package/dist/lib/rest/trunking/V1.js +37 -0
  1034. package/dist/lib/rest/trunking/v1/trunk/credentialList.d.ts +318 -0
  1035. package/dist/lib/rest/trunking/v1/trunk/credentialList.js +220 -0
  1036. package/dist/lib/rest/trunking/v1/trunk/ipAccessControlList.d.ts +318 -0
  1037. package/dist/lib/rest/trunking/v1/trunk/ipAccessControlList.js +220 -0
  1038. package/dist/lib/rest/trunking/v1/trunk/originationUrl.d.ts +402 -0
  1039. package/dist/lib/rest/trunking/v1/trunk/originationUrl.js +278 -0
  1040. package/dist/lib/rest/trunking/v1/trunk/phoneNumber.d.ts +435 -0
  1041. package/dist/lib/rest/trunking/v1/trunk/phoneNumber.js +258 -0
  1042. package/dist/lib/rest/trunking/v1/trunk/recording.d.ts +131 -0
  1043. package/dist/lib/rest/trunking/v1/trunk/recording.js +133 -0
  1044. package/dist/lib/rest/trunking/v1/trunk.d.ts +493 -0
  1045. package/dist/lib/rest/trunking/v1/trunk.js +359 -0
  1046. package/dist/lib/rest/trusthub/V1.d.ts +39 -0
  1047. package/dist/lib/rest/trusthub/V1.js +77 -0
  1048. package/dist/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.d.ts +332 -0
  1049. package/dist/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.js +229 -0
  1050. package/dist/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.d.ts +312 -0
  1051. package/dist/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.js +217 -0
  1052. package/dist/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.d.ts +299 -0
  1053. package/dist/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.js +203 -0
  1054. package/dist/lib/rest/trusthub/v1/customerProfiles.d.ts +442 -0
  1055. package/dist/lib/rest/trusthub/v1/customerProfiles.js +317 -0
  1056. package/dist/lib/rest/trusthub/v1/endUser.d.ts +372 -0
  1057. package/dist/lib/rest/trusthub/v1/endUser.js +256 -0
  1058. package/dist/lib/rest/trusthub/v1/endUserType.d.ts +269 -0
  1059. package/dist/lib/rest/trusthub/v1/endUserType.js +176 -0
  1060. package/dist/lib/rest/trusthub/v1/policies.d.ts +263 -0
  1061. package/dist/lib/rest/trusthub/v1/policies.js +174 -0
  1062. package/dist/lib/rest/trusthub/v1/supportingDocument.d.ts +382 -0
  1063. package/dist/lib/rest/trusthub/v1/supportingDocument.js +260 -0
  1064. package/dist/lib/rest/trusthub/v1/supportingDocumentType.d.ts +269 -0
  1065. package/dist/lib/rest/trusthub/v1/supportingDocumentType.js +176 -0
  1066. package/dist/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.d.ts +332 -0
  1067. package/dist/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.js +229 -0
  1068. package/dist/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.d.ts +312 -0
  1069. package/dist/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.js +217 -0
  1070. package/dist/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.d.ts +299 -0
  1071. package/dist/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.js +203 -0
  1072. package/dist/lib/rest/trusthub/v1/trustProducts.d.ts +442 -0
  1073. package/dist/lib/rest/trusthub/v1/trustProducts.js +317 -0
  1074. package/dist/lib/rest/verify/V2.d.ts +35 -0
  1075. package/dist/lib/rest/verify/V2.js +70 -0
  1076. package/dist/lib/rest/verify/v2/form.d.ts +98 -0
  1077. package/dist/lib/rest/verify/v2/form.js +109 -0
  1078. package/dist/lib/rest/verify/v2/safelist.d.ts +129 -0
  1079. package/dist/lib/rest/verify/v2/safelist.js +146 -0
  1080. package/dist/lib/rest/verify/v2/service/accessToken.d.ts +160 -0
  1081. package/dist/lib/rest/verify/v2/service/accessToken.js +150 -0
  1082. package/dist/lib/rest/verify/v2/service/entity/challenge/notification.d.ts +114 -0
  1083. package/dist/lib/rest/verify/v2/service/entity/challenge/notification.js +94 -0
  1084. package/dist/lib/rest/verify/v2/service/entity/challenge.d.ts +446 -0
  1085. package/dist/lib/rest/verify/v2/service/entity/challenge.js +280 -0
  1086. package/dist/lib/rest/verify/v2/service/entity/factor.d.ts +395 -0
  1087. package/dist/lib/rest/verify/v2/service/entity/factor.js +253 -0
  1088. package/dist/lib/rest/verify/v2/service/entity/newFactor.d.ts +159 -0
  1089. package/dist/lib/rest/verify/v2/service/entity/newFactor.js +132 -0
  1090. package/dist/lib/rest/verify/v2/service/entity.d.ts +348 -0
  1091. package/dist/lib/rest/verify/v2/service/entity.js +260 -0
  1092. package/dist/lib/rest/verify/v2/service/messagingConfiguration.d.ts +348 -0
  1093. package/dist/lib/rest/verify/v2/service/messagingConfiguration.js +249 -0
  1094. package/dist/lib/rest/verify/v2/service/rateLimit/bucket.d.ts +380 -0
  1095. package/dist/lib/rest/verify/v2/service/rateLimit/bucket.js +255 -0
  1096. package/dist/lib/rest/verify/v2/service/rateLimit.d.ts +384 -0
  1097. package/dist/lib/rest/verify/v2/service/rateLimit.js +264 -0
  1098. package/dist/lib/rest/verify/v2/service/verification.d.ts +239 -0
  1099. package/dist/lib/rest/verify/v2/service/verification.js +205 -0
  1100. package/dist/lib/rest/verify/v2/service/verificationCheck.d.ts +136 -0
  1101. package/dist/lib/rest/verify/v2/service/verificationCheck.js +108 -0
  1102. package/dist/lib/rest/verify/v2/service/webhook.d.ts +402 -0
  1103. package/dist/lib/rest/verify/v2/service/webhook.js +276 -0
  1104. package/dist/lib/rest/verify/v2/service.d.ts +543 -0
  1105. package/dist/lib/rest/verify/v2/service.js +421 -0
  1106. package/dist/lib/rest/verify/v2/template.d.ts +230 -0
  1107. package/dist/lib/rest/verify/v2/template.js +130 -0
  1108. package/dist/lib/rest/verify/v2/verificationAttempt.d.ts +346 -0
  1109. package/dist/lib/rest/verify/v2/verificationAttempt.js +204 -0
  1110. package/dist/lib/rest/verify/v2/verificationAttemptsSummary.d.ts +140 -0
  1111. package/dist/lib/rest/verify/v2/verificationAttemptsSummary.js +127 -0
  1112. package/dist/lib/rest/video/V1.d.ts +35 -0
  1113. package/dist/lib/rest/video/V1.js +70 -0
  1114. package/dist/lib/rest/video/v1/composition.d.ts +437 -0
  1115. package/dist/lib/rest/video/v1/composition.js +271 -0
  1116. package/dist/lib/rest/video/v1/compositionHook.d.ts +451 -0
  1117. package/dist/lib/rest/video/v1/compositionHook.js +305 -0
  1118. package/dist/lib/rest/video/v1/compositionSettings.d.ts +161 -0
  1119. package/dist/lib/rest/video/v1/compositionSettings.js +151 -0
  1120. package/dist/lib/rest/video/v1/recording.d.ts +393 -0
  1121. package/dist/lib/rest/video/v1/recording.js +232 -0
  1122. package/dist/lib/rest/video/v1/recordingSettings.d.ts +161 -0
  1123. package/dist/lib/rest/video/v1/recordingSettings.js +151 -0
  1124. package/dist/lib/rest/video/v1/room/participant/anonymize.d.ts +143 -0
  1125. package/dist/lib/rest/video/v1/room/participant/anonymize.js +123 -0
  1126. package/dist/lib/rest/video/v1/room/participant/publishedTrack.d.ts +295 -0
  1127. package/dist/lib/rest/video/v1/room/participant/publishedTrack.js +184 -0
  1128. package/dist/lib/rest/video/v1/room/participant/subscribeRules.d.ts +105 -0
  1129. package/dist/lib/rest/video/v1/room/participant/subscribeRules.js +98 -0
  1130. package/dist/lib/rest/video/v1/room/participant/subscribedTrack.d.ts +301 -0
  1131. package/dist/lib/rest/video/v1/room/participant/subscribedTrack.js +186 -0
  1132. package/dist/lib/rest/video/v1/room/participant.d.ts +411 -0
  1133. package/dist/lib/rest/video/v1/room/participant.js +276 -0
  1134. package/dist/lib/rest/video/v1/room/recordingRules.d.ts +97 -0
  1135. package/dist/lib/rest/video/v1/room/recordingRules.js +96 -0
  1136. package/dist/lib/rest/video/v1/room/roomRecording.d.ts +376 -0
  1137. package/dist/lib/rest/video/v1/room/roomRecording.js +226 -0
  1138. package/dist/lib/rest/video/v1/room.d.ts +511 -0
  1139. package/dist/lib/rest/video/v1/room.js +335 -0
  1140. package/dist/lib/rest/voice/V1.d.ts +35 -0
  1141. package/dist/lib/rest/voice/V1.js +70 -0
  1142. package/dist/lib/rest/voice/v1/archivedCall.d.ts +49 -0
  1143. package/dist/lib/rest/voice/v1/archivedCall.js +65 -0
  1144. package/dist/lib/rest/voice/v1/byocTrunk.d.ts +455 -0
  1145. package/dist/lib/rest/voice/v1/byocTrunk.js +299 -0
  1146. package/dist/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.d.ts +402 -0
  1147. package/dist/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.js +269 -0
  1148. package/dist/lib/rest/voice/v1/connectionPolicy.d.ts +376 -0
  1149. package/dist/lib/rest/voice/v1/connectionPolicy.js +260 -0
  1150. package/dist/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.d.ts +61 -0
  1151. package/dist/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.js +79 -0
  1152. package/dist/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.d.ts +201 -0
  1153. package/dist/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.js +120 -0
  1154. package/dist/lib/rest/voice/v1/dialingPermissions/country.d.ts +337 -0
  1155. package/dist/lib/rest/voice/v1/dialingPermissions/country.js +211 -0
  1156. package/dist/lib/rest/voice/v1/dialingPermissions/settings.d.ts +131 -0
  1157. package/dist/lib/rest/voice/v1/dialingPermissions/settings.js +130 -0
  1158. package/dist/lib/rest/voice/v1/dialingPermissions.d.ts +20 -0
  1159. package/dist/lib/rest/voice/v1/dialingPermissions.js +62 -0
  1160. package/dist/lib/rest/voice/v1/ipRecord.d.ts +370 -0
  1161. package/dist/lib/rest/voice/v1/ipRecord.js +251 -0
  1162. package/dist/lib/rest/voice/v1/sourceIpMapping.d.ts +340 -0
  1163. package/dist/lib/rest/voice/v1/sourceIpMapping.js +247 -0
  1164. package/dist/lib/rest/wireless/V1.d.ts +27 -0
  1165. package/dist/lib/rest/wireless/V1.js +55 -0
  1166. package/dist/lib/rest/wireless/v1/command.d.ts +374 -0
  1167. package/dist/lib/rest/wireless/v1/command.js +249 -0
  1168. package/dist/lib/rest/wireless/v1/ratePlan.d.ts +444 -0
  1169. package/dist/lib/rest/wireless/v1/ratePlan.js +288 -0
  1170. package/dist/lib/rest/wireless/v1/sim/dataSession.d.ts +291 -0
  1171. package/dist/lib/rest/wireless/v1/sim/dataSession.js +150 -0
  1172. package/dist/lib/rest/wireless/v1/sim/usageRecord.d.ts +244 -0
  1173. package/dist/lib/rest/wireless/v1/sim/usageRecord.js +134 -0
  1174. package/dist/lib/rest/wireless/v1/sim.d.ts +525 -0
  1175. package/dist/lib/rest/wireless/v1/sim.js +327 -0
  1176. package/dist/lib/rest/wireless/v1/usageRecord.d.ts +237 -0
  1177. package/dist/lib/rest/wireless/v1/usageRecord.js +132 -0
  1178. package/dist/lib/twiml/FaxResponse.d.ts +57 -0
  1179. package/dist/lib/twiml/FaxResponse.js +62 -0
  1180. package/dist/lib/twiml/MessagingResponse.d.ts +158 -0
  1181. package/dist/lib/twiml/MessagingResponse.js +155 -0
  1182. package/dist/lib/twiml/TwiML.d.ts +47 -0
  1183. package/dist/lib/twiml/TwiML.js +76 -0
  1184. package/dist/lib/twiml/VoiceResponse.d.ts +3177 -0
  1185. package/dist/lib/twiml/VoiceResponse.js +2941 -0
  1186. package/dist/lib/webhooks/webhooks.d.ts +79 -0
  1187. package/dist/lib/webhooks/webhooks.js +269 -0
  1188. package/dist/package.json +77 -0
  1189. package/package.json +26 -22
  1190. package/index.d.ts +0 -47
  1191. package/index.js +0 -1
  1192. package/lib/base/Domain.d.ts +0 -23
  1193. package/lib/base/Domain.js +0 -39
  1194. package/lib/base/Page.d.ts +0 -107
  1195. package/lib/base/Page.js +0 -189
  1196. package/lib/base/RequestClient.d.ts +0 -96
  1197. package/lib/base/RequestClient.js +0 -186
  1198. package/lib/base/RestException.d.ts +0 -9
  1199. package/lib/base/RestException.js +0 -16
  1200. package/lib/base/Version.d.ts +0 -92
  1201. package/lib/base/Version.js +0 -186
  1202. package/lib/base/deserialize.d.ts +0 -39
  1203. package/lib/base/deserialize.js +0 -97
  1204. package/lib/base/obsolete.js +0 -61
  1205. package/lib/base/serialize.d.ts +0 -60
  1206. package/lib/base/serialize.js +0 -142
  1207. package/lib/base/values.d.ts +0 -7
  1208. package/lib/base/values.js +0 -22
  1209. package/lib/http/request.d.ts +0 -22
  1210. package/lib/http/request.js +0 -75
  1211. package/lib/http/response.d.ts +0 -6
  1212. package/lib/http/response.js +0 -13
  1213. package/lib/index.js +0 -86
  1214. package/lib/interfaces.d.ts +0 -105
  1215. package/lib/jwt/AccessToken.d.ts +0 -216
  1216. package/lib/jwt/AccessToken.js +0 -309
  1217. package/lib/jwt/ClientCapability.d.ts +0 -54
  1218. package/lib/jwt/ClientCapability.js +0 -141
  1219. package/lib/jwt/taskrouter/TaskRouterCapability.d.ts +0 -64
  1220. package/lib/jwt/taskrouter/TaskRouterCapability.js +0 -107
  1221. package/lib/jwt/taskrouter/util.d.ts +0 -91
  1222. package/lib/jwt/taskrouter/util.js +0 -164
  1223. package/lib/rest/Accounts.d.ts +0 -30
  1224. package/lib/rest/Accounts.js +0 -72
  1225. package/lib/rest/Api.d.ts +0 -76
  1226. package/lib/rest/Api.js +0 -272
  1227. package/lib/rest/Autopilot.d.ts +0 -28
  1228. package/lib/rest/Autopilot.js +0 -63
  1229. package/lib/rest/Bulkexports.d.ts +0 -28
  1230. package/lib/rest/Bulkexports.js +0 -63
  1231. package/lib/rest/Chat.d.ts +0 -34
  1232. package/lib/rest/Chat.js +0 -92
  1233. package/lib/rest/Content.d.ts +0 -26
  1234. package/lib/rest/Content.js +0 -54
  1235. package/lib/rest/Conversations.d.ts +0 -40
  1236. package/lib/rest/Conversations.js +0 -115
  1237. package/lib/rest/Events.d.ts +0 -32
  1238. package/lib/rest/Events.js +0 -79
  1239. package/lib/rest/FlexApi.d.ts +0 -40
  1240. package/lib/rest/FlexApi.js +0 -111
  1241. package/lib/rest/FrontlineApi.d.ts +0 -26
  1242. package/lib/rest/FrontlineApi.js +0 -54
  1243. package/lib/rest/Insights.d.ts +0 -34
  1244. package/lib/rest/Insights.js +0 -87
  1245. package/lib/rest/IpMessaging.d.ts +0 -30
  1246. package/lib/rest/IpMessaging.js +0 -74
  1247. package/lib/rest/Lookups.d.ts +0 -28
  1248. package/lib/rest/Lookups.js +0 -66
  1249. package/lib/rest/Media.d.ts +0 -30
  1250. package/lib/rest/Media.js +0 -73
  1251. package/lib/rest/Messaging.d.ts +0 -40
  1252. package/lib/rest/Messaging.js +0 -116
  1253. package/lib/rest/Microvisor.d.ts +0 -28
  1254. package/lib/rest/Microvisor.js +0 -62
  1255. package/lib/rest/Monitor.d.ts +0 -28
  1256. package/lib/rest/Monitor.js +0 -62
  1257. package/lib/rest/Notify.d.ts +0 -28
  1258. package/lib/rest/Notify.js +0 -62
  1259. package/lib/rest/Numbers.d.ts +0 -26
  1260. package/lib/rest/Numbers.js +0 -55
  1261. package/lib/rest/Oauth.d.ts +0 -32
  1262. package/lib/rest/Oauth.js +0 -79
  1263. package/lib/rest/Preview.d.ts +0 -54
  1264. package/lib/rest/Preview.js +0 -189
  1265. package/lib/rest/Pricing.d.ts +0 -36
  1266. package/lib/rest/Pricing.js +0 -98
  1267. package/lib/rest/Proxy.d.ts +0 -26
  1268. package/lib/rest/Proxy.js +0 -54
  1269. package/lib/rest/Routes.d.ts +0 -30
  1270. package/lib/rest/Routes.js +0 -71
  1271. package/lib/rest/Serverless.d.ts +0 -26
  1272. package/lib/rest/Serverless.js +0 -54
  1273. package/lib/rest/Studio.d.ts +0 -30
  1274. package/lib/rest/Studio.js +0 -74
  1275. package/lib/rest/Supersim.d.ts +0 -42
  1276. package/lib/rest/Supersim.js +0 -122
  1277. package/lib/rest/Sync.d.ts +0 -26
  1278. package/lib/rest/Sync.js +0 -54
  1279. package/lib/rest/Taskrouter.d.ts +0 -26
  1280. package/lib/rest/Taskrouter.js +0 -54
  1281. package/lib/rest/Trunking.d.ts +0 -26
  1282. package/lib/rest/Trunking.js +0 -54
  1283. package/lib/rest/Trusthub.d.ts +0 -38
  1284. package/lib/rest/Trusthub.js +0 -107
  1285. package/lib/rest/Twilio.d.ts +0 -183
  1286. package/lib/rest/Twilio.js +0 -927
  1287. package/lib/rest/Verify.d.ts +0 -36
  1288. package/lib/rest/Verify.js +0 -96
  1289. package/lib/rest/Video.d.ts +0 -36
  1290. package/lib/rest/Video.js +0 -97
  1291. package/lib/rest/Voice.d.ts +0 -36
  1292. package/lib/rest/Voice.js +0 -98
  1293. package/lib/rest/Wireless.d.ts +0 -32
  1294. package/lib/rest/Wireless.js +0 -79
  1295. package/lib/rest/accounts/V1.d.ts +0 -31
  1296. package/lib/rest/accounts/V1.js +0 -72
  1297. package/lib/rest/accounts/v1/authTokenPromotion.d.ts +0 -121
  1298. package/lib/rest/accounts/v1/authTokenPromotion.js +0 -316
  1299. package/lib/rest/accounts/v1/credential/aws.d.ts +0 -347
  1300. package/lib/rest/accounts/v1/credential/aws.js +0 -717
  1301. package/lib/rest/accounts/v1/credential/publicKey.d.ts +0 -347
  1302. package/lib/rest/accounts/v1/credential/publicKey.js +0 -720
  1303. package/lib/rest/accounts/v1/credential.d.ts +0 -38
  1304. package/lib/rest/accounts/v1/credential.js +0 -96
  1305. package/lib/rest/accounts/v1/secondaryAuthToken.d.ts +0 -133
  1306. package/lib/rest/accounts/v1/secondaryAuthToken.js +0 -363
  1307. package/lib/rest/api/V2010.d.ts +0 -75
  1308. package/lib/rest/api/V2010.js +0 -274
  1309. package/lib/rest/api/v2010/account/address/dependentPhoneNumber.d.ts +0 -292
  1310. package/lib/rest/api/v2010/account/address/dependentPhoneNumber.js +0 -520
  1311. package/lib/rest/api/v2010/account/address.d.ts +0 -420
  1312. package/lib/rest/api/v2010/account/address.js +0 -875
  1313. package/lib/rest/api/v2010/account/application.d.ts +0 -443
  1314. package/lib/rest/api/v2010/account/application.js +0 -892
  1315. package/lib/rest/api/v2010/account/authorizedConnectApp.d.ts +0 -296
  1316. package/lib/rest/api/v2010/account/authorizedConnectApp.js +0 -593
  1317. package/lib/rest/api/v2010/account/availablePhoneNumber/local.d.ts +0 -369
  1318. package/lib/rest/api/v2010/account/availablePhoneNumber/local.js +0 -591
  1319. package/lib/rest/api/v2010/account/availablePhoneNumber/machineToMachine.d.ts +0 -369
  1320. package/lib/rest/api/v2010/account/availablePhoneNumber/machineToMachine.js +0 -595
  1321. package/lib/rest/api/v2010/account/availablePhoneNumber/mobile.d.ts +0 -369
  1322. package/lib/rest/api/v2010/account/availablePhoneNumber/mobile.js +0 -591
  1323. package/lib/rest/api/v2010/account/availablePhoneNumber/national.d.ts +0 -369
  1324. package/lib/rest/api/v2010/account/availablePhoneNumber/national.js +0 -591
  1325. package/lib/rest/api/v2010/account/availablePhoneNumber/sharedCost.d.ts +0 -369
  1326. package/lib/rest/api/v2010/account/availablePhoneNumber/sharedCost.js +0 -592
  1327. package/lib/rest/api/v2010/account/availablePhoneNumber/tollFree.d.ts +0 -369
  1328. package/lib/rest/api/v2010/account/availablePhoneNumber/tollFree.js +0 -591
  1329. package/lib/rest/api/v2010/account/availablePhoneNumber/voip.d.ts +0 -369
  1330. package/lib/rest/api/v2010/account/availablePhoneNumber/voip.js +0 -590
  1331. package/lib/rest/api/v2010/account/availablePhoneNumber.d.ts +0 -335
  1332. package/lib/rest/api/v2010/account/availablePhoneNumber.js +0 -811
  1333. package/lib/rest/api/v2010/account/balance.d.ts +0 -90
  1334. package/lib/rest/api/v2010/account/balance.js +0 -225
  1335. package/lib/rest/api/v2010/account/call/event.d.ts +0 -238
  1336. package/lib/rest/api/v2010/account/call/event.js +0 -438
  1337. package/lib/rest/api/v2010/account/call/feedback.d.ts +0 -195
  1338. package/lib/rest/api/v2010/account/call/feedback.js +0 -477
  1339. package/lib/rest/api/v2010/account/call/feedbackSummary.d.ts +0 -185
  1340. package/lib/rest/api/v2010/account/call/feedbackSummary.js +0 -468
  1341. package/lib/rest/api/v2010/account/call/notification.d.ts +0 -334
  1342. package/lib/rest/api/v2010/account/call/notification.js +0 -639
  1343. package/lib/rest/api/v2010/account/call/payment.d.ts +0 -224
  1344. package/lib/rest/api/v2010/account/call/payment.js +0 -496
  1345. package/lib/rest/api/v2010/account/call/recording.d.ts +0 -403
  1346. package/lib/rest/api/v2010/account/call/recording.js +0 -822
  1347. package/lib/rest/api/v2010/account/call/siprec.d.ts +0 -778
  1348. package/lib/rest/api/v2010/account/call/siprec.js +0 -814
  1349. package/lib/rest/api/v2010/account/call/stream.d.ts +0 -772
  1350. package/lib/rest/api/v2010/account/call/stream.js +0 -814
  1351. package/lib/rest/api/v2010/account/call/userDefinedMessage.d.ts +0 -107
  1352. package/lib/rest/api/v2010/account/call/userDefinedMessage.js +0 -258
  1353. package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.d.ts +0 -153
  1354. package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.js +0 -407
  1355. package/lib/rest/api/v2010/account/call.d.ts +0 -602
  1356. package/lib/rest/api/v2010/account/call.js +0 -1251
  1357. package/lib/rest/api/v2010/account/conference/participant.d.ts +0 -499
  1358. package/lib/rest/api/v2010/account/conference/participant.js +0 -991
  1359. package/lib/rest/api/v2010/account/conference/recording.d.ts +0 -369
  1360. package/lib/rest/api/v2010/account/conference/recording.js +0 -762
  1361. package/lib/rest/api/v2010/account/conference.d.ts +0 -403
  1362. package/lib/rest/api/v2010/account/conference.js +0 -782
  1363. package/lib/rest/api/v2010/account/connectApp.d.ts +0 -357
  1364. package/lib/rest/api/v2010/account/connectApp.js +0 -729
  1365. package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.d.ts +0 -312
  1366. package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.js +0 -646
  1367. package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.d.ts +0 -345
  1368. package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.js +0 -759
  1369. package/lib/rest/api/v2010/account/incomingPhoneNumber/local.d.ts +0 -392
  1370. package/lib/rest/api/v2010/account/incomingPhoneNumber/local.js +0 -658
  1371. package/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.d.ts +0 -392
  1372. package/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.js +0 -658
  1373. package/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.d.ts +0 -392
  1374. package/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.js +0 -659
  1375. package/lib/rest/api/v2010/account/incomingPhoneNumber.d.ts +0 -547
  1376. package/lib/rest/api/v2010/account/incomingPhoneNumber.js +0 -1100
  1377. package/lib/rest/api/v2010/account/key.d.ts +0 -327
  1378. package/lib/rest/api/v2010/account/key.js +0 -678
  1379. package/lib/rest/api/v2010/account/message/feedback.d.ts +0 -117
  1380. package/lib/rest/api/v2010/account/message/feedback.js +0 -257
  1381. package/lib/rest/api/v2010/account/message/media.d.ts +0 -320
  1382. package/lib/rest/api/v2010/account/message/media.js +0 -659
  1383. package/lib/rest/api/v2010/account/message.d.ts +0 -477
  1384. package/lib/rest/api/v2010/account/message.js +0 -908
  1385. package/lib/rest/api/v2010/account/newKey.d.ts +0 -110
  1386. package/lib/rest/api/v2010/account/newKey.js +0 -247
  1387. package/lib/rest/api/v2010/account/newSigningKey.d.ts +0 -110
  1388. package/lib/rest/api/v2010/account/newSigningKey.js +0 -250
  1389. package/lib/rest/api/v2010/account/notification.d.ts +0 -330
  1390. package/lib/rest/api/v2010/account/notification.js +0 -621
  1391. package/lib/rest/api/v2010/account/outgoingCallerId.d.ts +0 -345
  1392. package/lib/rest/api/v2010/account/outgoingCallerId.js +0 -708
  1393. package/lib/rest/api/v2010/account/queue/member.d.ts +0 -313
  1394. package/lib/rest/api/v2010/account/queue/member.js +0 -658
  1395. package/lib/rest/api/v2010/account/queue.d.ts +0 -364
  1396. package/lib/rest/api/v2010/account/queue.js +0 -776
  1397. package/lib/rest/api/v2010/account/recording/addOnResult/payload.d.ts +0 -314
  1398. package/lib/rest/api/v2010/account/recording/addOnResult/payload.js +0 -679
  1399. package/lib/rest/api/v2010/account/recording/addOnResult.d.ts +0 -317
  1400. package/lib/rest/api/v2010/account/recording/addOnResult.js +0 -690
  1401. package/lib/rest/api/v2010/account/recording/transcription.d.ts +0 -316
  1402. package/lib/rest/api/v2010/account/recording/transcription.js +0 -661
  1403. package/lib/rest/api/v2010/account/recording.d.ts +0 -399
  1404. package/lib/rest/api/v2010/account/recording.js +0 -772
  1405. package/lib/rest/api/v2010/account/shortCode.d.ts +0 -353
  1406. package/lib/rest/api/v2010/account/shortCode.js +0 -691
  1407. package/lib/rest/api/v2010/account/signingKey.d.ts +0 -327
  1408. package/lib/rest/api/v2010/account/signingKey.js +0 -678
  1409. package/lib/rest/api/v2010/account/sip/credentialList/credential.d.ts +0 -355
  1410. package/lib/rest/api/v2010/account/sip/credentialList/credential.js +0 -775
  1411. package/lib/rest/api/v2010/account/sip/credentialList.d.ts +0 -344
  1412. package/lib/rest/api/v2010/account/sip/credentialList.js +0 -775
  1413. package/lib/rest/api/v2010/account/sip/domain/authTypes/authCallsMapping/authCallsCredentialListMapping.d.ts +0 -318
  1414. package/lib/rest/api/v2010/account/sip/domain/authTypes/authCallsMapping/authCallsCredentialListMapping.js +0 -710
  1415. package/lib/rest/api/v2010/account/sip/domain/authTypes/authCallsMapping/authCallsIpAccessControlListMapping.d.ts +0 -320
  1416. package/lib/rest/api/v2010/account/sip/domain/authTypes/authCallsMapping/authCallsIpAccessControlListMapping.js +0 -723
  1417. package/lib/rest/api/v2010/account/sip/domain/authTypes/authCallsMapping.d.ts +0 -42
  1418. package/lib/rest/api/v2010/account/sip/domain/authTypes/authCallsMapping.js +0 -109
  1419. package/lib/rest/api/v2010/account/sip/domain/authTypes/authRegistrationsMapping/authRegistrationsCredentialListMapping.d.ts +0 -320
  1420. package/lib/rest/api/v2010/account/sip/domain/authTypes/authRegistrationsMapping/authRegistrationsCredentialListMapping.js +0 -724
  1421. package/lib/rest/api/v2010/account/sip/domain/authTypes/authRegistrationsMapping.d.ts +0 -40
  1422. package/lib/rest/api/v2010/account/sip/domain/authTypes/authRegistrationsMapping.js +0 -92
  1423. package/lib/rest/api/v2010/account/sip/domain/authTypes.d.ts +0 -42
  1424. package/lib/rest/api/v2010/account/sip/domain/authTypes.js +0 -108
  1425. package/lib/rest/api/v2010/account/sip/domain/credentialListMapping.d.ts +0 -320
  1426. package/lib/rest/api/v2010/account/sip/domain/credentialListMapping.js +0 -705
  1427. package/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.d.ts +0 -322
  1428. package/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.js +0 -713
  1429. package/lib/rest/api/v2010/account/sip/domain.d.ts +0 -446
  1430. package/lib/rest/api/v2010/account/sip/domain.js +0 -958
  1431. package/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.d.ts +0 -365
  1432. package/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.js +0 -803
  1433. package/lib/rest/api/v2010/account/sip/ipAccessControlList.d.ts +0 -346
  1434. package/lib/rest/api/v2010/account/sip/ipAccessControlList.js +0 -777
  1435. package/lib/rest/api/v2010/account/sip.d.ts +0 -42
  1436. package/lib/rest/api/v2010/account/sip.js +0 -113
  1437. package/lib/rest/api/v2010/account/token.d.ts +0 -114
  1438. package/lib/rest/api/v2010/account/token.js +0 -248
  1439. package/lib/rest/api/v2010/account/transcription.d.ts +0 -312
  1440. package/lib/rest/api/v2010/account/transcription.js +0 -640
  1441. package/lib/rest/api/v2010/account/usage/record/allTime.d.ts +0 -287
  1442. package/lib/rest/api/v2010/account/usage/record/allTime.js +0 -501
  1443. package/lib/rest/api/v2010/account/usage/record/daily.d.ts +0 -287
  1444. package/lib/rest/api/v2010/account/usage/record/daily.js +0 -501
  1445. package/lib/rest/api/v2010/account/usage/record/lastMonth.d.ts +0 -287
  1446. package/lib/rest/api/v2010/account/usage/record/lastMonth.js +0 -502
  1447. package/lib/rest/api/v2010/account/usage/record/monthly.d.ts +0 -287
  1448. package/lib/rest/api/v2010/account/usage/record/monthly.js +0 -501
  1449. package/lib/rest/api/v2010/account/usage/record/thisMonth.d.ts +0 -287
  1450. package/lib/rest/api/v2010/account/usage/record/thisMonth.js +0 -502
  1451. package/lib/rest/api/v2010/account/usage/record/today.d.ts +0 -287
  1452. package/lib/rest/api/v2010/account/usage/record/today.js +0 -501
  1453. package/lib/rest/api/v2010/account/usage/record/yearly.d.ts +0 -287
  1454. package/lib/rest/api/v2010/account/usage/record/yearly.js +0 -501
  1455. package/lib/rest/api/v2010/account/usage/record/yesterday.d.ts +0 -287
  1456. package/lib/rest/api/v2010/account/usage/record/yesterday.js +0 -502
  1457. package/lib/rest/api/v2010/account/usage/record.d.ts +0 -303
  1458. package/lib/rest/api/v2010/account/usage/record.js +0 -608
  1459. package/lib/rest/api/v2010/account/usage/trigger.d.ts +0 -407
  1460. package/lib/rest/api/v2010/account/usage/trigger.js +0 -815
  1461. package/lib/rest/api/v2010/account/usage.d.ts +0 -40
  1462. package/lib/rest/api/v2010/account/usage.js +0 -98
  1463. package/lib/rest/api/v2010/account/validationRequest.d.ts +0 -114
  1464. package/lib/rest/api/v2010/account/validationRequest.js +0 -262
  1465. package/lib/rest/api/v2010/account.d.ts +0 -531
  1466. package/lib/rest/api/v2010/account.js +0 -1364
  1467. package/lib/rest/autopilot/V1.d.ts +0 -28
  1468. package/lib/rest/autopilot/V1.js +0 -59
  1469. package/lib/rest/autopilot/v1/assistant/defaults.d.ts +0 -174
  1470. package/lib/rest/autopilot/v1/assistant/defaults.js +0 -389
  1471. package/lib/rest/autopilot/v1/assistant/dialogue.d.ts +0 -145
  1472. package/lib/rest/autopilot/v1/assistant/dialogue.js +0 -340
  1473. package/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.d.ts +0 -350
  1474. package/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.js +0 -738
  1475. package/lib/rest/autopilot/v1/assistant/fieldType.d.ts +0 -380
  1476. package/lib/rest/autopilot/v1/assistant/fieldType.js +0 -808
  1477. package/lib/rest/autopilot/v1/assistant/modelBuild.d.ts +0 -381
  1478. package/lib/rest/autopilot/v1/assistant/modelBuild.js +0 -771
  1479. package/lib/rest/autopilot/v1/assistant/query.d.ts +0 -411
  1480. package/lib/rest/autopilot/v1/assistant/query.js +0 -810
  1481. package/lib/rest/autopilot/v1/assistant/styleSheet.d.ts +0 -174
  1482. package/lib/rest/autopilot/v1/assistant/styleSheet.js +0 -391
  1483. package/lib/rest/autopilot/v1/assistant/task/field.d.ts +0 -340
  1484. package/lib/rest/autopilot/v1/assistant/task/field.js +0 -717
  1485. package/lib/rest/autopilot/v1/assistant/task/sample.d.ts +0 -389
  1486. package/lib/rest/autopilot/v1/assistant/task/sample.js +0 -809
  1487. package/lib/rest/autopilot/v1/assistant/task/taskActions.d.ts +0 -180
  1488. package/lib/rest/autopilot/v1/assistant/task/taskActions.js +0 -420
  1489. package/lib/rest/autopilot/v1/assistant/task/taskStatistics.d.ts +0 -147
  1490. package/lib/rest/autopilot/v1/assistant/task/taskStatistics.js +0 -366
  1491. package/lib/rest/autopilot/v1/assistant/task.d.ts +0 -411
  1492. package/lib/rest/autopilot/v1/assistant/task.js +0 -909
  1493. package/lib/rest/autopilot/v1/assistant/webhook.d.ts +0 -383
  1494. package/lib/rest/autopilot/v1/assistant/webhook.js +0 -793
  1495. package/lib/rest/autopilot/v1/assistant.d.ts +0 -463
  1496. package/lib/rest/autopilot/v1/assistant.js +0 -1024
  1497. package/lib/rest/autopilot/v1/restoreAssistant.d.ts +0 -127
  1498. package/lib/rest/autopilot/v1/restoreAssistant.js +0 -275
  1499. package/lib/rest/bulkexports/V1.d.ts +0 -28
  1500. package/lib/rest/bulkexports/V1.js +0 -59
  1501. package/lib/rest/bulkexports/v1/export/day.d.ts +0 -284
  1502. package/lib/rest/bulkexports/v1/export/day.js +0 -570
  1503. package/lib/rest/bulkexports/v1/export/exportCustomJob.d.ts +0 -281
  1504. package/lib/rest/bulkexports/v1/export/exportCustomJob.js +0 -535
  1505. package/lib/rest/bulkexports/v1/export/job.d.ts +0 -153
  1506. package/lib/rest/bulkexports/v1/export/job.js +0 -380
  1507. package/lib/rest/bulkexports/v1/export.d.ts +0 -137
  1508. package/lib/rest/bulkexports/v1/export.js +0 -385
  1509. package/lib/rest/bulkexports/v1/exportConfiguration.d.ts +0 -164
  1510. package/lib/rest/bulkexports/v1/exportConfiguration.js +0 -395
  1511. package/lib/rest/chat/V1.d.ts +0 -28
  1512. package/lib/rest/chat/V1.js +0 -57
  1513. package/lib/rest/chat/V2.d.ts +0 -28
  1514. package/lib/rest/chat/V2.js +0 -57
  1515. package/lib/rest/chat/V3.d.ts +0 -25
  1516. package/lib/rest/chat/V3.js +0 -46
  1517. package/lib/rest/chat/v1/credential.d.ts +0 -371
  1518. package/lib/rest/chat/v1/credential.js +0 -765
  1519. package/lib/rest/chat/v1/service/channel/invite.d.ts +0 -332
  1520. package/lib/rest/chat/v1/service/channel/invite.js +0 -703
  1521. package/lib/rest/chat/v1/service/channel/member.d.ts +0 -371
  1522. package/lib/rest/chat/v1/service/channel/member.js +0 -778
  1523. package/lib/rest/chat/v1/service/channel/message.d.ts +0 -379
  1524. package/lib/rest/chat/v1/service/channel/message.js +0 -785
  1525. package/lib/rest/chat/v1/service/channel.d.ts +0 -408
  1526. package/lib/rest/chat/v1/service/channel.js +0 -867
  1527. package/lib/rest/chat/v1/service/role.d.ts +0 -347
  1528. package/lib/rest/chat/v1/service/role.js +0 -752
  1529. package/lib/rest/chat/v1/service/user/userChannel.d.ts +0 -252
  1530. package/lib/rest/chat/v1/service/user/userChannel.js +0 -467
  1531. package/lib/rest/chat/v1/service/user.d.ts +0 -380
  1532. package/lib/rest/chat/v1/service/user.js +0 -805
  1533. package/lib/rest/chat/v1/service.d.ts +0 -546
  1534. package/lib/rest/chat/v1/service.js +0 -1099
  1535. package/lib/rest/chat/v2/credential.d.ts +0 -371
  1536. package/lib/rest/chat/v2/credential.js +0 -765
  1537. package/lib/rest/chat/v2/service/binding.d.ts +0 -322
  1538. package/lib/rest/chat/v2/service/binding.js +0 -648
  1539. package/lib/rest/chat/v2/service/channel/invite.d.ts +0 -332
  1540. package/lib/rest/chat/v2/service/channel/invite.js +0 -703
  1541. package/lib/rest/chat/v2/service/channel/member.d.ts +0 -420
  1542. package/lib/rest/chat/v2/service/channel/member.js +0 -840
  1543. package/lib/rest/chat/v2/service/channel/message.d.ts +0 -436
  1544. package/lib/rest/chat/v2/service/channel/message.js +0 -848
  1545. package/lib/rest/chat/v2/service/channel/webhook.d.ts +0 -387
  1546. package/lib/rest/chat/v2/service/channel/webhook.js +0 -807
  1547. package/lib/rest/chat/v2/service/channel.d.ts +0 -456
  1548. package/lib/rest/chat/v2/service/channel.js +0 -942
  1549. package/lib/rest/chat/v2/service/role.d.ts +0 -347
  1550. package/lib/rest/chat/v2/service/role.js +0 -752
  1551. package/lib/rest/chat/v2/service/user/userBinding.d.ts +0 -320
  1552. package/lib/rest/chat/v2/service/user/userBinding.js +0 -666
  1553. package/lib/rest/chat/v2/service/user/userChannel.d.ts +0 -378
  1554. package/lib/rest/chat/v2/service/user/userChannel.js +0 -759
  1555. package/lib/rest/chat/v2/service/user.d.ts +0 -393
  1556. package/lib/rest/chat/v2/service/user.js +0 -845
  1557. package/lib/rest/chat/v2/service.d.ts +0 -479
  1558. package/lib/rest/chat/v2/service.js +0 -1015
  1559. package/lib/rest/chat/v3/channel.d.ts +0 -177
  1560. package/lib/rest/chat/v3/channel.js +0 -373
  1561. package/lib/rest/content/V1.d.ts +0 -25
  1562. package/lib/rest/content/V1.js +0 -46
  1563. package/lib/rest/content/v1/content/approvalFetch.d.ts +0 -139
  1564. package/lib/rest/content/v1/content/approvalFetch.js +0 -328
  1565. package/lib/rest/content/v1/content.d.ts +0 -323
  1566. package/lib/rest/content/v1/content.js +0 -668
  1567. package/lib/rest/conversations/V1.d.ts +0 -46
  1568. package/lib/rest/conversations/V1.js +0 -130
  1569. package/lib/rest/conversations/v1/addressConfiguration.d.ts +0 -403
  1570. package/lib/rest/conversations/v1/addressConfiguration.js +0 -806
  1571. package/lib/rest/conversations/v1/configuration/webhook.d.ts +0 -172
  1572. package/lib/rest/conversations/v1/configuration/webhook.js +0 -397
  1573. package/lib/rest/conversations/v1/configuration.d.ts +0 -168
  1574. package/lib/rest/conversations/v1/configuration.js +0 -412
  1575. package/lib/rest/conversations/v1/conversation/message/deliveryReceipt.d.ts +0 -300
  1576. package/lib/rest/conversations/v1/conversation/message/deliveryReceipt.js +0 -618
  1577. package/lib/rest/conversations/v1/conversation/message.d.ts +0 -431
  1578. package/lib/rest/conversations/v1/conversation/message.js +0 -856
  1579. package/lib/rest/conversations/v1/conversation/participant.d.ts +0 -428
  1580. package/lib/rest/conversations/v1/conversation/participant.js +0 -844
  1581. package/lib/rest/conversations/v1/conversation/webhook.d.ts +0 -379
  1582. package/lib/rest/conversations/v1/conversation/webhook.js +0 -786
  1583. package/lib/rest/conversations/v1/conversation.d.ts +0 -453
  1584. package/lib/rest/conversations/v1/conversation.js +0 -906
  1585. package/lib/rest/conversations/v1/credential.d.ts +0 -373
  1586. package/lib/rest/conversations/v1/credential.js +0 -770
  1587. package/lib/rest/conversations/v1/participantConversation.d.ts +0 -276
  1588. package/lib/rest/conversations/v1/participantConversation.js +0 -498
  1589. package/lib/rest/conversations/v1/role.d.ts +0 -343
  1590. package/lib/rest/conversations/v1/role.js +0 -732
  1591. package/lib/rest/conversations/v1/service/binding.d.ts +0 -320
  1592. package/lib/rest/conversations/v1/service/binding.js +0 -654
  1593. package/lib/rest/conversations/v1/service/configuration/notification.d.ts +0 -196
  1594. package/lib/rest/conversations/v1/service/configuration/notification.js +0 -447
  1595. package/lib/rest/conversations/v1/service/configuration/webhook.d.ts +0 -172
  1596. package/lib/rest/conversations/v1/service/configuration/webhook.js +0 -400
  1597. package/lib/rest/conversations/v1/service/configuration.d.ts +0 -174
  1598. package/lib/rest/conversations/v1/service/configuration.js +0 -431
  1599. package/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.d.ts +0 -306
  1600. package/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.js +0 -648
  1601. package/lib/rest/conversations/v1/service/conversation/message.d.ts +0 -437
  1602. package/lib/rest/conversations/v1/service/conversation/message.js +0 -886
  1603. package/lib/rest/conversations/v1/service/conversation/participant.d.ts +0 -434
  1604. package/lib/rest/conversations/v1/service/conversation/participant.js +0 -877
  1605. package/lib/rest/conversations/v1/service/conversation/webhook.d.ts +0 -385
  1606. package/lib/rest/conversations/v1/service/conversation/webhook.js +0 -815
  1607. package/lib/rest/conversations/v1/service/conversation.d.ts +0 -457
  1608. package/lib/rest/conversations/v1/service/conversation.js +0 -937
  1609. package/lib/rest/conversations/v1/service/participantConversation.d.ts +0 -279
  1610. package/lib/rest/conversations/v1/service/participantConversation.js +0 -503
  1611. package/lib/rest/conversations/v1/service/role.d.ts +0 -347
  1612. package/lib/rest/conversations/v1/service/role.js +0 -753
  1613. package/lib/rest/conversations/v1/service/user/userConversation.d.ts +0 -367
  1614. package/lib/rest/conversations/v1/service/user/userConversation.js +0 -768
  1615. package/lib/rest/conversations/v1/service/user.d.ts +0 -407
  1616. package/lib/rest/conversations/v1/service/user.js +0 -831
  1617. package/lib/rest/conversations/v1/service.d.ts +0 -352
  1618. package/lib/rest/conversations/v1/service.js +0 -827
  1619. package/lib/rest/conversations/v1/user/userConversation.d.ts +0 -363
  1620. package/lib/rest/conversations/v1/user/userConversation.js +0 -737
  1621. package/lib/rest/conversations/v1/user.d.ts +0 -403
  1622. package/lib/rest/conversations/v1/user.js +0 -806
  1623. package/lib/rest/events/V1.d.ts +0 -34
  1624. package/lib/rest/events/V1.js +0 -80
  1625. package/lib/rest/events/v1/eventType.d.ts +0 -300
  1626. package/lib/rest/events/v1/eventType.js +0 -578
  1627. package/lib/rest/events/v1/schema/version.d.ts +0 -294
  1628. package/lib/rest/events/v1/schema/version.js +0 -585
  1629. package/lib/rest/events/v1/schema.d.ts +0 -144
  1630. package/lib/rest/events/v1/schema.js +0 -356
  1631. package/lib/rest/events/v1/sink/sinkTest.d.ts +0 -95
  1632. package/lib/rest/events/v1/sink/sinkTest.js +0 -231
  1633. package/lib/rest/events/v1/sink/sinkValidate.d.ts +0 -105
  1634. package/lib/rest/events/v1/sink/sinkValidate.js +0 -245
  1635. package/lib/rest/events/v1/sink.d.ts +0 -383
  1636. package/lib/rest/events/v1/sink.js +0 -807
  1637. package/lib/rest/events/v1/subscription/subscribedEvent.d.ts +0 -359
  1638. package/lib/rest/events/v1/subscription/subscribedEvent.js +0 -751
  1639. package/lib/rest/events/v1/subscription.d.ts +0 -378
  1640. package/lib/rest/events/v1/subscription.js +0 -779
  1641. package/lib/rest/flexApi/V1.d.ts +0 -46
  1642. package/lib/rest/flexApi/V1.js +0 -124
  1643. package/lib/rest/flexApi/v1/assessments.d.ts +0 -113
  1644. package/lib/rest/flexApi/v1/assessments.js +0 -300
  1645. package/lib/rest/flexApi/v1/channel.d.ts +0 -330
  1646. package/lib/rest/flexApi/v1/channel.js +0 -690
  1647. package/lib/rest/flexApi/v1/configuration.d.ts +0 -250
  1648. package/lib/rest/flexApi/v1/configuration.js +0 -516
  1649. package/lib/rest/flexApi/v1/flexFlow.d.ts +0 -437
  1650. package/lib/rest/flexApi/v1/flexFlow.js +0 -849
  1651. package/lib/rest/flexApi/v1/goodData.d.ts +0 -144
  1652. package/lib/rest/flexApi/v1/goodData.js +0 -318
  1653. package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.d.ts +0 -266
  1654. package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.js +0 -506
  1655. package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.d.ts +0 -323
  1656. package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.js +0 -674
  1657. package/lib/rest/flexApi/v1/interaction/interactionChannel.d.ts +0 -335
  1658. package/lib/rest/flexApi/v1/interaction/interactionChannel.js +0 -726
  1659. package/lib/rest/flexApi/v1/interaction.d.ts +0 -150
  1660. package/lib/rest/flexApi/v1/interaction.js +0 -396
  1661. package/lib/rest/flexApi/v1/userRoles.d.ts +0 -138
  1662. package/lib/rest/flexApi/v1/userRoles.js +0 -313
  1663. package/lib/rest/flexApi/v1/webChannel.d.ts +0 -357
  1664. package/lib/rest/flexApi/v1/webChannel.js +0 -738
  1665. package/lib/rest/frontlineApi/V1.d.ts +0 -25
  1666. package/lib/rest/frontlineApi/V1.js +0 -46
  1667. package/lib/rest/frontlineApi/v1/user.d.ts +0 -184
  1668. package/lib/rest/frontlineApi/v1/user.js +0 -404
  1669. package/lib/rest/insights/V1.d.ts +0 -37
  1670. package/lib/rest/insights/V1.js +0 -91
  1671. package/lib/rest/insights/v1/call/annotation.d.ts +0 -200
  1672. package/lib/rest/insights/v1/call/annotation.js +0 -423
  1673. package/lib/rest/insights/v1/call/event.d.ts +0 -275
  1674. package/lib/rest/insights/v1/call/event.js +0 -470
  1675. package/lib/rest/insights/v1/call/metric.d.ts +0 -277
  1676. package/lib/rest/insights/v1/call/metric.js +0 -470
  1677. package/lib/rest/insights/v1/call/summary.d.ts +0 -192
  1678. package/lib/rest/insights/v1/call/summary.js +0 -363
  1679. package/lib/rest/insights/v1/call.d.ts +0 -149
  1680. package/lib/rest/insights/v1/call.js +0 -417
  1681. package/lib/rest/insights/v1/callSummaries.d.ts +0 -394
  1682. package/lib/rest/insights/v1/callSummaries.js +0 -555
  1683. package/lib/rest/insights/v1/conference/conferenceParticipant.d.ts +0 -383
  1684. package/lib/rest/insights/v1/conference/conferenceParticipant.js +0 -671
  1685. package/lib/rest/insights/v1/conference.d.ts +0 -391
  1686. package/lib/rest/insights/v1/conference.js +0 -683
  1687. package/lib/rest/insights/v1/room/participant.d.ts +0 -326
  1688. package/lib/rest/insights/v1/room/participant.js +0 -615
  1689. package/lib/rest/insights/v1/room.d.ts +0 -385
  1690. package/lib/rest/insights/v1/room.js +0 -680
  1691. package/lib/rest/insights/v1/setting.d.ts +0 -181
  1692. package/lib/rest/insights/v1/setting.js +0 -384
  1693. package/lib/rest/ipMessaging/V1.d.ts +0 -28
  1694. package/lib/rest/ipMessaging/V1.js +0 -58
  1695. package/lib/rest/ipMessaging/V2.d.ts +0 -28
  1696. package/lib/rest/ipMessaging/V2.js +0 -58
  1697. package/lib/rest/ipMessaging/v1/credential.d.ts +0 -371
  1698. package/lib/rest/ipMessaging/v1/credential.js +0 -744
  1699. package/lib/rest/ipMessaging/v1/service/channel/invite.d.ts +0 -332
  1700. package/lib/rest/ipMessaging/v1/service/channel/invite.js +0 -692
  1701. package/lib/rest/ipMessaging/v1/service/channel/member.d.ts +0 -371
  1702. package/lib/rest/ipMessaging/v1/service/channel/member.js +0 -766
  1703. package/lib/rest/ipMessaging/v1/service/channel/message.d.ts +0 -379
  1704. package/lib/rest/ipMessaging/v1/service/channel/message.js +0 -768
  1705. package/lib/rest/ipMessaging/v1/service/channel.d.ts +0 -408
  1706. package/lib/rest/ipMessaging/v1/service/channel.js +0 -848
  1707. package/lib/rest/ipMessaging/v1/service/role.d.ts +0 -347
  1708. package/lib/rest/ipMessaging/v1/service/role.js +0 -745
  1709. package/lib/rest/ipMessaging/v1/service/user/userChannel.d.ts +0 -252
  1710. package/lib/rest/ipMessaging/v1/service/user/userChannel.js +0 -460
  1711. package/lib/rest/ipMessaging/v1/service/user.d.ts +0 -380
  1712. package/lib/rest/ipMessaging/v1/service/user.js +0 -790
  1713. package/lib/rest/ipMessaging/v1/service.d.ts +0 -546
  1714. package/lib/rest/ipMessaging/v1/service.js +0 -1067
  1715. package/lib/rest/ipMessaging/v2/credential.d.ts +0 -371
  1716. package/lib/rest/ipMessaging/v2/credential.js +0 -744
  1717. package/lib/rest/ipMessaging/v2/service/binding.d.ts +0 -322
  1718. package/lib/rest/ipMessaging/v2/service/binding.js +0 -635
  1719. package/lib/rest/ipMessaging/v2/service/channel/invite.d.ts +0 -332
  1720. package/lib/rest/ipMessaging/v2/service/channel/invite.js +0 -692
  1721. package/lib/rest/ipMessaging/v2/service/channel/member.d.ts +0 -420
  1722. package/lib/rest/ipMessaging/v2/service/channel/member.js +0 -816
  1723. package/lib/rest/ipMessaging/v2/service/channel/message.d.ts +0 -436
  1724. package/lib/rest/ipMessaging/v2/service/channel/message.js +0 -820
  1725. package/lib/rest/ipMessaging/v2/service/channel/webhook.d.ts +0 -387
  1726. package/lib/rest/ipMessaging/v2/service/channel/webhook.js +0 -781
  1727. package/lib/rest/ipMessaging/v2/service/channel.d.ts +0 -456
  1728. package/lib/rest/ipMessaging/v2/service/channel.js +0 -913
  1729. package/lib/rest/ipMessaging/v2/service/role.d.ts +0 -347
  1730. package/lib/rest/ipMessaging/v2/service/role.js +0 -745
  1731. package/lib/rest/ipMessaging/v2/service/user/userBinding.d.ts +0 -320
  1732. package/lib/rest/ipMessaging/v2/service/user/userBinding.js +0 -655
  1733. package/lib/rest/ipMessaging/v2/service/user/userChannel.d.ts +0 -353
  1734. package/lib/rest/ipMessaging/v2/service/user/userChannel.js +0 -731
  1735. package/lib/rest/ipMessaging/v2/service/user.d.ts +0 -393
  1736. package/lib/rest/ipMessaging/v2/service/user.js +0 -830
  1737. package/lib/rest/ipMessaging/v2/service.d.ts +0 -479
  1738. package/lib/rest/ipMessaging/v2/service.js +0 -980
  1739. package/lib/rest/lookups/V1.d.ts +0 -25
  1740. package/lib/rest/lookups/V1.js +0 -47
  1741. package/lib/rest/lookups/V2.d.ts +0 -25
  1742. package/lib/rest/lookups/V2.js +0 -47
  1743. package/lib/rest/lookups/v1/phoneNumber.d.ts +0 -160
  1744. package/lib/rest/lookups/v1/phoneNumber.js +0 -346
  1745. package/lib/rest/lookups/v2/phoneNumber.d.ts +0 -202
  1746. package/lib/rest/lookups/v2/phoneNumber.js +0 -401
  1747. package/lib/rest/media/V1.d.ts +0 -31
  1748. package/lib/rest/media/V1.js +0 -71
  1749. package/lib/rest/media/v1/mediaProcessor.d.ts +0 -359
  1750. package/lib/rest/media/v1/mediaProcessor.js +0 -708
  1751. package/lib/rest/media/v1/mediaRecording.d.ts +0 -356
  1752. package/lib/rest/media/v1/mediaRecording.js +0 -664
  1753. package/lib/rest/media/v1/playerStreamer/playbackGrant.d.ts +0 -162
  1754. package/lib/rest/media/v1/playerStreamer/playbackGrant.js +0 -384
  1755. package/lib/rest/media/v1/playerStreamer.d.ts +0 -370
  1756. package/lib/rest/media/v1/playerStreamer.js +0 -735
  1757. package/lib/rest/messaging/V1.d.ts +0 -46
  1758. package/lib/rest/messaging/V1.js +0 -132
  1759. package/lib/rest/messaging/v1/brandRegistration/brandVetting.d.ts +0 -330
  1760. package/lib/rest/messaging/v1/brandRegistration/brandVetting.js +0 -657
  1761. package/lib/rest/messaging/v1/brandRegistration.d.ts +0 -369
  1762. package/lib/rest/messaging/v1/brandRegistration.js +0 -744
  1763. package/lib/rest/messaging/v1/deactivation.d.ts +0 -136
  1764. package/lib/rest/messaging/v1/deactivation.js +0 -313
  1765. package/lib/rest/messaging/v1/domainCert.d.ts +0 -178
  1766. package/lib/rest/messaging/v1/domainCert.js +0 -447
  1767. package/lib/rest/messaging/v1/domainConfig.d.ts +0 -172
  1768. package/lib/rest/messaging/v1/domainConfig.js +0 -421
  1769. package/lib/rest/messaging/v1/externalCampaign.d.ts +0 -112
  1770. package/lib/rest/messaging/v1/externalCampaign.js +0 -263
  1771. package/lib/rest/messaging/v1/service/alphaSender.d.ts +0 -328
  1772. package/lib/rest/messaging/v1/service/alphaSender.js +0 -691
  1773. package/lib/rest/messaging/v1/service/phoneNumber.d.ts +0 -330
  1774. package/lib/rest/messaging/v1/service/phoneNumber.js +0 -693
  1775. package/lib/rest/messaging/v1/service/shortCode.d.ts +0 -330
  1776. package/lib/rest/messaging/v1/service/shortCode.js +0 -688
  1777. package/lib/rest/messaging/v1/service/usAppToPerson.d.ts +0 -384
  1778. package/lib/rest/messaging/v1/service/usAppToPerson.js +0 -780
  1779. package/lib/rest/messaging/v1/service/usAppToPersonUsecase.d.ts +0 -111
  1780. package/lib/rest/messaging/v1/service/usAppToPersonUsecase.js +0 -251
  1781. package/lib/rest/messaging/v1/service.d.ts +0 -486
  1782. package/lib/rest/messaging/v1/service.js +0 -1033
  1783. package/lib/rest/messaging/v1/tollfreeVerification.d.ts +0 -418
  1784. package/lib/rest/messaging/v1/tollfreeVerification.js +0 -802
  1785. package/lib/rest/messaging/v1/usecase.d.ts +0 -92
  1786. package/lib/rest/messaging/v1/usecase.js +0 -228
  1787. package/lib/rest/microvisor/V1.d.ts +0 -28
  1788. package/lib/rest/microvisor/V1.js +0 -57
  1789. package/lib/rest/microvisor/v1/app.d.ts +0 -310
  1790. package/lib/rest/microvisor/v1/app.js +0 -624
  1791. package/lib/rest/microvisor/v1/device.d.ts +0 -341
  1792. package/lib/rest/microvisor/v1/device.js +0 -654
  1793. package/lib/rest/monitor/V1.d.ts +0 -28
  1794. package/lib/rest/monitor/V1.js +0 -57
  1795. package/lib/rest/monitor/v1/alert.d.ts +0 -324
  1796. package/lib/rest/monitor/v1/alert.js +0 -616
  1797. package/lib/rest/monitor/v1/event.d.ts +0 -332
  1798. package/lib/rest/monitor/v1/event.js +0 -615
  1799. package/lib/rest/notify/V1.d.ts +0 -28
  1800. package/lib/rest/notify/V1.js +0 -57
  1801. package/lib/rest/notify/v1/credential.d.ts +0 -383
  1802. package/lib/rest/notify/v1/credential.js +0 -776
  1803. package/lib/rest/notify/v1/service/binding.d.ts +0 -378
  1804. package/lib/rest/notify/v1/service/binding.js +0 -750
  1805. package/lib/rest/notify/v1/service/notification.d.ts +0 -185
  1806. package/lib/rest/notify/v1/service/notification.js +0 -340
  1807. package/lib/rest/notify/v1/service.d.ts +0 -461
  1808. package/lib/rest/notify/v1/service.js +0 -913
  1809. package/lib/rest/numbers/V2.d.ts +0 -25
  1810. package/lib/rest/numbers/V2.js +0 -48
  1811. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.d.ts +0 -286
  1812. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.js +0 -512
  1813. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.d.ts +0 -296
  1814. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.js +0 -611
  1815. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.d.ts +0 -312
  1816. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.js +0 -672
  1817. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.d.ts +0 -127
  1818. package/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.js +0 -271
  1819. package/lib/rest/numbers/v2/regulatoryCompliance/bundle.d.ts +0 -475
  1820. package/lib/rest/numbers/v2/regulatoryCompliance/bundle.js +0 -946
  1821. package/lib/rest/numbers/v2/regulatoryCompliance/endUser.d.ts +0 -355
  1822. package/lib/rest/numbers/v2/regulatoryCompliance/endUser.js +0 -736
  1823. package/lib/rest/numbers/v2/regulatoryCompliance/endUserType.d.ts +0 -278
  1824. package/lib/rest/numbers/v2/regulatoryCompliance/endUserType.js +0 -563
  1825. package/lib/rest/numbers/v2/regulatoryCompliance/regulation.d.ts +0 -302
  1826. package/lib/rest/numbers/v2/regulatoryCompliance/regulation.js +0 -584
  1827. package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.d.ts +0 -363
  1828. package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.js +0 -749
  1829. package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.d.ts +0 -280
  1830. package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.js +0 -571
  1831. package/lib/rest/numbers/v2/regulatoryCompliance.d.ts +0 -46
  1832. package/lib/rest/numbers/v2/regulatoryCompliance.js +0 -153
  1833. package/lib/rest/oauth/V1.d.ts +0 -34
  1834. package/lib/rest/oauth/V1.js +0 -80
  1835. package/lib/rest/oauth/v1/oauth.d.ts +0 -115
  1836. package/lib/rest/oauth/v1/oauth.js +0 -299
  1837. package/lib/rest/oauth/v1/openidDiscovery.d.ts +0 -137
  1838. package/lib/rest/oauth/v1/openidDiscovery.js +0 -329
  1839. package/lib/rest/oauth/v1/token.d.ts +0 -115
  1840. package/lib/rest/oauth/v1/token.js +0 -265
  1841. package/lib/rest/oauth/v1/userInfo.d.ts +0 -123
  1842. package/lib/rest/oauth/v1/userInfo.js +0 -308
  1843. package/lib/rest/preview/DeployedDevices.d.ts +0 -25
  1844. package/lib/rest/preview/DeployedDevices.js +0 -46
  1845. package/lib/rest/preview/HostedNumbers.d.ts +0 -28
  1846. package/lib/rest/preview/HostedNumbers.js +0 -61
  1847. package/lib/rest/preview/Marketplace.d.ts +0 -28
  1848. package/lib/rest/preview/Marketplace.js +0 -61
  1849. package/lib/rest/preview/Sync.d.ts +0 -25
  1850. package/lib/rest/preview/Sync.js +0 -46
  1851. package/lib/rest/preview/Understand.d.ts +0 -25
  1852. package/lib/rest/preview/Understand.js +0 -47
  1853. package/lib/rest/preview/Wireless.d.ts +0 -31
  1854. package/lib/rest/preview/Wireless.js +0 -68
  1855. package/lib/rest/preview/deployed_devices/fleet/certificate.d.ts +0 -381
  1856. package/lib/rest/preview/deployed_devices/fleet/certificate.js +0 -775
  1857. package/lib/rest/preview/deployed_devices/fleet/deployment.d.ts +0 -377
  1858. package/lib/rest/preview/deployed_devices/fleet/deployment.js +0 -763
  1859. package/lib/rest/preview/deployed_devices/fleet/device.d.ts +0 -401
  1860. package/lib/rest/preview/deployed_devices/fleet/device.js +0 -784
  1861. package/lib/rest/preview/deployed_devices/fleet/key.d.ts +0 -385
  1862. package/lib/rest/preview/deployed_devices/fleet/key.js +0 -766
  1863. package/lib/rest/preview/deployed_devices/fleet.d.ts +0 -401
  1864. package/lib/rest/preview/deployed_devices/fleet.js +0 -851
  1865. package/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.d.ts +0 -326
  1866. package/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.js +0 -543
  1867. package/lib/rest/preview/hosted_numbers/authorizationDocument.d.ts +0 -398
  1868. package/lib/rest/preview/hosted_numbers/authorizationDocument.js +0 -796
  1869. package/lib/rest/preview/hosted_numbers/hostedNumberOrder.d.ts +0 -478
  1870. package/lib/rest/preview/hosted_numbers/hostedNumberOrder.js +0 -882
  1871. package/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.d.ts +0 -302
  1872. package/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.js +0 -604
  1873. package/lib/rest/preview/marketplace/availableAddOn.d.ts +0 -305
  1874. package/lib/rest/preview/marketplace/availableAddOn.js +0 -613
  1875. package/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.d.ts +0 -327
  1876. package/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.js +0 -674
  1877. package/lib/rest/preview/marketplace/installedAddOn.d.ts +0 -382
  1878. package/lib/rest/preview/marketplace/installedAddOn.js +0 -797
  1879. package/lib/rest/preview/sync/service/document/documentPermission.d.ts +0 -349
  1880. package/lib/rest/preview/sync/service/document/documentPermission.js +0 -748
  1881. package/lib/rest/preview/sync/service/document.d.ts +0 -378
  1882. package/lib/rest/preview/sync/service/document.js +0 -797
  1883. package/lib/rest/preview/sync/service/syncList/syncListItem.d.ts +0 -410
  1884. package/lib/rest/preview/sync/service/syncList/syncListItem.js +0 -805
  1885. package/lib/rest/preview/sync/service/syncList/syncListPermission.d.ts +0 -349
  1886. package/lib/rest/preview/sync/service/syncList/syncListPermission.js +0 -744
  1887. package/lib/rest/preview/sync/service/syncList.d.ts +0 -356
  1888. package/lib/rest/preview/sync/service/syncList.js +0 -754
  1889. package/lib/rest/preview/sync/service/syncMap/syncMapItem.d.ts +0 -412
  1890. package/lib/rest/preview/sync/service/syncMap/syncMapItem.js +0 -803
  1891. package/lib/rest/preview/sync/service/syncMap/syncMapPermission.d.ts +0 -347
  1892. package/lib/rest/preview/sync/service/syncMap/syncMapPermission.js +0 -743
  1893. package/lib/rest/preview/sync/service/syncMap.d.ts +0 -356
  1894. package/lib/rest/preview/sync/service/syncMap.js +0 -752
  1895. package/lib/rest/preview/sync/service.d.ts +0 -406
  1896. package/lib/rest/preview/sync/service.js +0 -841
  1897. package/lib/rest/preview/understand/assistant/assistantFallbackActions.d.ts +0 -174
  1898. package/lib/rest/preview/understand/assistant/assistantFallbackActions.js +0 -400
  1899. package/lib/rest/preview/understand/assistant/assistantInitiationActions.d.ts +0 -174
  1900. package/lib/rest/preview/understand/assistant/assistantInitiationActions.js +0 -401
  1901. package/lib/rest/preview/understand/assistant/dialogue.d.ts +0 -145
  1902. package/lib/rest/preview/understand/assistant/dialogue.js +0 -336
  1903. package/lib/rest/preview/understand/assistant/fieldType/fieldValue.d.ts +0 -350
  1904. package/lib/rest/preview/understand/assistant/fieldType/fieldValue.js +0 -732
  1905. package/lib/rest/preview/understand/assistant/fieldType.d.ts +0 -380
  1906. package/lib/rest/preview/understand/assistant/fieldType.js +0 -807
  1907. package/lib/rest/preview/understand/assistant/modelBuild.d.ts +0 -381
  1908. package/lib/rest/preview/understand/assistant/modelBuild.js +0 -766
  1909. package/lib/rest/preview/understand/assistant/query.d.ts +0 -405
  1910. package/lib/rest/preview/understand/assistant/query.js +0 -804
  1911. package/lib/rest/preview/understand/assistant/styleSheet.d.ts +0 -174
  1912. package/lib/rest/preview/understand/assistant/styleSheet.js +0 -386
  1913. package/lib/rest/preview/understand/assistant/task/field.d.ts +0 -340
  1914. package/lib/rest/preview/understand/assistant/task/field.js +0 -716
  1915. package/lib/rest/preview/understand/assistant/task/sample.d.ts +0 -389
  1916. package/lib/rest/preview/understand/assistant/task/sample.js +0 -800
  1917. package/lib/rest/preview/understand/assistant/task/taskActions.d.ts +0 -180
  1918. package/lib/rest/preview/understand/assistant/task/taskActions.js +0 -415
  1919. package/lib/rest/preview/understand/assistant/task/taskStatistics.d.ts +0 -147
  1920. package/lib/rest/preview/understand/assistant/task/taskStatistics.js +0 -361
  1921. package/lib/rest/preview/understand/assistant/task.d.ts +0 -411
  1922. package/lib/rest/preview/understand/assistant/task.js +0 -910
  1923. package/lib/rest/preview/understand/assistant.d.ts +0 -461
  1924. package/lib/rest/preview/understand/assistant.js +0 -1046
  1925. package/lib/rest/preview/wireless/command.d.ts +0 -358
  1926. package/lib/rest/preview/wireless/command.js +0 -657
  1927. package/lib/rest/preview/wireless/ratePlan.d.ts +0 -401
  1928. package/lib/rest/preview/wireless/ratePlan.js +0 -764
  1929. package/lib/rest/preview/wireless/sim/usage.d.ts +0 -174
  1930. package/lib/rest/preview/wireless/sim/usage.js +0 -346
  1931. package/lib/rest/preview/wireless/sim.d.ts +0 -430
  1932. package/lib/rest/preview/wireless/sim.js +0 -761
  1933. package/lib/rest/pricing/V1.d.ts +0 -31
  1934. package/lib/rest/pricing/V1.js +0 -69
  1935. package/lib/rest/pricing/V2.d.ts +0 -31
  1936. package/lib/rest/pricing/V2.js +0 -68
  1937. package/lib/rest/pricing/v1/messaging/country.d.ts +0 -280
  1938. package/lib/rest/pricing/v1/messaging/country.js +0 -558
  1939. package/lib/rest/pricing/v1/messaging.d.ts +0 -83
  1940. package/lib/rest/pricing/v1/messaging.js +0 -206
  1941. package/lib/rest/pricing/v1/phoneNumber/country.d.ts +0 -278
  1942. package/lib/rest/pricing/v1/phoneNumber/country.js +0 -556
  1943. package/lib/rest/pricing/v1/phoneNumber.d.ts +0 -83
  1944. package/lib/rest/pricing/v1/phoneNumber.js +0 -207
  1945. package/lib/rest/pricing/v1/voice/country.d.ts +0 -280
  1946. package/lib/rest/pricing/v1/voice/country.js +0 -559
  1947. package/lib/rest/pricing/v1/voice/number.d.ts +0 -129
  1948. package/lib/rest/pricing/v1/voice/number.js +0 -315
  1949. package/lib/rest/pricing/v1/voice.d.ts +0 -85
  1950. package/lib/rest/pricing/v1/voice.js +0 -218
  1951. package/lib/rest/pricing/v2/country.d.ts +0 -280
  1952. package/lib/rest/pricing/v2/country.js +0 -563
  1953. package/lib/rest/pricing/v2/number.d.ts +0 -154
  1954. package/lib/rest/pricing/v2/number.js +0 -336
  1955. package/lib/rest/pricing/v2/voice/country.d.ts +0 -280
  1956. package/lib/rest/pricing/v2/voice/country.js +0 -562
  1957. package/lib/rest/pricing/v2/voice/number.d.ts +0 -154
  1958. package/lib/rest/pricing/v2/voice/number.js +0 -337
  1959. package/lib/rest/pricing/v2/voice.d.ts +0 -85
  1960. package/lib/rest/pricing/v2/voice.js +0 -219
  1961. package/lib/rest/proxy/V1.d.ts +0 -25
  1962. package/lib/rest/proxy/V1.js +0 -46
  1963. package/lib/rest/proxy/v1/service/phoneNumber.d.ts +0 -382
  1964. package/lib/rest/proxy/v1/service/phoneNumber.js +0 -774
  1965. package/lib/rest/proxy/v1/service/session/interaction.d.ts +0 -342
  1966. package/lib/rest/proxy/v1/service/session/interaction.js +0 -681
  1967. package/lib/rest/proxy/v1/service/session/participant/messageInteraction.d.ts +0 -362
  1968. package/lib/rest/proxy/v1/service/session/participant/messageInteraction.js +0 -716
  1969. package/lib/rest/proxy/v1/service/session/participant.d.ts +0 -355
  1970. package/lib/rest/proxy/v1/service/session/participant.js +0 -765
  1971. package/lib/rest/proxy/v1/service/session.d.ts +0 -417
  1972. package/lib/rest/proxy/v1/service/session.js +0 -853
  1973. package/lib/rest/proxy/v1/service/shortCode.d.ts +0 -368
  1974. package/lib/rest/proxy/v1/service/shortCode.js +0 -755
  1975. package/lib/rest/proxy/v1/service.d.ts +0 -424
  1976. package/lib/rest/proxy/v1/service.js +0 -886
  1977. package/lib/rest/routes/V2.d.ts +0 -31
  1978. package/lib/rest/routes/V2.js +0 -69
  1979. package/lib/rest/routes/v2/phoneNumber.d.ts +0 -168
  1980. package/lib/rest/routes/v2/phoneNumber.js +0 -394
  1981. package/lib/rest/routes/v2/sipDomain.d.ts +0 -168
  1982. package/lib/rest/routes/v2/sipDomain.js +0 -383
  1983. package/lib/rest/routes/v2/trunk.d.ts +0 -168
  1984. package/lib/rest/routes/v2/trunk.js +0 -390
  1985. package/lib/rest/serverless/V1.d.ts +0 -25
  1986. package/lib/rest/serverless/V1.js +0 -46
  1987. package/lib/rest/serverless/v1/service/asset/assetVersion.d.ts +0 -306
  1988. package/lib/rest/serverless/v1/service/asset/assetVersion.js +0 -621
  1989. package/lib/rest/serverless/v1/service/asset.d.ts +0 -358
  1990. package/lib/rest/serverless/v1/service/asset.js +0 -784
  1991. package/lib/rest/serverless/v1/service/build/buildStatus.d.ts +0 -143
  1992. package/lib/rest/serverless/v1/service/build/buildStatus.js +0 -346
  1993. package/lib/rest/serverless/v1/service/build.d.ts +0 -359
  1994. package/lib/rest/serverless/v1/service/build.js +0 -742
  1995. package/lib/rest/serverless/v1/service/environment/deployment.d.ts +0 -326
  1996. package/lib/rest/serverless/v1/service/environment/deployment.js +0 -662
  1997. package/lib/rest/serverless/v1/service/environment/log.d.ts +0 -332
  1998. package/lib/rest/serverless/v1/service/environment/log.js +0 -639
  1999. package/lib/rest/serverless/v1/service/environment/variable.d.ts +0 -373
  2000. package/lib/rest/serverless/v1/service/environment/variable.js +0 -791
  2001. package/lib/rest/serverless/v1/service/environment.d.ts +0 -357
  2002. package/lib/rest/serverless/v1/service/environment.js +0 -799
  2003. package/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.d.ts +0 -147
  2004. package/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.js +0 -375
  2005. package/lib/rest/serverless/v1/service/function/functionVersion.d.ts +0 -315
  2006. package/lib/rest/serverless/v1/service/function/functionVersion.js +0 -665
  2007. package/lib/rest/serverless/v1/service/function.d.ts +0 -358
  2008. package/lib/rest/serverless/v1/service/function.js +0 -787
  2009. package/lib/rest/serverless/v1/service.d.ts +0 -403
  2010. package/lib/rest/serverless/v1/service.js +0 -879
  2011. package/lib/rest/studio/V1.d.ts +0 -25
  2012. package/lib/rest/studio/V1.js +0 -46
  2013. package/lib/rest/studio/V2.d.ts +0 -28
  2014. package/lib/rest/studio/V2.js +0 -58
  2015. package/lib/rest/studio/v1/flow/engagement/engagementContext.d.ts +0 -129
  2016. package/lib/rest/studio/v1/flow/engagement/engagementContext.js +0 -336
  2017. package/lib/rest/studio/v1/flow/engagement/step/stepContext.d.ts +0 -135
  2018. package/lib/rest/studio/v1/flow/engagement/step/stepContext.js +0 -348
  2019. package/lib/rest/studio/v1/flow/engagement/step.d.ts +0 -307
  2020. package/lib/rest/studio/v1/flow/engagement/step.js +0 -633
  2021. package/lib/rest/studio/v1/flow/engagement.d.ts +0 -342
  2022. package/lib/rest/studio/v1/flow/engagement.js +0 -753
  2023. package/lib/rest/studio/v1/flow/execution/executionContext.d.ts +0 -129
  2024. package/lib/rest/studio/v1/flow/execution/executionContext.js +0 -336
  2025. package/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.d.ts +0 -135
  2026. package/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.js +0 -349
  2027. package/lib/rest/studio/v1/flow/execution/executionStep.d.ts +0 -307
  2028. package/lib/rest/studio/v1/flow/execution/executionStep.js +0 -645
  2029. package/lib/rest/studio/v1/flow/execution.d.ts +0 -377
  2030. package/lib/rest/studio/v1/flow/execution.js +0 -831
  2031. package/lib/rest/studio/v1/flow.d.ts +0 -314
  2032. package/lib/rest/studio/v1/flow.js +0 -672
  2033. package/lib/rest/studio/v2/flow/execution/executionContext.d.ts +0 -129
  2034. package/lib/rest/studio/v2/flow/execution/executionContext.js +0 -336
  2035. package/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.d.ts +0 -135
  2036. package/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.js +0 -349
  2037. package/lib/rest/studio/v2/flow/execution/executionStep.d.ts +0 -307
  2038. package/lib/rest/studio/v2/flow/execution/executionStep.js +0 -645
  2039. package/lib/rest/studio/v2/flow/execution.d.ts +0 -375
  2040. package/lib/rest/studio/v2/flow/execution.js +0 -829
  2041. package/lib/rest/studio/v2/flow/flowRevision.d.ts +0 -298
  2042. package/lib/rest/studio/v2/flow/flowRevision.js +0 -589
  2043. package/lib/rest/studio/v2/flow/testUser.d.ts +0 -144
  2044. package/lib/rest/studio/v2/flow/testUser.js +0 -373
  2045. package/lib/rest/studio/v2/flow.d.ts +0 -384
  2046. package/lib/rest/studio/v2/flow.js +0 -847
  2047. package/lib/rest/studio/v2/flowValidate.d.ts +0 -101
  2048. package/lib/rest/studio/v2/flowValidate.js +0 -249
  2049. package/lib/rest/supersim/V1.d.ts +0 -49
  2050. package/lib/rest/supersim/V1.js +0 -139
  2051. package/lib/rest/supersim/v1/esimProfile.d.ts +0 -350
  2052. package/lib/rest/supersim/v1/esimProfile.js +0 -663
  2053. package/lib/rest/supersim/v1/fleet.d.ts +0 -397
  2054. package/lib/rest/supersim/v1/fleet.js +0 -770
  2055. package/lib/rest/supersim/v1/ipCommand.d.ts +0 -362
  2056. package/lib/rest/supersim/v1/ipCommand.js +0 -681
  2057. package/lib/rest/supersim/v1/network.d.ts +0 -308
  2058. package/lib/rest/supersim/v1/network.js +0 -582
  2059. package/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.d.ts +0 -328
  2060. package/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.js +0 -704
  2061. package/lib/rest/supersim/v1/networkAccessProfile.d.ts +0 -362
  2062. package/lib/rest/supersim/v1/networkAccessProfile.js +0 -724
  2063. package/lib/rest/supersim/v1/settingsUpdate.d.ts +0 -261
  2064. package/lib/rest/supersim/v1/settingsUpdate.js +0 -466
  2065. package/lib/rest/supersim/v1/sim/billingPeriod.d.ts +0 -249
  2066. package/lib/rest/supersim/v1/sim/billingPeriod.js +0 -456
  2067. package/lib/rest/supersim/v1/sim/simIpAddress.d.ts +0 -246
  2068. package/lib/rest/supersim/v1/sim/simIpAddress.js +0 -448
  2069. package/lib/rest/supersim/v1/sim.d.ts +0 -399
  2070. package/lib/rest/supersim/v1/sim.js +0 -795
  2071. package/lib/rest/supersim/v1/smsCommand.d.ts +0 -342
  2072. package/lib/rest/supersim/v1/smsCommand.js +0 -656
  2073. package/lib/rest/supersim/v1/usageRecord.d.ts +0 -313
  2074. package/lib/rest/supersim/v1/usageRecord.js +0 -530
  2075. package/lib/rest/sync/V1.d.ts +0 -25
  2076. package/lib/rest/sync/V1.js +0 -46
  2077. package/lib/rest/sync/v1/service/document/documentPermission.d.ts +0 -333
  2078. package/lib/rest/sync/v1/service/document/documentPermission.js +0 -738
  2079. package/lib/rest/sync/v1/service/document.d.ts +0 -380
  2080. package/lib/rest/sync/v1/service/document.js +0 -803
  2081. package/lib/rest/sync/v1/service/syncList/syncListItem.d.ts +0 -420
  2082. package/lib/rest/sync/v1/service/syncList/syncListItem.js +0 -838
  2083. package/lib/rest/sync/v1/service/syncList/syncListPermission.d.ts +0 -333
  2084. package/lib/rest/sync/v1/service/syncList/syncListPermission.js +0 -735
  2085. package/lib/rest/sync/v1/service/syncList.d.ts +0 -383
  2086. package/lib/rest/sync/v1/service/syncList.js +0 -825
  2087. package/lib/rest/sync/v1/service/syncMap/syncMapItem.d.ts +0 -422
  2088. package/lib/rest/sync/v1/service/syncMap/syncMapItem.js +0 -836
  2089. package/lib/rest/sync/v1/service/syncMap/syncMapPermission.d.ts +0 -331
  2090. package/lib/rest/sync/v1/service/syncMap/syncMapPermission.js +0 -732
  2091. package/lib/rest/sync/v1/service/syncMap.d.ts +0 -383
  2092. package/lib/rest/sync/v1/service/syncMap.js +0 -823
  2093. package/lib/rest/sync/v1/service/syncStream/streamMessage.d.ts +0 -101
  2094. package/lib/rest/sync/v1/service/syncStream/streamMessage.js +0 -249
  2095. package/lib/rest/sync/v1/service/syncStream.d.ts +0 -370
  2096. package/lib/rest/sync/v1/service/syncStream.js +0 -782
  2097. package/lib/rest/sync/v1/service.d.ts +0 -417
  2098. package/lib/rest/sync/v1/service.js +0 -903
  2099. package/lib/rest/taskrouter/V1.d.ts +0 -25
  2100. package/lib/rest/taskrouter/V1.js +0 -46
  2101. package/lib/rest/taskrouter/v1/workspace/activity.d.ts +0 -367
  2102. package/lib/rest/taskrouter/v1/workspace/activity.js +0 -759
  2103. package/lib/rest/taskrouter/v1/workspace/event.d.ts +0 -372
  2104. package/lib/rest/taskrouter/v1/workspace/event.js +0 -650
  2105. package/lib/rest/taskrouter/v1/workspace/task/reservation.d.ts +0 -459
  2106. package/lib/rest/taskrouter/v1/workspace/task/reservation.js +0 -949
  2107. package/lib/rest/taskrouter/v1/workspace/task.d.ts +0 -487
  2108. package/lib/rest/taskrouter/v1/workspace/task.js +0 -903
  2109. package/lib/rest/taskrouter/v1/workspace/taskChannel.d.ts +0 -361
  2110. package/lib/rest/taskrouter/v1/workspace/taskChannel.js +0 -771
  2111. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.d.ts +0 -194
  2112. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.js +0 -442
  2113. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.d.ts +0 -170
  2114. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.js +0 -389
  2115. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.d.ts +0 -162
  2116. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.js +0 -388
  2117. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.d.ts +0 -279
  2118. package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.js +0 -498
  2119. package/lib/rest/taskrouter/v1/workspace/taskQueue.d.ts +0 -434
  2120. package/lib/rest/taskrouter/v1/workspace/taskQueue.js +0 -949
  2121. package/lib/rest/taskrouter/v1/workspace/worker/reservation.d.ts +0 -447
  2122. package/lib/rest/taskrouter/v1/workspace/worker/reservation.js +0 -934
  2123. package/lib/rest/taskrouter/v1/workspace/worker/workerChannel.d.ts +0 -339
  2124. package/lib/rest/taskrouter/v1/workspace/worker/workerChannel.js +0 -693
  2125. package/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.d.ts +0 -158
  2126. package/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.js +0 -378
  2127. package/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.d.ts +0 -168
  2128. package/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.js +0 -383
  2129. package/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.d.ts +0 -148
  2130. package/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.js +0 -342
  2131. package/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.d.ts +0 -160
  2132. package/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.js +0 -369
  2133. package/lib/rest/taskrouter/v1/workspace/worker.d.ts +0 -481
  2134. package/lib/rest/taskrouter/v1/workspace/worker.js +0 -1019
  2135. package/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.d.ts +0 -194
  2136. package/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.js +0 -440
  2137. package/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.d.ts +0 -160
  2138. package/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.js +0 -374
  2139. package/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.d.ts +0 -162
  2140. package/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.js +0 -384
  2141. package/lib/rest/taskrouter/v1/workspace/workflow.d.ts +0 -406
  2142. package/lib/rest/taskrouter/v1/workspace/workflow.js +0 -904
  2143. package/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.d.ts +0 -188
  2144. package/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.js +0 -416
  2145. package/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.d.ts +0 -158
  2146. package/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.js +0 -350
  2147. package/lib/rest/taskrouter/v1/workspace/workspaceStatistics.d.ts +0 -156
  2148. package/lib/rest/taskrouter/v1/workspace/workspaceStatistics.js +0 -358
  2149. package/lib/rest/taskrouter/v1/workspace.d.ts +0 -461
  2150. package/lib/rest/taskrouter/v1/workspace.js +0 -1078
  2151. package/lib/rest/trunking/V1.d.ts +0 -25
  2152. package/lib/rest/trunking/V1.js +0 -46
  2153. package/lib/rest/trunking/v1/trunk/credentialList.d.ts +0 -314
  2154. package/lib/rest/trunking/v1/trunk/credentialList.js +0 -678
  2155. package/lib/rest/trunking/v1/trunk/ipAccessControlList.d.ts +0 -316
  2156. package/lib/rest/trunking/v1/trunk/ipAccessControlList.js +0 -680
  2157. package/lib/rest/trunking/v1/trunk/originationUrl.d.ts +0 -373
  2158. package/lib/rest/trunking/v1/trunk/originationUrl.js +0 -791
  2159. package/lib/rest/trunking/v1/trunk/phoneNumber.d.ts +0 -354
  2160. package/lib/rest/trunking/v1/trunk/phoneNumber.js +0 -726
  2161. package/lib/rest/trunking/v1/trunk/recording.d.ts +0 -160
  2162. package/lib/rest/trunking/v1/trunk/recording.js +0 -371
  2163. package/lib/rest/trunking/v1/trunk.d.ts +0 -438
  2164. package/lib/rest/trunking/v1/trunk.js +0 -941
  2165. package/lib/rest/trusthub/V1.d.ts +0 -43
  2166. package/lib/rest/trusthub/V1.js +0 -120
  2167. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.d.ts +0 -334
  2168. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.js +0 -736
  2169. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.d.ts +0 -316
  2170. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.js +0 -698
  2171. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.d.ts +0 -310
  2172. package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.js +0 -647
  2173. package/lib/rest/trusthub/v1/customerProfiles.d.ts +0 -410
  2174. package/lib/rest/trusthub/v1/customerProfiles.js +0 -883
  2175. package/lib/rest/trusthub/v1/endUser.d.ts +0 -353
  2176. package/lib/rest/trusthub/v1/endUser.js +0 -736
  2177. package/lib/rest/trusthub/v1/endUserType.d.ts +0 -278
  2178. package/lib/rest/trusthub/v1/endUserType.js +0 -563
  2179. package/lib/rest/trusthub/v1/policies.d.ts +0 -278
  2180. package/lib/rest/trusthub/v1/policies.js +0 -555
  2181. package/lib/rest/trusthub/v1/supportingDocument.d.ts +0 -361
  2182. package/lib/rest/trusthub/v1/supportingDocument.js +0 -746
  2183. package/lib/rest/trusthub/v1/supportingDocumentType.d.ts +0 -280
  2184. package/lib/rest/trusthub/v1/supportingDocumentType.js +0 -571
  2185. package/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.d.ts +0 -334
  2186. package/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.js +0 -731
  2187. package/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.d.ts +0 -316
  2188. package/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.js +0 -697
  2189. package/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.d.ts +0 -308
  2190. package/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.js +0 -634
  2191. package/lib/rest/trusthub/v1/trustProducts.d.ts +0 -410
  2192. package/lib/rest/trusthub/v1/trustProducts.js +0 -881
  2193. package/lib/rest/verify/V2.d.ts +0 -40
  2194. package/lib/rest/verify/V2.js +0 -105
  2195. package/lib/rest/verify/v2/form.d.ts +0 -137
  2196. package/lib/rest/verify/v2/form.js +0 -320
  2197. package/lib/rest/verify/v2/safelist.d.ts +0 -161
  2198. package/lib/rest/verify/v2/safelist.js +0 -408
  2199. package/lib/rest/verify/v2/service/accessToken.d.ts +0 -163
  2200. package/lib/rest/verify/v2/service/accessToken.js +0 -397
  2201. package/lib/rest/verify/v2/service/entity/challenge/notification.d.ts +0 -124
  2202. package/lib/rest/verify/v2/service/entity/challenge/notification.js +0 -268
  2203. package/lib/rest/verify/v2/service/entity/challenge.d.ts +0 -410
  2204. package/lib/rest/verify/v2/service/entity/challenge.js +0 -799
  2205. package/lib/rest/verify/v2/service/entity/factor.d.ts +0 -375
  2206. package/lib/rest/verify/v2/service/entity/factor.js +0 -750
  2207. package/lib/rest/verify/v2/service/entity/newFactor.d.ts +0 -163
  2208. package/lib/rest/verify/v2/service/entity/newFactor.js +0 -311
  2209. package/lib/rest/verify/v2/service/entity.d.ts +0 -337
  2210. package/lib/rest/verify/v2/service/entity.js +0 -765
  2211. package/lib/rest/verify/v2/service/messagingConfiguration.d.ts +0 -341
  2212. package/lib/rest/verify/v2/service/messagingConfiguration.js +0 -762
  2213. package/lib/rest/verify/v2/service/rateLimit/bucket.d.ts +0 -361
  2214. package/lib/rest/verify/v2/service/rateLimit/bucket.js +0 -769
  2215. package/lib/rest/verify/v2/service/rateLimit.d.ts +0 -362
  2216. package/lib/rest/verify/v2/service/rateLimit.js +0 -776
  2217. package/lib/rest/verify/v2/service/verification.d.ts +0 -218
  2218. package/lib/rest/verify/v2/service/verification.js +0 -511
  2219. package/lib/rest/verify/v2/service/verificationCheck.d.ts +0 -134
  2220. package/lib/rest/verify/v2/service/verificationCheck.js +0 -280
  2221. package/lib/rest/verify/v2/service/webhook.d.ts +0 -381
  2222. package/lib/rest/verify/v2/service/webhook.js +0 -779
  2223. package/lib/rest/verify/v2/service.d.ts +0 -488
  2224. package/lib/rest/verify/v2/service.js +0 -1076
  2225. package/lib/rest/verify/v2/template.d.ts +0 -244
  2226. package/lib/rest/verify/v2/template.js +0 -444
  2227. package/lib/rest/verify/v2/verificationAttempt.d.ts +0 -356
  2228. package/lib/rest/verify/v2/verificationAttempt.js +0 -637
  2229. package/lib/rest/verify/v2/verificationAttemptsSummary.d.ts +0 -156
  2230. package/lib/rest/verify/v2/verificationAttemptsSummary.js +0 -362
  2231. package/lib/rest/video/V1.d.ts +0 -40
  2232. package/lib/rest/video/V1.js +0 -106
  2233. package/lib/rest/video/v1/composition.d.ts +0 -382
  2234. package/lib/rest/video/v1/composition.js +0 -749
  2235. package/lib/rest/video/v1/compositionHook.d.ts +0 -411
  2236. package/lib/rest/video/v1/compositionHook.js +0 -842
  2237. package/lib/rest/video/v1/compositionSettings.d.ts +0 -160
  2238. package/lib/rest/video/v1/compositionSettings.js +0 -411
  2239. package/lib/rest/video/v1/recording.d.ts +0 -360
  2240. package/lib/rest/video/v1/recording.js +0 -680
  2241. package/lib/rest/video/v1/recordingSettings.d.ts +0 -160
  2242. package/lib/rest/video/v1/recordingSettings.js +0 -409
  2243. package/lib/rest/video/v1/room/recording.d.ts +0 -350
  2244. package/lib/rest/video/v1/room/recording.js +0 -676
  2245. package/lib/rest/video/v1/room/roomParticipant/roomParticipantAnonymize.d.ts +0 -143
  2246. package/lib/rest/video/v1/room/roomParticipant/roomParticipantAnonymize.js +0 -337
  2247. package/lib/rest/video/v1/room/roomParticipant/roomParticipantPublishedTrack.d.ts +0 -296
  2248. package/lib/rest/video/v1/room/roomParticipant/roomParticipantPublishedTrack.js +0 -607
  2249. package/lib/rest/video/v1/room/roomParticipant/roomParticipantSubscribeRule.d.ts +0 -119
  2250. package/lib/rest/video/v1/room/roomParticipant/roomParticipantSubscribeRule.js +0 -303
  2251. package/lib/rest/video/v1/room/roomParticipant/roomParticipantSubscribedTrack.d.ts +0 -298
  2252. package/lib/rest/video/v1/room/roomParticipant/roomParticipantSubscribedTrack.js +0 -610
  2253. package/lib/rest/video/v1/room/roomParticipant.d.ts +0 -385
  2254. package/lib/rest/video/v1/room/roomParticipant.js +0 -812
  2255. package/lib/rest/video/v1/room/roomRecordingRule.d.ts +0 -114
  2256. package/lib/rest/video/v1/room/roomRecordingRule.js +0 -278
  2257. package/lib/rest/video/v1/room.d.ts +0 -440
  2258. package/lib/rest/video/v1/room.js +0 -859
  2259. package/lib/rest/voice/V1.d.ts +0 -40
  2260. package/lib/rest/voice/V1.js +0 -107
  2261. package/lib/rest/voice/v1/archivedCall.d.ts +0 -136
  2262. package/lib/rest/voice/v1/archivedCall.js +0 -325
  2263. package/lib/rest/voice/v1/byocTrunk.d.ts +0 -403
  2264. package/lib/rest/voice/v1/byocTrunk.js +0 -807
  2265. package/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.d.ts +0 -375
  2266. package/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.js +0 -794
  2267. package/lib/rest/voice/v1/connectionPolicy.d.ts +0 -358
  2268. package/lib/rest/voice/v1/connectionPolicy.js +0 -747
  2269. package/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.d.ts +0 -107
  2270. package/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.js +0 -250
  2271. package/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.d.ts +0 -247
  2272. package/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.js +0 -455
  2273. package/lib/rest/voice/v1/dialingPermissions/country.d.ts +0 -345
  2274. package/lib/rest/voice/v1/dialingPermissions/country.js +0 -659
  2275. package/lib/rest/voice/v1/dialingPermissions/settings.d.ts +0 -166
  2276. package/lib/rest/voice/v1/dialingPermissions/settings.js +0 -381
  2277. package/lib/rest/voice/v1/dialingPermissions.d.ts +0 -44
  2278. package/lib/rest/voice/v1/dialingPermissions.js +0 -115
  2279. package/lib/rest/voice/v1/ipRecord.d.ts +0 -351
  2280. package/lib/rest/voice/v1/ipRecord.js +0 -724
  2281. package/lib/rest/voice/v1/sourceIpMapping.d.ts +0 -333
  2282. package/lib/rest/voice/v1/sourceIpMapping.js +0 -725
  2283. package/lib/rest/wireless/V1.d.ts +0 -34
  2284. package/lib/rest/wireless/V1.js +0 -80
  2285. package/lib/rest/wireless/v1/command.d.ts +0 -364
  2286. package/lib/rest/wireless/v1/command.js +0 -709
  2287. package/lib/rest/wireless/v1/ratePlan.d.ts +0 -393
  2288. package/lib/rest/wireless/v1/ratePlan.js +0 -776
  2289. package/lib/rest/wireless/v1/sim/dataSession.d.ts +0 -263
  2290. package/lib/rest/wireless/v1/sim/dataSession.js +0 -483
  2291. package/lib/rest/wireless/v1/sim/usageRecord.d.ts +0 -261
  2292. package/lib/rest/wireless/v1/sim/usageRecord.js +0 -471
  2293. package/lib/rest/wireless/v1/sim.d.ts +0 -445
  2294. package/lib/rest/wireless/v1/sim.js +0 -872
  2295. package/lib/rest/wireless/v1/usageRecord.d.ts +0 -256
  2296. package/lib/rest/wireless/v1/usageRecord.js +0 -464
  2297. package/lib/twiml/FaxResponse.d.ts +0 -51
  2298. package/lib/twiml/FaxResponse.js +0 -72
  2299. package/lib/twiml/MessagingResponse.d.ts +0 -107
  2300. package/lib/twiml/MessagingResponse.js +0 -177
  2301. package/lib/twiml/TwiML.js +0 -83
  2302. package/lib/twiml/VoiceResponse.d.ts +0 -2829
  2303. package/lib/twiml/VoiceResponse.js +0 -4509
  2304. package/lib/webhooks/webhooks.d.ts +0 -153
  2305. package/lib/webhooks/webhooks.js +0 -299
package/README.md CHANGED
@@ -19,12 +19,9 @@ The Node library documentation can be found [here][libdocs].
19
19
 
20
20
  This library supports the following Node.js implementations:
21
21
 
22
- * Node.js 6
23
- * Node.js 8
24
- * Node.js 10
25
- * Node.js 12
26
22
  * Node.js 14
27
23
  * Node.js 16
24
+ * Node.js 18
28
25
 
29
26
  TypeScript is supported for TypeScript version 2.9 and above.
30
27
 
@@ -32,6 +29,12 @@ TypeScript is supported for TypeScript version 2.9 and above.
32
29
 
33
30
  `npm install twilio` or `yarn add twilio`
34
31
 
32
+ ### Installing Release Candidates
33
+
34
+ Or, if you're wanting to install the latest release candidate use:
35
+
36
+ `npm install twilio@rc` or `yarn add twilio@rc`
37
+
35
38
  ## Sample Usage
36
39
 
37
40
  Check out these [code examples](examples) in JavaScript and TypeScript to get up and running quickly.
@@ -42,15 +45,28 @@ Check out these [code examples](examples) in JavaScript and TypeScript to get up
42
45
 
43
46
  If your environment requires SSL decryption, you can set the path to CA bundle in the env var `TWILIO_CA_BUNDLE`.
44
47
 
48
+ ### Client Initialization
49
+ If you invoke any V2010 operations without specifying an account SID, `twilio-node` will automatically use the `TWILIO_ACCOUNT_SID` value that the client was initialized with. This is useful for when you'd like to, for example, fetch resources for your main account but also your subaccount. See below:
50
+
51
+ ```javascript
52
+ var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console
53
+ var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console
54
+ var subaccountSid = process.env.TWILIO_ACCOUNT_SUBACCOUNT_SID; // Your Subaccount SID from www.twilio.com/console
55
+
56
+ const client = require('twilio')(accountSid, authToken);
57
+ const mainAccountCalls = client.api.v2010.account.calls.list; // SID not specified, so defaults to accountSid
58
+ const subaccountCalls = client.api.v2010.account(subaccountSid).calls.list // SID specified as subaccountSid
59
+ ```
60
+
45
61
  ### Lazy Loading
46
62
 
47
- `twilio-node` supports lazy loading required modules for faster loading time. Lazy loading is disabled by default. To enable lazy loading, simply instantiate the Twilio client with the `lazyLoading` flag set to `true`:
63
+ `twilio-node` supports lazy loading required modules for faster loading time. Lazy loading is enabled by default. To disable lazy loading, simply instantiate the Twilio client with the `lazyLoading` flag set to `false`:
48
64
  ```javascript
49
65
  var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console
50
66
  var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console
51
67
 
52
68
  const client = require('twilio')(accountSid, authToken, {
53
- lazyLoading: true
69
+ lazyLoading: false
54
70
  });
55
71
  ```
56
72
 
@@ -0,0 +1,12 @@
1
+ declare const _exports: {
2
+ (accountSid: any, authToken: any, opts: any): import("./lib/rest/Twilio");
3
+ Twilio: typeof import("./lib/rest/Twilio");
4
+ jwt: typeof import("./lib").jwt;
5
+ twiml: typeof import("./lib").twiml;
6
+ RequestClient: typeof import("./lib/base/RequestClient");
7
+ validateRequest: typeof import("./lib/webhooks/webhooks").validateRequest;
8
+ validateRequestWithBody: typeof import("./lib/webhooks/webhooks").validateRequestWithBody;
9
+ validateExpressRequest: typeof import("./lib/webhooks/webhooks").validateExpressRequest;
10
+ webhook: typeof import("./lib/webhooks/webhooks").webhook;
11
+ };
12
+ export = _exports;
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require("./lib");
@@ -0,0 +1,84 @@
1
+ /// <reference types="node" />
2
+ import * as RequestClient from "./RequestClient";
3
+ import { HttpMethod } from "../interfaces";
4
+ export interface ClientOpts {
5
+ httpClient?: RequestClient;
6
+ accountSid?: string;
7
+ env?: NodeJS.ProcessEnv;
8
+ edge?: string;
9
+ region?: string;
10
+ lazyLoading?: boolean;
11
+ logLevel?: string;
12
+ userAgentExtensions?: string[];
13
+ }
14
+ export interface RequestOpts {
15
+ method?: HttpMethod;
16
+ uri?: string;
17
+ username?: string;
18
+ password?: string;
19
+ headers?: Headers;
20
+ params?: object;
21
+ data?: object;
22
+ timeout?: number;
23
+ allowRedirects?: boolean;
24
+ logLevel?: string;
25
+ }
26
+ /**
27
+ * Parent class for Twilio Client that implements request & validation logic
28
+ *
29
+ * @constructor BaseTwilio
30
+ *
31
+ * @param {string} username -
32
+ * The username used for authentication. This is normally account sid, but if using key/secret auth will be
33
+ * the api key sid.
34
+ * @param {string} password -
35
+ * The password used for authentication. This is normally auth token, but if using key/secret auth will be
36
+ * the secret.
37
+ * @param {ClientOpts} [opts] - The options argument
38
+ *
39
+ * @returns {BaseTwilio} A new instance of BaseTwilio
40
+ */
41
+ export declare class BaseTwilio {
42
+ username?: string;
43
+ password?: string;
44
+ accountSid?: string;
45
+ opts?: ClientOpts;
46
+ env?: NodeJS.ProcessEnv;
47
+ edge?: string;
48
+ region?: string;
49
+ logLevel?: string;
50
+ userAgentExtensions?: string[];
51
+ _httpClient?: RequestClient;
52
+ constructor(username?: string, password?: string, opts?: ClientOpts);
53
+ get httpClient(): RequestClient;
54
+ /**
55
+ * Makes a request to the Twilio API using the configured http client.
56
+ * Authentication information is automatically added if none is provided.
57
+ *
58
+ * @function request
59
+ * @memberof BaseTwilio#
60
+ *
61
+ * @param {RequestOpts} opts - The options argument
62
+ */
63
+ request(opts: RequestOpts): Promise<import("../http/response")<object>>;
64
+ /**
65
+ * Adds a region and/or edge to a given hostname
66
+ *
67
+ * @function getHostname
68
+ * @memberof BaseTwilio#
69
+ *
70
+ * @param {string} hostname - A URI hostname (e.g. api.twilio.com)
71
+ * @param {string | undefined} targetEdge - The targeted edge location (e.g. sydney)
72
+ * @param {string | undefined} targetRegion - The targeted region location (e.g. au1)
73
+ */
74
+ getHostname(hostname: string, targetEdge: string | undefined, targetRegion: string | undefined): string;
75
+ /**
76
+ * Validates that a request to the new SSL certificate is successful.
77
+ *
78
+ * @throws {RestException} if the request fails
79
+ *
80
+ * @function validateSslCert
81
+ * @memberof BaseTwilio#
82
+ */
83
+ validateSslCert(): Promise<any>;
84
+ }
@@ -0,0 +1,165 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BaseTwilio = void 0;
4
+ const os = require("os"); /* jshint ignore:line */
5
+ const url = require("url"); /* jshint ignore:line */
6
+ const moduleInfo = require("../../package.json"); /* jshint ignore:line */
7
+ const util = require("util"); /* jshint ignore:line */
8
+ const RestException = require("../base/RestException"); /* jshint ignore:line */
9
+ /* jshint ignore:start */
10
+ /**
11
+ * Parent class for Twilio Client that implements request & validation logic
12
+ *
13
+ * @constructor BaseTwilio
14
+ *
15
+ * @param {string} username -
16
+ * The username used for authentication. This is normally account sid, but if using key/secret auth will be
17
+ * the api key sid.
18
+ * @param {string} password -
19
+ * The password used for authentication. This is normally auth token, but if using key/secret auth will be
20
+ * the secret.
21
+ * @param {ClientOpts} [opts] - The options argument
22
+ *
23
+ * @returns {BaseTwilio} A new instance of BaseTwilio
24
+ */
25
+ /* jshint ignore:end */
26
+ class BaseTwilio {
27
+ constructor(username, password, opts) {
28
+ this.opts = opts || {};
29
+ this.env = this.opts.env || process.env;
30
+ this.username = username || this.env.TWILIO_ACCOUNT_SID;
31
+ this.password = password || this.env.TWILIO_AUTH_TOKEN;
32
+ this.accountSid = this.opts.accountSid || this.username;
33
+ this.edge = this.opts.edge || this.env.TWILIO_EDGE;
34
+ this.region = this.opts.region || this.env.TWILIO_REGION;
35
+ this.logLevel = this.opts.logLevel || this.env.TWILIO_LOG_LEVEL;
36
+ this.userAgentExtensions = this.opts.userAgentExtensions || [];
37
+ this._httpClient = this.opts.httpClient;
38
+ if (this.opts.lazyLoading === false) {
39
+ this._httpClient = this.httpClient;
40
+ }
41
+ if (!this.username) {
42
+ throw new Error("username is required");
43
+ }
44
+ if (!this.password) {
45
+ throw new Error("password is required");
46
+ }
47
+ if (!this.accountSid?.startsWith("AC")) {
48
+ const apiKeyMsg = this.accountSid.startsWith("SK")
49
+ ? ". The given SID indicates an API Key which requires the accountSid to be passed as an additional option"
50
+ : "";
51
+ throw new Error("accountSid must start with AC" + apiKeyMsg);
52
+ }
53
+ }
54
+ get httpClient() {
55
+ if (!this._httpClient) {
56
+ const RequestClient = require("../base/RequestClient"); /* jshint ignore:line */
57
+ this._httpClient = new RequestClient();
58
+ }
59
+ return this._httpClient;
60
+ }
61
+ /* jshint ignore:start */
62
+ /**
63
+ * Makes a request to the Twilio API using the configured http client.
64
+ * Authentication information is automatically added if none is provided.
65
+ *
66
+ * @function request
67
+ * @memberof BaseTwilio#
68
+ *
69
+ * @param {RequestOpts} opts - The options argument
70
+ */
71
+ /* jshint ignore:end */
72
+ request(opts) {
73
+ opts = opts || {};
74
+ if (!opts.method) {
75
+ throw new Error("method is required");
76
+ }
77
+ if (!opts.uri) {
78
+ throw new Error("uri is required");
79
+ }
80
+ const username = opts.username || this.username;
81
+ const password = opts.password || this.password;
82
+ const headers = opts.headers || {};
83
+ const pkgVersion = moduleInfo.version;
84
+ const osName = os.platform();
85
+ const osArch = os.arch();
86
+ const nodeVersion = process.version;
87
+ headers["User-Agent"] = util.format("twilio-node/%s (%s %s) node/%s", pkgVersion, osName, osArch, nodeVersion);
88
+ this.userAgentExtensions?.forEach((extension) => {
89
+ headers["User-Agent"] += ` ${extension}`;
90
+ });
91
+ headers["Accept-Charset"] = "utf-8";
92
+ if (opts.method === "post" && !headers["Content-Type"]) {
93
+ headers["Content-Type"] = "application/x-www-form-urlencoded";
94
+ }
95
+ if (!headers["Accept"]) {
96
+ headers["Accept"] = "application/json";
97
+ }
98
+ var uri = new url.URL(opts.uri);
99
+ uri.hostname = this.getHostname(uri.hostname, this.edge, this.region);
100
+ return this.httpClient?.request({
101
+ method: opts.method,
102
+ uri: uri.href,
103
+ username: username,
104
+ password: password,
105
+ headers: headers,
106
+ params: opts.params,
107
+ data: opts.data,
108
+ timeout: opts.timeout,
109
+ allowRedirects: opts.allowRedirects,
110
+ logLevel: opts.logLevel,
111
+ });
112
+ }
113
+ /* jshint ignore:start */
114
+ /**
115
+ * Adds a region and/or edge to a given hostname
116
+ *
117
+ * @function getHostname
118
+ * @memberof BaseTwilio#
119
+ *
120
+ * @param {string} hostname - A URI hostname (e.g. api.twilio.com)
121
+ * @param {string | undefined} targetEdge - The targeted edge location (e.g. sydney)
122
+ * @param {string | undefined} targetRegion - The targeted region location (e.g. au1)
123
+ */
124
+ /* jshint ignore:end */
125
+ getHostname(hostname, targetEdge, targetRegion) {
126
+ const defaultRegion = "us1";
127
+ const domain = hostname.split(".").slice(-2).join(".");
128
+ const prefix = hostname.split("." + domain)[0];
129
+ let [product, edge, region] = prefix.split(".");
130
+ if (edge && !region) {
131
+ region = edge;
132
+ edge = undefined;
133
+ }
134
+ region = targetRegion || region || (targetEdge && defaultRegion);
135
+ if (!region) {
136
+ return hostname;
137
+ }
138
+ edge = targetEdge || edge;
139
+ return [product, edge, region, domain].filter((part) => part).join(".");
140
+ }
141
+ /* jshint ignore:start */
142
+ /**
143
+ * Validates that a request to the new SSL certificate is successful.
144
+ *
145
+ * @throws {RestException} if the request fails
146
+ *
147
+ * @function validateSslCert
148
+ * @memberof BaseTwilio#
149
+ */
150
+ /* jshint ignore:end */
151
+ validateSslCert() {
152
+ return this.httpClient
153
+ ?.request({
154
+ method: "get",
155
+ uri: "https://api.twilio.com:8443/2010-04-01/.json",
156
+ })
157
+ .then((response) => {
158
+ if (response["statusCode"] < 200 || response["statusCode"] >= 300) {
159
+ throw new RestException(response);
160
+ }
161
+ return response;
162
+ });
163
+ }
164
+ }
165
+ exports.BaseTwilio = BaseTwilio;
@@ -0,0 +1,37 @@
1
+ export = Domain;
2
+ /**
3
+ * Base domain object
4
+ *
5
+ * @constructor
6
+ *
7
+ * @param {Twilio} twilio - A Twilio Client
8
+ * @param {string} baseUrl - Base url for this domain
9
+ */
10
+ declare function Domain(twilio: Twilio, baseUrl: string): void;
11
+ declare class Domain {
12
+ /**
13
+ * Base domain object
14
+ *
15
+ * @constructor
16
+ *
17
+ * @param {Twilio} twilio - A Twilio Client
18
+ * @param {string} baseUrl - Base url for this domain
19
+ */
20
+ constructor(twilio: Twilio, baseUrl: string);
21
+ twilio: Twilio;
22
+ baseUrl: string;
23
+ /**
24
+ * Turn a uri into an absolute url
25
+ *
26
+ * @param {string} uri uri to transform
27
+ * @return {string} absolute url
28
+ */
29
+ absoluteUrl(uri: string): string;
30
+ /**
31
+ * Make request to this domain
32
+ *
33
+ * @param {object} opts request options
34
+ * @return {Promise} request promise
35
+ */
36
+ request(opts: object): Promise<any>;
37
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ const { trim } = require("./utility");
3
+ /**
4
+ * Base domain object
5
+ *
6
+ * @constructor
7
+ *
8
+ * @param {Twilio} twilio - A Twilio Client
9
+ * @param {string} baseUrl - Base url for this domain
10
+ */
11
+ function Domain(twilio, baseUrl) {
12
+ this.twilio = twilio;
13
+ this.baseUrl = baseUrl;
14
+ }
15
+ /**
16
+ * Turn a uri into an absolute url
17
+ *
18
+ * @param {string} uri uri to transform
19
+ * @return {string} absolute url
20
+ */
21
+ Domain.prototype.absoluteUrl = function (uri) {
22
+ var result = "";
23
+ if (typeof this.baseUrl === "string") {
24
+ const cleanBaseUrl = trim(this.baseUrl, "/");
25
+ result += cleanBaseUrl;
26
+ result += "/";
27
+ }
28
+ if (typeof uri === "string") {
29
+ uri = trim(uri, "/");
30
+ if (result === "") {
31
+ result += "/";
32
+ }
33
+ result += uri;
34
+ }
35
+ return result;
36
+ };
37
+ /**
38
+ * Make request to this domain
39
+ *
40
+ * @param {object} opts request options
41
+ * @return {Promise} request promise
42
+ */
43
+ Domain.prototype.request = function (opts) {
44
+ return this.twilio.request({
45
+ ...opts,
46
+ uri: this.absoluteUrl(opts.uri),
47
+ });
48
+ };
49
+ module.exports = Domain;
@@ -0,0 +1,90 @@
1
+ export = Page;
2
+ /**
3
+ * @constructor
4
+ *
5
+ * @description Base page object to maintain request state.
6
+ *
7
+ * @param {Version} version - A twilio version instance
8
+ * @param {Object} response - The http response
9
+ * @param {Object} solution - path solution
10
+ */
11
+ declare function Page(version: Version, response: any, solution: any): void;
12
+ declare class Page {
13
+ /**
14
+ * @constructor
15
+ *
16
+ * @description Base page object to maintain request state.
17
+ *
18
+ * @param {Version} version - A twilio version instance
19
+ * @param {Object} response - The http response
20
+ * @param {Object} solution - path solution
21
+ */
22
+ constructor(version: Version, response: any, solution: any);
23
+ _version: Version;
24
+ _payload: any;
25
+ _solution: any;
26
+ nextPageUrl: string;
27
+ previousPageUrl: string;
28
+ instances: any[];
29
+ /**
30
+ * @constant META_KEYS
31
+ * @description meta keys returned in a list request
32
+ */
33
+ META_KEYS: string[];
34
+ /**
35
+ * Get the url of the previous page of records
36
+ *
37
+ * @return {string|undefined} url of the previous page
38
+ */
39
+ getPreviousPageUrl(): string | undefined;
40
+ /**
41
+ * Get the url of the next page of records
42
+ *
43
+ * @return {string|undefined} url of the next page
44
+ */
45
+ getNextPageUrl(): string | undefined;
46
+ /**
47
+ * Build a new instance given a json payload
48
+ * @abstract
49
+ *
50
+ * @param {object} payload - Payload response from the API
51
+ * @return {object} instance of a resource
52
+ */
53
+ getInstance(payload: object): object;
54
+ /**
55
+ * Load a list of records
56
+ *
57
+ * @param {object} resources json payload of records
58
+ * @return {Array} list of resources
59
+ */
60
+ loadInstances(resources: object): any[];
61
+ /**
62
+ * Fetch the next page of records
63
+ *
64
+ * @return {promise} promise that resolves to next page of results
65
+ */
66
+ nextPage(): Promise<any>;
67
+ /**
68
+ * Fetch the previous page of records
69
+ *
70
+ * @return {promise} promise that resolves to previous page of results
71
+ */
72
+ previousPage(): Promise<any>;
73
+ /**
74
+ * Parse json response from API
75
+ * @throws {Error} If non 200 status code is returned
76
+ *
77
+ * @param {object} response API response
78
+ * @return {object} json parsed response
79
+ */
80
+ processResponse(response: object): object;
81
+ /**
82
+ * Load a page of records
83
+ * @throws {Error} If records cannot be deserialized
84
+ *
85
+ * @param {object} payload json payload
86
+ * @return {array} the page of records
87
+ */
88
+ loadPage(payload: object): any[];
89
+ toJSON(): {};
90
+ }
@@ -0,0 +1,180 @@
1
+ "use strict";
2
+ var RestException = require("./RestException");
3
+ /**
4
+ * @constructor
5
+ *
6
+ * @description Base page object to maintain request state.
7
+ *
8
+ * @param {Version} version - A twilio version instance
9
+ * @param {Object} response - The http response
10
+ * @param {Object} solution - path solution
11
+ */
12
+ function Page(version, response, solution) {
13
+ var payload = this.processResponse(response);
14
+ this._version = version;
15
+ this._payload = payload;
16
+ this._solution = solution;
17
+ this.nextPageUrl = this.getNextPageUrl();
18
+ this.previousPageUrl = this.getPreviousPageUrl();
19
+ this.instances = this.loadInstances(this.loadPage(payload));
20
+ }
21
+ /**
22
+ * @constant META_KEYS
23
+ * @description meta keys returned in a list request
24
+ */
25
+ Page.prototype.META_KEYS = [
26
+ "end",
27
+ "first_page_uri",
28
+ "last_page_uri",
29
+ "next_page_uri",
30
+ "num_pages",
31
+ "page",
32
+ "page_size",
33
+ "previous_page_uri",
34
+ "start",
35
+ "total",
36
+ "uri",
37
+ ];
38
+ /**
39
+ * Get the url of the previous page of records
40
+ *
41
+ * @return {string|undefined} url of the previous page
42
+ */
43
+ Page.prototype.getPreviousPageUrl = function () {
44
+ if ("meta" in this._payload &&
45
+ "previous_page_url" in this._payload.meta &&
46
+ this._payload.meta.previous_page_url) {
47
+ // jshint ignore:line
48
+ return this._payload.meta.previous_page_url; // jshint ignore:line
49
+ }
50
+ if ("previous_page_uri" in this._payload && this._payload.previous_page_uri) {
51
+ // jshint ignore:line
52
+ return this._version._domain.absoluteUrl(this._payload.previous_page_uri); // jshint ignore:line
53
+ }
54
+ return undefined;
55
+ };
56
+ /**
57
+ * Get the url of the next page of records
58
+ *
59
+ * @return {string|undefined} url of the next page
60
+ */
61
+ Page.prototype.getNextPageUrl = function () {
62
+ if ("meta" in this._payload &&
63
+ "next_page_url" in this._payload.meta &&
64
+ this._payload.meta.next_page_url) {
65
+ // jshint ignore:line
66
+ return this._payload.meta.next_page_url; // jshint ignore:line
67
+ }
68
+ if ("next_page_uri" in this._payload && this._payload.next_page_uri) {
69
+ // jshint ignore:line
70
+ return this._version._domain.absoluteUrl(this._payload.next_page_uri); // jshint ignore:line
71
+ }
72
+ return undefined;
73
+ };
74
+ /**
75
+ * Build a new instance given a json payload
76
+ * @abstract
77
+ *
78
+ * @param {object} payload - Payload response from the API
79
+ * @return {object} instance of a resource
80
+ */
81
+ Page.prototype.getInstance = function (payload) {
82
+ throw new Error("Page.get_instance() must be implemented in the derived class");
83
+ };
84
+ /**
85
+ * Load a list of records
86
+ *
87
+ * @param {object} resources json payload of records
88
+ * @return {Array} list of resources
89
+ */
90
+ Page.prototype.loadInstances = function (resources) {
91
+ Object.keys(resources).forEach((key) => {
92
+ resources[key] = this.getInstance(resources[key]);
93
+ });
94
+ return resources;
95
+ };
96
+ /**
97
+ * Fetch the next page of records
98
+ *
99
+ * @return {promise} promise that resolves to next page of results
100
+ */
101
+ Page.prototype.nextPage = function () {
102
+ if (!this.nextPageUrl) {
103
+ return undefined;
104
+ }
105
+ var promise = this._version._domain.twilio.request({
106
+ method: "GET",
107
+ uri: this.nextPageUrl,
108
+ });
109
+ promise = promise.then(function (response) {
110
+ return new this.constructor(this._version, response, this._solution);
111
+ }.bind(this));
112
+ return promise;
113
+ };
114
+ /**
115
+ * Fetch the previous page of records
116
+ *
117
+ * @return {promise} promise that resolves to previous page of results
118
+ */
119
+ Page.prototype.previousPage = function () {
120
+ if (!this.previousPageUrl) {
121
+ return undefined;
122
+ }
123
+ var promise = this._version._domain.twilio.request({
124
+ method: "GET",
125
+ uri: this.previousPageUrl,
126
+ });
127
+ promise = promise.then(function (response) {
128
+ return new this.constructor(this._version, response, this._solution);
129
+ }.bind(this));
130
+ return promise;
131
+ };
132
+ /**
133
+ * Parse json response from API
134
+ * @throws {Error} If non 200 status code is returned
135
+ *
136
+ * @param {object} response API response
137
+ * @return {object} json parsed response
138
+ */
139
+ Page.prototype.processResponse = function (response) {
140
+ if (response.statusCode !== 200) {
141
+ throw new RestException(response);
142
+ }
143
+ if (typeof response.body === "string") {
144
+ return JSON.parse(response.body);
145
+ }
146
+ return response.body;
147
+ };
148
+ /**
149
+ * Load a page of records
150
+ * @throws {Error} If records cannot be deserialized
151
+ *
152
+ * @param {object} payload json payload
153
+ * @return {array} the page of records
154
+ */
155
+ Page.prototype.loadPage = function (payload) {
156
+ if ("meta" in payload && "key" in payload.meta) {
157
+ return payload[payload.meta.key];
158
+ }
159
+ const keys = Object.keys(payload).filter((key) => !this.META_KEYS.includes(key));
160
+ if (keys.length === 1) {
161
+ return payload[keys[0]];
162
+ }
163
+ throw new Error("Page Records cannot be deserialized");
164
+ };
165
+ function forOwn(obj, iteratee) {
166
+ obj = Object(obj);
167
+ for (const [key, val] of Object.entries(obj)) {
168
+ iteratee(val, key, obj);
169
+ }
170
+ }
171
+ Page.prototype.toJSON = function toJSON() {
172
+ let clone = {};
173
+ forOwn(this, (value, key) => {
174
+ if (!key.startsWith("_") && typeof value !== "function") {
175
+ clone[key] = value;
176
+ }
177
+ });
178
+ return clone;
179
+ };
180
+ module.exports = Page;