twilio 4.0.1 → 4.0.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.
- package/lib/base/BaseTwilio.d.ts +81 -0
- package/lib/base/BaseTwilio.js +172 -0
- package/lib/base/Domain.d.ts +29 -0
- package/lib/base/Domain.js +53 -0
- package/lib/base/Page.d.ts +104 -0
- package/lib/base/Page.js +192 -0
- package/lib/base/RequestClient.d.ts +143 -0
- package/lib/base/RequestClient.js +223 -0
- package/lib/base/RestException.d.ts +16 -0
- package/lib/base/RestException.js +33 -0
- package/lib/base/Version.d.ts +129 -0
- package/lib/base/Version.js +335 -0
- package/lib/base/deserialize.d.ts +41 -0
- package/lib/base/deserialize.js +76 -0
- package/lib/base/serialize.d.ts +53 -0
- package/lib/base/serialize.js +122 -0
- package/lib/base/utility.d.ts +2 -0
- package/lib/base/utility.js +13 -0
- package/lib/base/values.d.ts +10 -0
- package/lib/base/values.js +16 -0
- package/lib/http/request.d.ts +25 -0
- package/lib/http/request.js +85 -0
- package/lib/http/response.d.ts +7 -0
- package/lib/http/response.js +13 -0
- package/lib/index.d.ts +39 -0
- package/lib/index.js +89 -0
- package/lib/interfaces.d.ts +94 -0
- package/lib/interfaces.js +2 -0
- package/lib/jwt/AccessToken.d.ts +191 -0
- package/lib/jwt/AccessToken.js +261 -0
- package/lib/jwt/ClientCapability.d.ts +61 -0
- package/lib/jwt/ClientCapability.js +122 -0
- package/lib/jwt/taskrouter/TaskRouterCapability.d.ts +74 -0
- package/lib/jwt/taskrouter/TaskRouterCapability.js +101 -0
- package/lib/jwt/taskrouter/util.d.ts +66 -0
- package/lib/jwt/taskrouter/util.js +169 -0
- package/lib/rest/Accounts.d.ts +19 -0
- package/lib/rest/Accounts.js +29 -0
- package/lib/rest/AccountsBase.d.ts +13 -0
- package/lib/rest/AccountsBase.js +31 -0
- package/lib/rest/Api.d.ts +127 -0
- package/lib/rest/Api.js +182 -0
- package/lib/rest/ApiBase.d.ts +13 -0
- package/lib/rest/ApiBase.js +31 -0
- package/lib/rest/Autopilot.d.ts +14 -0
- package/lib/rest/Autopilot.js +22 -0
- package/lib/rest/AutopilotBase.d.ts +13 -0
- package/lib/rest/AutopilotBase.js +31 -0
- package/lib/rest/Bulkexports.d.ts +14 -0
- package/lib/rest/Bulkexports.js +22 -0
- package/lib/rest/BulkexportsBase.d.ts +13 -0
- package/lib/rest/BulkexportsBase.js +31 -0
- package/lib/rest/Chat.d.ts +19 -0
- package/lib/rest/Chat.js +29 -0
- package/lib/rest/ChatBase.d.ts +19 -0
- package/lib/rest/ChatBase.js +41 -0
- package/lib/rest/Content.d.ts +9 -0
- package/lib/rest/Content.js +15 -0
- package/lib/rest/ContentBase.d.ts +13 -0
- package/lib/rest/ContentBase.js +31 -0
- package/lib/rest/Conversations.d.ts +44 -0
- package/lib/rest/Conversations.js +64 -0
- package/lib/rest/ConversationsBase.d.ts +13 -0
- package/lib/rest/ConversationsBase.js +31 -0
- package/lib/rest/Events.d.ts +24 -0
- package/lib/rest/Events.js +36 -0
- package/lib/rest/EventsBase.d.ts +13 -0
- package/lib/rest/EventsBase.js +31 -0
- package/lib/rest/FlexApi.d.ts +39 -0
- package/lib/rest/FlexApi.js +57 -0
- package/lib/rest/FlexApiBase.d.ts +16 -0
- package/lib/rest/FlexApiBase.js +36 -0
- package/lib/rest/FrontlineApi.d.ts +9 -0
- package/lib/rest/FrontlineApi.js +15 -0
- package/lib/rest/FrontlineApiBase.d.ts +13 -0
- package/lib/rest/FrontlineApiBase.js +31 -0
- package/lib/rest/Insights.d.ts +29 -0
- package/lib/rest/Insights.js +43 -0
- package/lib/rest/InsightsBase.d.ts +13 -0
- package/lib/rest/InsightsBase.js +31 -0
- package/lib/rest/IpMessaging.d.ts +14 -0
- package/lib/rest/IpMessaging.js +22 -0
- package/lib/rest/IpMessagingBase.d.ts +16 -0
- package/lib/rest/IpMessagingBase.js +36 -0
- package/lib/rest/Lookups.d.ts +9 -0
- package/lib/rest/Lookups.js +15 -0
- package/lib/rest/LookupsBase.d.ts +16 -0
- package/lib/rest/LookupsBase.js +36 -0
- package/lib/rest/Media.d.ts +19 -0
- package/lib/rest/Media.js +29 -0
- package/lib/rest/MediaBase.d.ts +13 -0
- package/lib/rest/MediaBase.js +31 -0
- package/lib/rest/Messaging.d.ts +39 -0
- package/lib/rest/Messaging.js +57 -0
- package/lib/rest/MessagingBase.d.ts +13 -0
- package/lib/rest/MessagingBase.js +31 -0
- package/lib/rest/Microvisor.d.ts +14 -0
- package/lib/rest/Microvisor.js +22 -0
- package/lib/rest/MicrovisorBase.d.ts +13 -0
- package/lib/rest/MicrovisorBase.js +31 -0
- package/lib/rest/Monitor.d.ts +14 -0
- package/lib/rest/Monitor.js +22 -0
- package/lib/rest/MonitorBase.d.ts +13 -0
- package/lib/rest/MonitorBase.js +31 -0
- package/lib/rest/Notify.d.ts +14 -0
- package/lib/rest/Notify.js +22 -0
- package/lib/rest/NotifyBase.d.ts +13 -0
- package/lib/rest/NotifyBase.js +31 -0
- package/lib/rest/Numbers.d.ts +9 -0
- package/lib/rest/Numbers.js +15 -0
- package/lib/rest/NumbersBase.d.ts +13 -0
- package/lib/rest/NumbersBase.js +31 -0
- package/lib/rest/Oauth.d.ts +29 -0
- package/lib/rest/Oauth.js +43 -0
- package/lib/rest/OauthBase.d.ts +13 -0
- package/lib/rest/OauthBase.js +31 -0
- package/lib/rest/Preview.d.ts +54 -0
- package/lib/rest/Preview.js +78 -0
- package/lib/rest/PreviewBase.d.ts +28 -0
- package/lib/rest/PreviewBase.js +57 -0
- package/lib/rest/Pricing.d.ts +29 -0
- package/lib/rest/Pricing.js +43 -0
- package/lib/rest/PricingBase.d.ts +16 -0
- package/lib/rest/PricingBase.js +36 -0
- package/lib/rest/Proxy.d.ts +9 -0
- package/lib/rest/Proxy.js +15 -0
- package/lib/rest/ProxyBase.d.ts +13 -0
- package/lib/rest/ProxyBase.js +31 -0
- package/lib/rest/Routes.d.ts +19 -0
- package/lib/rest/Routes.js +29 -0
- package/lib/rest/RoutesBase.d.ts +13 -0
- package/lib/rest/RoutesBase.js +31 -0
- package/lib/rest/Serverless.d.ts +9 -0
- package/lib/rest/Serverless.js +15 -0
- package/lib/rest/ServerlessBase.d.ts +13 -0
- package/lib/rest/ServerlessBase.js +31 -0
- package/lib/rest/Studio.d.ts +14 -0
- package/lib/rest/Studio.js +22 -0
- package/lib/rest/StudioBase.d.ts +16 -0
- package/lib/rest/StudioBase.js +36 -0
- package/lib/rest/Supersim.d.ts +49 -0
- package/lib/rest/Supersim.js +71 -0
- package/lib/rest/SupersimBase.d.ts +13 -0
- package/lib/rest/SupersimBase.js +31 -0
- package/lib/rest/Sync.d.ts +9 -0
- package/lib/rest/Sync.js +15 -0
- package/lib/rest/SyncBase.d.ts +13 -0
- package/lib/rest/SyncBase.js +31 -0
- package/lib/rest/Taskrouter.d.ts +9 -0
- package/lib/rest/Taskrouter.js +15 -0
- package/lib/rest/TaskrouterBase.d.ts +13 -0
- package/lib/rest/TaskrouterBase.js +31 -0
- package/lib/rest/Trunking.d.ts +9 -0
- package/lib/rest/Trunking.js +15 -0
- package/lib/rest/TrunkingBase.d.ts +13 -0
- package/lib/rest/TrunkingBase.js +31 -0
- package/lib/rest/Trusthub.d.ts +39 -0
- package/lib/rest/Trusthub.js +57 -0
- package/lib/rest/TrusthubBase.d.ts +13 -0
- package/lib/rest/TrusthubBase.js +31 -0
- package/lib/rest/Twilio.d.ts +266 -0
- package/lib/rest/Twilio.js +317 -0
- package/lib/rest/Verify.d.ts +29 -0
- package/lib/rest/Verify.js +43 -0
- package/lib/rest/VerifyBase.d.ts +13 -0
- package/lib/rest/VerifyBase.js +31 -0
- package/lib/rest/Video.d.ts +34 -0
- package/lib/rest/Video.js +50 -0
- package/lib/rest/VideoBase.d.ts +13 -0
- package/lib/rest/VideoBase.js +31 -0
- package/lib/rest/Voice.d.ts +34 -0
- package/lib/rest/Voice.js +50 -0
- package/lib/rest/VoiceBase.d.ts +13 -0
- package/lib/rest/VoiceBase.js +31 -0
- package/lib/rest/Wireless.d.ts +24 -0
- package/lib/rest/Wireless.js +36 -0
- package/lib/rest/WirelessBase.d.ts +13 -0
- package/lib/rest/WirelessBase.js +31 -0
- package/lib/rest/accounts/V1.d.ts +25 -0
- package/lib/rest/accounts/V1.js +50 -0
- package/lib/rest/accounts/v1/authTokenPromotion.d.ts +105 -0
- package/lib/rest/accounts/v1/authTokenPromotion.js +109 -0
- package/lib/rest/accounts/v1/credential/aws.d.ts +296 -0
- package/lib/rest/accounts/v1/credential/aws.js +251 -0
- package/lib/rest/accounts/v1/credential/publicKey.d.ts +296 -0
- package/lib/rest/accounts/v1/credential/publicKey.js +252 -0
- package/lib/rest/accounts/v1/credential.d.ts +22 -0
- package/lib/rest/accounts/v1/credential.js +51 -0
- package/lib/rest/accounts/v1/secondaryAuthToken.d.ts +122 -0
- package/lib/rest/accounts/v1/secondaryAuthToken.js +128 -0
- package/lib/rest/api/V2010.d.ts +20 -0
- package/lib/rest/api/V2010.js +42 -0
- package/lib/rest/api/v2010/account/address/dependentPhoneNumber.d.ts +295 -0
- package/lib/rest/api/v2010/account/address/dependentPhoneNumber.js +175 -0
- package/lib/rest/api/v2010/account/address.d.ts +414 -0
- package/lib/rest/api/v2010/account/address.js +338 -0
- package/lib/rest/api/v2010/account/application.d.ts +463 -0
- package/lib/rest/api/v2010/account/application.js +349 -0
- package/lib/rest/api/v2010/account/authorizedConnectApp.d.ts +244 -0
- package/lib/rest/api/v2010/account/authorizedConnectApp.js +198 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.d.ts +322 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.js +185 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry.d.ts +269 -0
- package/lib/rest/api/v2010/account/availablePhoneNumberCountry.js +279 -0
- package/lib/rest/api/v2010/account/balance.d.ts +58 -0
- package/lib/rest/api/v2010/account/balance.js +70 -0
- package/lib/rest/api/v2010/account/call/event.d.ts +150 -0
- package/lib/rest/api/v2010/account/call/event.js +127 -0
- package/lib/rest/api/v2010/account/call/feedback.d.ts +160 -0
- package/lib/rest/api/v2010/account/call/feedback.js +154 -0
- package/lib/rest/api/v2010/account/call/feedbackSummary.d.ts +201 -0
- package/lib/rest/api/v2010/account/call/feedbackSummary.js +189 -0
- package/lib/rest/api/v2010/account/call/notification.d.ts +312 -0
- package/lib/rest/api/v2010/account/call/notification.js +223 -0
- package/lib/rest/api/v2010/account/call/payment.d.ts +182 -0
- package/lib/rest/api/v2010/account/call/payment.js +198 -0
- package/lib/rest/api/v2010/account/call/recording.d.ts +386 -0
- package/lib/rest/api/v2010/account/call/recording.js +303 -0
- package/lib/rest/api/v2010/account/call/siprec.d.ts +559 -0
- package/lib/rest/api/v2010/account/call/siprec.js +562 -0
- package/lib/rest/api/v2010/account/call/stream.d.ts +551 -0
- package/lib/rest/api/v2010/account/call/stream.js +560 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessage.d.ts +75 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessage.js +89 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.d.ts +130 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.js +150 -0
- package/lib/rest/api/v2010/account/call.d.ts +633 -0
- package/lib/rest/api/v2010/account/call.js +531 -0
- package/lib/rest/api/v2010/account/conference/participant.d.ts +472 -0
- package/lib/rest/api/v2010/account/conference/participant.js +407 -0
- package/lib/rest/api/v2010/account/conference/recording.d.ts +346 -0
- package/lib/rest/api/v2010/account/conference/recording.js +267 -0
- package/lib/rest/api/v2010/account/conference.d.ts +362 -0
- package/lib/rest/api/v2010/account/conference.js +272 -0
- package/lib/rest/api/v2010/account/connectApp.d.ts +324 -0
- package/lib/rest/api/v2010/account/connectApp.js +257 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.d.ts +241 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.js +210 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.d.ts +292 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.js +257 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/local.d.ts +417 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/local.js +261 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.d.ts +417 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.js +261 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.d.ts +417 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.js +261 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber.d.ts +593 -0
- package/lib/rest/api/v2010/account/incomingPhoneNumber.js +450 -0
- package/lib/rest/api/v2010/account/key.d.ts +266 -0
- package/lib/rest/api/v2010/account/key.js +229 -0
- package/lib/rest/api/v2010/account/message/feedback.d.ts +91 -0
- package/lib/rest/api/v2010/account/message/feedback.js +93 -0
- package/lib/rest/api/v2010/account/message/media.d.ts +262 -0
- package/lib/rest/api/v2010/account/message/media.js +220 -0
- package/lib/rest/api/v2010/account/message.d.ts +468 -0
- package/lib/rest/api/v2010/account/message.js +362 -0
- package/lib/rest/api/v2010/account/newKey.d.ts +86 -0
- package/lib/rest/api/v2010/account/newKey.js +88 -0
- package/lib/rest/api/v2010/account/newSigningKey.d.ts +86 -0
- package/lib/rest/api/v2010/account/newSigningKey.js +88 -0
- package/lib/rest/api/v2010/account/notification.d.ts +310 -0
- package/lib/rest/api/v2010/account/notification.js +217 -0
- package/lib/rest/api/v2010/account/outgoingCallerId.d.ts +296 -0
- package/lib/rest/api/v2010/account/outgoingCallerId.js +239 -0
- package/lib/rest/api/v2010/account/queue/member.d.ts +249 -0
- package/lib/rest/api/v2010/account/queue/member.js +220 -0
- package/lib/rest/api/v2010/account/queue.d.ts +324 -0
- package/lib/rest/api/v2010/account/queue.js +278 -0
- package/lib/rest/api/v2010/account/recording/addOnResult/payload.d.ts +270 -0
- package/lib/rest/api/v2010/account/recording/addOnResult/payload.js +233 -0
- package/lib/rest/api/v2010/account/recording/addOnResult.d.ts +268 -0
- package/lib/rest/api/v2010/account/recording/addOnResult.js +233 -0
- package/lib/rest/api/v2010/account/recording/transcription.d.ts +278 -0
- package/lib/rest/api/v2010/account/recording/transcription.js +226 -0
- package/lib/rest/api/v2010/account/recording.d.ts +387 -0
- package/lib/rest/api/v2010/account/recording.js +276 -0
- package/lib/rest/api/v2010/account/shortCode.d.ts +321 -0
- package/lib/rest/api/v2010/account/shortCode.js +240 -0
- package/lib/rest/api/v2010/account/signingKey.d.ts +254 -0
- package/lib/rest/api/v2010/account/signingKey.js +229 -0
- package/lib/rest/api/v2010/account/sip/credentialList/credential.d.ts +304 -0
- package/lib/rest/api/v2010/account/sip/credentialList/credential.js +266 -0
- package/lib/rest/api/v2010/account/sip/credentialList.d.ts +292 -0
- package/lib/rest/api/v2010/account/sip/credentialList.js +269 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.d.ts +248 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.js +232 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.d.ts +248 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.js +232 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.d.ts +24 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.js +60 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.d.ts +248 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.js +232 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.d.ts +21 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.js +50 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes.d.ts +24 -0
- package/lib/rest/api/v2010/account/sip/domain/authTypes.js +58 -0
- package/lib/rest/api/v2010/account/sip/domain/credentialListMapping.d.ts +260 -0
- package/lib/rest/api/v2010/account/sip/domain/credentialListMapping.js +236 -0
- package/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.d.ts +260 -0
- package/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.js +236 -0
- package/lib/rest/api/v2010/account/sip/domain.d.ts +459 -0
- package/lib/rest/api/v2010/account/sip/domain.js +371 -0
- package/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.d.ts +322 -0
- package/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.js +281 -0
- package/lib/rest/api/v2010/account/sip/ipAccessControlList.d.ts +292 -0
- package/lib/rest/api/v2010/account/sip/ipAccessControlList.js +269 -0
- package/lib/rest/api/v2010/account/sip.d.ts +26 -0
- package/lib/rest/api/v2010/account/sip.js +64 -0
- package/lib/rest/api/v2010/account/token.d.ts +104 -0
- package/lib/rest/api/v2010/account/token.js +95 -0
- package/lib/rest/api/v2010/account/transcription.d.ts +276 -0
- package/lib/rest/api/v2010/account/transcription.js +220 -0
- package/lib/rest/api/v2010/account/usage/record/allTime.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/allTime.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/daily.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/daily.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/lastMonth.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/lastMonth.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/monthly.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/monthly.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/thisMonth.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/thisMonth.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/today.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/today.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/yearly.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/yearly.js +158 -0
- package/lib/rest/api/v2010/account/usage/record/yesterday.d.ts +249 -0
- package/lib/rest/api/v2010/account/usage/record/yesterday.js +158 -0
- package/lib/rest/api/v2010/account/usage/record.d.ts +273 -0
- package/lib/rest/api/v2010/account/usage/record.js +230 -0
- package/lib/rest/api/v2010/account/usage/trigger.d.ts +383 -0
- package/lib/rest/api/v2010/account/usage/trigger.js +302 -0
- package/lib/rest/api/v2010/account/usage.d.ts +23 -0
- package/lib/rest/api/v2010/account/usage.js +55 -0
- package/lib/rest/api/v2010/account/validationRequest.d.ts +88 -0
- package/lib/rest/api/v2010/account/validationRequest.js +96 -0
- package/lib/rest/api/v2010/account.d.ts +509 -0
- package/lib/rest/api/v2010/account.js +546 -0
- package/lib/rest/autopilot/V1.d.ts +20 -0
- package/lib/rest/autopilot/V1.js +43 -0
- package/lib/rest/autopilot/v1/assistant/defaults.d.ts +143 -0
- package/lib/rest/autopilot/v1/assistant/defaults.js +142 -0
- package/lib/rest/autopilot/v1/assistant/dialogue.d.ts +108 -0
- package/lib/rest/autopilot/v1/assistant/dialogue.js +120 -0
- package/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.d.ts +288 -0
- package/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.js +249 -0
- package/lib/rest/autopilot/v1/assistant/fieldType.d.ts +324 -0
- package/lib/rest/autopilot/v1/assistant/fieldType.js +277 -0
- package/lib/rest/autopilot/v1/assistant/modelBuild.d.ts +326 -0
- package/lib/rest/autopilot/v1/assistant/modelBuild.js +266 -0
- package/lib/rest/autopilot/v1/assistant/query.d.ts +374 -0
- package/lib/rest/autopilot/v1/assistant/query.js +288 -0
- package/lib/rest/autopilot/v1/assistant/styleSheet.d.ts +143 -0
- package/lib/rest/autopilot/v1/assistant/styleSheet.js +142 -0
- package/lib/rest/autopilot/v1/assistant/task/field.d.ts +274 -0
- package/lib/rest/autopilot/v1/assistant/task/field.js +243 -0
- package/lib/rest/autopilot/v1/assistant/task/sample.d.ts +334 -0
- package/lib/rest/autopilot/v1/assistant/task/sample.js +280 -0
- package/lib/rest/autopilot/v1/assistant/task/taskActions.d.ts +151 -0
- package/lib/rest/autopilot/v1/assistant/task/taskActions.js +150 -0
- package/lib/rest/autopilot/v1/assistant/task/taskStatistics.d.ts +115 -0
- package/lib/rest/autopilot/v1/assistant/task/taskStatistics.js +125 -0
- package/lib/rest/autopilot/v1/assistant/task.d.ts +362 -0
- package/lib/rest/autopilot/v1/assistant/task.js +326 -0
- package/lib/rest/autopilot/v1/assistant/webhook.d.ts +330 -0
- package/lib/rest/autopilot/v1/assistant/webhook.js +278 -0
- package/lib/rest/autopilot/v1/assistant.d.ts +438 -0
- package/lib/rest/autopilot/v1/assistant.js +392 -0
- package/lib/rest/autopilot/v1/restoreAssistant.d.ts +119 -0
- package/lib/rest/autopilot/v1/restoreAssistant.js +96 -0
- package/lib/rest/bulkexports/V1.d.ts +20 -0
- package/lib/rest/bulkexports/V1.js +43 -0
- package/lib/rest/bulkexports/v1/export/day.d.ts +216 -0
- package/lib/rest/bulkexports/v1/export/day.js +187 -0
- package/lib/rest/bulkexports/v1/export/exportCustomJob.d.ts +229 -0
- package/lib/rest/bulkexports/v1/export/exportCustomJob.js +178 -0
- package/lib/rest/bulkexports/v1/export/job.d.ts +162 -0
- package/lib/rest/bulkexports/v1/export/job.js +146 -0
- package/lib/rest/bulkexports/v1/export.d.ts +113 -0
- package/lib/rest/bulkexports/v1/export.js +144 -0
- package/lib/rest/bulkexports/v1/exportConfiguration.d.ts +152 -0
- package/lib/rest/bulkexports/v1/exportConfiguration.js +145 -0
- package/lib/rest/chat/V1.d.ts +20 -0
- package/lib/rest/chat/V1.js +42 -0
- package/lib/rest/chat/V2.d.ts +20 -0
- package/lib/rest/chat/V2.js +42 -0
- package/lib/rest/chat/V3.d.ts +15 -0
- package/lib/rest/chat/V3.js +36 -0
- package/lib/rest/chat/v1/credential.d.ts +324 -0
- package/lib/rest/chat/v1/credential.js +274 -0
- package/lib/rest/chat/v1/service/channel/invite.d.ts +286 -0
- package/lib/rest/chat/v1/service/channel/invite.js +245 -0
- package/lib/rest/chat/v1/service/channel/member.d.ts +336 -0
- package/lib/rest/chat/v1/service/channel/member.js +276 -0
- package/lib/rest/chat/v1/service/channel/message.d.ts +351 -0
- package/lib/rest/chat/v1/service/channel/message.js +282 -0
- package/lib/rest/chat/v1/service/channel.d.ts +388 -0
- package/lib/rest/chat/v1/service/channel.js +323 -0
- package/lib/rest/chat/v1/service/role.d.ts +298 -0
- package/lib/rest/chat/v1/service/role.js +267 -0
- package/lib/rest/chat/v1/service/user/userChannel.d.ts +184 -0
- package/lib/rest/chat/v1/service/user/userChannel.js +139 -0
- package/lib/rest/chat/v1/service/user.d.ts +360 -0
- package/lib/rest/chat/v1/service/user.js +293 -0
- package/lib/rest/chat/v1/service.d.ts +512 -0
- package/lib/rest/chat/v1/service.js +454 -0
- package/lib/rest/chat/v2/credential.d.ts +324 -0
- package/lib/rest/chat/v2/credential.js +274 -0
- package/lib/rest/chat/v2/service/binding.d.ts +282 -0
- package/lib/rest/chat/v2/service/binding.js +222 -0
- package/lib/rest/chat/v2/service/channel/invite.d.ts +286 -0
- package/lib/rest/chat/v2/service/channel/invite.js +245 -0
- package/lib/rest/chat/v2/service/channel/member.d.ts +390 -0
- package/lib/rest/chat/v2/service/channel/member.js +306 -0
- package/lib/rest/chat/v2/service/channel/message.d.ts +423 -0
- package/lib/rest/chat/v2/service/channel/message.js +316 -0
- package/lib/rest/chat/v2/service/channel/webhook.d.ts +338 -0
- package/lib/rest/chat/v2/service/channel/webhook.js +288 -0
- package/lib/rest/chat/v2/service/channel.d.ts +438 -0
- package/lib/rest/chat/v2/service/channel.js +358 -0
- package/lib/rest/chat/v2/service/role.d.ts +298 -0
- package/lib/rest/chat/v2/service/role.js +267 -0
- package/lib/rest/chat/v2/service/user/userBinding.d.ts +278 -0
- package/lib/rest/chat/v2/service/user/userBinding.js +226 -0
- package/lib/rest/chat/v2/service/user/userChannel.d.ts +336 -0
- package/lib/rest/chat/v2/service/user/userChannel.js +263 -0
- package/lib/rest/chat/v2/service/user.d.ts +373 -0
- package/lib/rest/chat/v2/service/user.js +310 -0
- package/lib/rest/chat/v2/service.d.ts +486 -0
- package/lib/rest/chat/v2/service.js +401 -0
- package/lib/rest/chat/v3/channel.d.ts +189 -0
- package/lib/rest/chat/v3/channel.js +149 -0
- package/lib/rest/content/V1.d.ts +15 -0
- package/lib/rest/content/V1.js +36 -0
- package/lib/rest/content/v1/content/approvalFetch.d.ts +101 -0
- package/lib/rest/content/v1/content/approvalFetch.js +115 -0
- package/lib/rest/content/v1/content.d.ts +266 -0
- package/lib/rest/content/v1/content.js +221 -0
- package/lib/rest/conversations/V1.d.ts +50 -0
- package/lib/rest/conversations/V1.js +82 -0
- package/lib/rest/conversations/v1/addressConfiguration.d.ts +355 -0
- package/lib/rest/conversations/v1/addressConfiguration.js +298 -0
- package/lib/rest/conversations/v1/configuration/webhook.d.ts +163 -0
- package/lib/rest/conversations/v1/configuration/webhook.js +147 -0
- package/lib/rest/conversations/v1/configuration.d.ts +168 -0
- package/lib/rest/conversations/v1/configuration.js +155 -0
- package/lib/rest/conversations/v1/conversation/message/deliveryReceipt.d.ts +249 -0
- package/lib/rest/conversations/v1/conversation/message/deliveryReceipt.js +203 -0
- package/lib/rest/conversations/v1/conversation/message.d.ts +423 -0
- package/lib/rest/conversations/v1/conversation/message.js +321 -0
- package/lib/rest/conversations/v1/conversation/participant.d.ts +398 -0
- package/lib/rest/conversations/v1/conversation/participant.js +312 -0
- package/lib/rest/conversations/v1/conversation/webhook.d.ts +328 -0
- package/lib/rest/conversations/v1/conversation/webhook.js +278 -0
- package/lib/rest/conversations/v1/conversation.d.ts +429 -0
- package/lib/rest/conversations/v1/conversation.js +345 -0
- package/lib/rest/conversations/v1/credential.d.ts +326 -0
- package/lib/rest/conversations/v1/credential.js +276 -0
- package/lib/rest/conversations/v1/participantConversation.d.ts +242 -0
- package/lib/rest/conversations/v1/participantConversation.js +152 -0
- package/lib/rest/conversations/v1/role.d.ts +296 -0
- package/lib/rest/conversations/v1/role.js +260 -0
- package/lib/rest/conversations/v1/service/binding.d.ts +276 -0
- package/lib/rest/conversations/v1/service/binding.js +220 -0
- package/lib/rest/conversations/v1/service/configuration/notification.d.ts +185 -0
- package/lib/rest/conversations/v1/service/configuration/notification.js +176 -0
- package/lib/rest/conversations/v1/service/configuration/webhook.d.ts +165 -0
- package/lib/rest/conversations/v1/service/configuration/webhook.js +154 -0
- package/lib/rest/conversations/v1/service/configuration.d.ts +173 -0
- package/lib/rest/conversations/v1/service/configuration.js +174 -0
- package/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.d.ts +257 -0
- package/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.js +216 -0
- package/lib/rest/conversations/v1/service/conversation/message.d.ts +431 -0
- package/lib/rest/conversations/v1/service/conversation/message.js +329 -0
- package/lib/rest/conversations/v1/service/conversation/participant.d.ts +406 -0
- package/lib/rest/conversations/v1/service/conversation/participant.js +320 -0
- package/lib/rest/conversations/v1/service/conversation/webhook.d.ts +336 -0
- package/lib/rest/conversations/v1/service/conversation/webhook.js +286 -0
- package/lib/rest/conversations/v1/service/conversation.d.ts +431 -0
- package/lib/rest/conversations/v1/service/conversation.js +353 -0
- package/lib/rest/conversations/v1/service/participantConversation.d.ts +243 -0
- package/lib/rest/conversations/v1/service/participantConversation.js +156 -0
- package/lib/rest/conversations/v1/service/role.d.ts +298 -0
- package/lib/rest/conversations/v1/service/role.js +267 -0
- package/lib/rest/conversations/v1/service/user/userConversation.d.ts +349 -0
- package/lib/rest/conversations/v1/service/user/userConversation.js +271 -0
- package/lib/rest/conversations/v1/service/user.d.ts +381 -0
- package/lib/rest/conversations/v1/service/user.js +301 -0
- package/lib/rest/conversations/v1/service.d.ts +304 -0
- package/lib/rest/conversations/v1/service.js +299 -0
- package/lib/rest/conversations/v1/user/userConversation.d.ts +347 -0
- package/lib/rest/conversations/v1/user/userConversation.js +264 -0
- package/lib/rest/conversations/v1/user.d.ts +379 -0
- package/lib/rest/conversations/v1/user.js +294 -0
- package/lib/rest/events/V1.d.ts +30 -0
- package/lib/rest/events/V1.js +54 -0
- package/lib/rest/events/v1/eventType.d.ts +226 -0
- package/lib/rest/events/v1/eventType.js +185 -0
- package/lib/rest/events/v1/schema/schemaVersion.d.ts +210 -0
- package/lib/rest/events/v1/schema/schemaVersion.js +185 -0
- package/lib/rest/events/v1/schema.d.ts +114 -0
- package/lib/rest/events/v1/schema.js +126 -0
- package/lib/rest/events/v1/sink/sinkTest.d.ts +46 -0
- package/lib/rest/events/v1/sink/sinkTest.js +66 -0
- package/lib/rest/events/v1/sink/sinkValidate.d.ts +54 -0
- package/lib/rest/events/v1/sink/sinkValidate.js +78 -0
- package/lib/rest/events/v1/sink.d.ts +322 -0
- package/lib/rest/events/v1/sink.js +289 -0
- package/lib/rest/events/v1/subscription/subscribedEvent.d.ts +290 -0
- package/lib/rest/events/v1/subscription/subscribedEvent.js +254 -0
- package/lib/rest/events/v1/subscription.d.ts +324 -0
- package/lib/rest/events/v1/subscription.js +277 -0
- package/lib/rest/flexApi/V1.d.ts +70 -0
- package/lib/rest/flexApi/V1.js +113 -0
- package/lib/rest/flexApi/V2.d.ts +15 -0
- package/lib/rest/flexApi/V2.js +36 -0
- package/lib/rest/flexApi/v1/assessments.d.ts +81 -0
- package/lib/rest/flexApi/v1/assessments.js +100 -0
- package/lib/rest/flexApi/v1/channel.d.ts +280 -0
- package/lib/rest/flexApi/v1/channel.js +251 -0
- package/lib/rest/flexApi/v1/configuration.d.ts +368 -0
- package/lib/rest/flexApi/v1/configuration.js +195 -0
- package/lib/rest/flexApi/v1/flexFlow.d.ts +406 -0
- package/lib/rest/flexApi/v1/flexFlow.js +336 -0
- package/lib/rest/flexApi/v1/insightsQuestionnairesCategory.d.ts +168 -0
- package/lib/rest/flexApi/v1/insightsQuestionnairesCategory.js +167 -0
- package/lib/rest/flexApi/v1/insightsQuestionnairesQuestion.d.ts +208 -0
- package/lib/rest/flexApi/v1/insightsQuestionnairesQuestion.js +205 -0
- package/lib/rest/flexApi/v1/insightsSession.d.ts +130 -0
- package/lib/rest/flexApi/v1/insightsSession.js +115 -0
- package/lib/rest/flexApi/v1/insightsSettingsAnswerSets.d.ts +82 -0
- package/lib/rest/flexApi/v1/insightsSettingsAnswerSets.js +83 -0
- package/lib/rest/flexApi/v1/insightsSettingsComment.d.ts +67 -0
- package/lib/rest/flexApi/v1/insightsSettingsComment.js +79 -0
- package/lib/rest/flexApi/v1/insightsUserRoles.d.ts +109 -0
- package/lib/rest/flexApi/v1/insightsUserRoles.js +109 -0
- package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.d.ts +181 -0
- package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.js +154 -0
- package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.d.ts +238 -0
- package/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.js +222 -0
- package/lib/rest/flexApi/v1/interaction/interactionChannel.d.ts +266 -0
- package/lib/rest/flexApi/v1/interaction/interactionChannel.js +244 -0
- package/lib/rest/flexApi/v1/interaction.d.ts +126 -0
- package/lib/rest/flexApi/v1/interaction.js +152 -0
- package/lib/rest/flexApi/v1/webChannel.d.ts +305 -0
- package/lib/rest/flexApi/v1/webChannel.js +268 -0
- package/lib/rest/flexApi/v2/webChannels.d.ts +65 -0
- package/lib/rest/flexApi/v2/webChannels.js +82 -0
- package/lib/rest/frontlineApi/V1.d.ts +15 -0
- package/lib/rest/frontlineApi/V1.js +36 -0
- package/lib/rest/frontlineApi/v1/user.d.ts +164 -0
- package/lib/rest/frontlineApi/v1/user.js +150 -0
- package/lib/rest/insights/V1.d.ts +35 -0
- package/lib/rest/insights/V1.js +61 -0
- package/lib/rest/insights/v1/call/annotation.d.ts +187 -0
- package/lib/rest/insights/v1/call/annotation.js +166 -0
- package/lib/rest/insights/v1/call/callSummary.d.ts +175 -0
- package/lib/rest/insights/v1/call/callSummary.js +159 -0
- package/lib/rest/insights/v1/call/event.d.ts +178 -0
- package/lib/rest/insights/v1/call/event.js +144 -0
- package/lib/rest/insights/v1/call/metric.d.ts +178 -0
- package/lib/rest/insights/v1/call/metric.js +142 -0
- package/lib/rest/insights/v1/call.d.ts +117 -0
- package/lib/rest/insights/v1/call.js +159 -0
- package/lib/rest/insights/v1/callSummaries.d.ts +316 -0
- package/lib/rest/insights/v1/callSummaries.js +196 -0
- package/lib/rest/insights/v1/conference/conferenceParticipant.d.ts +375 -0
- package/lib/rest/insights/v1/conference/conferenceParticipant.js +246 -0
- package/lib/rest/insights/v1/conference.d.ts +377 -0
- package/lib/rest/insights/v1/conference.js +248 -0
- package/lib/rest/insights/v1/room/participant.d.ts +280 -0
- package/lib/rest/insights/v1/room/participant.js +212 -0
- package/lib/rest/insights/v1/room.d.ts +363 -0
- package/lib/rest/insights/v1/room.js +244 -0
- package/lib/rest/insights/v1/setting.d.ts +158 -0
- package/lib/rest/insights/v1/setting.js +143 -0
- package/lib/rest/ipMessaging/V1.d.ts +20 -0
- package/lib/rest/ipMessaging/V1.js +42 -0
- package/lib/rest/ipMessaging/V2.d.ts +20 -0
- package/lib/rest/ipMessaging/V2.js +42 -0
- package/lib/rest/ipMessaging/v1/credential.d.ts +303 -0
- package/lib/rest/ipMessaging/v1/credential.js +274 -0
- package/lib/rest/ipMessaging/v1/service/channel/invite.d.ts +256 -0
- package/lib/rest/ipMessaging/v1/service/channel/invite.js +245 -0
- package/lib/rest/ipMessaging/v1/service/channel/member.d.ts +303 -0
- package/lib/rest/ipMessaging/v1/service/channel/member.js +276 -0
- package/lib/rest/ipMessaging/v1/service/channel/message.d.ts +312 -0
- package/lib/rest/ipMessaging/v1/service/channel/message.js +282 -0
- package/lib/rest/ipMessaging/v1/service/channel.d.ts +349 -0
- package/lib/rest/ipMessaging/v1/service/channel.js +323 -0
- package/lib/rest/ipMessaging/v1/service/role.d.ts +274 -0
- package/lib/rest/ipMessaging/v1/service/role.js +267 -0
- package/lib/rest/ipMessaging/v1/service/user/userChannel.d.ts +163 -0
- package/lib/rest/ipMessaging/v1/service/user/userChannel.js +139 -0
- package/lib/rest/ipMessaging/v1/service/user.d.ts +318 -0
- package/lib/rest/ipMessaging/v1/service/user.js +293 -0
- package/lib/rest/ipMessaging/v1/service.d.ts +449 -0
- package/lib/rest/ipMessaging/v1/service.js +454 -0
- package/lib/rest/ipMessaging/v2/credential.d.ts +303 -0
- package/lib/rest/ipMessaging/v2/credential.js +274 -0
- package/lib/rest/ipMessaging/v2/service/binding.d.ts +249 -0
- package/lib/rest/ipMessaging/v2/service/binding.js +222 -0
- package/lib/rest/ipMessaging/v2/service/channel/invite.d.ts +256 -0
- package/lib/rest/ipMessaging/v2/service/channel/invite.js +245 -0
- package/lib/rest/ipMessaging/v2/service/channel/member.d.ts +354 -0
- package/lib/rest/ipMessaging/v2/service/channel/member.js +306 -0
- package/lib/rest/ipMessaging/v2/service/channel/message.d.ts +375 -0
- package/lib/rest/ipMessaging/v2/service/channel/message.js +316 -0
- package/lib/rest/ipMessaging/v2/service/channel/webhook.d.ts +311 -0
- package/lib/rest/ipMessaging/v2/service/channel/webhook.js +288 -0
- package/lib/rest/ipMessaging/v2/service/channel.d.ts +399 -0
- package/lib/rest/ipMessaging/v2/service/channel.js +358 -0
- package/lib/rest/ipMessaging/v2/service/role.d.ts +274 -0
- package/lib/rest/ipMessaging/v2/service/role.js +267 -0
- package/lib/rest/ipMessaging/v2/service/user/userBinding.d.ts +245 -0
- package/lib/rest/ipMessaging/v2/service/user/userBinding.js +226 -0
- package/lib/rest/ipMessaging/v2/service/user/userChannel.d.ts +283 -0
- package/lib/rest/ipMessaging/v2/service/user/userChannel.js +257 -0
- package/lib/rest/ipMessaging/v2/service/user.d.ts +331 -0
- package/lib/rest/ipMessaging/v2/service/user.js +310 -0
- package/lib/rest/ipMessaging/v2/service.d.ts +417 -0
- package/lib/rest/ipMessaging/v2/service.js +401 -0
- package/lib/rest/lookups/V1.d.ts +15 -0
- package/lib/rest/lookups/V1.js +36 -0
- package/lib/rest/lookups/V2.d.ts +15 -0
- package/lib/rest/lookups/V2.js +36 -0
- package/lib/rest/lookups/v1/phoneNumber.d.ts +149 -0
- package/lib/rest/lookups/v1/phoneNumber.js +133 -0
- package/lib/rest/lookups/v2/phoneNumber.d.ts +202 -0
- package/lib/rest/lookups/v2/phoneNumber.js +158 -0
- package/lib/rest/media/V1.d.ts +25 -0
- package/lib/rest/media/V1.js +51 -0
- package/lib/rest/media/v1/mediaProcessor.d.ts +318 -0
- package/lib/rest/media/v1/mediaProcessor.js +256 -0
- package/lib/rest/media/v1/mediaRecording.d.ts +310 -0
- package/lib/rest/media/v1/mediaRecording.js +226 -0
- package/lib/rest/media/v1/playerStreamer/playbackGrant.d.ts +151 -0
- package/lib/rest/media/v1/playerStreamer/playbackGrant.js +146 -0
- package/lib/rest/media/v1/playerStreamer.d.ts +328 -0
- package/lib/rest/media/v1/playerStreamer.js +264 -0
- package/lib/rest/messaging/V1.d.ts +50 -0
- package/lib/rest/messaging/V1.js +82 -0
- package/lib/rest/messaging/v1/brandRegistration/brandVetting.d.ts +265 -0
- package/lib/rest/messaging/v1/brandRegistration/brandVetting.js +224 -0
- package/lib/rest/messaging/v1/brandRegistration.d.ts +344 -0
- package/lib/rest/messaging/v1/brandRegistration.js +275 -0
- package/lib/rest/messaging/v1/deactivations.d.ts +106 -0
- package/lib/rest/messaging/v1/deactivations.js +107 -0
- package/lib/rest/messaging/v1/domainCerts.d.ts +164 -0
- package/lib/rest/messaging/v1/domainCerts.js +164 -0
- package/lib/rest/messaging/v1/domainConfig.d.ts +153 -0
- package/lib/rest/messaging/v1/domainConfig.js +152 -0
- package/lib/rest/messaging/v1/externalCampaign.d.ts +79 -0
- package/lib/rest/messaging/v1/externalCampaign.js +87 -0
- package/lib/rest/messaging/v1/service/alphaSender.d.ts +264 -0
- package/lib/rest/messaging/v1/service/alphaSender.js +231 -0
- package/lib/rest/messaging/v1/service/phoneNumber.d.ts +270 -0
- package/lib/rest/messaging/v1/service/phoneNumber.js +234 -0
- package/lib/rest/messaging/v1/service/shortCode.d.ts +270 -0
- package/lib/rest/messaging/v1/service/shortCode.js +234 -0
- package/lib/rest/messaging/v1/service/usAppToPerson.d.ts +384 -0
- package/lib/rest/messaging/v1/service/usAppToPerson.js +304 -0
- package/lib/rest/messaging/v1/service/usAppToPersonUsecase.d.ts +62 -0
- package/lib/rest/messaging/v1/service/usAppToPersonUsecase.js +79 -0
- package/lib/rest/messaging/v1/service.d.ts +494 -0
- package/lib/rest/messaging/v1/service.js +408 -0
- package/lib/rest/messaging/v1/tollfreeVerification.d.ts +521 -0
- package/lib/rest/messaging/v1/tollfreeVerification.js +396 -0
- package/lib/rest/messaging/v1/usecase.d.ts +45 -0
- package/lib/rest/messaging/v1/usecase.js +62 -0
- package/lib/rest/microvisor/V1.d.ts +20 -0
- package/lib/rest/microvisor/V1.js +42 -0
- package/lib/rest/microvisor/v1/app.d.ts +240 -0
- package/lib/rest/microvisor/v1/app.js +201 -0
- package/lib/rest/microvisor/v1/device.d.ts +281 -0
- package/lib/rest/microvisor/v1/device.js +217 -0
- package/lib/rest/monitor/V1.d.ts +20 -0
- package/lib/rest/monitor/V1.js +42 -0
- package/lib/rest/monitor/v1/alert.d.ts +314 -0
- package/lib/rest/monitor/v1/alert.js +212 -0
- package/lib/rest/monitor/v1/event.d.ts +301 -0
- package/lib/rest/monitor/v1/event.js +208 -0
- package/lib/rest/notify/V1.d.ts +20 -0
- package/lib/rest/notify/V1.js +42 -0
- package/lib/rest/notify/v1/credential.d.ts +324 -0
- package/lib/rest/notify/v1/credential.js +274 -0
- package/lib/rest/notify/v1/service/binding.d.ts +337 -0
- package/lib/rest/notify/v1/service/binding.js +268 -0
- package/lib/rest/notify/v1/service/notification.d.ts +208 -0
- package/lib/rest/notify/v1/service/notification.js +152 -0
- package/lib/rest/notify/v1/service.d.ts +458 -0
- package/lib/rest/notify/v1/service.js +369 -0
- package/lib/rest/numbers/V2.d.ts +15 -0
- package/lib/rest/numbers/V2.js +37 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.d.ts +219 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.js +163 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.d.ts +231 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.js +200 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.d.ts +252 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.js +227 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.d.ts +106 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.js +97 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle.d.ts +445 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/bundle.js +354 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/endUser.d.ts +308 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/endUser.js +261 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/endUserType.d.ts +211 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/endUserType.js +179 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/regulation.d.ts +239 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/regulation.js +189 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.d.ts +326 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.js +267 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.d.ts +211 -0
- package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.js +179 -0
- package/lib/rest/numbers/v2/regulatoryCompliance.d.ts +34 -0
- package/lib/rest/numbers/v2/regulatoryCompliance.js +87 -0
- package/lib/rest/oauth/V1.d.ts +35 -0
- package/lib/rest/oauth/V1.js +61 -0
- package/lib/rest/oauth/v1/deviceCode.d.ts +87 -0
- package/lib/rest/oauth/v1/deviceCode.js +90 -0
- package/lib/rest/oauth/v1/oauth.d.ts +84 -0
- package/lib/rest/oauth/v1/oauth.js +102 -0
- package/lib/rest/oauth/v1/openidDiscovery.d.ts +150 -0
- package/lib/rest/oauth/v1/openidDiscovery.js +126 -0
- package/lib/rest/oauth/v1/token.d.ts +88 -0
- package/lib/rest/oauth/v1/token.js +98 -0
- package/lib/rest/oauth/v1/userInfo.d.ts +108 -0
- package/lib/rest/oauth/v1/userInfo.js +110 -0
- package/lib/rest/preview/DeployedDevices.d.ts +15 -0
- package/lib/rest/preview/DeployedDevices.js +36 -0
- package/lib/rest/preview/HostedNumbers.d.ts +20 -0
- package/lib/rest/preview/HostedNumbers.js +44 -0
- package/lib/rest/preview/Marketplace.d.ts +20 -0
- package/lib/rest/preview/Marketplace.js +44 -0
- package/lib/rest/preview/Sync.d.ts +15 -0
- package/lib/rest/preview/Sync.js +36 -0
- package/lib/rest/preview/Understand.d.ts +15 -0
- package/lib/rest/preview/Understand.js +36 -0
- package/lib/rest/preview/Wireless.d.ts +25 -0
- package/lib/rest/preview/Wireless.js +48 -0
- package/lib/rest/preview/deployed_devices/fleet/certificate.d.ts +324 -0
- package/lib/rest/preview/deployed_devices/fleet/certificate.js +269 -0
- package/lib/rest/preview/deployed_devices/fleet/deployment.d.ts +318 -0
- package/lib/rest/preview/deployed_devices/fleet/deployment.js +264 -0
- package/lib/rest/preview/deployed_devices/fleet/device.d.ts +358 -0
- package/lib/rest/preview/deployed_devices/fleet/device.js +284 -0
- package/lib/rest/preview/deployed_devices/fleet/key.d.ts +330 -0
- package/lib/rest/preview/deployed_devices/fleet/key.js +268 -0
- package/lib/rest/preview/deployed_devices/fleet.d.ts +352 -0
- package/lib/rest/preview/deployed_devices/fleet.js +307 -0
- package/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.d.ts +293 -0
- package/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.js +174 -0
- package/lib/rest/preview/hosted_numbers/authorizationDocument.d.ts +327 -0
- package/lib/rest/preview/hosted_numbers/authorizationDocument.js +285 -0
- package/lib/rest/preview/hosted_numbers/hostedNumberOrder.d.ts +468 -0
- package/lib/rest/preview/hosted_numbers/hostedNumberOrder.js +345 -0
- package/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.d.ts +219 -0
- package/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.js +187 -0
- package/lib/rest/preview/marketplace/availableAddOn.d.ts +231 -0
- package/lib/rest/preview/marketplace/availableAddOn.js +196 -0
- package/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.d.ts +251 -0
- package/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.js +214 -0
- package/lib/rest/preview/marketplace/installedAddOn.d.ts +332 -0
- package/lib/rest/preview/marketplace/installedAddOn.js +281 -0
- package/lib/rest/preview/sync/service/document/documentPermission.d.ts +280 -0
- package/lib/rest/preview/sync/service/document/documentPermission.js +253 -0
- package/lib/rest/preview/sync/service/document.d.ts +295 -0
- package/lib/rest/preview/sync/service/document.js +281 -0
- package/lib/rest/preview/sync/service/syncList/syncListItem.d.ts +321 -0
- package/lib/rest/preview/sync/service/syncList/syncListItem.js +280 -0
- package/lib/rest/preview/sync/service/syncList/syncListPermission.d.ts +280 -0
- package/lib/rest/preview/sync/service/syncList/syncListPermission.js +253 -0
- package/lib/rest/preview/sync/service/syncList.d.ts +270 -0
- package/lib/rest/preview/sync/service/syncList.js +263 -0
- package/lib/rest/preview/sync/service/syncMap/syncMapItem.d.ts +323 -0
- package/lib/rest/preview/sync/service/syncMap/syncMapItem.js +284 -0
- package/lib/rest/preview/sync/service/syncMap/syncMapPermission.d.ts +280 -0
- package/lib/rest/preview/sync/service/syncMap/syncMapPermission.js +253 -0
- package/lib/rest/preview/sync/service/syncMap.d.ts +270 -0
- package/lib/rest/preview/sync/service/syncMap.js +263 -0
- package/lib/rest/preview/sync/service.d.ts +330 -0
- package/lib/rest/preview/sync/service.js +308 -0
- package/lib/rest/preview/understand/assistant/assistantFallbackActions.d.ts +131 -0
- package/lib/rest/preview/understand/assistant/assistantFallbackActions.js +142 -0
- package/lib/rest/preview/understand/assistant/assistantInitiationActions.d.ts +131 -0
- package/lib/rest/preview/understand/assistant/assistantInitiationActions.js +142 -0
- package/lib/rest/preview/understand/assistant/dialogue.d.ts +105 -0
- package/lib/rest/preview/understand/assistant/dialogue.js +120 -0
- package/lib/rest/preview/understand/assistant/fieldType/fieldValue.d.ts +285 -0
- package/lib/rest/preview/understand/assistant/fieldType/fieldValue.js +249 -0
- package/lib/rest/preview/understand/assistant/fieldType.d.ts +318 -0
- package/lib/rest/preview/understand/assistant/fieldType.js +277 -0
- package/lib/rest/preview/understand/assistant/modelBuild.d.ts +320 -0
- package/lib/rest/preview/understand/assistant/modelBuild.js +266 -0
- package/lib/rest/preview/understand/assistant/query.d.ts +361 -0
- package/lib/rest/preview/understand/assistant/query.js +286 -0
- package/lib/rest/preview/understand/assistant/styleSheet.d.ts +140 -0
- package/lib/rest/preview/understand/assistant/styleSheet.js +142 -0
- package/lib/rest/preview/understand/assistant/task/field.d.ts +271 -0
- package/lib/rest/preview/understand/assistant/task/field.js +243 -0
- package/lib/rest/preview/understand/assistant/task/sample.d.ts +331 -0
- package/lib/rest/preview/understand/assistant/task/sample.js +280 -0
- package/lib/rest/preview/understand/assistant/task/taskActions.d.ts +145 -0
- package/lib/rest/preview/understand/assistant/task/taskActions.js +150 -0
- package/lib/rest/preview/understand/assistant/task/taskStatistics.d.ts +112 -0
- package/lib/rest/preview/understand/assistant/task/taskStatistics.js +125 -0
- package/lib/rest/preview/understand/assistant/task.d.ts +356 -0
- package/lib/rest/preview/understand/assistant/task.js +326 -0
- package/lib/rest/preview/understand/assistant.d.ts +422 -0
- package/lib/rest/preview/understand/assistant.js +392 -0
- package/lib/rest/preview/wireless/command.d.ts +266 -0
- package/lib/rest/preview/wireless/command.js +232 -0
- package/lib/rest/preview/wireless/ratePlan.d.ts +326 -0
- package/lib/rest/preview/wireless/ratePlan.js +286 -0
- package/lib/rest/preview/wireless/sim/usage.d.ts +131 -0
- package/lib/rest/preview/wireless/sim/usage.js +133 -0
- package/lib/rest/preview/wireless/sim.d.ts +361 -0
- package/lib/rest/preview/wireless/sim.js +291 -0
- package/lib/rest/pricing/V1.d.ts +25 -0
- package/lib/rest/pricing/V1.js +48 -0
- package/lib/rest/pricing/V2.d.ts +25 -0
- package/lib/rest/pricing/V2.js +48 -0
- package/lib/rest/pricing/v1/messaging/country.d.ts +233 -0
- package/lib/rest/pricing/v1/messaging/country.js +190 -0
- package/lib/rest/pricing/v1/messaging.d.ts +19 -0
- package/lib/rest/pricing/v1/messaging.js +42 -0
- package/lib/rest/pricing/v1/phoneNumber/country.d.ts +216 -0
- package/lib/rest/pricing/v1/phoneNumber/country.js +182 -0
- package/lib/rest/pricing/v1/phoneNumber.d.ts +19 -0
- package/lib/rest/pricing/v1/phoneNumber.js +42 -0
- package/lib/rest/pricing/v1/voice/country.d.ts +228 -0
- package/lib/rest/pricing/v1/voice/country.js +187 -0
- package/lib/rest/pricing/v1/voice/number.d.ts +127 -0
- package/lib/rest/pricing/v1/voice/number.js +130 -0
- package/lib/rest/pricing/v1/voice.d.ts +22 -0
- package/lib/rest/pricing/v1/voice.js +51 -0
- package/lib/rest/pricing/v2/country.d.ts +229 -0
- package/lib/rest/pricing/v2/country.js +187 -0
- package/lib/rest/pricing/v2/number.d.ts +158 -0
- package/lib/rest/pricing/v2/number.js +137 -0
- package/lib/rest/pricing/v2/voice/country.d.ts +229 -0
- package/lib/rest/pricing/v2/voice/country.js +187 -0
- package/lib/rest/pricing/v2/voice/number.d.ts +159 -0
- package/lib/rest/pricing/v2/voice/number.js +137 -0
- package/lib/rest/pricing/v2/voice.d.ts +22 -0
- package/lib/rest/pricing/v2/voice.js +51 -0
- package/lib/rest/proxy/V1.d.ts +15 -0
- package/lib/rest/proxy/V1.js +36 -0
- package/lib/rest/proxy/v1/service/phoneNumber.d.ts +340 -0
- package/lib/rest/proxy/v1/service/phoneNumber.js +272 -0
- package/lib/rest/proxy/v1/service/session/interaction.d.ts +309 -0
- package/lib/rest/proxy/v1/service/session/interaction.js +238 -0
- package/lib/rest/proxy/v1/service/session/participant/messageInteraction.d.ts +326 -0
- package/lib/rest/proxy/v1/service/session/participant/messageInteraction.js +257 -0
- package/lib/rest/proxy/v1/service/session/participant.d.ts +310 -0
- package/lib/rest/proxy/v1/service/session/participant.js +266 -0
- package/lib/rest/proxy/v1/service/session.d.ts +388 -0
- package/lib/rest/proxy/v1/service/session.js +316 -0
- package/lib/rest/proxy/v1/service/shortCode.d.ts +316 -0
- package/lib/rest/proxy/v1/service/shortCode.js +262 -0
- package/lib/rest/proxy/v1/service.d.ts +388 -0
- package/lib/rest/proxy/v1/service.js +330 -0
- package/lib/rest/routes/V2.d.ts +25 -0
- package/lib/rest/routes/V2.js +48 -0
- package/lib/rest/routes/v2/phoneNumber.d.ts +168 -0
- package/lib/rest/routes/v2/phoneNumber.js +149 -0
- package/lib/rest/routes/v2/sipDomain.d.ts +144 -0
- package/lib/rest/routes/v2/sipDomain.js +149 -0
- package/lib/rest/routes/v2/trunk.d.ts +168 -0
- package/lib/rest/routes/v2/trunk.js +149 -0
- package/lib/rest/serverless/V1.d.ts +15 -0
- package/lib/rest/serverless/V1.js +36 -0
- package/lib/rest/serverless/v1/service/asset/assetVersion.d.ts +231 -0
- package/lib/rest/serverless/v1/service/asset/assetVersion.js +197 -0
- package/lib/rest/serverless/v1/service/asset.d.ts +298 -0
- package/lib/rest/serverless/v1/service/asset.js +271 -0
- package/lib/rest/serverless/v1/service/build/buildStatus.d.ts +107 -0
- package/lib/rest/serverless/v1/service/build/buildStatus.js +123 -0
- package/lib/rest/serverless/v1/service/build.d.ts +303 -0
- package/lib/rest/serverless/v1/service/build.js +260 -0
- package/lib/rest/serverless/v1/service/environment/deployment.d.ts +257 -0
- package/lib/rest/serverless/v1/service/environment/deployment.js +220 -0
- package/lib/rest/serverless/v1/service/environment/log.d.ts +273 -0
- package/lib/rest/serverless/v1/service/environment/log.js +211 -0
- package/lib/rest/serverless/v1/service/environment/variable.d.ts +318 -0
- package/lib/rest/serverless/v1/service/environment/variable.js +272 -0
- package/lib/rest/serverless/v1/service/environment.d.ts +308 -0
- package/lib/rest/serverless/v1/service/environment.js +278 -0
- package/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.d.ts +114 -0
- package/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.js +131 -0
- package/lib/rest/serverless/v1/service/function/functionVersion.d.ts +242 -0
- package/lib/rest/serverless/v1/service/function/functionVersion.js +212 -0
- package/lib/rest/serverless/v1/service/function.d.ts +298 -0
- package/lib/rest/serverless/v1/service/function.js +271 -0
- package/lib/rest/serverless/v1/service.d.ts +364 -0
- package/lib/rest/serverless/v1/service.js +321 -0
- package/lib/rest/studio/V1.d.ts +15 -0
- package/lib/rest/studio/V1.js +36 -0
- package/lib/rest/studio/V2.d.ts +20 -0
- package/lib/rest/studio/V2.js +42 -0
- package/lib/rest/studio/v1/flow/engagement/engagementContext.d.ts +109 -0
- package/lib/rest/studio/v1/flow/engagement/engagementContext.js +123 -0
- package/lib/rest/studio/v1/flow/engagement/step/stepContext.d.ts +117 -0
- package/lib/rest/studio/v1/flow/engagement/step/stepContext.js +131 -0
- package/lib/rest/studio/v1/flow/engagement/step.d.ts +265 -0
- package/lib/rest/studio/v1/flow/engagement/step.js +218 -0
- package/lib/rest/studio/v1/flow/engagement.d.ts +300 -0
- package/lib/rest/studio/v1/flow/engagement.js +269 -0
- package/lib/rest/studio/v1/flow/execution/executionContext.d.ts +109 -0
- package/lib/rest/studio/v1/flow/execution/executionContext.js +123 -0
- package/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.d.ts +117 -0
- package/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.js +131 -0
- package/lib/rest/studio/v1/flow/execution/executionStep.d.ts +265 -0
- package/lib/rest/studio/v1/flow/execution/executionStep.js +218 -0
- package/lib/rest/studio/v1/flow/execution.d.ts +338 -0
- package/lib/rest/studio/v1/flow/execution.js +298 -0
- package/lib/rest/studio/v1/flow.d.ts +266 -0
- package/lib/rest/studio/v1/flow.js +231 -0
- package/lib/rest/studio/v2/flow/execution/executionContext.d.ts +109 -0
- package/lib/rest/studio/v2/flow/execution/executionContext.js +123 -0
- package/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.d.ts +117 -0
- package/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.js +131 -0
- package/lib/rest/studio/v2/flow/execution/executionStep.d.ts +265 -0
- package/lib/rest/studio/v2/flow/execution/executionStep.js +218 -0
- package/lib/rest/studio/v2/flow/execution.d.ts +332 -0
- package/lib/rest/studio/v2/flow/execution.js +296 -0
- package/lib/rest/studio/v2/flow/flowRevision.d.ts +253 -0
- package/lib/rest/studio/v2/flow/flowRevision.js +199 -0
- package/lib/rest/studio/v2/flow/flowTestUser.d.ts +121 -0
- package/lib/rest/studio/v2/flow/flowTestUser.js +138 -0
- package/lib/rest/studio/v2/flow.d.ts +361 -0
- package/lib/rest/studio/v2/flow.js +319 -0
- package/lib/rest/studio/v2/flowValidate.d.ts +60 -0
- package/lib/rest/studio/v2/flowValidate.js +85 -0
- package/lib/rest/supersim/V1.d.ts +55 -0
- package/lib/rest/supersim/V1.js +86 -0
- package/lib/rest/supersim/v1/esimProfile.d.ts +297 -0
- package/lib/rest/supersim/v1/esimProfile.js +226 -0
- package/lib/rest/supersim/v1/fleet.d.ts +363 -0
- package/lib/rest/supersim/v1/fleet.js +277 -0
- package/lib/rest/supersim/v1/ipCommand.d.ts +303 -0
- package/lib/rest/supersim/v1/ipCommand.js +238 -0
- package/lib/rest/supersim/v1/network.d.ts +229 -0
- package/lib/rest/supersim/v1/network.js +185 -0
- package/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.d.ts +252 -0
- package/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.js +227 -0
- package/lib/rest/supersim/v1/networkAccessProfile.d.ts +296 -0
- package/lib/rest/supersim/v1/networkAccessProfile.js +248 -0
- package/lib/rest/supersim/v1/settingsUpdate.d.ts +194 -0
- package/lib/rest/supersim/v1/settingsUpdate.js +136 -0
- package/lib/rest/supersim/v1/sim/billingPeriod.d.ts +183 -0
- package/lib/rest/supersim/v1/sim/billingPeriod.js +136 -0
- package/lib/rest/supersim/v1/sim/simIpAddress.d.ts +147 -0
- package/lib/rest/supersim/v1/sim/simIpAddress.js +124 -0
- package/lib/rest/supersim/v1/sim.d.ts +341 -0
- package/lib/rest/supersim/v1/sim.js +283 -0
- package/lib/rest/supersim/v1/smsCommand.d.ts +271 -0
- package/lib/rest/supersim/v1/smsCommand.js +222 -0
- package/lib/rest/supersim/v1/usageRecord.d.ts +252 -0
- package/lib/rest/supersim/v1/usageRecord.js +154 -0
- package/lib/rest/sync/V1.d.ts +15 -0
- package/lib/rest/sync/V1.js +36 -0
- package/lib/rest/sync/v1/service/document/documentPermission.d.ts +280 -0
- package/lib/rest/sync/v1/service/document/documentPermission.js +253 -0
- package/lib/rest/sync/v1/service/document.d.ts +354 -0
- package/lib/rest/sync/v1/service/document.js +289 -0
- package/lib/rest/sync/v1/service/syncList/syncListItem.d.ts +385 -0
- package/lib/rest/sync/v1/service/syncList/syncListItem.js +296 -0
- package/lib/rest/sync/v1/service/syncList/syncListPermission.d.ts +280 -0
- package/lib/rest/sync/v1/service/syncList/syncListPermission.js +253 -0
- package/lib/rest/sync/v1/service/syncList.d.ts +354 -0
- package/lib/rest/sync/v1/service/syncList.js +298 -0
- package/lib/rest/sync/v1/service/syncMap/syncMapItem.d.ts +387 -0
- package/lib/rest/sync/v1/service/syncMap/syncMapItem.js +300 -0
- package/lib/rest/sync/v1/service/syncMap/syncMapPermission.d.ts +280 -0
- package/lib/rest/sync/v1/service/syncMap/syncMapPermission.js +253 -0
- package/lib/rest/sync/v1/service/syncMap.d.ts +354 -0
- package/lib/rest/sync/v1/service/syncMap.js +298 -0
- package/lib/rest/sync/v1/service/syncStream/streamMessage.d.ts +61 -0
- package/lib/rest/sync/v1/service/syncStream/streamMessage.js +83 -0
- package/lib/rest/sync/v1/service/syncStream.d.ts +336 -0
- package/lib/rest/sync/v1/service/syncStream.js +279 -0
- package/lib/rest/sync/v1/service.d.ts +404 -0
- package/lib/rest/sync/v1/service.js +344 -0
- package/lib/rest/taskrouter/V1.d.ts +15 -0
- package/lib/rest/taskrouter/V1.js +36 -0
- package/lib/rest/taskrouter/v1/workspace/activity.d.ts +323 -0
- package/lib/rest/taskrouter/v1/workspace/activity.js +267 -0
- package/lib/rest/taskrouter/v1/workspace/event.d.ts +351 -0
- package/lib/rest/taskrouter/v1/workspace/event.js +231 -0
- package/lib/rest/taskrouter/v1/workspace/task/reservation.d.ts +412 -0
- package/lib/rest/taskrouter/v1/workspace/task/reservation.js +344 -0
- package/lib/rest/taskrouter/v1/workspace/task.d.ts +495 -0
- package/lib/rest/taskrouter/v1/workspace/task.js +341 -0
- package/lib/rest/taskrouter/v1/workspace/taskChannel.d.ts +324 -0
- package/lib/rest/taskrouter/v1/workspace/taskChannel.js +271 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.d.ts +244 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.js +172 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.d.ts +188 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.js +148 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.d.ts +148 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.js +139 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.d.ts +203 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.js +142 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue.d.ts +417 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue.js +349 -0
- package/lib/rest/taskrouter/v1/workspace/worker/reservation.d.ts +401 -0
- package/lib/rest/taskrouter/v1/workspace/worker/reservation.js +338 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workerChannel.d.ts +307 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workerChannel.js +236 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.d.ts +140 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.js +135 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.d.ts +180 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.js +143 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.d.ts +132 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.js +123 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.d.ts +144 -0
- package/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.js +135 -0
- package/lib/rest/taskrouter/v1/workspace/worker.d.ts +454 -0
- package/lib/rest/taskrouter/v1/workspace/worker.js +370 -0
- package/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.d.ts +244 -0
- package/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.js +171 -0
- package/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.d.ts +158 -0
- package/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.js +137 -0
- package/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.d.ts +148 -0
- package/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.js +139 -0
- package/lib/rest/taskrouter/v1/workspace/workflow.d.ts +384 -0
- package/lib/rest/taskrouter/v1/workspace/workflow.js +334 -0
- package/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.d.ts +236 -0
- package/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.js +163 -0
- package/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.d.ts +162 -0
- package/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.js +133 -0
- package/lib/rest/taskrouter/v1/workspace/workspaceStatistics.d.ts +140 -0
- package/lib/rest/taskrouter/v1/workspace/workspaceStatistics.js +131 -0
- package/lib/rest/taskrouter/v1/workspace.d.ts +452 -0
- package/lib/rest/taskrouter/v1/workspace.js +418 -0
- package/lib/rest/trunking/V1.d.ts +15 -0
- package/lib/rest/trunking/V1.js +36 -0
- package/lib/rest/trunking/v1/trunk/credentialList.d.ts +258 -0
- package/lib/rest/trunking/v1/trunk/credentialList.js +230 -0
- package/lib/rest/trunking/v1/trunk/ipAccessControlList.d.ts +258 -0
- package/lib/rest/trunking/v1/trunk/ipAccessControlList.js +230 -0
- package/lib/rest/trunking/v1/trunk/originationUrl.d.ts +340 -0
- package/lib/rest/trunking/v1/trunk/originationUrl.js +289 -0
- package/lib/rest/trunking/v1/trunk/phoneNumber.d.ts +375 -0
- package/lib/rest/trunking/v1/trunk/phoneNumber.js +268 -0
- package/lib/rest/trunking/v1/trunk/recording.d.ts +129 -0
- package/lib/rest/trunking/v1/trunk/recording.js +140 -0
- package/lib/rest/trunking/v1/trunk.d.ts +431 -0
- package/lib/rest/trunking/v1/trunk.js +364 -0
- package/lib/rest/trusthub/V1.d.ts +45 -0
- package/lib/rest/trusthub/V1.js +76 -0
- package/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.d.ts +272 -0
- package/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.js +239 -0
- package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.d.ts +252 -0
- package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.js +227 -0
- package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.d.ts +239 -0
- package/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.js +212 -0
- package/lib/rest/trusthub/v1/customerProfiles.d.ts +380 -0
- package/lib/rest/trusthub/v1/customerProfiles.js +322 -0
- package/lib/rest/trusthub/v1/endUser.d.ts +310 -0
- package/lib/rest/trusthub/v1/endUser.js +261 -0
- package/lib/rest/trusthub/v1/endUserType.d.ts +211 -0
- package/lib/rest/trusthub/v1/endUserType.js +179 -0
- package/lib/rest/trusthub/v1/policies.d.ts +205 -0
- package/lib/rest/trusthub/v1/policies.js +177 -0
- package/lib/rest/trusthub/v1/supportingDocument.d.ts +320 -0
- package/lib/rest/trusthub/v1/supportingDocument.js +265 -0
- package/lib/rest/trusthub/v1/supportingDocumentType.d.ts +211 -0
- package/lib/rest/trusthub/v1/supportingDocumentType.js +179 -0
- package/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.d.ts +272 -0
- package/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.js +239 -0
- package/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.d.ts +252 -0
- package/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.js +227 -0
- package/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.d.ts +239 -0
- package/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.js +212 -0
- package/lib/rest/trusthub/v1/trustProducts.d.ts +380 -0
- package/lib/rest/trusthub/v1/trustProducts.js +322 -0
- package/lib/rest/verify/V2.d.ts +40 -0
- package/lib/rest/verify/V2.js +69 -0
- package/lib/rest/verify/v2/form.d.ts +98 -0
- package/lib/rest/verify/v2/form.js +112 -0
- package/lib/rest/verify/v2/safelist.d.ts +127 -0
- package/lib/rest/verify/v2/safelist.js +150 -0
- package/lib/rest/verify/v2/service/accessToken.d.ts +158 -0
- package/lib/rest/verify/v2/service/accessToken.js +159 -0
- package/lib/rest/verify/v2/service/entity/challenge/notification.d.ts +112 -0
- package/lib/rest/verify/v2/service/entity/challenge/notification.js +102 -0
- package/lib/rest/verify/v2/service/entity/challenge.d.ts +384 -0
- package/lib/rest/verify/v2/service/entity/challenge.js +296 -0
- package/lib/rest/verify/v2/service/entity/factor.d.ts +335 -0
- package/lib/rest/verify/v2/service/entity/factor.js +270 -0
- package/lib/rest/verify/v2/service/entity/newFactor.d.ts +157 -0
- package/lib/rest/verify/v2/service/entity/newFactor.js +137 -0
- package/lib/rest/verify/v2/service/entity.d.ts +288 -0
- package/lib/rest/verify/v2/service/entity.js +270 -0
- package/lib/rest/verify/v2/service/messagingConfiguration.d.ts +286 -0
- package/lib/rest/verify/v2/service/messagingConfiguration.js +260 -0
- package/lib/rest/verify/v2/service/rateLimit/bucket.d.ts +318 -0
- package/lib/rest/verify/v2/service/rateLimit/bucket.js +272 -0
- package/lib/rest/verify/v2/service/rateLimit.d.ts +322 -0
- package/lib/rest/verify/v2/service/rateLimit.js +275 -0
- package/lib/rest/verify/v2/service/verification.d.ts +237 -0
- package/lib/rest/verify/v2/service/verification.js +217 -0
- package/lib/rest/verify/v2/service/verificationCheck.d.ts +134 -0
- package/lib/rest/verify/v2/service/verificationCheck.js +110 -0
- package/lib/rest/verify/v2/service/webhook.d.ts +340 -0
- package/lib/rest/verify/v2/service/webhook.js +287 -0
- package/lib/rest/verify/v2/service.d.ts +481 -0
- package/lib/rest/verify/v2/service.js +426 -0
- package/lib/rest/verify/v2/template.d.ts +172 -0
- package/lib/rest/verify/v2/template.js +128 -0
- package/lib/rest/verify/v2/verificationAttempt.d.ts +288 -0
- package/lib/rest/verify/v2/verificationAttempt.js +207 -0
- package/lib/rest/verify/v2/verificationAttemptsSummary.d.ts +138 -0
- package/lib/rest/verify/v2/verificationAttemptsSummary.js +126 -0
- package/lib/rest/video/V1.d.ts +40 -0
- package/lib/rest/video/V1.js +69 -0
- package/lib/rest/video/v1/composition.d.ts +377 -0
- package/lib/rest/video/v1/composition.js +275 -0
- package/lib/rest/video/v1/compositionHook.d.ts +389 -0
- package/lib/rest/video/v1/compositionHook.js +310 -0
- package/lib/rest/video/v1/compositionSettings.d.ts +159 -0
- package/lib/rest/video/v1/compositionSettings.js +151 -0
- package/lib/rest/video/v1/recording.d.ts +335 -0
- package/lib/rest/video/v1/recording.js +236 -0
- package/lib/rest/video/v1/recordingSettings.d.ts +159 -0
- package/lib/rest/video/v1/recordingSettings.js +151 -0
- package/lib/rest/video/v1/room/participant/anonymize.d.ts +143 -0
- package/lib/rest/video/v1/room/participant/anonymize.js +135 -0
- package/lib/rest/video/v1/room/participant/publishedTrack.d.ts +237 -0
- package/lib/rest/video/v1/room/participant/publishedTrack.js +199 -0
- package/lib/rest/video/v1/room/participant/subscribeRules.d.ts +103 -0
- package/lib/rest/video/v1/room/participant/subscribeRules.js +103 -0
- package/lib/rest/video/v1/room/participant/subscribedTrack.d.ts +243 -0
- package/lib/rest/video/v1/room/participant/subscribedTrack.js +201 -0
- package/lib/rest/video/v1/room/participant.d.ts +351 -0
- package/lib/rest/video/v1/room/participant.js +286 -0
- package/lib/rest/video/v1/room/recordingRules.d.ts +95 -0
- package/lib/rest/video/v1/room/recordingRules.js +98 -0
- package/lib/rest/video/v1/room/roomRecording.d.ts +318 -0
- package/lib/rest/video/v1/room/roomRecording.js +236 -0
- package/lib/rest/video/v1/room.d.ts +449 -0
- package/lib/rest/video/v1/room.js +339 -0
- package/lib/rest/voice/V1.d.ts +40 -0
- package/lib/rest/voice/V1.js +69 -0
- package/lib/rest/voice/v1/archivedCall.d.ts +51 -0
- package/lib/rest/voice/v1/archivedCall.js +71 -0
- package/lib/rest/voice/v1/byocTrunk.d.ts +393 -0
- package/lib/rest/voice/v1/byocTrunk.js +304 -0
- package/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.d.ts +340 -0
- package/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.js +280 -0
- package/lib/rest/voice/v1/connectionPolicy.d.ts +314 -0
- package/lib/rest/voice/v1/connectionPolicy.js +265 -0
- package/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.d.ts +59 -0
- package/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.js +77 -0
- package/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.d.ts +143 -0
- package/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.js +122 -0
- package/lib/rest/voice/v1/dialingPermissions/country.d.ts +279 -0
- package/lib/rest/voice/v1/dialingPermissions/country.js +214 -0
- package/lib/rest/voice/v1/dialingPermissions/settings.d.ts +129 -0
- package/lib/rest/voice/v1/dialingPermissions/settings.js +130 -0
- package/lib/rest/voice/v1/dialingPermissions.d.ts +25 -0
- package/lib/rest/voice/v1/dialingPermissions.js +60 -0
- package/lib/rest/voice/v1/ipRecord.d.ts +308 -0
- package/lib/rest/voice/v1/ipRecord.js +256 -0
- package/lib/rest/voice/v1/sourceIpMapping.d.ts +278 -0
- package/lib/rest/voice/v1/sourceIpMapping.js +252 -0
- package/lib/rest/wireless/V1.d.ts +30 -0
- package/lib/rest/wireless/V1.js +54 -0
- package/lib/rest/wireless/v1/command.d.ts +314 -0
- package/lib/rest/wireless/v1/command.js +253 -0
- package/lib/rest/wireless/v1/ratePlan.d.ts +382 -0
- package/lib/rest/wireless/v1/ratePlan.js +293 -0
- package/lib/rest/wireless/v1/sim/dataSession.d.ts +233 -0
- package/lib/rest/wireless/v1/sim/dataSession.js +152 -0
- package/lib/rest/wireless/v1/sim/usageRecord.d.ts +186 -0
- package/lib/rest/wireless/v1/sim/usageRecord.js +136 -0
- package/lib/rest/wireless/v1/sim.d.ts +465 -0
- package/lib/rest/wireless/v1/sim.js +332 -0
- package/lib/rest/wireless/v1/usageRecord.d.ts +179 -0
- package/lib/rest/wireless/v1/usageRecord.js +130 -0
- package/lib/twiml/FaxResponse.d.ts +66 -0
- package/lib/twiml/FaxResponse.js +67 -0
- package/lib/twiml/MessagingResponse.d.ts +117 -0
- package/lib/twiml/MessagingResponse.js +120 -0
- package/lib/twiml/TwiML.d.ts +42 -0
- package/lib/twiml/TwiML.js +83 -0
- package/lib/twiml/VoiceResponse.d.ts +2448 -0
- package/lib/twiml/VoiceResponse.js +1434 -0
- package/lib/webhooks/webhooks.d.ts +136 -0
- package/lib/webhooks/webhooks.js +302 -0
- package/package.json +2 -2
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { inspect, InspectOptions } from "util";
|
|
3
|
+
import V1 from "../../V1";
|
|
4
|
+
/**
|
|
5
|
+
* Options to pass to fetch a UsAppToPersonUsecaseInstance
|
|
6
|
+
*/
|
|
7
|
+
export interface UsAppToPersonUsecaseListInstanceFetchOptions {
|
|
8
|
+
/** The unique string to identify the A2P brand. */
|
|
9
|
+
brandRegistrationSid?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface UsAppToPersonUsecaseSolution {
|
|
12
|
+
messagingServiceSid: string;
|
|
13
|
+
}
|
|
14
|
+
export interface UsAppToPersonUsecaseListInstance {
|
|
15
|
+
_version: V1;
|
|
16
|
+
_solution: UsAppToPersonUsecaseSolution;
|
|
17
|
+
_uri: string;
|
|
18
|
+
/**
|
|
19
|
+
* Fetch a UsAppToPersonUsecaseInstance
|
|
20
|
+
*
|
|
21
|
+
* @param callback - Callback to handle processed record
|
|
22
|
+
*
|
|
23
|
+
* @returns Resolves to processed UsAppToPersonUsecaseInstance
|
|
24
|
+
*/
|
|
25
|
+
fetch(callback?: (error: Error | null, item?: UsAppToPersonUsecaseInstance) => any): Promise<UsAppToPersonUsecaseInstance>;
|
|
26
|
+
/**
|
|
27
|
+
* Fetch a UsAppToPersonUsecaseInstance
|
|
28
|
+
*
|
|
29
|
+
* @param params - Parameter for request
|
|
30
|
+
* @param callback - Callback to handle processed record
|
|
31
|
+
*
|
|
32
|
+
* @returns Resolves to processed UsAppToPersonUsecaseInstance
|
|
33
|
+
*/
|
|
34
|
+
fetch(params: UsAppToPersonUsecaseListInstanceFetchOptions, callback?: (error: Error | null, item?: UsAppToPersonUsecaseInstance) => any): Promise<UsAppToPersonUsecaseInstance>;
|
|
35
|
+
/**
|
|
36
|
+
* Provide a user-friendly representation
|
|
37
|
+
*/
|
|
38
|
+
toJSON(): any;
|
|
39
|
+
[inspect.custom](_depth: any, options: InspectOptions): any;
|
|
40
|
+
}
|
|
41
|
+
export declare function UsAppToPersonUsecaseListInstance(version: V1, messagingServiceSid: string): UsAppToPersonUsecaseListInstance;
|
|
42
|
+
interface UsAppToPersonUsecaseResource {
|
|
43
|
+
us_app_to_person_usecases: Array<any>;
|
|
44
|
+
}
|
|
45
|
+
export declare class UsAppToPersonUsecaseInstance {
|
|
46
|
+
protected _version: V1;
|
|
47
|
+
constructor(_version: V1, payload: UsAppToPersonUsecaseResource, messagingServiceSid: string);
|
|
48
|
+
/**
|
|
49
|
+
* Human readable name, code, description and post_approval_required (indicates whether or not post approval is required for this Use Case) of A2P Campaign Use Cases.
|
|
50
|
+
*/
|
|
51
|
+
usAppToPersonUsecases: Array<any>;
|
|
52
|
+
/**
|
|
53
|
+
* Provide a user-friendly representation
|
|
54
|
+
*
|
|
55
|
+
* @returns Object
|
|
56
|
+
*/
|
|
57
|
+
toJSON(): {
|
|
58
|
+
usAppToPersonUsecases: any[];
|
|
59
|
+
};
|
|
60
|
+
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
61
|
+
}
|
|
62
|
+
export {};
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* This code was generated by
|
|
4
|
+
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
|
5
|
+
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
|
6
|
+
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
|
7
|
+
*
|
|
8
|
+
* Twilio - Messaging
|
|
9
|
+
* This is the public Twilio REST API.
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UsAppToPersonUsecaseInstance = exports.UsAppToPersonUsecaseListInstance = void 0;
|
|
17
|
+
const util_1 = require("util");
|
|
18
|
+
const deserialize = require("../../../../base/deserialize");
|
|
19
|
+
const serialize = require("../../../../base/serialize");
|
|
20
|
+
const utility_1 = require("../../../../base/utility");
|
|
21
|
+
function UsAppToPersonUsecaseListInstance(version, messagingServiceSid) {
|
|
22
|
+
if (!(0, utility_1.isValidPathParam)(messagingServiceSid)) {
|
|
23
|
+
throw new Error("Parameter 'messagingServiceSid' is not valid.");
|
|
24
|
+
}
|
|
25
|
+
const instance = {};
|
|
26
|
+
instance._version = version;
|
|
27
|
+
instance._solution = { messagingServiceSid };
|
|
28
|
+
instance._uri = `/Services/${messagingServiceSid}/Compliance/Usa2p/Usecases`;
|
|
29
|
+
instance.fetch = function fetch(params, callback) {
|
|
30
|
+
if (params instanceof Function) {
|
|
31
|
+
callback = params;
|
|
32
|
+
params = {};
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
params = params || {};
|
|
36
|
+
}
|
|
37
|
+
let data = {};
|
|
38
|
+
if (params["brandRegistrationSid"] !== undefined)
|
|
39
|
+
data["BrandRegistrationSid"] = params["brandRegistrationSid"];
|
|
40
|
+
const headers = {};
|
|
41
|
+
let operationVersion = version, operationPromise = operationVersion.fetch({
|
|
42
|
+
uri: instance._uri,
|
|
43
|
+
method: "get",
|
|
44
|
+
params: data,
|
|
45
|
+
headers,
|
|
46
|
+
});
|
|
47
|
+
operationPromise = operationPromise.then((payload) => new UsAppToPersonUsecaseInstance(operationVersion, payload, instance._solution.messagingServiceSid));
|
|
48
|
+
operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
|
|
49
|
+
return operationPromise;
|
|
50
|
+
};
|
|
51
|
+
instance.toJSON = function toJSON() {
|
|
52
|
+
return instance._solution;
|
|
53
|
+
};
|
|
54
|
+
instance[util_1.inspect.custom] = function inspectImpl(_depth, options) {
|
|
55
|
+
return (0, util_1.inspect)(instance.toJSON(), options);
|
|
56
|
+
};
|
|
57
|
+
return instance;
|
|
58
|
+
}
|
|
59
|
+
exports.UsAppToPersonUsecaseListInstance = UsAppToPersonUsecaseListInstance;
|
|
60
|
+
class UsAppToPersonUsecaseInstance {
|
|
61
|
+
constructor(_version, payload, messagingServiceSid) {
|
|
62
|
+
this._version = _version;
|
|
63
|
+
this.usAppToPersonUsecases = payload.us_app_to_person_usecases;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Provide a user-friendly representation
|
|
67
|
+
*
|
|
68
|
+
* @returns Object
|
|
69
|
+
*/
|
|
70
|
+
toJSON() {
|
|
71
|
+
return {
|
|
72
|
+
usAppToPersonUsecases: this.usAppToPersonUsecases,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
[util_1.inspect.custom](_depth, options) {
|
|
76
|
+
return (0, util_1.inspect)(this.toJSON(), options);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
exports.UsAppToPersonUsecaseInstance = UsAppToPersonUsecaseInstance;
|
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { inspect, InspectOptions } from "util";
|
|
3
|
+
import Page, { TwilioResponsePayload } from "../../../base/Page";
|
|
4
|
+
import Response from "../../../http/response";
|
|
5
|
+
import V1 from "../V1";
|
|
6
|
+
import { AlphaSenderListInstance } from "./service/alphaSender";
|
|
7
|
+
import { PhoneNumberListInstance } from "./service/phoneNumber";
|
|
8
|
+
import { ShortCodeListInstance } from "./service/shortCode";
|
|
9
|
+
import { UsAppToPersonListInstance } from "./service/usAppToPerson";
|
|
10
|
+
import { UsAppToPersonUsecaseListInstance } from "./service/usAppToPersonUsecase";
|
|
11
|
+
type ServiceScanMessageContent = "inherit" | "enable" | "disable";
|
|
12
|
+
/**
|
|
13
|
+
* Options to pass to update a ServiceInstance
|
|
14
|
+
*/
|
|
15
|
+
export interface ServiceContextUpdateOptions {
|
|
16
|
+
/** A descriptive string that you create to describe the resource. It can be up to 64 characters long. */
|
|
17
|
+
friendlyName?: string;
|
|
18
|
+
/** The URL we call using `inbound_method` when a message is received by any phone number or short code in the Service. When this property is `null`, receiving inbound messages is disabled. All messages sent to the Twilio phone number or short code will not be logged and received on the Account. If the `use_inbound_webhook_on_number` field is enabled then the webhook url defined on the phone number will override the `inbound_request_url` defined for the Messaging Service. */
|
|
19
|
+
inboundRequestUrl?: string;
|
|
20
|
+
/** The HTTP method we should use to call `inbound_request_url`. Can be `GET` or `POST` and the default is `POST`. */
|
|
21
|
+
inboundMethod?: string;
|
|
22
|
+
/** The URL that we call using `fallback_method` if an error occurs while retrieving or executing the TwiML from the Inbound Request URL. If the `use_inbound_webhook_on_number` field is enabled then the webhook url defined on the phone number will override the `fallback_url` defined for the Messaging Service. */
|
|
23
|
+
fallbackUrl?: string;
|
|
24
|
+
/** The HTTP method we should use to call `fallback_url`. Can be: `GET` or `POST`. */
|
|
25
|
+
fallbackMethod?: string;
|
|
26
|
+
/** The URL we should call to [pass status updates](https://www.twilio.com/docs/sms/api/message-resource#message-status-values) about message delivery. */
|
|
27
|
+
statusCallback?: string;
|
|
28
|
+
/** Whether to enable [Sticky Sender](https://www.twilio.com/docs/sms/services#sticky-sender) on the Service instance. */
|
|
29
|
+
stickySender?: boolean;
|
|
30
|
+
/** Whether to enable the [MMS Converter](https://www.twilio.com/docs/sms/services#mms-converter) for messages sent through the Service instance. */
|
|
31
|
+
mmsConverter?: boolean;
|
|
32
|
+
/** Whether to enable [Smart Encoding](https://www.twilio.com/docs/sms/services#smart-encoding) for messages sent through the Service instance. */
|
|
33
|
+
smartEncoding?: boolean;
|
|
34
|
+
/** */
|
|
35
|
+
scanMessageContent?: ServiceScanMessageContent;
|
|
36
|
+
/** Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/sms/services#fallback-to-long-code) for messages sent through the Service instance. */
|
|
37
|
+
fallbackToLongCode?: boolean;
|
|
38
|
+
/** Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/sms/services#area-code-geomatch) on the Service Instance. */
|
|
39
|
+
areaCodeGeomatch?: boolean;
|
|
40
|
+
/** How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`. */
|
|
41
|
+
validityPeriod?: number;
|
|
42
|
+
/** Reserved. */
|
|
43
|
+
synchronousValidation?: boolean;
|
|
44
|
+
/** A string that describes the scenario in which the Messaging Service will be used. Examples: [notification, marketing, verification, poll ..] */
|
|
45
|
+
usecase?: string;
|
|
46
|
+
/** A boolean value that indicates either the webhook url configured on the phone number will be used or `inbound_request_url`/`fallback_url` url will be called when a message is received from the phone number. If this field is enabled then the webhook url defined on the phone number will override the `inbound_request_url`/`fallback_url` defined for the Messaging Service. */
|
|
47
|
+
useInboundWebhookOnNumber?: boolean;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Options to pass to create a ServiceInstance
|
|
51
|
+
*/
|
|
52
|
+
export interface ServiceListInstanceCreateOptions {
|
|
53
|
+
/** A descriptive string that you create to describe the resource. It can be up to 64 characters long. */
|
|
54
|
+
friendlyName: string;
|
|
55
|
+
/** The URL we call using `inbound_method` when a message is received by any phone number or short code in the Service. When this property is `null`, receiving inbound messages is disabled. All messages sent to the Twilio phone number or short code will not be logged and received on the Account. If the `use_inbound_webhook_on_number` field is enabled then the webhook url defined on the phone number will override the `inbound_request_url` defined for the Messaging Service. */
|
|
56
|
+
inboundRequestUrl?: string;
|
|
57
|
+
/** The HTTP method we should use to call `inbound_request_url`. Can be `GET` or `POST` and the default is `POST`. */
|
|
58
|
+
inboundMethod?: string;
|
|
59
|
+
/** The URL that we call using `fallback_method` if an error occurs while retrieving or executing the TwiML from the Inbound Request URL. If the `use_inbound_webhook_on_number` field is enabled then the webhook url defined on the phone number will override the `fallback_url` defined for the Messaging Service. */
|
|
60
|
+
fallbackUrl?: string;
|
|
61
|
+
/** The HTTP method we should use to call `fallback_url`. Can be: `GET` or `POST`. */
|
|
62
|
+
fallbackMethod?: string;
|
|
63
|
+
/** The URL we should call to [pass status updates](https://www.twilio.com/docs/sms/api/message-resource#message-status-values) about message delivery. */
|
|
64
|
+
statusCallback?: string;
|
|
65
|
+
/** Whether to enable [Sticky Sender](https://www.twilio.com/docs/sms/services#sticky-sender) on the Service instance. */
|
|
66
|
+
stickySender?: boolean;
|
|
67
|
+
/** Whether to enable the [MMS Converter](https://www.twilio.com/docs/sms/services#mms-converter) for messages sent through the Service instance. */
|
|
68
|
+
mmsConverter?: boolean;
|
|
69
|
+
/** Whether to enable [Smart Encoding](https://www.twilio.com/docs/sms/services#smart-encoding) for messages sent through the Service instance. */
|
|
70
|
+
smartEncoding?: boolean;
|
|
71
|
+
/** */
|
|
72
|
+
scanMessageContent?: ServiceScanMessageContent;
|
|
73
|
+
/** Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/sms/services#fallback-to-long-code) for messages sent through the Service instance. */
|
|
74
|
+
fallbackToLongCode?: boolean;
|
|
75
|
+
/** Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/sms/services#area-code-geomatch) on the Service Instance. */
|
|
76
|
+
areaCodeGeomatch?: boolean;
|
|
77
|
+
/** How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`. */
|
|
78
|
+
validityPeriod?: number;
|
|
79
|
+
/** Reserved. */
|
|
80
|
+
synchronousValidation?: boolean;
|
|
81
|
+
/** A string that describes the scenario in which the Messaging Service will be used. Examples: [notification, marketing, verification, poll ..]. */
|
|
82
|
+
usecase?: string;
|
|
83
|
+
/** A boolean value that indicates either the webhook url configured on the phone number will be used or `inbound_request_url`/`fallback_url` url will be called when a message is received from the phone number. If this field is enabled then the webhook url defined on the phone number will override the `inbound_request_url`/`fallback_url` defined for the Messaging Service. */
|
|
84
|
+
useInboundWebhookOnNumber?: boolean;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Options to pass to each
|
|
88
|
+
*/
|
|
89
|
+
export interface ServiceListInstanceEachOptions {
|
|
90
|
+
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
|
|
91
|
+
pageSize?: number;
|
|
92
|
+
/** Function to process each record. If this and a positional callback are passed, this one will be used */
|
|
93
|
+
callback?: (item: ServiceInstance, done: (err?: Error) => void) => void;
|
|
94
|
+
/** Function to be called upon completion of streaming */
|
|
95
|
+
done?: Function;
|
|
96
|
+
/** Upper limit for the number of records to return. each() guarantees never to return more than limit. Default is no limit */
|
|
97
|
+
limit?: number;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Options to pass to list
|
|
101
|
+
*/
|
|
102
|
+
export interface ServiceListInstanceOptions {
|
|
103
|
+
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
|
|
104
|
+
pageSize?: number;
|
|
105
|
+
/** Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit */
|
|
106
|
+
limit?: number;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Options to pass to page
|
|
110
|
+
*/
|
|
111
|
+
export interface ServiceListInstancePageOptions {
|
|
112
|
+
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
|
|
113
|
+
pageSize?: number;
|
|
114
|
+
/** Page Number, this value is simply for client state */
|
|
115
|
+
pageNumber?: number;
|
|
116
|
+
/** PageToken provided by the API */
|
|
117
|
+
pageToken?: string;
|
|
118
|
+
}
|
|
119
|
+
export interface ServiceContext {
|
|
120
|
+
alphaSenders: AlphaSenderListInstance;
|
|
121
|
+
phoneNumbers: PhoneNumberListInstance;
|
|
122
|
+
shortCodes: ShortCodeListInstance;
|
|
123
|
+
usAppToPerson: UsAppToPersonListInstance;
|
|
124
|
+
usAppToPersonUsecases: UsAppToPersonUsecaseListInstance;
|
|
125
|
+
/**
|
|
126
|
+
* Remove a ServiceInstance
|
|
127
|
+
*
|
|
128
|
+
* @param callback - Callback to handle processed record
|
|
129
|
+
*
|
|
130
|
+
* @returns Resolves to processed boolean
|
|
131
|
+
*/
|
|
132
|
+
remove(callback?: (error: Error | null, item?: boolean) => any): Promise<boolean>;
|
|
133
|
+
/**
|
|
134
|
+
* Fetch a ServiceInstance
|
|
135
|
+
*
|
|
136
|
+
* @param callback - Callback to handle processed record
|
|
137
|
+
*
|
|
138
|
+
* @returns Resolves to processed ServiceInstance
|
|
139
|
+
*/
|
|
140
|
+
fetch(callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
141
|
+
/**
|
|
142
|
+
* Update a ServiceInstance
|
|
143
|
+
*
|
|
144
|
+
* @param callback - Callback to handle processed record
|
|
145
|
+
*
|
|
146
|
+
* @returns Resolves to processed ServiceInstance
|
|
147
|
+
*/
|
|
148
|
+
update(callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
149
|
+
/**
|
|
150
|
+
* Update a ServiceInstance
|
|
151
|
+
*
|
|
152
|
+
* @param params - Parameter for request
|
|
153
|
+
* @param callback - Callback to handle processed record
|
|
154
|
+
*
|
|
155
|
+
* @returns Resolves to processed ServiceInstance
|
|
156
|
+
*/
|
|
157
|
+
update(params: ServiceContextUpdateOptions, callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
158
|
+
/**
|
|
159
|
+
* Provide a user-friendly representation
|
|
160
|
+
*/
|
|
161
|
+
toJSON(): any;
|
|
162
|
+
[inspect.custom](_depth: any, options: InspectOptions): any;
|
|
163
|
+
}
|
|
164
|
+
export interface ServiceContextSolution {
|
|
165
|
+
sid: string;
|
|
166
|
+
}
|
|
167
|
+
export declare class ServiceContextImpl implements ServiceContext {
|
|
168
|
+
protected _version: V1;
|
|
169
|
+
protected _solution: ServiceContextSolution;
|
|
170
|
+
protected _uri: string;
|
|
171
|
+
protected _alphaSenders?: AlphaSenderListInstance;
|
|
172
|
+
protected _phoneNumbers?: PhoneNumberListInstance;
|
|
173
|
+
protected _shortCodes?: ShortCodeListInstance;
|
|
174
|
+
protected _usAppToPerson?: UsAppToPersonListInstance;
|
|
175
|
+
protected _usAppToPersonUsecases?: UsAppToPersonUsecaseListInstance;
|
|
176
|
+
constructor(_version: V1, sid: string);
|
|
177
|
+
get alphaSenders(): AlphaSenderListInstance;
|
|
178
|
+
get phoneNumbers(): PhoneNumberListInstance;
|
|
179
|
+
get shortCodes(): ShortCodeListInstance;
|
|
180
|
+
get usAppToPerson(): UsAppToPersonListInstance;
|
|
181
|
+
get usAppToPersonUsecases(): UsAppToPersonUsecaseListInstance;
|
|
182
|
+
remove(callback?: (error: Error | null, item?: boolean) => any): Promise<boolean>;
|
|
183
|
+
fetch(callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
184
|
+
update(params?: ServiceContextUpdateOptions | ((error: Error | null, item?: ServiceInstance) => any), callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
185
|
+
/**
|
|
186
|
+
* Provide a user-friendly representation
|
|
187
|
+
*
|
|
188
|
+
* @returns Object
|
|
189
|
+
*/
|
|
190
|
+
toJSON(): ServiceContextSolution;
|
|
191
|
+
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
192
|
+
}
|
|
193
|
+
export type ServiceInboundMethod = "HEAD" | "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
194
|
+
export type ServiceFallbackMethod = "HEAD" | "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
195
|
+
interface ServicePayload extends TwilioResponsePayload {
|
|
196
|
+
services: ServiceResource[];
|
|
197
|
+
}
|
|
198
|
+
interface ServiceResource {
|
|
199
|
+
sid: string;
|
|
200
|
+
account_sid: string;
|
|
201
|
+
friendly_name: string;
|
|
202
|
+
date_created: Date;
|
|
203
|
+
date_updated: Date;
|
|
204
|
+
inbound_request_url: string;
|
|
205
|
+
inbound_method: ServiceInboundMethod;
|
|
206
|
+
fallback_url: string;
|
|
207
|
+
fallback_method: ServiceFallbackMethod;
|
|
208
|
+
status_callback: string;
|
|
209
|
+
sticky_sender: boolean;
|
|
210
|
+
mms_converter: boolean;
|
|
211
|
+
smart_encoding: boolean;
|
|
212
|
+
scan_message_content: ServiceScanMessageContent;
|
|
213
|
+
fallback_to_long_code: boolean;
|
|
214
|
+
area_code_geomatch: boolean;
|
|
215
|
+
synchronous_validation: boolean;
|
|
216
|
+
validity_period: number;
|
|
217
|
+
url: string;
|
|
218
|
+
links: Record<string, string>;
|
|
219
|
+
usecase: string;
|
|
220
|
+
us_app_to_person_registered: boolean;
|
|
221
|
+
use_inbound_webhook_on_number: boolean;
|
|
222
|
+
}
|
|
223
|
+
export declare class ServiceInstance {
|
|
224
|
+
protected _version: V1;
|
|
225
|
+
protected _solution: ServiceContextSolution;
|
|
226
|
+
protected _context?: ServiceContext;
|
|
227
|
+
constructor(_version: V1, payload: ServiceResource, sid?: string);
|
|
228
|
+
/**
|
|
229
|
+
* The unique string that we created to identify the Service resource.
|
|
230
|
+
*/
|
|
231
|
+
sid: string;
|
|
232
|
+
/**
|
|
233
|
+
* The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Service resource.
|
|
234
|
+
*/
|
|
235
|
+
accountSid: string;
|
|
236
|
+
/**
|
|
237
|
+
* The string that you assigned to describe the resource.
|
|
238
|
+
*/
|
|
239
|
+
friendlyName: string;
|
|
240
|
+
/**
|
|
241
|
+
* The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
242
|
+
*/
|
|
243
|
+
dateCreated: Date;
|
|
244
|
+
/**
|
|
245
|
+
* The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
246
|
+
*/
|
|
247
|
+
dateUpdated: Date;
|
|
248
|
+
/**
|
|
249
|
+
* The URL we call using `inbound_method` when a message is received by any phone number or short code in the Service. When this property is `null`, receiving inbound messages is disabled. All messages sent to the Twilio phone number or short code will not be logged and received on the Account. If the `use_inbound_webhook_on_number` field is enabled then the webhook url defined on the phone number will override the `inbound_request_url` defined for the Messaging Service.
|
|
250
|
+
*/
|
|
251
|
+
inboundRequestUrl: string;
|
|
252
|
+
/**
|
|
253
|
+
* The HTTP method we use to call `inbound_request_url`. Can be `GET` or `POST`.
|
|
254
|
+
*/
|
|
255
|
+
inboundMethod: ServiceInboundMethod;
|
|
256
|
+
/**
|
|
257
|
+
* The URL that we call using `fallback_method` if an error occurs while retrieving or executing the TwiML from the Inbound Request URL. If the `use_inbound_webhook_on_number` field is enabled then the webhook url defined on the phone number will override the `fallback_url` defined for the Messaging Service.
|
|
258
|
+
*/
|
|
259
|
+
fallbackUrl: string;
|
|
260
|
+
/**
|
|
261
|
+
* The HTTP method we use to call `fallback_url`. Can be: `GET` or `POST`.
|
|
262
|
+
*/
|
|
263
|
+
fallbackMethod: ServiceFallbackMethod;
|
|
264
|
+
/**
|
|
265
|
+
* The URL we call to [pass status updates](https://www.twilio.com/docs/sms/api/message-resource#message-status-values) about message delivery.
|
|
266
|
+
*/
|
|
267
|
+
statusCallback: string;
|
|
268
|
+
/**
|
|
269
|
+
* Whether to enable [Sticky Sender](https://www.twilio.com/docs/sms/services#sticky-sender) on the Service instance.
|
|
270
|
+
*/
|
|
271
|
+
stickySender: boolean;
|
|
272
|
+
/**
|
|
273
|
+
* Whether to enable the [MMS Converter](https://www.twilio.com/docs/sms/services#mms-converter) for messages sent through the Service instance.
|
|
274
|
+
*/
|
|
275
|
+
mmsConverter: boolean;
|
|
276
|
+
/**
|
|
277
|
+
* Whether to enable [Smart Encoding](https://www.twilio.com/docs/sms/services#smart-encoding) for messages sent through the Service instance.
|
|
278
|
+
*/
|
|
279
|
+
smartEncoding: boolean;
|
|
280
|
+
scanMessageContent: ServiceScanMessageContent;
|
|
281
|
+
/**
|
|
282
|
+
* Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/sms/services#fallback-to-long-code) for messages sent through the Service instance.
|
|
283
|
+
*/
|
|
284
|
+
fallbackToLongCode: boolean;
|
|
285
|
+
/**
|
|
286
|
+
* Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/sms/services#area-code-geomatch) on the Service Instance.
|
|
287
|
+
*/
|
|
288
|
+
areaCodeGeomatch: boolean;
|
|
289
|
+
/**
|
|
290
|
+
* Reserved.
|
|
291
|
+
*/
|
|
292
|
+
synchronousValidation: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
|
|
295
|
+
*/
|
|
296
|
+
validityPeriod: number;
|
|
297
|
+
/**
|
|
298
|
+
* The absolute URL of the Service resource.
|
|
299
|
+
*/
|
|
300
|
+
url: string;
|
|
301
|
+
/**
|
|
302
|
+
* The absolute URLs of related resources.
|
|
303
|
+
*/
|
|
304
|
+
links: Record<string, string>;
|
|
305
|
+
/**
|
|
306
|
+
* A string that describes the scenario in which the Messaging Service will be used. Examples: [notification, marketing, verification, poll ..]
|
|
307
|
+
*/
|
|
308
|
+
usecase: string;
|
|
309
|
+
/**
|
|
310
|
+
* Whether US A2P campaign is registered for this Service.
|
|
311
|
+
*/
|
|
312
|
+
usAppToPersonRegistered: boolean;
|
|
313
|
+
/**
|
|
314
|
+
* A boolean value that indicates either the webhook url configured on the phone number will be used or `inbound_request_url`/`fallback_url` url will be called when a message is received from the phone number. If this field is enabled then the webhook url defined on the phone number will override the `inbound_request_url`/`fallback_url` defined for the Messaging Service.
|
|
315
|
+
*/
|
|
316
|
+
useInboundWebhookOnNumber: boolean;
|
|
317
|
+
private get _proxy();
|
|
318
|
+
/**
|
|
319
|
+
* Remove a ServiceInstance
|
|
320
|
+
*
|
|
321
|
+
* @param callback - Callback to handle processed record
|
|
322
|
+
*
|
|
323
|
+
* @returns Resolves to processed boolean
|
|
324
|
+
*/
|
|
325
|
+
remove(callback?: (error: Error | null, item?: boolean) => any): Promise<boolean>;
|
|
326
|
+
/**
|
|
327
|
+
* Fetch a ServiceInstance
|
|
328
|
+
*
|
|
329
|
+
* @param callback - Callback to handle processed record
|
|
330
|
+
*
|
|
331
|
+
* @returns Resolves to processed ServiceInstance
|
|
332
|
+
*/
|
|
333
|
+
fetch(callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
334
|
+
/**
|
|
335
|
+
* Update a ServiceInstance
|
|
336
|
+
*
|
|
337
|
+
* @param callback - Callback to handle processed record
|
|
338
|
+
*
|
|
339
|
+
* @returns Resolves to processed ServiceInstance
|
|
340
|
+
*/
|
|
341
|
+
update(callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
342
|
+
/**
|
|
343
|
+
* Update a ServiceInstance
|
|
344
|
+
*
|
|
345
|
+
* @param params - Parameter for request
|
|
346
|
+
* @param callback - Callback to handle processed record
|
|
347
|
+
*
|
|
348
|
+
* @returns Resolves to processed ServiceInstance
|
|
349
|
+
*/
|
|
350
|
+
update(params: ServiceContextUpdateOptions, callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
351
|
+
/**
|
|
352
|
+
* Access the alphaSenders.
|
|
353
|
+
*/
|
|
354
|
+
alphaSenders(): AlphaSenderListInstance;
|
|
355
|
+
/**
|
|
356
|
+
* Access the phoneNumbers.
|
|
357
|
+
*/
|
|
358
|
+
phoneNumbers(): PhoneNumberListInstance;
|
|
359
|
+
/**
|
|
360
|
+
* Access the shortCodes.
|
|
361
|
+
*/
|
|
362
|
+
shortCodes(): ShortCodeListInstance;
|
|
363
|
+
/**
|
|
364
|
+
* Access the usAppToPerson.
|
|
365
|
+
*/
|
|
366
|
+
usAppToPerson(): UsAppToPersonListInstance;
|
|
367
|
+
/**
|
|
368
|
+
* Access the usAppToPersonUsecases.
|
|
369
|
+
*/
|
|
370
|
+
usAppToPersonUsecases(): UsAppToPersonUsecaseListInstance;
|
|
371
|
+
/**
|
|
372
|
+
* Provide a user-friendly representation
|
|
373
|
+
*
|
|
374
|
+
* @returns Object
|
|
375
|
+
*/
|
|
376
|
+
toJSON(): {
|
|
377
|
+
sid: string;
|
|
378
|
+
accountSid: string;
|
|
379
|
+
friendlyName: string;
|
|
380
|
+
dateCreated: Date;
|
|
381
|
+
dateUpdated: Date;
|
|
382
|
+
inboundRequestUrl: string;
|
|
383
|
+
inboundMethod: ServiceInboundMethod;
|
|
384
|
+
fallbackUrl: string;
|
|
385
|
+
fallbackMethod: ServiceFallbackMethod;
|
|
386
|
+
statusCallback: string;
|
|
387
|
+
stickySender: boolean;
|
|
388
|
+
mmsConverter: boolean;
|
|
389
|
+
smartEncoding: boolean;
|
|
390
|
+
scanMessageContent: ServiceScanMessageContent;
|
|
391
|
+
fallbackToLongCode: boolean;
|
|
392
|
+
areaCodeGeomatch: boolean;
|
|
393
|
+
synchronousValidation: boolean;
|
|
394
|
+
validityPeriod: number;
|
|
395
|
+
url: string;
|
|
396
|
+
links: Record<string, string>;
|
|
397
|
+
usecase: string;
|
|
398
|
+
usAppToPersonRegistered: boolean;
|
|
399
|
+
useInboundWebhookOnNumber: boolean;
|
|
400
|
+
};
|
|
401
|
+
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
402
|
+
}
|
|
403
|
+
export interface ServiceSolution {
|
|
404
|
+
}
|
|
405
|
+
export interface ServiceListInstance {
|
|
406
|
+
_version: V1;
|
|
407
|
+
_solution: ServiceSolution;
|
|
408
|
+
_uri: string;
|
|
409
|
+
(sid: string): ServiceContext;
|
|
410
|
+
get(sid: string): ServiceContext;
|
|
411
|
+
/**
|
|
412
|
+
* Create a ServiceInstance
|
|
413
|
+
*
|
|
414
|
+
* @param params - Parameter for request
|
|
415
|
+
* @param callback - Callback to handle processed record
|
|
416
|
+
*
|
|
417
|
+
* @returns Resolves to processed ServiceInstance
|
|
418
|
+
*/
|
|
419
|
+
create(params: ServiceListInstanceCreateOptions, callback?: (error: Error | null, item?: ServiceInstance) => any): Promise<ServiceInstance>;
|
|
420
|
+
/**
|
|
421
|
+
* Streams ServiceInstance records from the API.
|
|
422
|
+
*
|
|
423
|
+
* This operation lazily loads records as efficiently as possible until the limit
|
|
424
|
+
* is reached.
|
|
425
|
+
*
|
|
426
|
+
* The results are passed into the callback function, so this operation is memory
|
|
427
|
+
* efficient.
|
|
428
|
+
*
|
|
429
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
430
|
+
* function.
|
|
431
|
+
*
|
|
432
|
+
* @param { ServiceListInstanceEachOptions } [params] - Options for request
|
|
433
|
+
* @param { function } [callback] - Function to process each record
|
|
434
|
+
*/
|
|
435
|
+
each(callback?: (item: ServiceInstance, done: (err?: Error) => void) => void): void;
|
|
436
|
+
each(params: ServiceListInstanceEachOptions, callback?: (item: ServiceInstance, done: (err?: Error) => void) => void): void;
|
|
437
|
+
/**
|
|
438
|
+
* Retrieve a single target page of ServiceInstance records from the API.
|
|
439
|
+
*
|
|
440
|
+
* The request is executed immediately.
|
|
441
|
+
*
|
|
442
|
+
* @param { string } [targetUrl] - API-generated URL for the requested results page
|
|
443
|
+
* @param { function } [callback] - Callback to handle list of records
|
|
444
|
+
*/
|
|
445
|
+
getPage(targetUrl: string, callback?: (error: Error | null, items: ServicePage) => any): Promise<ServicePage>;
|
|
446
|
+
/**
|
|
447
|
+
* Lists ServiceInstance records from the API as a list.
|
|
448
|
+
*
|
|
449
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
450
|
+
* function.
|
|
451
|
+
*
|
|
452
|
+
* @param { ServiceListInstanceOptions } [params] - Options for request
|
|
453
|
+
* @param { function } [callback] - Callback to handle list of records
|
|
454
|
+
*/
|
|
455
|
+
list(callback?: (error: Error | null, items: ServiceInstance[]) => any): Promise<ServiceInstance[]>;
|
|
456
|
+
list(params: ServiceListInstanceOptions, callback?: (error: Error | null, items: ServiceInstance[]) => any): Promise<ServiceInstance[]>;
|
|
457
|
+
/**
|
|
458
|
+
* Retrieve a single page of ServiceInstance records from the API.
|
|
459
|
+
*
|
|
460
|
+
* The request is executed immediately.
|
|
461
|
+
*
|
|
462
|
+
* If a function is passed as the first argument, it will be used as the callback
|
|
463
|
+
* function.
|
|
464
|
+
*
|
|
465
|
+
* @param { ServiceListInstancePageOptions } [params] - Options for request
|
|
466
|
+
* @param { function } [callback] - Callback to handle list of records
|
|
467
|
+
*/
|
|
468
|
+
page(callback?: (error: Error | null, items: ServicePage) => any): Promise<ServicePage>;
|
|
469
|
+
page(params: ServiceListInstancePageOptions, callback?: (error: Error | null, items: ServicePage) => any): Promise<ServicePage>;
|
|
470
|
+
/**
|
|
471
|
+
* Provide a user-friendly representation
|
|
472
|
+
*/
|
|
473
|
+
toJSON(): any;
|
|
474
|
+
[inspect.custom](_depth: any, options: InspectOptions): any;
|
|
475
|
+
}
|
|
476
|
+
export declare function ServiceListInstance(version: V1): ServiceListInstance;
|
|
477
|
+
export declare class ServicePage extends Page<V1, ServicePayload, ServiceResource, ServiceInstance> {
|
|
478
|
+
/**
|
|
479
|
+
* Initialize the ServicePage
|
|
480
|
+
*
|
|
481
|
+
* @param version - Version of the resource
|
|
482
|
+
* @param response - Response from the API
|
|
483
|
+
* @param solution - Path solution
|
|
484
|
+
*/
|
|
485
|
+
constructor(version: V1, response: Response<string>, solution: ServiceSolution);
|
|
486
|
+
/**
|
|
487
|
+
* Build an instance of ServiceInstance
|
|
488
|
+
*
|
|
489
|
+
* @param payload - Payload response from the API
|
|
490
|
+
*/
|
|
491
|
+
getInstance(payload: ServiceResource): ServiceInstance;
|
|
492
|
+
[inspect.custom](depth: any, options: InspectOptions): string;
|
|
493
|
+
}
|
|
494
|
+
export {};
|