twilio 3.82.2 → 3.83.1
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/rest/Oauth.d.ts +32 -0
- package/lib/rest/Oauth.js +79 -0
- package/lib/rest/Supersim.d.ts +2 -0
- package/lib/rest/Supersim.js +9 -0
- package/lib/rest/Twilio.d.ts +2 -0
- package/lib/rest/Twilio.js +14 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessage.d.ts +107 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessage.js +259 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.d.ts +153 -0
- package/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.js +407 -0
- package/lib/rest/api/v2010/account/call.d.ts +14 -0
- package/lib/rest/api/v2010/account/call.js +67 -0
- package/lib/rest/api/v2010/account/conference/participant.d.ts +2 -2
- package/lib/rest/api/v2010/account/conference/participant.js +6 -4
- package/lib/rest/api/v2010/account/message.d.ts +6 -0
- package/lib/rest/api/v2010/account/message.js +10 -1
- package/lib/rest/oauth/V1.d.ts +34 -0
- package/lib/rest/oauth/V1.js +80 -0
- package/lib/rest/oauth/v1/oauth.d.ts +115 -0
- package/lib/rest/oauth/v1/oauth.js +299 -0
- package/lib/rest/oauth/v1/openidDiscovery.d.ts +137 -0
- package/lib/rest/oauth/v1/openidDiscovery.js +329 -0
- package/lib/rest/oauth/v1/token.d.ts +115 -0
- package/lib/rest/oauth/v1/token.js +265 -0
- package/lib/rest/oauth/v1/userInfo.d.ts +123 -0
- package/lib/rest/oauth/v1/userInfo.js +308 -0
- package/lib/rest/proxy/v1/service/session/participant.d.ts +0 -2
- package/lib/rest/proxy/v1/service/session/participant.js +1 -6
- package/lib/rest/proxy/v1/service/session.d.ts +0 -4
- package/lib/rest/proxy/v1/service/session.js +2 -10
- package/lib/rest/supersim/V1.d.ts +3 -0
- package/lib/rest/supersim/V1.js +12 -0
- package/lib/rest/supersim/v1/settingsUpdate.d.ts +261 -0
- package/lib/rest/supersim/v1/settingsUpdate.js +466 -0
- package/lib/rest/taskrouter/v1/workspace/task/reservation.d.ts +6 -0
- package/lib/rest/taskrouter/v1/workspace/task/reservation.js +7 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue.d.ts +6 -0
- package/lib/rest/taskrouter/v1/workspace/taskQueue.js +4 -0
- package/lib/rest/taskrouter/v1/workspace/worker.d.ts +6 -0
- package/lib/rest/taskrouter/v1/workspace/worker.js +4 -0
- package/lib/rest/verify/v2/service/accessToken.d.ts +0 -12
- package/lib/rest/verify/v2/service/accessToken.js +0 -12
- package/lib/rest/verify/v2/service/entity/challenge/notification.d.ts +0 -9
- package/lib/rest/verify/v2/service/entity/challenge/notification.js +0 -9
- package/lib/rest/verify/v2/service/entity/challenge.d.ts +0 -12
- package/lib/rest/verify/v2/service/entity/challenge.js +0 -12
- package/lib/rest/verify/v2/service/entity/factor.d.ts +0 -12
- package/lib/rest/verify/v2/service/entity/factor.js +0 -12
- package/lib/rest/verify/v2/service/entity/newFactor.d.ts +0 -9
- package/lib/rest/verify/v2/service/entity/newFactor.js +0 -9
- package/lib/rest/verify/v2/service/entity.d.ts +0 -12
- package/lib/rest/verify/v2/service/entity.js +0 -12
- package/lib/rest/verify/v2/service/verification.d.ts +1 -1
- package/lib/rest/verify/v2/service/verification.js +2 -1
- package/lib/rest/verify/v2/service/webhook.d.ts +0 -12
- package/lib/rest/verify/v2/service/webhook.js +0 -12
- package/lib/rest/verify/v2/template.d.ts +2 -0
- package/lib/rest/verify/v2/template.js +2 -0
- package/lib/twiml/VoiceResponse.d.ts +7 -1
- package/lib/twiml/VoiceResponse.js +6 -0
- package/package.json +1 -1
|
@@ -417,6 +417,8 @@ VoiceResponse.prototype.pay = function pay(attributes) {
|
|
|
417
417
|
* @param {prompt.error_type} [attributes.errorType] - Type of error
|
|
418
418
|
* @param {prompt.card_type} [attributes.cardType] - Type of the credit card
|
|
419
419
|
* @param {number} [attributes.attempt] - Current attempt count
|
|
420
|
+
* @param {boolean} [attributes.requireMatchingInputs] -
|
|
421
|
+
* Require customer to input requested information twice and verify matching.
|
|
420
422
|
*
|
|
421
423
|
* @returns Prompt
|
|
422
424
|
*/
|
|
@@ -3594,6 +3596,8 @@ Pay.prototype.constructor = Pay;
|
|
|
3594
3596
|
* @param {prompt.error_type} [attributes.errorType] - Type of error
|
|
3595
3597
|
* @param {prompt.card_type} [attributes.cardType] - Type of the credit card
|
|
3596
3598
|
* @param {number} [attributes.attempt] - Current attempt count
|
|
3599
|
+
* @param {boolean} [attributes.requireMatchingInputs] -
|
|
3600
|
+
* Require customer to input requested information twice and verify matching.
|
|
3597
3601
|
*
|
|
3598
3602
|
* @returns Prompt
|
|
3599
3603
|
*/
|
|
@@ -4354,6 +4358,8 @@ Connect.prototype.virtualAgent = function virtualAgent(attributes) {
|
|
|
4354
4358
|
* @param {number} [attributes.routingAssignmentTimeout] -
|
|
4355
4359
|
* Routing assignment timeout
|
|
4356
4360
|
* @param {number} [attributes.inboundTimeout] - Inbound timeout
|
|
4361
|
+
* @param {string} [attributes.url] - TwiML URL
|
|
4362
|
+
* @param {string} [attributes.method] - TwiML URL method
|
|
4357
4363
|
* @param {conversation.record} [attributes.record] - Record
|
|
4358
4364
|
* @param {conversation.trim} [attributes.trim] - Trim
|
|
4359
4365
|
* @param {string} [attributes.recordingStatusCallback] -
|