twilio-ruby 5.6.0 → 5.33.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.dockerignore +1 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +14 -3
- data/.rubocop_todo.yml +87 -55
- data/.travis.yml +34 -11
- data/CHANGES.md +1163 -0
- data/CODE_OF_CONDUCT.md +73 -0
- data/CONTRIBUTING.md +2 -0
- data/Dockerfile +9 -0
- data/Gemfile +0 -8
- data/ISSUE_TEMPLATE.md +13 -13
- data/LICENSE.md +2 -2
- data/Makefile +17 -13
- data/PULL_REQUEST_TEMPLATE.md +31 -0
- data/README.md +59 -52
- data/Rakefile +0 -54
- data/VERSIONS.md +9 -10
- data/examples/print_call_log.rb +1 -1
- data/githooks/pre-commit +0 -0
- data/lib/rack/twilio_webhook_authentication.rb +2 -0
- data/lib/twilio-ruby/framework/domain.rb +3 -1
- data/lib/twilio-ruby/framework/error.rb +33 -15
- data/lib/twilio-ruby/framework/helper.rb +2 -0
- data/lib/twilio-ruby/framework/obsolete_client.rb +2 -0
- data/lib/twilio-ruby/framework/page.rb +3 -1
- data/lib/twilio-ruby/framework/request.rb +2 -0
- data/lib/twilio-ruby/framework/resource.rb +2 -0
- data/lib/twilio-ruby/framework/response.rb +2 -0
- data/lib/twilio-ruby/framework/serialize.rb +2 -0
- data/lib/twilio-ruby/framework/twilio_response.rb +2 -0
- data/lib/twilio-ruby/framework/values.rb +2 -0
- data/lib/twilio-ruby/framework/version.rb +3 -10
- data/lib/twilio-ruby/http/http_client.rb +17 -12
- data/lib/twilio-ruby/jwt/access_token.rb +5 -1
- data/lib/twilio-ruby/jwt/client_capability.rb +3 -1
- data/lib/twilio-ruby/jwt/jwt.rb +8 -0
- data/lib/twilio-ruby/jwt/task_router.rb +4 -2
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +44 -26
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +43 -32
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +11 -8
- data/lib/twilio-ruby/rest/accounts/v1.rb +2 -0
- data/lib/twilio-ruby/rest/accounts.rb +2 -0
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +40 -32
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +111 -63
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +167 -147
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +34 -21
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +177 -80
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +27 -12
- data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +131 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +58 -25
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +54 -33
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +70 -55
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +359 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +163 -37
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +340 -167
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +272 -91
- data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +481 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +134 -61
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +92 -53
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +45 -28
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +46 -32
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +156 -66
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +155 -66
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +155 -66
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +291 -229
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +36 -21
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +22 -12
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +45 -29
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +137 -68
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +12 -9
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +12 -9
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +53 -41
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +54 -39
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +52 -23
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +61 -37
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +49 -32
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +43 -27
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +49 -26
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +91 -50
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +81 -59
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +31 -12
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +50 -27
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +36 -21
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +361 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +361 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +163 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +361 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +137 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +135 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +41 -24
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +40 -24
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +169 -73
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +87 -32
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +32 -21
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +15 -11
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +16 -12
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +41 -26
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +79 -28
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +82 -49
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +103 -74
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +8 -5
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +31 -15
- data/lib/twilio-ruby/rest/api/v2010/account.rb +104 -65
- data/lib/twilio-ruby/rest/api/v2010.rb +6 -0
- data/lib/twilio-ruby/rest/api.rb +39 -26
- data/lib/twilio-ruby/rest/authy/v1/form.rb +197 -0
- data/lib/twilio-ruby/rest/{preview/proxy/service/session/participant/message_interaction.rb → authy/v1/service/entity/factor/challenge.rb} +204 -163
- data/lib/twilio-ruby/rest/{preview/proxy/service/session/participant.rb → authy/v1/service/entity/factor.rb} +196 -208
- data/lib/twilio-ruby/rest/{preview/proxy/service/short_code.rb → authy/v1/service/entity.rb} +122 -83
- data/lib/twilio-ruby/rest/{preview/acc_security → authy/v1}/service.rb +97 -79
- data/lib/twilio-ruby/rest/authy/v1.rb +59 -0
- data/lib/twilio-ruby/rest/authy.rb +55 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +230 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +220 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/export_assistant.rb +222 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +408 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +435 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +409 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +470 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +228 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +399 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +466 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +265 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +243 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +524 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +437 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +683 -0
- data/lib/twilio-ruby/rest/autopilot/v1.rb +44 -0
- data/lib/twilio-ruby/rest/autopilot.rb +47 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +316 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +298 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +253 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +254 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +242 -0
- data/lib/twilio-ruby/rest/bulkexports/v1.rb +58 -0
- data/lib/twilio-ruby/rest/bulkexports.rb +54 -0
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +88 -40
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +70 -29
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +87 -35
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +76 -39
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +83 -47
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +61 -32
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +22 -14
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +72 -41
- data/lib/twilio-ruby/rest/chat/v1/service.rb +342 -312
- data/lib/twilio-ruby/rest/chat/v1.rb +6 -2
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +86 -40
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +74 -33
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +65 -29
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +144 -46
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +118 -51
- data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +492 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +144 -55
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +63 -32
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +68 -29
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +213 -17
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +83 -44
- data/lib/twilio-ruby/rest/chat/v2/service.rb +238 -136
- data/lib/twilio-ruby/rest/chat/v2.rb +4 -2
- data/lib/twilio-ruby/rest/chat.rb +6 -2
- data/lib/twilio-ruby/rest/client.rb +142 -36
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +456 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +431 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +432 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +505 -0
- data/lib/twilio-ruby/rest/conversations/v1/webhook.rb +272 -0
- data/lib/twilio-ruby/rest/conversations/v1.rb +51 -0
- data/lib/twilio-ruby/rest/conversations.rb +53 -0
- data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +34 -25
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +114 -84
- data/lib/twilio-ruby/rest/fax/v1.rb +4 -1
- data/lib/twilio-ruby/rest/fax.rb +4 -1
- data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +352 -0
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +466 -0
- data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +555 -0
- data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +358 -0
- data/lib/twilio-ruby/rest/flex_api/v1.rb +80 -0
- data/lib/twilio-ruby/rest/flex_api.rb +71 -0
- data/lib/twilio-ruby/rest/{notify/v1/service/segment.rb → insights/v1/call/event.rb} +103 -62
- data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +254 -0
- data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +305 -0
- data/lib/twilio-ruby/rest/insights/v1/call.rb +242 -0
- data/lib/twilio-ruby/rest/insights/v1.rb +43 -0
- data/lib/twilio-ruby/rest/insights.rb +46 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +88 -40
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +70 -29
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +87 -35
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +76 -39
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +83 -47
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +61 -32
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +22 -14
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +72 -41
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +342 -312
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +6 -2
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +86 -40
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +74 -33
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +65 -29
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +144 -46
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +118 -51
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +492 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +144 -55
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +63 -32
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +68 -29
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +213 -17
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +83 -44
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +238 -136
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +4 -2
- data/lib/twilio-ruby/rest/ip_messaging.rb +8 -4
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +63 -24
- data/lib/twilio-ruby/rest/lookups/v1.rb +5 -1
- data/lib/twilio-ruby/rest/lookups.rb +5 -1
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +47 -25
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +47 -26
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +42 -26
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +150 -84
- data/lib/twilio-ruby/rest/messaging/v1.rb +3 -1
- data/lib/twilio-ruby/rest/messaging.rb +4 -1
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +74 -50
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +78 -42
- data/lib/twilio-ruby/rest/monitor/v1.rb +4 -2
- data/lib/twilio-ruby/rest/monitor.rb +6 -2
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +79 -40
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +100 -47
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +118 -42
- data/lib/twilio-ruby/rest/notify/v1/service.rb +158 -132
- data/lib/twilio-ruby/rest/notify/v1.rb +6 -2
- data/lib/twilio-ruby/rest/notify.rb +6 -2
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +333 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +482 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +361 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +281 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +322 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +374 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +281 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +189 -0
- data/lib/twilio-ruby/rest/numbers/v2.rb +35 -0
- data/lib/twilio-ruby/rest/numbers.rb +44 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +122 -15
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/export_custom_job.rb +298 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/job.rb +253 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +66 -13
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +37 -20
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +4 -2
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +22 -13
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +23 -14
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +20 -11
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +23 -14
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +30 -21
- data/lib/twilio-ruby/rest/preview/deployed_devices.rb +2 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +402 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +97 -35
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +97 -36
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +2 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +27 -15
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +27 -20
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +32 -20
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +52 -44
- data/lib/twilio-ruby/rest/preview/marketplace.rb +4 -4
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +16 -7
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +24 -15
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +17 -8
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +16 -7
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +22 -13
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +18 -9
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +16 -7
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +22 -13
- data/lib/twilio-ruby/rest/preview/sync/service.rb +26 -17
- data/lib/twilio-ruby/rest/preview/sync.rb +2 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/branded_call.rb +248 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights/impressions_rate.rb +264 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights.rb +111 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business.rb +219 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/cps.rb +186 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb +263 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/phone_call.rb +347 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms.rb +72 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +222 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +222 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +212 -0
- data/lib/twilio-ruby/rest/preview/understand/{service → assistant}/field_type/field_value.rb +64 -40
- data/lib/twilio-ruby/rest/preview/understand/{service → assistant}/field_type.rb +67 -42
- data/lib/twilio-ruby/rest/preview/understand/{service → assistant}/model_build.rb +76 -37
- data/lib/twilio-ruby/rest/preview/understand/{service → assistant}/query.rb +92 -60
- data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +222 -0
- data/lib/twilio-ruby/rest/preview/understand/{service/intent → assistant/task}/field.rb +63 -48
- data/lib/twilio-ruby/rest/preview/understand/{service/intent → assistant/task}/sample.rb +100 -62
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +251 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +231 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +512 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant.rb +646 -0
- data/lib/twilio-ruby/rest/preview/understand.rb +10 -7
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +16 -7
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +22 -13
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +16 -7
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +17 -8
- data/lib/twilio-ruby/rest/preview/wireless.rb +2 -0
- data/lib/twilio-ruby/rest/preview.rb +58 -34
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +29 -16
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +9 -5
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +28 -15
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +9 -5
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +29 -16
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +24 -15
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +12 -8
- data/lib/twilio-ruby/rest/pricing/v1.rb +2 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +290 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +231 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice.rb +146 -0
- data/lib/twilio-ruby/rest/pricing/v2.rb +35 -0
- data/lib/twilio-ruby/rest/pricing.rb +11 -2
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +106 -32
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +55 -79
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +58 -38
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +57 -92
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +88 -101
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +80 -29
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +170 -71
- data/lib/twilio-ruby/rest/proxy/v1.rb +4 -1
- data/lib/twilio-ruby/rest/proxy.rb +4 -1
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +342 -0
- data/lib/twilio-ruby/rest/{preview/understand/service/intent.rb → serverless/v1/service/asset.rb} +132 -149
- data/lib/twilio-ruby/rest/{preview/proxy/service/phone_number.rb → serverless/v1/service/build.rb} +130 -101
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +362 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +395 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +424 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +469 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +247 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +372 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +404 -0
- data/lib/twilio-ruby/rest/{preview/understand → serverless/v1}/service.rb +159 -149
- data/lib/twilio-ruby/rest/{preview/proxy.rb → serverless/v1.rb} +10 -8
- data/lib/twilio-ruby/rest/serverless.rb +47 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +216 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +231 -0
- data/lib/twilio-ruby/rest/{preview/studio → studio/v1}/flow/engagement/step.rb +63 -37
- data/lib/twilio-ruby/rest/{preview/studio → studio/v1}/flow/engagement.rb +82 -52
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +217 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +234 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +380 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +473 -0
- data/lib/twilio-ruby/rest/{preview/studio → studio/v1}/flow.rb +64 -44
- data/lib/twilio-ruby/rest/{preview/studio.rb → studio/v1.rb} +10 -8
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +225 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +242 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +388 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +474 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +343 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/test_user.rb +215 -0
- data/lib/twilio-ruby/rest/studio/v2/flow.rb +507 -0
- data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +126 -0
- data/lib/twilio-ruby/rest/studio/v2.rb +50 -0
- data/lib/twilio-ruby/rest/studio.rb +60 -0
- data/lib/twilio-ruby/rest/supersim/v1/command.rb +381 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +390 -0
- data/lib/twilio-ruby/rest/supersim/v1/sim.rb +380 -0
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +274 -0
- data/lib/twilio-ruby/rest/supersim/v1.rb +80 -0
- data/lib/twilio-ruby/rest/supersim.rb +70 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +56 -42
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +70 -38
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +128 -45
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +55 -42
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +79 -39
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +140 -47
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +53 -42
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +78 -39
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +18 -10
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +73 -37
- data/lib/twilio-ruby/rest/sync/v1/service.rb +146 -47
- data/lib/twilio-ruby/rest/sync/v1.rb +3 -1
- data/lib/twilio-ruby/rest/sync.rb +4 -1
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +85 -37
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +127 -56
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +304 -135
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +182 -78
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +126 -19
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +79 -39
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +63 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +57 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +61 -27
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +124 -62
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +300 -135
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +55 -37
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +56 -22
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +58 -29
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +33 -17
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +56 -27
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +146 -68
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +81 -40
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +46 -20
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +65 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +118 -55
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +82 -39
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +41 -21
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +58 -23
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +141 -68
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +3 -1
- data/lib/twilio-ruby/rest/taskrouter.rb +4 -1
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +46 -24
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +36 -23
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +85 -42
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +62 -43
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +154 -56
- data/lib/twilio-ruby/rest/trunking/v1.rb +4 -1
- data/lib/twilio-ruby/rest/trunking.rb +4 -1
- data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +387 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +416 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +408 -0
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +366 -0
- data/lib/twilio-ruby/rest/{preview/acc_security → verify/v2}/service/verification_check.rb +59 -29
- data/lib/twilio-ruby/rest/verify/v2/service.rb +574 -0
- data/lib/twilio-ruby/rest/{preview/acc_security.rb → verify/v2.rb} +11 -8
- data/lib/twilio-ruby/rest/verify.rb +47 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +512 -0
- data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +673 -0
- data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +285 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +92 -42
- data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +285 -0
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +92 -43
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +37 -20
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +191 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +348 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +129 -41
- data/lib/twilio-ruby/rest/video/v1/room.rb +100 -58
- data/lib/twilio-ruby/rest/video/v1.rb +48 -2
- data/lib/twilio-ruby/rest/video.rb +36 -2
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +133 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +192 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +412 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +207 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +132 -0
- data/lib/twilio-ruby/rest/voice/v1.rb +35 -0
- data/lib/twilio-ruby/rest/voice.rb +44 -0
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +125 -48
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +84 -55
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +45 -32
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +43 -25
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +203 -91
- data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +231 -0
- data/lib/twilio-ruby/rest/wireless/v1.rb +12 -3
- data/lib/twilio-ruby/rest/wireless.rb +14 -3
- data/lib/twilio-ruby/security/request_validator.rb +104 -8
- data/lib/twilio-ruby/twiml/fax_response.rb +7 -2
- data/lib/twilio-ruby/twiml/messaging_response.rb +2 -0
- data/lib/twilio-ruby/twiml/twiml.rb +63 -12
- data/lib/twilio-ruby/twiml/voice_response.rb +678 -45
- data/lib/twilio-ruby/util/configuration.rb +12 -5
- data/lib/twilio-ruby/util.rb +2 -0
- data/lib/twilio-ruby/version.rb +1 -1
- data/lib/twilio-ruby.rb +12 -16
- data/spec/http/http_client_spec.rb +2 -2
- data/spec/integration/accounts/v1/credential/aws_spec.rb +14 -12
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +14 -12
- data/spec/integration/accounts/v1/credential_spec.rb +2 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +9 -7
- data/spec/integration/api/v2010/account/address_spec.rb +36 -30
- data/spec/integration/api/v2010/account/application_spec.rb +32 -37
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +11 -9
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +9 -7
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +11 -9
- data/spec/integration/api/v2010/account/balance_spec.rb +45 -0
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +19 -17
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +15 -13
- data/spec/integration/api/v2010/account/call/notification_spec.rb +24 -58
- data/spec/integration/api/v2010/account/call/payment_spec.rb +135 -0
- data/spec/integration/api/v2010/account/call/recording_spec.rb +124 -23
- data/spec/integration/api/v2010/account/call_spec.rb +419 -77
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +309 -54
- data/spec/integration/api/v2010/account/conference/recording_spec.rb +237 -0
- data/spec/integration/api/v2010/account/conference_spec.rb +292 -36
- data/spec/integration/api/v2010/account/connect_app_spec.rb +44 -20
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +21 -19
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +31 -29
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +20 -12
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +20 -12
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +20 -12
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +32 -26
- data/spec/integration/api/v2010/account/key_spec.rb +21 -19
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +7 -5
- data/spec/integration/api/v2010/account/message/media_spec.rb +23 -21
- data/spec/integration/api/v2010/account/message_spec.rb +247 -67
- data/spec/integration/api/v2010/account/new_key_spec.rb +5 -3
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +5 -3
- data/spec/integration/api/v2010/account/notification_spec.rb +14 -46
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +21 -19
- data/spec/integration/api/v2010/account/queue/member_spec.rb +74 -31
- data/spec/integration/api/v2010/account/queue_spec.rb +43 -35
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +30 -28
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +23 -21
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +23 -21
- data/spec/integration/api/v2010/account/recording_spec.rb +16 -16
- data/spec/integration/api/v2010/account/short_code_spec.rb +16 -14
- data/spec/integration/api/v2010/account/signing_key_spec.rb +21 -19
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +38 -36
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +28 -26
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb +220 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb +220 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping_spec.rb +12 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping_spec.rb +220 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping_spec.rb +12 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types_spec.rb +12 -0
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +31 -29
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +31 -29
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +54 -40
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +50 -50
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +28 -26
- data/spec/integration/api/v2010/account/sip_spec.rb +2 -0
- data/spec/integration/api/v2010/account/token_spec.rb +8 -4
- data/spec/integration/api/v2010/account/transcription_spec.rb +16 -14
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/record_spec.rb +7 -4
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +29 -27
- data/spec/integration/api/v2010/account/usage_spec.rb +2 -0
- data/spec/integration/api/v2010/account/validation_request_spec.rb +8 -6
- data/spec/integration/api/v2010/account_spec.rb +152 -75
- data/spec/integration/authy/v1/form_spec.rb +48 -0
- data/spec/integration/authy/v1/service/entity/factor/challenge_spec.rb +353 -0
- data/spec/integration/authy/v1/service/entity/factor_spec.rb +298 -0
- data/spec/integration/authy/v1/service/entity_spec.rb +201 -0
- data/spec/integration/authy/v1/service_spec.rb +231 -0
- data/spec/integration/autopilot/v1/assistant/defaults_spec.rb +81 -0
- data/spec/integration/autopilot/v1/assistant/dialogue_spec.rb +47 -0
- data/spec/integration/autopilot/v1/assistant/export_assistant_spec.rb +49 -0
- data/spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb +210 -0
- data/spec/integration/autopilot/v1/assistant/field_type_spec.rb +246 -0
- data/spec/integration/autopilot/v1/assistant/model_build_spec.rb +241 -0
- data/spec/integration/autopilot/v1/assistant/query_spec.rb +294 -0
- data/spec/integration/autopilot/v1/assistant/style_sheet_spec.rb +81 -0
- data/spec/integration/autopilot/v1/assistant/task/field_spec.rb +207 -0
- data/spec/integration/autopilot/v1/assistant/task/sample_spec.rb +253 -0
- data/spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb +87 -0
- data/spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb +50 -0
- data/spec/integration/autopilot/v1/assistant/task_spec.rb +262 -0
- data/spec/integration/autopilot/v1/assistant/webhook_spec.rb +246 -0
- data/spec/integration/autopilot/v1/assistant_spec.rb +286 -0
- data/spec/integration/bulkexports/v1/export/day_spec.rb +117 -0
- data/spec/integration/bulkexports/v1/export/export_custom_job_spec.rb +129 -0
- data/spec/integration/bulkexports/v1/export/job_spec.rb +80 -0
- data/spec/integration/bulkexports/v1/export_configuration_spec.rb +79 -0
- data/spec/integration/bulkexports/v1/export_spec.rb +45 -0
- data/spec/integration/chat/v1/credential_spec.rb +14 -12
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +35 -33
- data/spec/integration/chat/v1/service/channel/member_spec.rb +41 -39
- data/spec/integration/chat/v1/service/channel/message_spec.rb +41 -39
- data/spec/integration/chat/v1/service/channel_spec.rb +24 -22
- data/spec/integration/chat/v1/service/role_spec.rb +29 -27
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +9 -7
- data/spec/integration/chat/v1/service/user_spec.rb +27 -25
- data/spec/integration/chat/v1/service_spec.rb +14 -12
- data/spec/integration/chat/v2/credential_spec.rb +14 -12
- data/spec/integration/chat/v2/service/binding_spec.rb +16 -14
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +35 -33
- data/spec/integration/chat/v2/service/channel/member_spec.rb +42 -36
- data/spec/integration/chat/v2/service/channel/message_spec.rb +43 -41
- data/spec/integration/chat/v2/service/channel/webhook_spec.rb +307 -0
- data/spec/integration/chat/v2/service/channel_spec.rb +28 -22
- data/spec/integration/chat/v2/service/role_spec.rb +29 -27
- data/spec/integration/chat/v2/service/user/user_binding_spec.rb +23 -21
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +166 -7
- data/spec/integration/chat/v2/service/user_spec.rb +27 -25
- data/spec/integration/chat/v2/service_spec.rb +15 -12
- data/spec/integration/conversations/v1/conversation/message_spec.rb +293 -0
- data/spec/integration/conversations/v1/conversation/participant_spec.rb +290 -0
- data/spec/integration/conversations/v1/conversation/webhook_spec.rb +286 -0
- data/spec/integration/conversations/v1/conversation_spec.rb +222 -0
- data/spec/integration/conversations/v1/webhook_spec.rb +88 -0
- data/spec/integration/fax/v1/fax/fax_media_spec.rb +15 -13
- data/spec/integration/fax/v1/fax_spec.rb +18 -16
- data/spec/integration/flex_api/v1/channel_spec.rb +191 -0
- data/spec/integration/flex_api/v1/configuration_spec.rb +602 -0
- data/spec/integration/flex_api/v1/flex_flow_spec.rb +263 -0
- data/spec/integration/flex_api/v1/web_channel_spec.rb +220 -0
- data/spec/integration/insights/v1/call/event_spec.rb +167 -0
- data/spec/integration/insights/v1/call/metric_spec.rb +155 -0
- data/spec/integration/insights/v1/call/summary_spec.rb +63 -0
- data/spec/integration/insights/v1/call_spec.rb +47 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +16 -14
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +35 -33
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +41 -39
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +41 -39
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +24 -22
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +29 -27
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +9 -7
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +27 -25
- data/spec/integration/ip_messaging/v1/service_spec.rb +16 -14
- data/spec/integration/ip_messaging/v2/credential_spec.rb +16 -14
- data/spec/integration/ip_messaging/v2/service/binding_spec.rb +16 -14
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +35 -33
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +42 -36
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +43 -41
- data/spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb +307 -0
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +28 -22
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +29 -27
- data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +23 -21
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +166 -7
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +27 -25
- data/spec/integration/ip_messaging/v2/service_spec.rb +17 -14
- data/spec/integration/lookups/v1/phone_number_spec.rb +283 -6
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +30 -22
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +23 -21
- data/spec/integration/messaging/v1/service/short_code_spec.rb +30 -22
- data/spec/integration/messaging/v1/service_spec.rb +26 -16
- data/spec/integration/monitor/v1/alert_spec.rb +16 -37
- data/spec/integration/monitor/v1/event_spec.rb +5 -3
- data/spec/integration/notify/v1/credential_spec.rb +14 -12
- data/spec/integration/notify/v1/service/binding_spec.rb +26 -24
- data/spec/integration/notify/v1/service/notification_spec.rb +6 -4
- data/spec/integration/notify/v1/service_spec.rb +19 -9
- data/spec/integration/numbers/v2/regulatory_compliance/bundle/item_assignment_spec.rb +198 -0
- data/spec/integration/numbers/v2/regulatory_compliance/bundle_spec.rb +226 -0
- data/spec/integration/numbers/v2/regulatory_compliance/end_user_spec.rb +214 -0
- data/spec/integration/numbers/v2/regulatory_compliance/end_user_type_spec.rb +143 -0
- data/spec/integration/numbers/v2/regulatory_compliance/regulation_spec.rb +183 -0
- data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_spec.rb +226 -0
- data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_type_spec.rb +133 -0
- data/spec/integration/numbers/v2/regulatory_compliance_spec.rb +12 -0
- data/spec/integration/preview/bulk_exports/export/day_spec.rb +71 -10
- data/spec/integration/preview/bulk_exports/export/export_custom_job_spec.rb +129 -0
- data/spec/integration/preview/bulk_exports/export/job_spec.rb +80 -0
- data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +6 -4
- data/spec/integration/preview/bulk_exports/export_spec.rb +4 -2
- data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +27 -25
- data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +24 -22
- data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +24 -22
- data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +24 -22
- data/spec/integration/preview/deployed_devices/fleet_spec.rb +11 -9
- data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +111 -0
- data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +28 -12
- data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +69 -28
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +11 -9
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +5 -3
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +17 -15
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +14 -12
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +31 -29
- data/spec/integration/preview/sync/service/document_spec.rb +25 -23
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +39 -37
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +31 -29
- data/spec/integration/preview/sync/service/sync_list_spec.rb +19 -17
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +43 -41
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +31 -29
- data/spec/integration/preview/sync/service/sync_map_spec.rb +19 -17
- data/spec/integration/preview/sync/service_spec.rb +11 -9
- data/spec/integration/preview/trusted_comms/branded_call_spec.rb +59 -0
- data/spec/integration/preview/trusted_comms/business/insights/impressions_rate_spec.rb +57 -0
- data/spec/integration/preview/trusted_comms/business/insights_spec.rb +12 -0
- data/spec/integration/preview/trusted_comms/business_spec.rb +46 -0
- data/spec/integration/preview/trusted_comms/cps_spec.rb +43 -0
- data/spec/integration/preview/trusted_comms/current_call_spec.rb +54 -0
- data/spec/integration/preview/trusted_comms/phone_call_spec.rb +59 -0
- data/spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb +81 -0
- data/spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb +81 -0
- data/spec/integration/preview/understand/assistant/dialogue_spec.rb +47 -0
- data/spec/integration/preview/understand/assistant/field_type/field_value_spec.rb +210 -0
- data/spec/integration/preview/understand/{service → assistant}/field_type_spec.rb +43 -41
- data/spec/integration/preview/understand/{service → assistant}/model_build_spec.rb +50 -40
- data/spec/integration/preview/understand/{service → assistant}/query_spec.rb +55 -49
- data/spec/integration/preview/understand/assistant/style_sheet_spec.rb +81 -0
- data/spec/integration/preview/understand/{service/intent → assistant/task}/field_spec.rb +44 -42
- data/spec/integration/preview/understand/assistant/task/sample_spec.rb +253 -0
- data/spec/integration/preview/understand/assistant/task/task_actions_spec.rb +87 -0
- data/spec/integration/preview/understand/assistant/task/task_statistics_spec.rb +50 -0
- data/spec/integration/preview/understand/assistant/task_spec.rb +262 -0
- data/spec/integration/preview/understand/assistant_spec.rb +274 -0
- data/spec/integration/preview/wireless/command_spec.rb +12 -10
- data/spec/integration/preview/wireless/rate_plan_spec.rb +11 -9
- data/spec/integration/preview/wireless/sim/usage_spec.rb +5 -3
- data/spec/integration/preview/wireless/sim_spec.rb +12 -10
- data/spec/integration/pricing/v1/messaging/country_spec.rb +16 -14
- data/spec/integration/pricing/v1/messaging_spec.rb +2 -0
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +21 -19
- data/spec/integration/pricing/v1/phone_number_spec.rb +2 -0
- data/spec/integration/pricing/v1/voice/country_spec.rb +25 -151
- data/spec/integration/pricing/v1/voice/number_spec.rb +9 -7
- data/spec/integration/pricing/v1/voice_spec.rb +2 -0
- data/spec/integration/pricing/v2/voice/country_spec.rb +181 -0
- data/spec/integration/pricing/v2/voice/number_spec.rb +62 -0
- data/spec/integration/pricing/v2/voice_spec.rb +12 -0
- data/spec/integration/proxy/v1/service/phone_number_spec.rb +75 -21
- data/spec/integration/proxy/v1/service/session/interaction_spec.rb +22 -20
- data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +27 -25
- data/spec/integration/proxy/v1/service/session/participant_spec.rb +95 -79
- data/spec/integration/proxy/v1/service/session_spec.rb +31 -29
- data/spec/integration/proxy/v1/service/short_code_spec.rb +71 -22
- data/spec/integration/proxy/v1/service_spec.rb +20 -15
- data/spec/integration/serverless/v1/service/asset/asset_version_spec.rb +95 -0
- data/spec/integration/serverless/v1/service/asset_spec.rb +205 -0
- data/spec/integration/serverless/v1/service/build_spec.rb +212 -0
- data/spec/integration/serverless/v1/service/environment/deployment_spec.rb +136 -0
- data/spec/integration/serverless/v1/service/environment/log_spec.rb +98 -0
- data/spec/integration/serverless/v1/service/environment/variable_spec.rb +211 -0
- data/spec/integration/serverless/v1/service/environment_spec.rb +173 -0
- data/spec/integration/serverless/v1/service/function/function_version/function_version_content_spec.rb +52 -0
- data/spec/integration/serverless/v1/service/function/function_version_spec.rb +98 -0
- data/spec/integration/serverless/v1/service/function_spec.rb +205 -0
- data/spec/integration/serverless/v1/service_spec.rb +209 -0
- data/spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb +51 -0
- data/spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb +54 -0
- data/spec/integration/studio/v1/flow/engagement/step_spec.rb +101 -0
- data/spec/integration/{preview/studio → studio/v1}/flow/engagement_spec.rb +32 -32
- data/spec/integration/studio/v1/flow/execution/execution_context_spec.rb +51 -0
- data/spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb +54 -0
- data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +101 -0
- data/spec/integration/studio/v1/flow/execution_spec.rb +217 -0
- data/spec/integration/{preview/studio → studio/v1}/flow_spec.rb +16 -14
- data/spec/integration/studio/v2/flow/execution/execution_context_spec.rb +51 -0
- data/spec/integration/studio/v2/flow/execution/execution_step/execution_step_context_spec.rb +54 -0
- data/spec/integration/studio/v2/flow/execution/execution_step_spec.rb +101 -0
- data/spec/integration/studio/v2/flow/execution_spec.rb +214 -0
- data/spec/integration/studio/v2/flow/flow_revision_spec.rb +112 -0
- data/spec/integration/studio/v2/flow/test_user_spec.rb +86 -0
- data/spec/integration/studio/v2/flow_spec.rb +254 -0
- data/spec/integration/studio/v2/flow_validate_spec.rb +46 -0
- data/spec/integration/supersim/v1/command_spec.rb +186 -0
- data/spec/integration/supersim/v1/fleet_spec.rb +208 -0
- data/spec/integration/supersim/v1/sim_spec.rb +231 -0
- data/spec/integration/supersim/v1/usage_record_spec.rb +203 -0
- data/spec/integration/sync/v1/service/document/document_permission_spec.rb +31 -29
- data/spec/integration/sync/v1/service/document_spec.rb +24 -22
- data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +36 -34
- data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +31 -29
- data/spec/integration/sync/v1/service/sync_list_spec.rb +24 -22
- data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +42 -40
- data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +31 -29
- data/spec/integration/sync/v1/service/sync_map_spec.rb +24 -22
- data/spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb +10 -8
- data/spec/integration/sync/v1/service/sync_stream_spec.rb +24 -22
- data/spec/integration/sync/v1/service_spec.rb +27 -13
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +27 -25
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +21 -13
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +54 -21
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +208 -19
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +13 -5
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +10 -5
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +8 -6
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +11 -9
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +31 -33
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +35 -29
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +23 -21
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +23 -36
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +7 -5
- data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +7 -5
- data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +7 -5
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +5 -3
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +31 -29
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +7 -5
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +8 -5
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +8 -6
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +31 -31
- data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +5 -3
- data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +6 -3
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +6 -4
- data/spec/integration/taskrouter/v1/workspace_spec.rb +18 -16
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +31 -29
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +37 -35
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +43 -41
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +22 -20
- data/spec/integration/trunking/v1/trunk_spec.rb +43 -37
- data/spec/integration/verify/v2/service/messaging_configuration_spec.rb +231 -0
- data/spec/integration/verify/v2/service/rate_limit/bucket_spec.rb +249 -0
- data/spec/integration/verify/v2/service/rate_limit_spec.rb +221 -0
- data/spec/integration/verify/v2/service/verification_check_spec.rb +80 -0
- data/spec/integration/verify/v2/service/verification_spec.rb +319 -0
- data/spec/integration/verify/v2/service_spec.rb +247 -0
- data/spec/integration/video/v1/composition_hook_spec.rb +410 -0
- data/spec/integration/video/v1/composition_settings_spec.rb +86 -0
- data/spec/integration/video/v1/composition_spec.rb +350 -0
- data/spec/integration/video/v1/recording_settings_spec.rb +86 -0
- data/spec/integration/video/v1/recording_spec.rb +22 -12
- data/spec/integration/video/v1/room/recording_spec.rb +53 -11
- data/spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb +14 -12
- data/spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb +105 -0
- data/spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb +97 -0
- data/spec/integration/video/v1/room/room_participant_spec.rb +27 -19
- data/spec/integration/video/v1/room_spec.rb +11 -9
- data/spec/integration/voice/v1/dialing_permissions/bulk_country_update_spec.rb +45 -0
- data/spec/integration/voice/v1/dialing_permissions/country/highrisk_special_prefix_spec.rb +61 -0
- data/spec/integration/voice/v1/dialing_permissions/country_spec.rb +112 -0
- data/spec/integration/voice/v1/dialing_permissions/settings_spec.rb +77 -0
- data/spec/integration/voice/v1/dialing_permissions_spec.rb +12 -0
- data/spec/integration/wireless/v1/command_spec.rb +137 -12
- data/spec/integration/wireless/v1/rate_plan_spec.rb +35 -21
- data/spec/integration/wireless/v1/sim/data_session_spec.rb +11 -7
- data/spec/integration/wireless/v1/sim/usage_record_spec.rb +58 -8
- data/spec/integration/wireless/v1/sim_spec.rb +125 -10
- data/spec/integration/wireless/v1/usage_record_spec.rb +111 -0
- data/spec/jwt/access_token_spec.rb +2 -0
- data/spec/rest/client_spec.rb +34 -0
- data/spec/security/request_validator_spec.rb +73 -61
- data/spec/spec_helper.rb +6 -0
- data/spec/twilio_spec.rb +3 -1
- data/spec/twiml/messaging_response_spec.rb +186 -46
- data/spec/twiml/voice_response_spec.rb +625 -257
- data/spec/util/configuration_spec.rb +6 -0
- data/twilio-ruby.gemspec +11 -7
- metadata +528 -92
- data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -260
- data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -431
- data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -419
- data/lib/twilio-ruby/rest/preview/acc_security/service/verification.rb +0 -183
- data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -435
- data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -495
- data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -462
- data/spec/integration/notify/v1/service/segment_spec.rb +0 -84
- data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -116
- data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -266
- data/spec/integration/notify/v1/service/user_spec.rb +0 -211
- data/spec/integration/preview/acc_security/service/verification_check_spec.rb +0 -50
- data/spec/integration/preview/acc_security/service/verification_spec.rb +0 -50
- data/spec/integration/preview/acc_security/service_spec.rb +0 -183
- data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -171
- data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -104
- data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -164
- data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -224
- data/spec/integration/preview/proxy/service/session_spec.rb +0 -216
- data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -171
- data/spec/integration/preview/proxy/service_spec.rb +0 -200
- data/spec/integration/preview/studio/flow/engagement/step_spec.rb +0 -96
- data/spec/integration/preview/understand/service/field_type/field_value_spec.rb +0 -205
- data/spec/integration/preview/understand/service/intent/sample_spec.rb +0 -247
- data/spec/integration/preview/understand/service/intent_spec.rb +0 -252
- data/spec/integration/preview/understand/service_spec.rb +0 -256
@@ -3,6 +3,8 @@
|
|
3
3
|
# \ / _ _ _| _ _
|
4
4
|
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
5
|
# / /
|
6
|
+
#
|
7
|
+
# frozen_string_literal: true
|
6
8
|
|
7
9
|
module Twilio
|
8
10
|
module REST
|
@@ -14,10 +16,10 @@ module Twilio
|
|
14
16
|
##
|
15
17
|
# Initialize the ParticipantList
|
16
18
|
# @param [Version] version Version that contains the resource
|
17
|
-
# @param [String] account_sid The
|
18
|
-
#
|
19
|
-
#
|
20
|
-
#
|
19
|
+
# @param [String] account_sid The SID of the
|
20
|
+
# [Account](https://www.twilio.com/docs/iam/api/account) that created the
|
21
|
+
# Participant resource.
|
22
|
+
# @param [String] conference_sid The SID of the conference the participant is in.
|
21
23
|
# @return [ParticipantList] ParticipantList
|
22
24
|
def initialize(version, account_sid: nil, conference_sid: nil)
|
23
25
|
super(version)
|
@@ -30,45 +32,107 @@ module Twilio
|
|
30
32
|
##
|
31
33
|
# Retrieve a single page of ParticipantInstance records from the API.
|
32
34
|
# Request is executed immediately.
|
33
|
-
# @param [String] from The from
|
34
|
-
#
|
35
|
-
# @param [String]
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# @param [String]
|
39
|
-
#
|
40
|
-
# @param [
|
41
|
-
#
|
42
|
-
# @param [
|
43
|
-
#
|
44
|
-
#
|
45
|
-
#
|
46
|
-
# @param [
|
47
|
-
#
|
48
|
-
#
|
49
|
-
#
|
50
|
-
#
|
51
|
-
# @param [
|
52
|
-
#
|
53
|
-
#
|
54
|
-
#
|
55
|
-
#
|
56
|
-
# @param [String]
|
57
|
-
#
|
58
|
-
#
|
59
|
-
# @param [
|
60
|
-
#
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
# @param [
|
65
|
-
#
|
66
|
-
# @param [String]
|
67
|
-
#
|
68
|
-
#
|
69
|
-
#
|
35
|
+
# @param [String] from The `from` phone number that will dial the new conference
|
36
|
+
# participant. Can be a phone number or a client id.
|
37
|
+
# @param [String] to The phone number, client id, or sip address to invite to the
|
38
|
+
# conference. [Custom
|
39
|
+
# parameters](https://www.twilio.com/docs/voice/api/conference-participant-resource#custom-parameters) may also be specified.
|
40
|
+
# @param [String] status_callback The URL we should call using the
|
41
|
+
# `status_callback_method` to send status information to your application.
|
42
|
+
# @param [String] status_callback_method The HTTP method we should use to call
|
43
|
+
# `status_callback`. Can be: `GET` and `POST` and defaults to `POST`.
|
44
|
+
# @param [String] status_callback_event The conference state changes that should
|
45
|
+
# generate a call to `status_callback`. Can be: `initiated`, `ringing`,
|
46
|
+
# `answered`, and `completed`. Separate multiple values with a space. The default
|
47
|
+
# value is `completed`.
|
48
|
+
# @param [String] timeout The number of seconds that we should allow the phone to
|
49
|
+
# ring before assuming there is no answer. Can be an integer between `5` and
|
50
|
+
# `600`, inclusive. The default value is `60`. We always add a 5-second timeout
|
51
|
+
# buffer to outgoing calls, so value of 10 would result in an actual timeout that
|
52
|
+
# was closer to 15 seconds.
|
53
|
+
# @param [Boolean] record Whether to record the participant and their conferences,
|
54
|
+
# including the time between conferences. Can be `true` or `false` and the default
|
55
|
+
# is `false`.
|
56
|
+
# @param [Boolean] muted Whether the agent is muted in the conference. Can be
|
57
|
+
# `true` or `false` and the default is `false`.
|
58
|
+
# @param [String] beep Whether to play a notification beep to the conference when
|
59
|
+
# the participant joins. Can be: `true`, `false`, `onEnter`, or `onExit`. The
|
60
|
+
# default value is `true`.
|
61
|
+
# @param [Boolean] start_conference_on_enter Whether to start the conference when
|
62
|
+
# the participant joins, if it has not already started. Can be: `true` or `false`
|
63
|
+
# and the default is `true`. If `false` and the conference has not started, the
|
64
|
+
# participant is muted and hears background music until another participant starts
|
65
|
+
# the conference.
|
66
|
+
# @param [Boolean] end_conference_on_exit Whether to end the conference when the
|
67
|
+
# participant leaves. Can be: `true` or `false` and defaults to `false`.
|
68
|
+
# @param [String] wait_url The URL we should call using the `wait_method` for the
|
69
|
+
# music to play while participants are waiting for the conference to start. The
|
70
|
+
# default value is the URL of our standard hold music. [Learn more about hold
|
71
|
+
# music](https://www.twilio.com/labs/twimlets/holdmusic).
|
72
|
+
# @param [String] wait_method The HTTP method we should use to call `wait_url`.
|
73
|
+
# Can be `GET` or `POST` and the default is `POST`. When using a static audio
|
74
|
+
# file, this should be `GET` so that we can cache the file.
|
75
|
+
# @param [Boolean] early_media Whether to allow an agent to hear the state of the
|
76
|
+
# outbound call, including ringing or disconnect messages. Can be: `true` or
|
77
|
+
# `false` and defaults to `true`.
|
78
|
+
# @param [String] max_participants The maximum number of participants in the
|
79
|
+
# conference. Can be a positive integer from `2` to `250`. The default value is
|
80
|
+
# `250`.
|
81
|
+
# @param [String] conference_record Whether to record the conference the
|
82
|
+
# participant is joining. Can be: `true`, `false`, `record-from-start`, and
|
83
|
+
# `do-not-record`. The default value is `false`.
|
84
|
+
# @param [String] conference_trim Whether to trim leading and trailing silence
|
85
|
+
# from your recorded conference audio files. Can be: `trim-silence` or
|
86
|
+
# `do-not-trim` and defaults to `trim-silence`.
|
87
|
+
# @param [String] conference_status_callback The URL we should call using the
|
88
|
+
# `conference_status_callback_method` when the conference events in
|
89
|
+
# `conference_status_callback_event` occur. Only the value set by the first
|
90
|
+
# participant to join the conference is used. Subsequent
|
91
|
+
# `conference_status_callback` values are ignored.
|
92
|
+
# @param [String] conference_status_callback_method The HTTP method we should use
|
93
|
+
# to call `conference_status_callback`. Can be: `GET` or `POST` and defaults to
|
94
|
+
# `POST`.
|
95
|
+
# @param [String] conference_status_callback_event The conference state changes
|
96
|
+
# that should generate a call to `conference_status_callback`. Can be: `start`,
|
97
|
+
# `end`, `join`, `leave`, `mute`, `hold`, and `speaker`. Separate multiple values
|
98
|
+
# with a space. Defaults to `start end`.
|
99
|
+
# @param [String] recording_channels The recording channels for the final
|
100
|
+
# recording. Can be: `mono` or `dual` and the default is `mono`.
|
101
|
+
# @param [String] recording_status_callback The URL that we should call using the
|
102
|
+
# `recording_status_callback_method` when the recording status changes.
|
103
|
+
# @param [String] recording_status_callback_method The HTTP method we should use
|
104
|
+
# when we call `recording_status_callback`. Can be: `GET` or `POST` and defaults
|
105
|
+
# to `POST`.
|
106
|
+
# @param [String] sip_auth_username The SIP username used for authentication.
|
107
|
+
# @param [String] sip_auth_password The SIP password for authentication.
|
108
|
+
# @param [String] region The
|
109
|
+
# [region](https://support.twilio.com/hc/en-us/articles/223132167-How-global-low-latency-routing-and-region-selection-work-for-conferences-and-Client-calls) where we should mix the recorded audio. Can be:`us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, or `jp1`.
|
110
|
+
# @param [String] conference_recording_status_callback The URL we should call
|
111
|
+
# using the `conference_recording_status_callback_method` when the conference
|
112
|
+
# recording is available.
|
113
|
+
# @param [String] conference_recording_status_callback_method The HTTP method we
|
114
|
+
# should use to call `conference_recording_status_callback`. Can be: `GET` or
|
115
|
+
# `POST` and defaults to `POST`.
|
116
|
+
# @param [String] recording_status_callback_event The recording state changes that
|
117
|
+
# should generate a call to `recording_status_callback`. Can be: `in-progress`,
|
118
|
+
# `completed`, and `failed`. Separate multiple values with a space. The default
|
119
|
+
# value is `in-progress completed failed`.
|
120
|
+
# @param [String] conference_recording_status_callback_event The conference
|
121
|
+
# recording state changes that generate a call to
|
122
|
+
# `conference_recording_status_callback`. Can be: `in-progress`, `completed`, and
|
123
|
+
# `failed`. Separate multiple values with a space. The default value is
|
124
|
+
# `in-progress completed failed`.
|
125
|
+
# @param [Boolean] coaching Whether the participant is coaching another call. Can
|
126
|
+
# be: `true` or `false`. If not present, defaults to `false` unless
|
127
|
+
# `call_sid_to_coach` is defined. If `true`, `call_sid_to_coach` must be defined.
|
128
|
+
# @param [String] call_sid_to_coach The SID of the participant who is being
|
129
|
+
# `coached`. The participant being coached is the only participant who can hear
|
130
|
+
# the participant who is `coaching`.
|
131
|
+
# @param [String] byoc The SID of a BYOC (Bring Your Own Carrier) trunk to route
|
132
|
+
# this call with. Note that `byoc` is only meaningful when `to` is a phone number;
|
133
|
+
# it will otherwise be ignored. (Beta)
|
70
134
|
# @return [ParticipantInstance] Newly created ParticipantInstance
|
71
|
-
def create(from: nil, to: nil, status_callback: :unset, status_callback_method: :unset, status_callback_event: :unset, timeout: :unset, record: :unset, muted: :unset, beep: :unset, start_conference_on_enter: :unset, end_conference_on_exit: :unset, wait_url: :unset, wait_method: :unset, early_media: :unset, max_participants: :unset, conference_record: :unset, conference_trim: :unset, conference_status_callback: :unset, conference_status_callback_method: :unset, conference_status_callback_event: :unset, recording_channels: :unset, recording_status_callback: :unset, recording_status_callback_method: :unset, sip_auth_username: :unset, sip_auth_password: :unset, region: :unset, conference_recording_status_callback: :unset, conference_recording_status_callback_method: :unset, recording_status_callback_event: :unset, conference_recording_status_callback_event: :unset)
|
135
|
+
def create(from: nil, to: nil, status_callback: :unset, status_callback_method: :unset, status_callback_event: :unset, timeout: :unset, record: :unset, muted: :unset, beep: :unset, start_conference_on_enter: :unset, end_conference_on_exit: :unset, wait_url: :unset, wait_method: :unset, early_media: :unset, max_participants: :unset, conference_record: :unset, conference_trim: :unset, conference_status_callback: :unset, conference_status_callback_method: :unset, conference_status_callback_event: :unset, recording_channels: :unset, recording_status_callback: :unset, recording_status_callback_method: :unset, sip_auth_username: :unset, sip_auth_password: :unset, region: :unset, conference_recording_status_callback: :unset, conference_recording_status_callback_method: :unset, recording_status_callback_event: :unset, conference_recording_status_callback_event: :unset, coaching: :unset, call_sid_to_coach: :unset, byoc: :unset)
|
72
136
|
data = Twilio::Values.of({
|
73
137
|
'From' => from,
|
74
138
|
'To' => to,
|
@@ -100,6 +164,9 @@ module Twilio
|
|
100
164
|
'ConferenceRecordingStatusCallbackMethod' => conference_recording_status_callback_method,
|
101
165
|
'RecordingStatusCallbackEvent' => Twilio.serialize_list(recording_status_callback_event) { |e| e },
|
102
166
|
'ConferenceRecordingStatusCallbackEvent' => Twilio.serialize_list(conference_recording_status_callback_event) { |e| e },
|
167
|
+
'Coaching' => coaching,
|
168
|
+
'CallSidToCoach' => call_sid_to_coach,
|
169
|
+
'Byoc' => byoc,
|
103
170
|
})
|
104
171
|
|
105
172
|
payload = @version.create(
|
@@ -120,8 +187,12 @@ module Twilio
|
|
120
187
|
# Lists ParticipantInstance records from the API as a list.
|
121
188
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
122
189
|
# memory before returning.
|
123
|
-
# @param [Boolean] muted
|
124
|
-
#
|
190
|
+
# @param [Boolean] muted Whether to return only participants that are muted. Can
|
191
|
+
# be: `true` or `false`.
|
192
|
+
# @param [Boolean] hold Whether to return only participants that are on hold. Can
|
193
|
+
# be: `true` or `false`.
|
194
|
+
# @param [Boolean] coaching Whether to return only participants who are coaching
|
195
|
+
# another call. Can be: `true` or `false`.
|
125
196
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
126
197
|
# guarantees to never return more than limit. Default is no limit
|
127
198
|
# @param [Integer] page_size Number of records to fetch per request, when
|
@@ -129,16 +200,26 @@ module Twilio
|
|
129
200
|
# but a limit is defined, stream() will attempt to read the limit with the most
|
130
201
|
# efficient page size, i.e. min(limit, 1000)
|
131
202
|
# @return [Array] Array of up to limit results
|
132
|
-
def list(muted: :unset, hold: :unset, limit: nil, page_size: nil)
|
133
|
-
self.stream(
|
203
|
+
def list(muted: :unset, hold: :unset, coaching: :unset, limit: nil, page_size: nil)
|
204
|
+
self.stream(
|
205
|
+
muted: muted,
|
206
|
+
hold: hold,
|
207
|
+
coaching: coaching,
|
208
|
+
limit: limit,
|
209
|
+
page_size: page_size
|
210
|
+
).entries
|
134
211
|
end
|
135
212
|
|
136
213
|
##
|
137
214
|
# Streams ParticipantInstance records from the API as an Enumerable.
|
138
215
|
# This operation lazily loads records as efficiently as possible until the limit
|
139
216
|
# is reached.
|
140
|
-
# @param [Boolean] muted
|
141
|
-
#
|
217
|
+
# @param [Boolean] muted Whether to return only participants that are muted. Can
|
218
|
+
# be: `true` or `false`.
|
219
|
+
# @param [Boolean] hold Whether to return only participants that are on hold. Can
|
220
|
+
# be: `true` or `false`.
|
221
|
+
# @param [Boolean] coaching Whether to return only participants who are coaching
|
222
|
+
# another call. Can be: `true` or `false`.
|
142
223
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
143
224
|
# guarantees to never return more than limit. Default is no limit.
|
144
225
|
# @param [Integer] page_size Number of records to fetch per request, when
|
@@ -146,10 +227,10 @@ module Twilio
|
|
146
227
|
# but a limit is defined, stream() will attempt to read the limit with the most
|
147
228
|
# efficient page size, i.e. min(limit, 1000)
|
148
229
|
# @return [Enumerable] Enumerable that will yield up to limit results
|
149
|
-
def stream(muted: :unset, hold: :unset, limit: nil, page_size: nil)
|
230
|
+
def stream(muted: :unset, hold: :unset, coaching: :unset, limit: nil, page_size: nil)
|
150
231
|
limits = @version.read_limits(limit, page_size)
|
151
232
|
|
152
|
-
page = self.page(muted: muted, hold: hold, page_size: limits[:page_size])
|
233
|
+
page = self.page(muted: muted, hold: hold, coaching: coaching, page_size: limits[:page_size], )
|
153
234
|
|
154
235
|
@version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
|
155
236
|
end
|
@@ -161,7 +242,7 @@ module Twilio
|
|
161
242
|
def each
|
162
243
|
limits = @version.read_limits
|
163
244
|
|
164
|
-
page = self.page(page_size: limits[:page_size])
|
245
|
+
page = self.page(page_size: limits[:page_size], )
|
165
246
|
|
166
247
|
@version.stream(page,
|
167
248
|
limit: limits[:limit],
|
@@ -171,16 +252,21 @@ module Twilio
|
|
171
252
|
##
|
172
253
|
# Retrieve a single page of ParticipantInstance records from the API.
|
173
254
|
# Request is executed immediately.
|
174
|
-
# @param [Boolean] muted
|
175
|
-
#
|
255
|
+
# @param [Boolean] muted Whether to return only participants that are muted. Can
|
256
|
+
# be: `true` or `false`.
|
257
|
+
# @param [Boolean] hold Whether to return only participants that are on hold. Can
|
258
|
+
# be: `true` or `false`.
|
259
|
+
# @param [Boolean] coaching Whether to return only participants who are coaching
|
260
|
+
# another call. Can be: `true` or `false`.
|
176
261
|
# @param [String] page_token PageToken provided by the API
|
177
262
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
178
263
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
179
264
|
# @return [Page] Page of ParticipantInstance
|
180
|
-
def page(muted: :unset, hold: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
|
265
|
+
def page(muted: :unset, hold: :unset, coaching: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
|
181
266
|
params = Twilio::Values.of({
|
182
267
|
'Muted' => muted,
|
183
268
|
'Hold' => hold,
|
269
|
+
'Coaching' => coaching,
|
184
270
|
'PageToken' => page_token,
|
185
271
|
'Page' => page_number,
|
186
272
|
'PageSize' => page_size,
|
@@ -251,16 +337,20 @@ module Twilio
|
|
251
337
|
##
|
252
338
|
# Initialize the ParticipantContext
|
253
339
|
# @param [Version] version Version that contains the resource
|
254
|
-
# @param [String] account_sid The
|
255
|
-
#
|
256
|
-
#
|
257
|
-
# @param [String]
|
340
|
+
# @param [String] account_sid The SID of the
|
341
|
+
# [Account](https://www.twilio.com/docs/iam/api/account) that created the
|
342
|
+
# Participant resource to fetch.
|
343
|
+
# @param [String] conference_sid The SID of the conference with the participant to
|
344
|
+
# fetch.
|
345
|
+
# @param [String] call_sid The
|
346
|
+
# [Call](https://www.twilio.com/docs/voice/api/call-resource) SID of the resource
|
347
|
+
# to fetch.
|
258
348
|
# @return [ParticipantContext] ParticipantContext
|
259
349
|
def initialize(version, account_sid, conference_sid, call_sid)
|
260
350
|
super(version)
|
261
351
|
|
262
352
|
# Path Solution
|
263
|
-
@solution = {account_sid: account_sid, conference_sid: conference_sid, call_sid: call_sid}
|
353
|
+
@solution = {account_sid: account_sid, conference_sid: conference_sid, call_sid: call_sid, }
|
264
354
|
@uri = "/Accounts/#{@solution[:account_sid]}/Conferences/#{@solution[:conference_sid]}/Participants/#{@solution[:call_sid]}.json"
|
265
355
|
end
|
266
356
|
|
@@ -287,14 +377,42 @@ module Twilio
|
|
287
377
|
|
288
378
|
##
|
289
379
|
# Update the ParticipantInstance
|
290
|
-
# @param [Boolean] muted
|
291
|
-
#
|
292
|
-
#
|
293
|
-
# @param [
|
294
|
-
#
|
295
|
-
#
|
380
|
+
# @param [Boolean] muted Whether the participant should be muted. Can be `true` or
|
381
|
+
# `false`. `true` will mute the participant, and `false` will un-mute them.
|
382
|
+
# Anything value other than `true` or `false` is interpreted as `false`.
|
383
|
+
# @param [Boolean] hold Whether the participant should be on hold. Can be: `true`
|
384
|
+
# or `false`. `true` puts the participant on hold, and `false` lets them rejoin
|
385
|
+
# the conference.
|
386
|
+
# @param [String] hold_url The URL we call using the `hold_method` for music that
|
387
|
+
# plays when the participant is on hold. The URL may return an MP3 file, a WAV
|
388
|
+
# file, or a TwiML document that contains the `<Play>`, `<Say>` or `<Redirect>`
|
389
|
+
# commands.
|
390
|
+
# @param [String] hold_method The HTTP method we should use to call `hold_url`.
|
391
|
+
# Can be: `GET` or `POST` and the default is `GET`.
|
392
|
+
# @param [String] announce_url The URL we call using the `announce_method` for an
|
393
|
+
# announcement to the participant. The URL must return an MP3 file, a WAV file, or
|
394
|
+
# a TwiML document that contains `<Play>` or `<Say>` commands.
|
395
|
+
# @param [String] announce_method The HTTP method we should use to call
|
396
|
+
# `announce_url`. Can be: `GET` or `POST` and defaults to `POST`.
|
397
|
+
# @param [String] wait_url The URL we should call using the `wait_method` for the
|
398
|
+
# music to play while participants are waiting for the conference to start. The
|
399
|
+
# default value is the URL of our standard hold music. [Learn more about hold
|
400
|
+
# music](https://www.twilio.com/labs/twimlets/holdmusic).
|
401
|
+
# @param [String] wait_method The HTTP method we should use to call `wait_url`.
|
402
|
+
# Can be `GET` or `POST` and the default is `POST`. When using a static audio
|
403
|
+
# file, this should be `GET` so that we can cache the file.
|
404
|
+
# @param [Boolean] beep_on_exit Whether to play a notification beep to the
|
405
|
+
# conference when the participant exits. Can be: `true` or `false`.
|
406
|
+
# @param [Boolean] end_conference_on_exit Whether to end the conference when the
|
407
|
+
# participant leaves. Can be: `true` or `false` and defaults to `false`.
|
408
|
+
# @param [Boolean] coaching Whether the participant is coaching another call. Can
|
409
|
+
# be: `true` or `false`. If not present, defaults to `false` unless
|
410
|
+
# `call_sid_to_coach` is defined. If `true`, `call_sid_to_coach` must be defined.
|
411
|
+
# @param [String] call_sid_to_coach The SID of the participant who is being
|
412
|
+
# `coached`. The participant being coached is the only participant who can hear
|
413
|
+
# the participant who is `coaching`.
|
296
414
|
# @return [ParticipantInstance] Updated ParticipantInstance
|
297
|
-
def update(muted: :unset, hold: :unset, hold_url: :unset, hold_method: :unset, announce_url: :unset, announce_method: :unset)
|
415
|
+
def update(muted: :unset, hold: :unset, hold_url: :unset, hold_method: :unset, announce_url: :unset, announce_method: :unset, wait_url: :unset, wait_method: :unset, beep_on_exit: :unset, end_conference_on_exit: :unset, coaching: :unset, call_sid_to_coach: :unset)
|
298
416
|
data = Twilio::Values.of({
|
299
417
|
'Muted' => muted,
|
300
418
|
'Hold' => hold,
|
@@ -302,6 +420,12 @@ module Twilio
|
|
302
420
|
'HoldMethod' => hold_method,
|
303
421
|
'AnnounceUrl' => announce_url,
|
304
422
|
'AnnounceMethod' => announce_method,
|
423
|
+
'WaitUrl' => wait_url,
|
424
|
+
'WaitMethod' => wait_method,
|
425
|
+
'BeepOnExit' => beep_on_exit,
|
426
|
+
'EndConferenceOnExit' => end_conference_on_exit,
|
427
|
+
'Coaching' => coaching,
|
428
|
+
'CallSidToCoach' => call_sid_to_coach,
|
305
429
|
})
|
306
430
|
|
307
431
|
payload = @version.update(
|
@@ -321,7 +445,7 @@ module Twilio
|
|
321
445
|
|
322
446
|
##
|
323
447
|
# Deletes the ParticipantInstance
|
324
|
-
# @return [Boolean] true if delete succeeds,
|
448
|
+
# @return [Boolean] true if delete succeeds, false otherwise
|
325
449
|
def delete
|
326
450
|
@version.delete('delete', @uri)
|
327
451
|
end
|
@@ -332,6 +456,13 @@ module Twilio
|
|
332
456
|
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
333
457
|
"#<Twilio.Api.V2010.ParticipantContext #{context}>"
|
334
458
|
end
|
459
|
+
|
460
|
+
##
|
461
|
+
# Provide a detailed, user friendly representation
|
462
|
+
def inspect
|
463
|
+
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
464
|
+
"#<Twilio.Api.V2010.ParticipantContext #{context}>"
|
465
|
+
end
|
335
466
|
end
|
336
467
|
|
337
468
|
class ParticipantInstance < InstanceResource
|
@@ -339,11 +470,13 @@ module Twilio
|
|
339
470
|
# Initialize the ParticipantInstance
|
340
471
|
# @param [Version] version Version that contains the resource
|
341
472
|
# @param [Hash] payload payload that contains response from Twilio
|
342
|
-
# @param [String] account_sid The
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
# @param [String] call_sid The
|
473
|
+
# @param [String] account_sid The SID of the
|
474
|
+
# [Account](https://www.twilio.com/docs/iam/api/account) that created the
|
475
|
+
# Participant resource.
|
476
|
+
# @param [String] conference_sid The SID of the conference the participant is in.
|
477
|
+
# @param [String] call_sid The
|
478
|
+
# [Call](https://www.twilio.com/docs/voice/api/call-resource) SID of the resource
|
479
|
+
# to fetch.
|
347
480
|
# @return [ParticipantInstance] ParticipantInstance
|
348
481
|
def initialize(version, payload, account_sid: nil, conference_sid: nil, call_sid: nil)
|
349
482
|
super(version)
|
@@ -352,6 +485,8 @@ module Twilio
|
|
352
485
|
@properties = {
|
353
486
|
'account_sid' => payload['account_sid'],
|
354
487
|
'call_sid' => payload['call_sid'],
|
488
|
+
'call_sid_to_coach' => payload['call_sid_to_coach'],
|
489
|
+
'coaching' => payload['coaching'],
|
355
490
|
'conference_sid' => payload['conference_sid'],
|
356
491
|
'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
|
357
492
|
'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
|
@@ -389,67 +524,79 @@ module Twilio
|
|
389
524
|
end
|
390
525
|
|
391
526
|
##
|
392
|
-
# @return [String] The
|
527
|
+
# @return [String] The SID of the Account that created the resource
|
393
528
|
def account_sid
|
394
529
|
@properties['account_sid']
|
395
530
|
end
|
396
531
|
|
397
532
|
##
|
398
|
-
# @return [String]
|
533
|
+
# @return [String] The SID of the Call the resource is associated with
|
399
534
|
def call_sid
|
400
535
|
@properties['call_sid']
|
401
536
|
end
|
402
537
|
|
403
538
|
##
|
404
|
-
# @return [String]
|
539
|
+
# @return [String] The SID of the participant who is being `coached`
|
540
|
+
def call_sid_to_coach
|
541
|
+
@properties['call_sid_to_coach']
|
542
|
+
end
|
543
|
+
|
544
|
+
##
|
545
|
+
# @return [Boolean] Indicates if the participant changed to coach
|
546
|
+
def coaching
|
547
|
+
@properties['coaching']
|
548
|
+
end
|
549
|
+
|
550
|
+
##
|
551
|
+
# @return [String] The SID of the conference the participant is in
|
405
552
|
def conference_sid
|
406
553
|
@properties['conference_sid']
|
407
554
|
end
|
408
555
|
|
409
556
|
##
|
410
|
-
# @return [Time] The date
|
557
|
+
# @return [Time] The RFC 2822 date and time in GMT that the resource was created
|
411
558
|
def date_created
|
412
559
|
@properties['date_created']
|
413
560
|
end
|
414
561
|
|
415
562
|
##
|
416
|
-
# @return [Time] The date
|
563
|
+
# @return [Time] The RFC 2822 date and time in GMT that the resource was last updated
|
417
564
|
def date_updated
|
418
565
|
@properties['date_updated']
|
419
566
|
end
|
420
567
|
|
421
568
|
##
|
422
|
-
# @return [Boolean]
|
569
|
+
# @return [Boolean] Whether the conference ends when the participant leaves
|
423
570
|
def end_conference_on_exit
|
424
571
|
@properties['end_conference_on_exit']
|
425
572
|
end
|
426
573
|
|
427
574
|
##
|
428
|
-
# @return [Boolean]
|
575
|
+
# @return [Boolean] Whether the participant is muted
|
429
576
|
def muted
|
430
577
|
@properties['muted']
|
431
578
|
end
|
432
579
|
|
433
580
|
##
|
434
|
-
# @return [Boolean]
|
581
|
+
# @return [Boolean] Whether the participant is on hold
|
435
582
|
def hold
|
436
583
|
@properties['hold']
|
437
584
|
end
|
438
585
|
|
439
586
|
##
|
440
|
-
# @return [Boolean]
|
587
|
+
# @return [Boolean] Whether the conference starts when the participant joins the conference
|
441
588
|
def start_conference_on_enter
|
442
589
|
@properties['start_conference_on_enter']
|
443
590
|
end
|
444
591
|
|
445
592
|
##
|
446
|
-
# @return [participant.Status] The status
|
593
|
+
# @return [participant.Status] The status of the participant's call in a session
|
447
594
|
def status
|
448
595
|
@properties['status']
|
449
596
|
end
|
450
597
|
|
451
598
|
##
|
452
|
-
# @return [String] The URI
|
599
|
+
# @return [String] The URI of the resource, relative to `https://api.twilio.com`
|
453
600
|
def uri
|
454
601
|
@properties['uri']
|
455
602
|
end
|
@@ -463,14 +610,42 @@ module Twilio
|
|
463
610
|
|
464
611
|
##
|
465
612
|
# Update the ParticipantInstance
|
466
|
-
# @param [Boolean] muted
|
467
|
-
#
|
468
|
-
#
|
469
|
-
# @param [
|
470
|
-
#
|
471
|
-
#
|
613
|
+
# @param [Boolean] muted Whether the participant should be muted. Can be `true` or
|
614
|
+
# `false`. `true` will mute the participant, and `false` will un-mute them.
|
615
|
+
# Anything value other than `true` or `false` is interpreted as `false`.
|
616
|
+
# @param [Boolean] hold Whether the participant should be on hold. Can be: `true`
|
617
|
+
# or `false`. `true` puts the participant on hold, and `false` lets them rejoin
|
618
|
+
# the conference.
|
619
|
+
# @param [String] hold_url The URL we call using the `hold_method` for music that
|
620
|
+
# plays when the participant is on hold. The URL may return an MP3 file, a WAV
|
621
|
+
# file, or a TwiML document that contains the `<Play>`, `<Say>` or `<Redirect>`
|
622
|
+
# commands.
|
623
|
+
# @param [String] hold_method The HTTP method we should use to call `hold_url`.
|
624
|
+
# Can be: `GET` or `POST` and the default is `GET`.
|
625
|
+
# @param [String] announce_url The URL we call using the `announce_method` for an
|
626
|
+
# announcement to the participant. The URL must return an MP3 file, a WAV file, or
|
627
|
+
# a TwiML document that contains `<Play>` or `<Say>` commands.
|
628
|
+
# @param [String] announce_method The HTTP method we should use to call
|
629
|
+
# `announce_url`. Can be: `GET` or `POST` and defaults to `POST`.
|
630
|
+
# @param [String] wait_url The URL we should call using the `wait_method` for the
|
631
|
+
# music to play while participants are waiting for the conference to start. The
|
632
|
+
# default value is the URL of our standard hold music. [Learn more about hold
|
633
|
+
# music](https://www.twilio.com/labs/twimlets/holdmusic).
|
634
|
+
# @param [String] wait_method The HTTP method we should use to call `wait_url`.
|
635
|
+
# Can be `GET` or `POST` and the default is `POST`. When using a static audio
|
636
|
+
# file, this should be `GET` so that we can cache the file.
|
637
|
+
# @param [Boolean] beep_on_exit Whether to play a notification beep to the
|
638
|
+
# conference when the participant exits. Can be: `true` or `false`.
|
639
|
+
# @param [Boolean] end_conference_on_exit Whether to end the conference when the
|
640
|
+
# participant leaves. Can be: `true` or `false` and defaults to `false`.
|
641
|
+
# @param [Boolean] coaching Whether the participant is coaching another call. Can
|
642
|
+
# be: `true` or `false`. If not present, defaults to `false` unless
|
643
|
+
# `call_sid_to_coach` is defined. If `true`, `call_sid_to_coach` must be defined.
|
644
|
+
# @param [String] call_sid_to_coach The SID of the participant who is being
|
645
|
+
# `coached`. The participant being coached is the only participant who can hear
|
646
|
+
# the participant who is `coaching`.
|
472
647
|
# @return [ParticipantInstance] Updated ParticipantInstance
|
473
|
-
def update(muted: :unset, hold: :unset, hold_url: :unset, hold_method: :unset, announce_url: :unset, announce_method: :unset)
|
648
|
+
def update(muted: :unset, hold: :unset, hold_url: :unset, hold_method: :unset, announce_url: :unset, announce_method: :unset, wait_url: :unset, wait_method: :unset, beep_on_exit: :unset, end_conference_on_exit: :unset, coaching: :unset, call_sid_to_coach: :unset)
|
474
649
|
context.update(
|
475
650
|
muted: muted,
|
476
651
|
hold: hold,
|
@@ -478,12 +653,18 @@ module Twilio
|
|
478
653
|
hold_method: hold_method,
|
479
654
|
announce_url: announce_url,
|
480
655
|
announce_method: announce_method,
|
656
|
+
wait_url: wait_url,
|
657
|
+
wait_method: wait_method,
|
658
|
+
beep_on_exit: beep_on_exit,
|
659
|
+
end_conference_on_exit: end_conference_on_exit,
|
660
|
+
coaching: coaching,
|
661
|
+
call_sid_to_coach: call_sid_to_coach,
|
481
662
|
)
|
482
663
|
end
|
483
664
|
|
484
665
|
##
|
485
666
|
# Deletes the ParticipantInstance
|
486
|
-
# @return [Boolean] true if delete succeeds,
|
667
|
+
# @return [Boolean] true if delete succeeds, false otherwise
|
487
668
|
def delete
|
488
669
|
context.delete
|
489
670
|
end
|