twilio-ruby 4.13.0 → 5.40.0
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 +6 -0
- data/.rubocop.yml +59 -0
- data/.rubocop_todo.yml +198 -0
- data/.travis.yml +32 -19
- data/AUTHORS.md +46 -32
- data/CHANGES.md +1723 -62
- data/CODE_OF_CONDUCT.md +73 -0
- data/CONTRIBUTING.md +161 -0
- data/Dockerfile +9 -0
- data/Gemfile +0 -8
- data/ISSUE_TEMPLATE.md +30 -0
- data/LICENSE.md +12 -12
- data/Makefile +25 -7
- data/PULL_REQUEST_TEMPLATE.md +31 -0
- data/README.md +110 -151
- data/UPGRADE.md +30 -0
- data/VERSIONS.md +35 -0
- data/examples/examples.rb +46 -57
- data/examples/{print-call-log.rb → print_call_log.rb} +6 -6
- data/githooks/pre-commit +1 -0
- data/lib/rack/twilio_webhook_authentication.rb +7 -6
- data/lib/twilio-ruby/framework/domain.rb +36 -0
- data/lib/twilio-ruby/framework/error.rb +51 -0
- data/lib/twilio-ruby/framework/helper.rb +11 -0
- data/lib/twilio-ruby/framework/obsolete_client.rb +12 -0
- data/lib/twilio-ruby/framework/page.rb +103 -0
- data/lib/twilio-ruby/framework/request.rb +41 -0
- data/lib/twilio-ruby/framework/resource.rb +23 -0
- data/lib/twilio-ruby/framework/response.rb +18 -0
- data/lib/twilio-ruby/framework/serialize.rb +81 -0
- data/lib/twilio-ruby/framework/twilio_response.rb +19 -0
- data/lib/twilio-ruby/framework/values.rb +9 -0
- data/lib/twilio-ruby/framework/version.rb +157 -0
- data/lib/twilio-ruby/http/http_client.rb +63 -0
- data/lib/twilio-ruby/jwt/access_token.rb +267 -0
- data/lib/twilio-ruby/jwt/client_capability.rb +102 -0
- data/lib/twilio-ruby/jwt/jwt.rb +59 -0
- data/lib/twilio-ruby/jwt/task_router.rb +172 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +339 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +339 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +122 -0
- data/lib/twilio-ruby/rest/accounts/v1.rb +35 -0
- data/lib/twilio-ruby/rest/accounts.rb +38 -10
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +372 -0
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +521 -0
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +593 -0
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +327 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +491 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +464 -0
- data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +125 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +301 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +314 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +428 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +369 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +510 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +912 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +712 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +469 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +500 -0
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +414 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +367 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +431 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +554 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +553 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +553 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +903 -0
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +309 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +171 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +361 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +612 -0
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +145 -0
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +145 -0
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +406 -0
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +365 -0
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +349 -0
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +397 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +387 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +398 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +383 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +493 -0
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +415 -0
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +313 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +387 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +386 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +348 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +348 -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 +348 -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 +356 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +355 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +657 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +432 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +387 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +157 -0
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +161 -0
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +357 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +351 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +423 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +494 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +120 -0
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +168 -0
- data/lib/twilio-ruby/rest/api/v2010/account.rb +953 -0
- data/lib/twilio-ruby/rest/api/v2010.rb +153 -0
- data/lib/twilio-ruby/rest/api.rb +247 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +220 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +214 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +395 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +418 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +392 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +462 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +218 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +386 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +449 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +255 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +237 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +507 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +420 -0
- data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +650 -0
- data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +194 -0
- data/lib/twilio-ruby/rest/autopilot/v1.rb +51 -0
- data/lib/twilio-ruby/rest/autopilot.rb +53 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +308 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +291 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +247 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +248 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +232 -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 +413 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +402 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +451 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +448 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +522 -0
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +374 -0
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +246 -0
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +447 -0
- data/lib/twilio-ruby/rest/chat/v1/service.rb +904 -0
- data/lib/twilio-ruby/rest/chat/v1.rb +60 -0
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +411 -0
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +377 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +397 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +538 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +544 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +475 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +612 -0
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +376 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +392 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +424 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +498 -0
- data/lib/twilio-ruby/rest/chat/v2/service.rb +788 -0
- data/lib/twilio-ruby/rest/chat/v2.rb +58 -0
- data/lib/twilio-ruby/rest/chat.rb +63 -0
- data/lib/twilio-ruby/rest/client.rb +519 -152
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +348 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +500 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +474 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +415 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +544 -0
- data/lib/twilio-ruby/rest/conversations/v1/webhook.rb +262 -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/events/v1/sink/sink_test.rb +115 -0
- data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +118 -0
- data/lib/twilio-ruby/rest/events/v1/sink.rb +379 -0
- data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +322 -0
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +358 -0
- data/lib/twilio-ruby/rest/events/v1.rb +58 -0
- data/lib/twilio-ruby/rest/events.rb +54 -0
- data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +314 -0
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +535 -0
- data/lib/twilio-ruby/rest/fax/v1.rb +44 -0
- data/lib/twilio-ruby/rest/fax.rb +47 -0
- data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +340 -0
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +448 -0
- data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +547 -0
- data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +341 -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/insights/v1/call/event.rb +262 -0
- data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +252 -0
- data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +301 -0
- data/lib/twilio-ruby/rest/insights/v1/call.rb +236 -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 +413 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +402 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +451 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +448 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +522 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +374 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +246 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +447 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +904 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +60 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +411 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +377 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +397 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +538 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +544 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +475 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +612 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +376 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +392 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +424 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +498 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +788 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +58 -0
- data/lib/twilio-ruby/rest/ip_messaging.rb +63 -0
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +247 -0
- data/lib/twilio-ruby/rest/lookups/v1.rb +45 -0
- data/lib/twilio-ruby/rest/lookups.rb +48 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +342 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +348 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +343 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +652 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +43 -0
- data/lib/twilio-ruby/rest/messaging.rb +47 -0
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +405 -0
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +400 -0
- data/lib/twilio-ruby/rest/monitor/v1.rb +58 -0
- data/lib/twilio-ruby/rest/monitor.rb +56 -0
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +412 -0
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +458 -0
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +361 -0
- data/lib/twilio-ruby/rest/notify/v1/service.rb +632 -0
- data/lib/twilio-ruby/rest/notify/v1.rb +60 -0
- data/lib/twilio-ruby/rest/notify.rb +56 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +309 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +320 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +512 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +344 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +273 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +314 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +357 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +273 -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 +308 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/export_custom_job.rb +291 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/job.rb +247 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +248 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +232 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +58 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +382 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +365 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +425 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +376 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +469 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices.rb +44 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +400 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +451 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +635 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +60 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +305 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +319 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +337 -0
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +408 -0
- data/lib/twilio-ruby/rest/preview/marketplace.rb +58 -0
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +385 -0
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +410 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +418 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +385 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +405 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +415 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +385 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +405 -0
- data/lib/twilio-ruby/rest/preview/sync/service.rb +462 -0
- data/lib/twilio-ruby/rest/preview/sync.rb +43 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/branded_call.rb +243 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/brands_information.rb +195 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/brand/branded_channel/channel.rb +189 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/brand/branded_channel.rb +260 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/brand.rb +233 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights/impressions_rate.rb +260 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights.rb +111 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/business.rb +239 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/cps.rb +186 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb +277 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms/phone_call.rb +342 -0
- data/lib/twilio-ruby/rest/preview/trusted_comms.rb +79 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +212 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +212 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +206 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +386 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +407 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +380 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +437 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +212 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +373 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +428 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +241 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +225 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +495 -0
- data/lib/twilio-ruby/rest/preview/understand/assistant.rb +629 -0
- data/lib/twilio-ruby/rest/preview/understand.rb +44 -0
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +374 -0
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +408 -0
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +233 -0
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +533 -0
- data/lib/twilio-ruby/rest/preview/wireless.rb +73 -0
- data/lib/twilio-ruby/rest/preview.rb +229 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +282 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +127 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +275 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +127 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +282 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +204 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +143 -0
- data/lib/twilio-ruby/rest/pricing/v1.rb +49 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +282 -0
- data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +227 -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 +59 -2
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +408 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +429 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +458 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +467 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +551 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +377 -0
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +606 -0
- data/lib/twilio-ruby/rest/proxy/v1.rb +44 -0
- data/lib/twilio-ruby/rest/proxy.rb +47 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +334 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +387 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +356 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +349 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +394 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +407 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +456 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +241 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +364 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +387 -0
- data/lib/twilio-ruby/rest/serverless/v1/service.rb +496 -0
- data/lib/twilio-ruby/rest/serverless/v1.rb +43 -0
- data/lib/twilio-ruby/rest/serverless.rb +47 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +210 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +225 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +366 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +401 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +211 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +228 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +372 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +456 -0
- data/lib/twilio-ruby/rest/studio/v1/flow.rb +365 -0
- data/lib/twilio-ruby/rest/studio/v1.rb +43 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +219 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +236 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +380 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +457 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +335 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/test_user.rb +205 -0
- data/lib/twilio-ruby/rest/studio/v2/flow.rb +490 -0
- data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +122 -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 +368 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +421 -0
- data/lib/twilio-ruby/rest/supersim/v1/network.rb +307 -0
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +339 -0
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +361 -0
- data/lib/twilio-ruby/rest/supersim/v1/sim.rb +388 -0
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +338 -0
- data/lib/twilio-ruby/rest/supersim/v1.rb +110 -0
- data/lib/twilio-ruby/rest/supersim.rb +88 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +390 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +447 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +508 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +389 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +464 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +515 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +387 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +463 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +145 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +421 -0
- data/lib/twilio-ruby/rest/sync/v1/service.rb +585 -0
- data/lib/twilio-ruby/rest/sync/v1.rb +43 -0
- data/lib/twilio-ruby/rest/sync.rb +47 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +394 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +471 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +739 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +641 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +389 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +377 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +287 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +265 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +285 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +573 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +735 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +399 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +250 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +277 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +204 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +245 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +629 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +385 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +252 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +273 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +517 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +361 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +234 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +241 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +725 -0
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +43 -0
- data/lib/twilio-ruby/rest/taskrouter.rb +47 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +327 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +323 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +426 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +457 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +609 -0
- data/lib/twilio-ruby/rest/trunking/v1.rb +44 -0
- data/lib/twilio-ruby/rest/trunking.rb +47 -0
- data/lib/twilio-ruby/rest/verify/v2/form.rb +191 -0
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +124 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +485 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +466 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +413 -0
- data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +370 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +399 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +391 -0
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +354 -0
- data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +205 -0
- data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +408 -0
- data/lib/twilio-ruby/rest/verify/v2/service.rb +682 -0
- data/lib/twilio-ruby/rest/verify/v2.rb +60 -0
- data/lib/twilio-ruby/rest/verify.rb +56 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +499 -0
- data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +656 -0
- data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +269 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +415 -0
- data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +269 -0
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +406 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +335 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +175 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +340 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +483 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +527 -0
- data/lib/twilio-ruby/rest/video/v1.rb +102 -0
- data/lib/twilio-ruby/rest/video.rb +86 -0
- data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +496 -0
- data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +441 -0
- data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +362 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +128 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +190 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +404 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +197 -0
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +132 -0
- data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +349 -0
- data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +329 -0
- data/lib/twilio-ruby/rest/voice/v1.rb +99 -0
- data/lib/twilio-ruby/rest/voice.rb +80 -0
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +416 -0
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +445 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +291 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +250 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +667 -0
- data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +229 -0
- data/lib/twilio-ruby/rest/wireless/v1.rb +80 -0
- data/lib/twilio-ruby/rest/wireless.rb +71 -0
- data/lib/twilio-ruby/security/request_validator.rb +150 -0
- data/lib/twilio-ruby/twiml/fax_response.rb +45 -0
- data/lib/twilio-ruby/twiml/messaging_response.rb +107 -0
- data/lib/twilio-ruby/twiml/twiml.rb +126 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +1174 -0
- data/lib/twilio-ruby/util/configuration.rb +23 -1
- data/lib/twilio-ruby/util.rb +5 -1
- data/lib/twilio-ruby/version.rb +1 -1
- data/lib/twilio-ruby.rb +28 -104
- data/spec/framework/request_spec.rb +36 -0
- data/spec/framework/serialize_spec.rb +80 -0
- data/spec/framework/version_spec.rb +166 -0
- data/spec/holodeck/holodeck.rb +66 -0
- data/spec/holodeck/hologram.rb +4 -0
- data/spec/http/http_client_spec.rb +122 -0
- data/spec/integration/accounts/v1/credential/aws_spec.rb +222 -0
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +222 -0
- data/spec/integration/accounts/v1/credential_spec.rb +12 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +106 -0
- data/spec/integration/api/v2010/account/address_spec.rb +269 -0
- data/spec/integration/api/v2010/account/application_spec.rb +274 -0
- data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +137 -0
- data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +102 -0
- data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +102 -0
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +101 -0
- data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +102 -0
- data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +102 -0
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +101 -0
- data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +102 -0
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +128 -0
- data/spec/integration/api/v2010/account/balance_spec.rb +44 -0
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +138 -0
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +149 -0
- data/spec/integration/api/v2010/account/call/notification_spec.rb +143 -0
- data/spec/integration/api/v2010/account/call/payment_spec.rb +135 -0
- data/spec/integration/api/v2010/account/call/recording_spec.rb +283 -0
- data/spec/integration/api/v2010/account/call_spec.rb +650 -0
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +708 -0
- data/spec/integration/api/v2010/account/conference/recording_spec.rb +234 -0
- data/spec/integration/api/v2010/account/conference_spec.rb +458 -0
- data/spec/integration/api/v2010/account/connect_app_spec.rb +197 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +135 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +220 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +189 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +189 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +189 -0
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +370 -0
- data/spec/integration/api/v2010/account/key_spec.rb +176 -0
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +49 -0
- data/spec/integration/api/v2010/account/message/media_spec.rb +161 -0
- data/spec/integration/api/v2010/account/message_spec.rb +507 -0
- data/spec/integration/api/v2010/account/new_key_spec.rb +46 -0
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +46 -0
- data/spec/integration/api/v2010/account/notification_spec.rb +138 -0
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +185 -0
- data/spec/integration/api/v2010/account/queue/member_spec.rb +208 -0
- data/spec/integration/api/v2010/account/queue_spec.rb +244 -0
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +174 -0
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +165 -0
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +173 -0
- data/spec/integration/api/v2010/account/recording_spec.rb +184 -0
- data/spec/integration/api/v2010/account/short_code_spec.rb +179 -0
- data/spec/integration/api/v2010/account/signing_key_spec.rb +176 -0
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +252 -0
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +241 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb +217 -0
- data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb +217 -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 +217 -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 +207 -0
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +217 -0
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +303 -0
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +254 -0
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +251 -0
- data/spec/integration/api/v2010/account/sip_spec.rb +12 -0
- data/spec/integration/api/v2010/account/token_spec.rb +71 -0
- data/spec/integration/api/v2010/account/transcription_spec.rb +166 -0
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +113 -0
- data/spec/integration/api/v2010/account/usage/record_spec.rb +110 -0
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +281 -0
- data/spec/integration/api/v2010/account/usage_spec.rb +12 -0
- data/spec/integration/api/v2010/account/validation_request_spec.rb +48 -0
- data/spec/integration/api/v2010/account_spec.rb +327 -0
- data/spec/integration/autopilot/v1/assistant/defaults_spec.rb +79 -0
- data/spec/integration/autopilot/v1/assistant/dialogue_spec.rb +46 -0
- data/spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb +207 -0
- data/spec/integration/autopilot/v1/assistant/field_type_spec.rb +242 -0
- data/spec/integration/autopilot/v1/assistant/model_build_spec.rb +236 -0
- data/spec/integration/autopilot/v1/assistant/query_spec.rb +290 -0
- data/spec/integration/autopilot/v1/assistant/style_sheet_spec.rb +79 -0
- data/spec/integration/autopilot/v1/assistant/task/field_spec.rb +204 -0
- data/spec/integration/autopilot/v1/assistant/task/sample_spec.rb +249 -0
- data/spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb +85 -0
- data/spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb +49 -0
- data/spec/integration/autopilot/v1/assistant/task_spec.rb +258 -0
- data/spec/integration/autopilot/v1/assistant/webhook_spec.rb +242 -0
- data/spec/integration/autopilot/v1/assistant_spec.rb +277 -0
- data/spec/integration/autopilot/v1/restore_assistant_spec.rb +53 -0
- data/spec/integration/bulkexports/v1/export/day_spec.rb +115 -0
- data/spec/integration/bulkexports/v1/export/export_custom_job_spec.rb +127 -0
- data/spec/integration/bulkexports/v1/export/job_spec.rb +78 -0
- data/spec/integration/bulkexports/v1/export_configuration_spec.rb +77 -0
- data/spec/integration/bulkexports/v1/export_spec.rb +44 -0
- data/spec/integration/chat/v1/credential_spec.rb +219 -0
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +207 -0
- data/spec/integration/chat/v1/service/channel/member_spec.rb +280 -0
- data/spec/integration/chat/v1/service/channel/message_spec.rb +290 -0
- data/spec/integration/chat/v1/service/channel_spec.rb +272 -0
- data/spec/integration/chat/v1/service/role_spec.rb +260 -0
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +93 -0
- data/spec/integration/chat/v1/service/user_spec.rb +262 -0
- data/spec/integration/chat/v1/service_spec.rb +295 -0
- data/spec/integration/chat/v2/credential_spec.rb +219 -0
- data/spec/integration/chat/v2/service/binding_spec.rb +174 -0
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +207 -0
- data/spec/integration/chat/v2/service/channel/member_spec.rb +263 -0
- data/spec/integration/chat/v2/service/channel/message_spec.rb +406 -0
- data/spec/integration/chat/v2/service/channel/webhook_spec.rb +303 -0
- data/spec/integration/chat/v2/service/channel_spec.rb +282 -0
- data/spec/integration/chat/v2/service/role_spec.rb +260 -0
- data/spec/integration/chat/v2/service/user/user_binding_spec.rb +177 -0
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +247 -0
- data/spec/integration/chat/v2/service/user_spec.rb +270 -0
- data/spec/integration/chat/v2/service_spec.rb +350 -0
- data/spec/integration/conversations/v1/conversation/message/delivery_receipt_spec.rb +132 -0
- data/spec/integration/conversations/v1/conversation/message_spec.rb +409 -0
- data/spec/integration/conversations/v1/conversation/participant_spec.rb +382 -0
- data/spec/integration/conversations/v1/conversation/webhook_spec.rb +282 -0
- data/spec/integration/conversations/v1/conversation_spec.rb +273 -0
- data/spec/integration/conversations/v1/webhook_spec.rb +86 -0
- data/spec/integration/events/v1/sink/sink_test_spec.rb +42 -0
- data/spec/integration/events/v1/sink/sink_validate_spec.rb +44 -0
- data/spec/integration/events/v1/sink_spec.rb +217 -0
- data/spec/integration/events/v1/subscription/subscribed_event_spec.rb +212 -0
- data/spec/integration/events/v1/subscription_spec.rb +205 -0
- data/spec/integration/fax/v1/fax/fax_media_spec.rb +125 -0
- data/spec/integration/fax/v1/fax_spec.rb +267 -0
- data/spec/integration/flex_api/v1/channel_spec.rb +188 -0
- data/spec/integration/flex_api/v1/configuration_spec.rb +554 -0
- data/spec/integration/flex_api/v1/flex_flow_spec.rb +259 -0
- data/spec/integration/flex_api/v1/web_channel_spec.rb +216 -0
- data/spec/integration/insights/v1/call/event_spec.rb +166 -0
- data/spec/integration/insights/v1/call/metric_spec.rb +154 -0
- data/spec/integration/insights/v1/call/summary_spec.rb +62 -0
- data/spec/integration/insights/v1/call_spec.rb +46 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +219 -0
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +207 -0
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +280 -0
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +290 -0
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +272 -0
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +260 -0
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +93 -0
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +262 -0
- data/spec/integration/ip_messaging/v1/service_spec.rb +295 -0
- data/spec/integration/ip_messaging/v2/credential_spec.rb +219 -0
- data/spec/integration/ip_messaging/v2/service/binding_spec.rb +174 -0
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +207 -0
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +263 -0
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +406 -0
- data/spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb +303 -0
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +282 -0
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +260 -0
- data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +177 -0
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +247 -0
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +270 -0
- data/spec/integration/ip_messaging/v2/service_spec.rb +350 -0
- data/spec/integration/lookups/v1/phone_number_spec.rb +336 -0
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +173 -0
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +198 -0
- data/spec/integration/messaging/v1/service/short_code_spec.rb +176 -0
- data/spec/integration/messaging/v1/service_spec.rb +267 -0
- data/spec/integration/monitor/v1/alert_spec.rb +138 -0
- data/spec/integration/monitor/v1/event_spec.rb +148 -0
- data/spec/integration/notify/v1/credential_spec.rb +219 -0
- data/spec/integration/notify/v1/service/binding_spec.rb +222 -0
- data/spec/integration/notify/v1/service/notification_spec.rb +98 -0
- data/spec/integration/notify/v1/service_spec.rb +289 -0
- data/spec/integration/numbers/v2/regulatory_compliance/bundle/evaluation_spec.rb +620 -0
- data/spec/integration/numbers/v2/regulatory_compliance/bundle/item_assignment_spec.rb +195 -0
- data/spec/integration/numbers/v2/regulatory_compliance/bundle_spec.rb +258 -0
- data/spec/integration/numbers/v2/regulatory_compliance/end_user_spec.rb +211 -0
- data/spec/integration/numbers/v2/regulatory_compliance/end_user_type_spec.rb +141 -0
- data/spec/integration/numbers/v2/regulatory_compliance/regulation_spec.rb +181 -0
- data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_spec.rb +223 -0
- data/spec/integration/numbers/v2/regulatory_compliance/supporting_document_type_spec.rb +131 -0
- data/spec/integration/numbers/v2/regulatory_compliance_spec.rb +12 -0
- data/spec/integration/preview/bulk_exports/export/day_spec.rb +115 -0
- data/spec/integration/preview/bulk_exports/export/export_custom_job_spec.rb +127 -0
- data/spec/integration/preview/bulk_exports/export/job_spec.rb +78 -0
- data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +77 -0
- data/spec/integration/preview/bulk_exports/export_spec.rb +44 -0
- data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +234 -0
- data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +228 -0
- data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +244 -0
- data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +232 -0
- data/spec/integration/preview/deployed_devices/fleet_spec.rb +241 -0
- data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +110 -0
- data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +224 -0
- data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +389 -0
- data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +121 -0
- data/spec/integration/preview/marketplace/available_add_on_spec.rb +142 -0
- data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +162 -0
- data/spec/integration/preview/marketplace/installed_add_on_spec.rb +250 -0
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +201 -0
- data/spec/integration/preview/sync/service/document_spec.rb +254 -0
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +255 -0
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +201 -0
- data/spec/integration/preview/sync/service/sync_list_spec.rb +205 -0
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +255 -0
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +201 -0
- data/spec/integration/preview/sync/service/sync_map_spec.rb +205 -0
- data/spec/integration/preview/sync/service_spec.rb +241 -0
- data/spec/integration/preview/trusted_comms/branded_call_spec.rb +59 -0
- data/spec/integration/preview/trusted_comms/brands_information_spec.rb +45 -0
- data/spec/integration/preview/trusted_comms/business/brand/branded_channel/channel_spec.rb +54 -0
- data/spec/integration/preview/trusted_comms/business/brand/branded_channel_spec.rb +51 -0
- data/spec/integration/preview/trusted_comms/business/brand_spec.rb +48 -0
- data/spec/integration/preview/trusted_comms/business/insights/impressions_rate_spec.rb +56 -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 +44 -0
- data/spec/integration/preview/trusted_comms/current_call_spec.rb +58 -0
- data/spec/integration/preview/trusted_comms/phone_call_spec.rb +59 -0
- data/spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb +79 -0
- data/spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb +79 -0
- data/spec/integration/preview/understand/assistant/dialogue_spec.rb +46 -0
- data/spec/integration/preview/understand/assistant/field_type/field_value_spec.rb +207 -0
- data/spec/integration/preview/understand/assistant/field_type_spec.rb +242 -0
- data/spec/integration/preview/understand/assistant/model_build_spec.rb +236 -0
- data/spec/integration/preview/understand/assistant/query_spec.rb +302 -0
- data/spec/integration/preview/understand/assistant/style_sheet_spec.rb +79 -0
- data/spec/integration/preview/understand/assistant/task/field_spec.rb +204 -0
- data/spec/integration/preview/understand/assistant/task/sample_spec.rb +249 -0
- data/spec/integration/preview/understand/assistant/task/task_actions_spec.rb +85 -0
- data/spec/integration/preview/understand/assistant/task/task_statistics_spec.rb +49 -0
- data/spec/integration/preview/understand/assistant/task_spec.rb +258 -0
- data/spec/integration/preview/understand/assistant_spec.rb +269 -0
- data/spec/integration/preview/wireless/command_spec.rb +167 -0
- data/spec/integration/preview/wireless/rate_plan_spec.rb +257 -0
- data/spec/integration/preview/wireless/sim/usage_spec.rb +50 -0
- data/spec/integration/preview/wireless/sim_spec.rb +207 -0
- data/spec/integration/pricing/v1/messaging/country_spec.rb +137 -0
- data/spec/integration/pricing/v1/messaging_spec.rb +12 -0
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +128 -0
- data/spec/integration/pricing/v1/phone_number_spec.rb +12 -0
- data/spec/integration/pricing/v1/voice/country_spec.rb +138 -0
- data/spec/integration/pricing/v1/voice/number_spec.rb +55 -0
- data/spec/integration/pricing/v1/voice_spec.rb +12 -0
- data/spec/integration/pricing/v2/voice/country_spec.rb +179 -0
- data/spec/integration/pricing/v2/voice/number_spec.rb +61 -0
- data/spec/integration/pricing/v2/voice_spec.rb +12 -0
- data/spec/integration/proxy/v1/service/phone_number_spec.rb +231 -0
- data/spec/integration/proxy/v1/service/session/interaction_spec.rb +133 -0
- data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +163 -0
- data/spec/integration/proxy/v1/service/session/participant_spec.rb +240 -0
- data/spec/integration/proxy/v1/service/session_spec.rb +225 -0
- data/spec/integration/proxy/v1/service/short_code_spec.rb +225 -0
- data/spec/integration/proxy/v1/service_spec.rb +214 -0
- data/spec/integration/serverless/v1/service/asset/asset_version_spec.rb +93 -0
- data/spec/integration/serverless/v1/service/asset_spec.rb +202 -0
- data/spec/integration/serverless/v1/service/build_spec.rb +208 -0
- data/spec/integration/serverless/v1/service/environment/deployment_spec.rb +133 -0
- data/spec/integration/serverless/v1/service/environment/log_spec.rb +97 -0
- data/spec/integration/serverless/v1/service/environment/variable_spec.rb +207 -0
- data/spec/integration/serverless/v1/service/environment_spec.rb +170 -0
- data/spec/integration/serverless/v1/service/function/function_version/function_version_content_spec.rb +51 -0
- data/spec/integration/serverless/v1/service/function/function_version_spec.rb +96 -0
- data/spec/integration/serverless/v1/service/function_spec.rb +202 -0
- data/spec/integration/serverless/v1/service_spec.rb +205 -0
- data/spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb +50 -0
- data/spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb +53 -0
- data/spec/integration/studio/v1/flow/engagement/step_spec.rb +99 -0
- data/spec/integration/studio/v1/flow/engagement_spec.rb +168 -0
- data/spec/integration/studio/v1/flow/execution/execution_context_spec.rb +50 -0
- data/spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb +53 -0
- data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +99 -0
- data/spec/integration/studio/v1/flow/execution_spec.rb +214 -0
- data/spec/integration/studio/v1/flow_spec.rb +114 -0
- data/spec/integration/studio/v2/flow/execution/execution_context_spec.rb +50 -0
- data/spec/integration/studio/v2/flow/execution/execution_step/execution_step_context_spec.rb +53 -0
- data/spec/integration/studio/v2/flow/execution/execution_step_spec.rb +99 -0
- data/spec/integration/studio/v2/flow/execution_spec.rb +211 -0
- data/spec/integration/studio/v2/flow/flow_revision_spec.rb +110 -0
- data/spec/integration/studio/v2/flow/test_user_spec.rb +85 -0
- data/spec/integration/studio/v2/flow_spec.rb +251 -0
- data/spec/integration/studio/v2/flow_validate_spec.rb +46 -0
- data/spec/integration/supersim/v1/command_spec.rb +184 -0
- data/spec/integration/supersim/v1/fleet_spec.rb +214 -0
- data/spec/integration/supersim/v1/network_access_profile/network_access_profile_network_spec.rb +176 -0
- data/spec/integration/supersim/v1/network_access_profile_spec.rb +219 -0
- data/spec/integration/supersim/v1/network_spec.rb +137 -0
- data/spec/integration/supersim/v1/sim_spec.rb +300 -0
- data/spec/integration/supersim/v1/usage_record_spec.rb +647 -0
- data/spec/integration/sync/v1/service/document/document_permission_spec.rb +201 -0
- data/spec/integration/sync/v1/service/document_spec.rb +256 -0
- data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +257 -0
- data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +201 -0
- data/spec/integration/sync/v1/service/sync_list_spec.rb +252 -0
- data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +257 -0
- data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +201 -0
- data/spec/integration/sync/v1/service/sync_map_spec.rb +252 -0
- data/spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb +47 -0
- data/spec/integration/sync/v1/service/sync_stream_spec.rb +244 -0
- data/spec/integration/sync/v1/service_spec.rb +261 -0
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +232 -0
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +163 -0
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +222 -0
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +312 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +101 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +83 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +107 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +145 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +290 -0
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +325 -0
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +191 -0
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +185 -0
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +91 -0
- data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +88 -0
- data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +69 -0
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +115 -0
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +290 -0
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +96 -0
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +57 -0
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +70 -0
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +266 -0
- data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +93 -0
- data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +72 -0
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +104 -0
- data/spec/integration/taskrouter/v1/workspace_spec.rb +291 -0
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +189 -0
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +189 -0
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +248 -0
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +264 -0
- data/spec/integration/trunking/v1/trunk_spec.rb +277 -0
- data/spec/integration/verify/v2/form_spec.rb +47 -0
- data/spec/integration/verify/v2/service/access_token_spec.rb +44 -0
- data/spec/integration/verify/v2/service/entity/challenge_spec.rb +252 -0
- data/spec/integration/verify/v2/service/entity/factor_spec.rb +292 -0
- data/spec/integration/verify/v2/service/entity_spec.rb +209 -0
- data/spec/integration/verify/v2/service/messaging_configuration_spec.rb +228 -0
- data/spec/integration/verify/v2/service/rate_limit/bucket_spec.rb +245 -0
- data/spec/integration/verify/v2/service/rate_limit_spec.rb +217 -0
- data/spec/integration/verify/v2/service/verification_check_spec.rb +80 -0
- data/spec/integration/verify/v2/service/verification_spec.rb +318 -0
- data/spec/integration/verify/v2/service/webhook_spec.rb +258 -0
- data/spec/integration/verify/v2/service_spec.rb +275 -0
- data/spec/integration/video/v1/composition_hook_spec.rb +407 -0
- data/spec/integration/video/v1/composition_settings_spec.rb +85 -0
- data/spec/integration/video/v1/composition_spec.rb +347 -0
- data/spec/integration/video/v1/recording_settings_spec.rb +85 -0
- data/spec/integration/video/v1/recording_spec.rb +176 -0
- data/spec/integration/video/v1/room/recording_spec.rb +185 -0
- data/spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb +94 -0
- data/spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb +103 -0
- data/spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb +95 -0
- data/spec/integration/video/v1/room/room_participant_spec.rb +187 -0
- data/spec/integration/video/v1/room_spec.rb +254 -0
- data/spec/integration/voice/v1/byoc_trunk_spec.rb +245 -0
- data/spec/integration/voice/v1/connection_policy/connection_policy_target_spec.rb +242 -0
- data/spec/integration/voice/v1/connection_policy_spec.rb +221 -0
- 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 +60 -0
- data/spec/integration/voice/v1/dialing_permissions/country_spec.rb +110 -0
- data/spec/integration/voice/v1/dialing_permissions/settings_spec.rb +75 -0
- data/spec/integration/voice/v1/dialing_permissions_spec.rb +12 -0
- data/spec/integration/voice/v1/ip_record_spec.rb +219 -0
- data/spec/integration/voice/v1/source_ip_mapping_spec.rb +216 -0
- data/spec/integration/wireless/v1/command_spec.rb +286 -0
- data/spec/integration/wireless/v1/rate_plan_spec.rb +277 -0
- data/spec/integration/wireless/v1/sim/data_session_spec.rb +88 -0
- data/spec/integration/wireless/v1/sim/usage_record_spec.rb +114 -0
- data/spec/integration/wireless/v1/sim_spec.rb +325 -0
- data/spec/integration/wireless/v1/usage_record_spec.rb +110 -0
- data/spec/jwt/access_token_spec.rb +151 -0
- data/spec/jwt/client_capability_spec.rb +104 -0
- data/spec/jwt/task_router_spec.rb +172 -0
- data/spec/rack/twilio_webhook_authentication_spec.rb +19 -23
- data/spec/rest/client_spec.rb +189 -233
- data/spec/security/request_validator_spec.rb +125 -0
- data/spec/spec_helper.rb +24 -1
- data/spec/support/fakeweb.rb +1 -1
- data/spec/twilio_spec.rb +3 -1
- data/spec/twiml/messaging_response_spec.rb +235 -0
- data/spec/twiml/voice_response_spec.rb +847 -0
- data/spec/util/configuration_spec.rb +18 -0
- data/twilio-ruby.gemspec +20 -13
- metadata +1386 -252
- data/docs/Makefile +0 -130
- data/docs/_themes/LICENSE +0 -45
- data/docs/_themes/README.rst +0 -25
- data/docs/_themes/flask_theme_support.py +0 -86
- data/docs/_themes/kr/layout.html +0 -32
- data/docs/_themes/kr/relations.html +0 -19
- data/docs/_themes/kr/static/flasky.css_t +0 -469
- data/docs/_themes/kr/static/small_flask.css +0 -70
- data/docs/_themes/kr/theme.conf +0 -7
- data/docs/_themes/kr_small/layout.html +0 -22
- data/docs/_themes/kr_small/static/flasky.css_t +0 -287
- data/docs/_themes/kr_small/theme.conf +0 -10
- data/docs/changelog.rst +0 -1
- data/docs/conf.py +0 -266
- data/docs/faq.rst +0 -42
- data/docs/getting-started.rst +0 -117
- data/docs/index.rst +0 -135
- data/docs/make.bat +0 -170
- data/docs/src/pip-delete-this-directory.txt +0 -5
- data/docs/usage/accounts.rst +0 -89
- data/docs/usage/addresses.rst +0 -101
- data/docs/usage/applications.rst +0 -108
- data/docs/usage/basics.rst +0 -115
- data/docs/usage/caller-ids.rst +0 -47
- data/docs/usage/conferences.rst +0 -108
- data/docs/usage/errors.rst +0 -29
- data/docs/usage/lookups.rst +0 -62
- data/docs/usage/messages.rst +0 -137
- data/docs/usage/notifications.rst +0 -72
- data/docs/usage/phone-calls.rst +0 -185
- data/docs/usage/phone-numbers.rst +0 -189
- data/docs/usage/pricing.rst +0 -169
- data/docs/usage/queues.rst +0 -112
- data/docs/usage/recordings.rst +0 -98
- data/docs/usage/sip.rst +0 -104
- data/docs/usage/taskrouter-tokens.rst +0 -98
- data/docs/usage/taskrouter.rst +0 -440
- data/docs/usage/token-generation.rst +0 -115
- data/docs/usage/transcriptions.rst +0 -32
- data/docs/usage/twiml.rst +0 -69
- data/docs/usage/validation.rst +0 -107
- data/examples/taskrouter.examples.rb +0 -86
- data/issue_template.md +0 -25
- data/lib/twilio-ruby/rest/addresses/dependent_phone_numbers.rb +0 -6
- data/lib/twilio-ruby/rest/addresses.rb +0 -12
- data/lib/twilio-ruby/rest/applications.rb +0 -6
- data/lib/twilio-ruby/rest/authorized_connect_apps.rb +0 -6
- data/lib/twilio-ruby/rest/available_phone_numbers/country.rb +0 -10
- data/lib/twilio-ruby/rest/available_phone_numbers/local.rb +0 -11
- data/lib/twilio-ruby/rest/available_phone_numbers/mobile.rb +0 -11
- data/lib/twilio-ruby/rest/available_phone_numbers/toll_free.rb +0 -11
- data/lib/twilio-ruby/rest/available_phone_numbers.rb +0 -13
- data/lib/twilio-ruby/rest/base_client.rb +0 -131
- data/lib/twilio-ruby/rest/call_feedback.rb +0 -28
- data/lib/twilio-ruby/rest/call_feedback_summary.rb +0 -13
- data/lib/twilio-ruby/rest/calls.rb +0 -33
- data/lib/twilio-ruby/rest/conferences/participants.rb +0 -23
- data/lib/twilio-ruby/rest/conferences.rb +0 -12
- data/lib/twilio-ruby/rest/connect_apps.rb +0 -6
- data/lib/twilio-ruby/rest/errors.rb +0 -14
- data/lib/twilio-ruby/rest/incoming_phone_numbers/local.rb +0 -13
- data/lib/twilio-ruby/rest/incoming_phone_numbers/mobile.rb +0 -13
- data/lib/twilio-ruby/rest/incoming_phone_numbers/toll_free.rb +0 -13
- data/lib/twilio-ruby/rest/incoming_phone_numbers.rb +0 -17
- data/lib/twilio-ruby/rest/instance_resource.rb +0 -87
- data/lib/twilio-ruby/rest/ip-messaging/channels.rb +0 -15
- data/lib/twilio-ruby/rest/ip-messaging/credentials.rb +0 -19
- data/lib/twilio-ruby/rest/ip-messaging/members.rb +0 -8
- data/lib/twilio-ruby/rest/ip-messaging/messages.rb +0 -8
- data/lib/twilio-ruby/rest/ip-messaging/roles.rb +0 -8
- data/lib/twilio-ruby/rest/ip-messaging/services.rb +0 -17
- data/lib/twilio-ruby/rest/ip-messaging/users.rb +0 -8
- data/lib/twilio-ruby/rest/ip_messaging_client.rb +0 -100
- data/lib/twilio-ruby/rest/keys.rb +0 -6
- data/lib/twilio-ruby/rest/list_resource.rb +0 -100
- data/lib/twilio-ruby/rest/lookups/phone_numbers.rb +0 -17
- data/lib/twilio-ruby/rest/lookups_client.rb +0 -99
- data/lib/twilio-ruby/rest/media.rb +0 -14
- data/lib/twilio-ruby/rest/messages.rb +0 -22
- data/lib/twilio-ruby/rest/monitor/alerts.rb +0 -8
- data/lib/twilio-ruby/rest/monitor/events.rb +0 -8
- data/lib/twilio-ruby/rest/monitor_client.rb +0 -101
- data/lib/twilio-ruby/rest/next_gen_list_resource.rb +0 -36
- data/lib/twilio-ruby/rest/notifications.rb +0 -6
- data/lib/twilio-ruby/rest/outgoing_caller_ids.rb +0 -25
- data/lib/twilio-ruby/rest/pricing/countries.rb +0 -21
- data/lib/twilio-ruby/rest/pricing/messaging.rb +0 -15
- data/lib/twilio-ruby/rest/pricing/phone_numbers.rb +0 -14
- data/lib/twilio-ruby/rest/pricing/voice/numbers.rb +0 -19
- data/lib/twilio-ruby/rest/pricing/voice.rb +0 -15
- data/lib/twilio-ruby/rest/pricing_client.rb +0 -108
- data/lib/twilio-ruby/rest/queues/members.rb +0 -29
- data/lib/twilio-ruby/rest/queues.rb +0 -12
- data/lib/twilio-ruby/rest/recordings.rb +0 -35
- data/lib/twilio-ruby/rest/sandbox.rb +0 -5
- data/lib/twilio-ruby/rest/sip/credential_lists/credentials.rb +0 -6
- data/lib/twilio-ruby/rest/sip/credential_lists.rb +0 -11
- data/lib/twilio-ruby/rest/sip/domains/credential_list_mappings.rb +0 -6
- data/lib/twilio-ruby/rest/sip/domains/ip_access_control_list_mappings.rb +0 -6
- data/lib/twilio-ruby/rest/sip/domains.rb +0 -12
- data/lib/twilio-ruby/rest/sip/ip_access_control_lists/ip_addresses.rb +0 -6
- data/lib/twilio-ruby/rest/sip/ip_access_control_lists.rb +0 -11
- data/lib/twilio-ruby/rest/sip.rb +0 -10
- data/lib/twilio-ruby/rest/sms/messages.rb +0 -38
- data/lib/twilio-ruby/rest/sms/short_codes.rb +0 -8
- data/lib/twilio-ruby/rest/sms.rb +0 -11
- data/lib/twilio-ruby/rest/task_router/activities.rb +0 -8
- data/lib/twilio-ruby/rest/task_router/events.rb +0 -8
- data/lib/twilio-ruby/rest/task_router/reservations.rb +0 -8
- data/lib/twilio-ruby/rest/task_router/statistics.rb +0 -26
- data/lib/twilio-ruby/rest/task_router/task_queues.rb +0 -17
- data/lib/twilio-ruby/rest/task_router/task_queues_statistics.rb +0 -15
- data/lib/twilio-ruby/rest/task_router/tasks.rb +0 -15
- data/lib/twilio-ruby/rest/task_router/workers.rb +0 -19
- data/lib/twilio-ruby/rest/task_router/workers_statistics.rb +0 -8
- data/lib/twilio-ruby/rest/task_router/workflow_statistics.rb +0 -7
- data/lib/twilio-ruby/rest/task_router/workflows.rb +0 -11
- data/lib/twilio-ruby/rest/task_router/workspace_statistics.rb +0 -7
- data/lib/twilio-ruby/rest/task_router/workspaces.rb +0 -17
- data/lib/twilio-ruby/rest/task_router_client.rb +0 -176
- data/lib/twilio-ruby/rest/tokens.rb +0 -7
- data/lib/twilio-ruby/rest/transcriptions.rb +0 -6
- data/lib/twilio-ruby/rest/trunking/credential_lists.rb +0 -8
- data/lib/twilio-ruby/rest/trunking/ip_access_control_lists.rb +0 -8
- data/lib/twilio-ruby/rest/trunking/origination_urls.rb +0 -8
- data/lib/twilio-ruby/rest/trunking/phone_numbers.rb +0 -8
- data/lib/twilio-ruby/rest/trunking/trunks.rb +0 -19
- data/lib/twilio-ruby/rest/trunking_client.rb +0 -106
- data/lib/twilio-ruby/rest/usage/records.rb +0 -21
- data/lib/twilio-ruby/rest/usage/triggers.rb +0 -12
- data/lib/twilio-ruby/rest/usage.rb +0 -10
- data/lib/twilio-ruby/rest/utils.rb +0 -49
- data/lib/twilio-ruby/task_router/capability.rb +0 -230
- data/lib/twilio-ruby/task_router/workflow_builder.rb +0 -135
- data/lib/twilio-ruby/task_router.rb +0 -0
- data/lib/twilio-ruby/twiml/response.rb +0 -16
- data/lib/twilio-ruby/util/access_token.rb +0 -158
- data/lib/twilio-ruby/util/capability.rb +0 -64
- data/lib/twilio-ruby/util/client_config.rb +0 -29
- data/lib/twilio-ruby/util/request_validator.rb +0 -37
- data/spec/rest/account_spec.rb +0 -89
- data/spec/rest/address_spec.rb +0 -11
- data/spec/rest/call_feedback_spec.rb +0 -12
- data/spec/rest/call_feedback_summary_spec.rb +0 -9
- data/spec/rest/call_spec.rb +0 -22
- data/spec/rest/conference_spec.rb +0 -11
- data/spec/rest/instance_resource_spec.rb +0 -15
- data/spec/rest/ip-messaging/channel_spec.rb +0 -21
- data/spec/rest/ip-messaging/service_spec.rb +0 -30
- data/spec/rest/ip_messaging_client_spec.rb +0 -21
- data/spec/rest/key_spec.rb +0 -11
- data/spec/rest/lookups/phone_number_spec.rb +0 -28
- data/spec/rest/message_spec.rb +0 -12
- data/spec/rest/monitor_client_spec.rb +0 -17
- data/spec/rest/numbers_spec.rb +0 -58
- data/spec/rest/pricing_client_spec.rb +0 -60
- data/spec/rest/queue_spec.rb +0 -11
- data/spec/rest/recording_spec.rb +0 -11
- data/spec/rest/sms/message_spec.rb +0 -37
- data/spec/rest/sms/messages_spec.rb +0 -31
- data/spec/rest/task_router/reservation_spec.rb +0 -14
- data/spec/rest/task_router/statistics_spec.rb +0 -37
- data/spec/rest/task_router/task_queue_spec.rb +0 -9
- data/spec/rest/token_spec.rb +0 -7
- data/spec/rest/trunking/trunk_spec.rb +0 -36
- data/spec/rest/utils_spec.rb +0 -45
- data/spec/task_router/workflow_builder_spec.rb +0 -501
- data/spec/task_router_deprecated_spec.rb +0 -139
- data/spec/task_router_spec.rb +0 -110
- data/spec/task_router_taskqueue_spec.rb +0 -111
- data/spec/task_router_worker_spec.rb +0 -146
- data/spec/task_router_workspace_spec.rb +0 -110
- data/spec/util/access_token_spec.rb +0 -161
- data/spec/util/capability_spec.rb +0 -186
- data/spec/util/client_config_spec.rb +0 -21
- data/spec/util/request_validator_spec.rb +0 -113
metadata
CHANGED
@@ -1,357 +1,1491 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twilio-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.40.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Twilio API Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: jwt
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
- - "<="
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
22
|
+
version: '2.5'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- -
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.5'
|
30
|
+
- - "<="
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: '2.5'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
34
|
+
name: nokogiri
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- -
|
37
|
+
- - ">="
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
39
|
+
version: '1.6'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2.0'
|
34
43
|
type: :runtime
|
35
44
|
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
38
|
-
- -
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.6'
|
50
|
+
- - "<"
|
39
51
|
- !ruby/object:Gem::Version
|
40
|
-
version: 2.
|
52
|
+
version: '2.0'
|
41
53
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
54
|
+
name: faraday
|
43
55
|
requirement: !ruby/object:Gem::Requirement
|
44
56
|
requirements:
|
45
|
-
- -
|
57
|
+
- - ">="
|
46
58
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
59
|
+
version: '0.9'
|
60
|
+
- - "<"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '2.0'
|
48
63
|
type: :runtime
|
49
64
|
prerelease: false
|
50
65
|
version_requirements: !ruby/object:Gem::Requirement
|
51
66
|
requirements:
|
52
|
-
- -
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0.9'
|
70
|
+
- - "<"
|
53
71
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
72
|
+
version: '2.0'
|
55
73
|
- !ruby/object:Gem::Dependency
|
56
74
|
name: bundler
|
57
75
|
requirement: !ruby/object:Gem::Requirement
|
58
76
|
requirements:
|
59
|
-
- -
|
77
|
+
- - ">="
|
60
78
|
- !ruby/object:Gem::Version
|
61
79
|
version: '1.5'
|
80
|
+
- - "<"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
62
83
|
type: :development
|
63
84
|
prerelease: false
|
64
85
|
version_requirements: !ruby/object:Gem::Requirement
|
65
86
|
requirements:
|
66
|
-
- -
|
87
|
+
- - ">="
|
67
88
|
- !ruby/object:Gem::Version
|
68
89
|
version: '1.5'
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
-
|
90
|
+
- - "<"
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '3.0'
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: equivalent-xml
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0.6'
|
100
|
+
type: :development
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - "~>"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0.6'
|
107
|
+
- !ruby/object:Gem::Dependency
|
108
|
+
name: fakeweb
|
109
|
+
requirement: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - "~>"
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '1.3'
|
114
|
+
type: :development
|
115
|
+
prerelease: false
|
116
|
+
version_requirements: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - "~>"
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '1.3'
|
121
|
+
- !ruby/object:Gem::Dependency
|
122
|
+
name: rack
|
123
|
+
requirement: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - "~>"
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '2.0'
|
128
|
+
type: :development
|
129
|
+
prerelease: false
|
130
|
+
version_requirements: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - "~>"
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '2.0'
|
135
|
+
- !ruby/object:Gem::Dependency
|
136
|
+
name: rake
|
137
|
+
requirement: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - "~>"
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '13.0'
|
142
|
+
type: :development
|
143
|
+
prerelease: false
|
144
|
+
version_requirements: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - "~>"
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '13.0'
|
149
|
+
- !ruby/object:Gem::Dependency
|
150
|
+
name: rspec
|
151
|
+
requirement: !ruby/object:Gem::Requirement
|
152
|
+
requirements:
|
153
|
+
- - "~>"
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
version: '3.0'
|
156
|
+
type: :development
|
157
|
+
prerelease: false
|
158
|
+
version_requirements: !ruby/object:Gem::Requirement
|
159
|
+
requirements:
|
160
|
+
- - "~>"
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: '3.0'
|
163
|
+
- !ruby/object:Gem::Dependency
|
164
|
+
name: rubocop
|
165
|
+
requirement: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - "~>"
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 0.82.0
|
170
|
+
type: :development
|
171
|
+
prerelease: false
|
172
|
+
version_requirements: !ruby/object:Gem::Requirement
|
173
|
+
requirements:
|
174
|
+
- - "~>"
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: 0.82.0
|
177
|
+
- !ruby/object:Gem::Dependency
|
178
|
+
name: yard
|
179
|
+
requirement: !ruby/object:Gem::Requirement
|
180
|
+
requirements:
|
181
|
+
- - "~>"
|
182
|
+
- !ruby/object:Gem::Version
|
183
|
+
version: 0.9.9
|
184
|
+
type: :development
|
185
|
+
prerelease: false
|
186
|
+
version_requirements: !ruby/object:Gem::Requirement
|
187
|
+
requirements:
|
188
|
+
- - "~>"
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: 0.9.9
|
191
|
+
description: The official library for communicating with the Twilio REST API, building
|
192
|
+
TwiML, and generating Twilio JWT Capability Tokens
|
193
|
+
email:
|
73
194
|
executables: []
|
74
195
|
extensions: []
|
75
196
|
extra_rdoc_files:
|
76
197
|
- README.md
|
77
198
|
- LICENSE.md
|
78
199
|
files:
|
79
|
-
- .
|
80
|
-
- .
|
200
|
+
- ".dockerignore"
|
201
|
+
- ".gitignore"
|
202
|
+
- ".rubocop.yml"
|
203
|
+
- ".rubocop_todo.yml"
|
204
|
+
- ".travis.yml"
|
81
205
|
- AUTHORS.md
|
82
206
|
- CHANGES.md
|
207
|
+
- CODE_OF_CONDUCT.md
|
208
|
+
- CONTRIBUTING.md
|
209
|
+
- Dockerfile
|
83
210
|
- Gemfile
|
211
|
+
- ISSUE_TEMPLATE.md
|
84
212
|
- LICENSE.md
|
85
213
|
- Makefile
|
214
|
+
- PULL_REQUEST_TEMPLATE.md
|
86
215
|
- README.md
|
87
216
|
- Rakefile
|
217
|
+
- UPGRADE.md
|
218
|
+
- VERSIONS.md
|
88
219
|
- conf/cacert.pem
|
89
|
-
- docs/Makefile
|
90
|
-
- docs/_themes/LICENSE
|
91
|
-
- docs/_themes/README.rst
|
92
|
-
- docs/_themes/flask_theme_support.py
|
93
|
-
- docs/_themes/kr/layout.html
|
94
|
-
- docs/_themes/kr/relations.html
|
95
|
-
- docs/_themes/kr/static/flasky.css_t
|
96
|
-
- docs/_themes/kr/static/small_flask.css
|
97
|
-
- docs/_themes/kr/theme.conf
|
98
|
-
- docs/_themes/kr_small/layout.html
|
99
|
-
- docs/_themes/kr_small/static/flasky.css_t
|
100
|
-
- docs/_themes/kr_small/theme.conf
|
101
|
-
- docs/changelog.rst
|
102
|
-
- docs/conf.py
|
103
|
-
- docs/faq.rst
|
104
|
-
- docs/getting-started.rst
|
105
|
-
- docs/index.rst
|
106
|
-
- docs/make.bat
|
107
|
-
- docs/src/pip-delete-this-directory.txt
|
108
|
-
- docs/usage/accounts.rst
|
109
|
-
- docs/usage/addresses.rst
|
110
|
-
- docs/usage/applications.rst
|
111
|
-
- docs/usage/basics.rst
|
112
|
-
- docs/usage/caller-ids.rst
|
113
|
-
- docs/usage/conferences.rst
|
114
|
-
- docs/usage/errors.rst
|
115
|
-
- docs/usage/lookups.rst
|
116
|
-
- docs/usage/messages.rst
|
117
|
-
- docs/usage/notifications.rst
|
118
|
-
- docs/usage/phone-calls.rst
|
119
|
-
- docs/usage/phone-numbers.rst
|
120
|
-
- docs/usage/pricing.rst
|
121
|
-
- docs/usage/queues.rst
|
122
|
-
- docs/usage/recordings.rst
|
123
|
-
- docs/usage/sip.rst
|
124
|
-
- docs/usage/taskrouter-tokens.rst
|
125
|
-
- docs/usage/taskrouter.rst
|
126
|
-
- docs/usage/token-generation.rst
|
127
|
-
- docs/usage/transcriptions.rst
|
128
|
-
- docs/usage/twiml.rst
|
129
|
-
- docs/usage/validation.rst
|
130
220
|
- examples/examples.rb
|
131
|
-
- examples/
|
132
|
-
-
|
133
|
-
- issue_template.md
|
221
|
+
- examples/print_call_log.rb
|
222
|
+
- githooks/pre-commit
|
134
223
|
- lib/rack/twilio_webhook_authentication.rb
|
135
224
|
- lib/twilio-ruby.rb
|
225
|
+
- lib/twilio-ruby/framework/domain.rb
|
226
|
+
- lib/twilio-ruby/framework/error.rb
|
227
|
+
- lib/twilio-ruby/framework/helper.rb
|
228
|
+
- lib/twilio-ruby/framework/obsolete_client.rb
|
229
|
+
- lib/twilio-ruby/framework/page.rb
|
230
|
+
- lib/twilio-ruby/framework/request.rb
|
231
|
+
- lib/twilio-ruby/framework/resource.rb
|
232
|
+
- lib/twilio-ruby/framework/response.rb
|
233
|
+
- lib/twilio-ruby/framework/serialize.rb
|
234
|
+
- lib/twilio-ruby/framework/twilio_response.rb
|
235
|
+
- lib/twilio-ruby/framework/values.rb
|
236
|
+
- lib/twilio-ruby/framework/version.rb
|
237
|
+
- lib/twilio-ruby/http/http_client.rb
|
238
|
+
- lib/twilio-ruby/jwt/access_token.rb
|
239
|
+
- lib/twilio-ruby/jwt/client_capability.rb
|
240
|
+
- lib/twilio-ruby/jwt/jwt.rb
|
241
|
+
- lib/twilio-ruby/jwt/task_router.rb
|
136
242
|
- lib/twilio-ruby/rest/accounts.rb
|
137
|
-
- lib/twilio-ruby/rest/
|
138
|
-
- lib/twilio-ruby/rest/
|
139
|
-
- lib/twilio-ruby/rest/
|
140
|
-
- lib/twilio-ruby/rest/
|
141
|
-
- lib/twilio-ruby/rest/
|
142
|
-
- lib/twilio-ruby/rest/
|
143
|
-
- lib/twilio-ruby/rest/
|
144
|
-
- lib/twilio-ruby/rest/
|
145
|
-
- lib/twilio-ruby/rest/
|
146
|
-
- lib/twilio-ruby/rest/
|
147
|
-
- lib/twilio-ruby/rest/
|
148
|
-
- lib/twilio-ruby/rest/
|
149
|
-
- lib/twilio-ruby/rest/
|
243
|
+
- lib/twilio-ruby/rest/accounts/v1.rb
|
244
|
+
- lib/twilio-ruby/rest/accounts/v1/credential.rb
|
245
|
+
- lib/twilio-ruby/rest/accounts/v1/credential/aws.rb
|
246
|
+
- lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb
|
247
|
+
- lib/twilio-ruby/rest/api.rb
|
248
|
+
- lib/twilio-ruby/rest/api/v2010.rb
|
249
|
+
- lib/twilio-ruby/rest/api/v2010/account.rb
|
250
|
+
- lib/twilio-ruby/rest/api/v2010/account/address.rb
|
251
|
+
- lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb
|
252
|
+
- lib/twilio-ruby/rest/api/v2010/account/application.rb
|
253
|
+
- lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb
|
254
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb
|
255
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb
|
256
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb
|
257
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb
|
258
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb
|
259
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb
|
260
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb
|
261
|
+
- lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb
|
262
|
+
- lib/twilio-ruby/rest/api/v2010/account/balance.rb
|
263
|
+
- lib/twilio-ruby/rest/api/v2010/account/call.rb
|
264
|
+
- lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb
|
265
|
+
- lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb
|
266
|
+
- lib/twilio-ruby/rest/api/v2010/account/call/notification.rb
|
267
|
+
- lib/twilio-ruby/rest/api/v2010/account/call/payment.rb
|
268
|
+
- lib/twilio-ruby/rest/api/v2010/account/call/recording.rb
|
269
|
+
- lib/twilio-ruby/rest/api/v2010/account/conference.rb
|
270
|
+
- lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb
|
271
|
+
- lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb
|
272
|
+
- lib/twilio-ruby/rest/api/v2010/account/connect_app.rb
|
273
|
+
- lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb
|
274
|
+
- lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb
|
275
|
+
- lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb
|
276
|
+
- lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb
|
277
|
+
- lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb
|
278
|
+
- lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb
|
279
|
+
- lib/twilio-ruby/rest/api/v2010/account/key.rb
|
280
|
+
- lib/twilio-ruby/rest/api/v2010/account/message.rb
|
281
|
+
- lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb
|
282
|
+
- lib/twilio-ruby/rest/api/v2010/account/message/media.rb
|
283
|
+
- lib/twilio-ruby/rest/api/v2010/account/new_key.rb
|
284
|
+
- lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb
|
285
|
+
- lib/twilio-ruby/rest/api/v2010/account/notification.rb
|
286
|
+
- lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb
|
287
|
+
- lib/twilio-ruby/rest/api/v2010/account/queue.rb
|
288
|
+
- lib/twilio-ruby/rest/api/v2010/account/queue/member.rb
|
289
|
+
- lib/twilio-ruby/rest/api/v2010/account/recording.rb
|
290
|
+
- lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb
|
291
|
+
- lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb
|
292
|
+
- lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb
|
293
|
+
- lib/twilio-ruby/rest/api/v2010/account/short_code.rb
|
294
|
+
- lib/twilio-ruby/rest/api/v2010/account/signing_key.rb
|
295
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip.rb
|
296
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb
|
297
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb
|
298
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb
|
299
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb
|
300
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb
|
301
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb
|
302
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb
|
303
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb
|
304
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb
|
305
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb
|
306
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb
|
307
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb
|
308
|
+
- lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb
|
309
|
+
- lib/twilio-ruby/rest/api/v2010/account/token.rb
|
310
|
+
- lib/twilio-ruby/rest/api/v2010/account/transcription.rb
|
311
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage.rb
|
312
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record.rb
|
313
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb
|
314
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb
|
315
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb
|
316
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb
|
317
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb
|
318
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb
|
319
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb
|
320
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb
|
321
|
+
- lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb
|
322
|
+
- lib/twilio-ruby/rest/api/v2010/account/validation_request.rb
|
323
|
+
- lib/twilio-ruby/rest/autopilot.rb
|
324
|
+
- lib/twilio-ruby/rest/autopilot/v1.rb
|
325
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant.rb
|
326
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb
|
327
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb
|
328
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb
|
329
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb
|
330
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb
|
331
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb
|
332
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb
|
333
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb
|
334
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb
|
335
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb
|
336
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb
|
337
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb
|
338
|
+
- lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb
|
339
|
+
- lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb
|
340
|
+
- lib/twilio-ruby/rest/bulkexports.rb
|
341
|
+
- lib/twilio-ruby/rest/bulkexports/v1.rb
|
342
|
+
- lib/twilio-ruby/rest/bulkexports/v1/export.rb
|
343
|
+
- lib/twilio-ruby/rest/bulkexports/v1/export/day.rb
|
344
|
+
- lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb
|
345
|
+
- lib/twilio-ruby/rest/bulkexports/v1/export/job.rb
|
346
|
+
- lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb
|
347
|
+
- lib/twilio-ruby/rest/chat.rb
|
348
|
+
- lib/twilio-ruby/rest/chat/v1.rb
|
349
|
+
- lib/twilio-ruby/rest/chat/v1/credential.rb
|
350
|
+
- lib/twilio-ruby/rest/chat/v1/service.rb
|
351
|
+
- lib/twilio-ruby/rest/chat/v1/service/channel.rb
|
352
|
+
- lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb
|
353
|
+
- lib/twilio-ruby/rest/chat/v1/service/channel/member.rb
|
354
|
+
- lib/twilio-ruby/rest/chat/v1/service/channel/message.rb
|
355
|
+
- lib/twilio-ruby/rest/chat/v1/service/role.rb
|
356
|
+
- lib/twilio-ruby/rest/chat/v1/service/user.rb
|
357
|
+
- lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb
|
358
|
+
- lib/twilio-ruby/rest/chat/v2.rb
|
359
|
+
- lib/twilio-ruby/rest/chat/v2/credential.rb
|
360
|
+
- lib/twilio-ruby/rest/chat/v2/service.rb
|
361
|
+
- lib/twilio-ruby/rest/chat/v2/service/binding.rb
|
362
|
+
- lib/twilio-ruby/rest/chat/v2/service/channel.rb
|
363
|
+
- lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb
|
364
|
+
- lib/twilio-ruby/rest/chat/v2/service/channel/member.rb
|
365
|
+
- lib/twilio-ruby/rest/chat/v2/service/channel/message.rb
|
366
|
+
- lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb
|
367
|
+
- lib/twilio-ruby/rest/chat/v2/service/role.rb
|
368
|
+
- lib/twilio-ruby/rest/chat/v2/service/user.rb
|
369
|
+
- lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb
|
370
|
+
- lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb
|
150
371
|
- lib/twilio-ruby/rest/client.rb
|
151
|
-
- lib/twilio-ruby/rest/
|
152
|
-
- lib/twilio-ruby/rest/
|
153
|
-
- lib/twilio-ruby/rest/
|
154
|
-
- lib/twilio-ruby/rest/
|
155
|
-
- lib/twilio-ruby/rest/
|
156
|
-
- lib/twilio-ruby/rest/
|
157
|
-
- lib/twilio-ruby/rest/
|
158
|
-
- lib/twilio-ruby/rest/
|
159
|
-
- lib/twilio-ruby/rest/
|
160
|
-
- lib/twilio-ruby/rest/
|
161
|
-
- lib/twilio-ruby/rest/
|
162
|
-
- lib/twilio-ruby/rest/
|
163
|
-
- lib/twilio-ruby/rest/
|
164
|
-
- lib/twilio-ruby/rest/
|
165
|
-
- lib/twilio-ruby/rest/
|
166
|
-
- lib/twilio-ruby/rest/
|
167
|
-
- lib/twilio-ruby/rest/
|
168
|
-
- lib/twilio-ruby/rest/
|
169
|
-
- lib/twilio-ruby/rest/
|
170
|
-
- lib/twilio-ruby/rest/
|
171
|
-
- lib/twilio-ruby/rest/
|
172
|
-
- lib/twilio-ruby/rest/
|
173
|
-
- lib/twilio-ruby/rest/
|
174
|
-
- lib/twilio-ruby/rest/
|
175
|
-
- lib/twilio-ruby/rest/
|
176
|
-
- lib/twilio-ruby/rest/
|
177
|
-
- lib/twilio-ruby/rest/
|
178
|
-
- lib/twilio-ruby/rest/
|
179
|
-
- lib/twilio-ruby/rest/
|
372
|
+
- lib/twilio-ruby/rest/conversations.rb
|
373
|
+
- lib/twilio-ruby/rest/conversations/v1.rb
|
374
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation.rb
|
375
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/message.rb
|
376
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb
|
377
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb
|
378
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb
|
379
|
+
- lib/twilio-ruby/rest/conversations/v1/webhook.rb
|
380
|
+
- lib/twilio-ruby/rest/events.rb
|
381
|
+
- lib/twilio-ruby/rest/events/v1.rb
|
382
|
+
- lib/twilio-ruby/rest/events/v1/sink.rb
|
383
|
+
- lib/twilio-ruby/rest/events/v1/sink/sink_test.rb
|
384
|
+
- lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb
|
385
|
+
- lib/twilio-ruby/rest/events/v1/subscription.rb
|
386
|
+
- lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb
|
387
|
+
- lib/twilio-ruby/rest/fax.rb
|
388
|
+
- lib/twilio-ruby/rest/fax/v1.rb
|
389
|
+
- lib/twilio-ruby/rest/fax/v1/fax.rb
|
390
|
+
- lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb
|
391
|
+
- lib/twilio-ruby/rest/flex_api.rb
|
392
|
+
- lib/twilio-ruby/rest/flex_api/v1.rb
|
393
|
+
- lib/twilio-ruby/rest/flex_api/v1/channel.rb
|
394
|
+
- lib/twilio-ruby/rest/flex_api/v1/configuration.rb
|
395
|
+
- lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb
|
396
|
+
- lib/twilio-ruby/rest/flex_api/v1/web_channel.rb
|
397
|
+
- lib/twilio-ruby/rest/insights.rb
|
398
|
+
- lib/twilio-ruby/rest/insights/v1.rb
|
399
|
+
- lib/twilio-ruby/rest/insights/v1/call.rb
|
400
|
+
- lib/twilio-ruby/rest/insights/v1/call/event.rb
|
401
|
+
- lib/twilio-ruby/rest/insights/v1/call/metric.rb
|
402
|
+
- lib/twilio-ruby/rest/insights/v1/call/summary.rb
|
403
|
+
- lib/twilio-ruby/rest/ip_messaging.rb
|
404
|
+
- lib/twilio-ruby/rest/ip_messaging/v1.rb
|
405
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/credential.rb
|
406
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service.rb
|
407
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb
|
408
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb
|
409
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb
|
410
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb
|
411
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb
|
412
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb
|
413
|
+
- lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb
|
414
|
+
- lib/twilio-ruby/rest/ip_messaging/v2.rb
|
415
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/credential.rb
|
416
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service.rb
|
417
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb
|
418
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb
|
419
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb
|
420
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb
|
421
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb
|
422
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb
|
423
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb
|
424
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb
|
425
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb
|
426
|
+
- lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb
|
427
|
+
- lib/twilio-ruby/rest/lookups.rb
|
428
|
+
- lib/twilio-ruby/rest/lookups/v1.rb
|
429
|
+
- lib/twilio-ruby/rest/lookups/v1/phone_number.rb
|
430
|
+
- lib/twilio-ruby/rest/messaging.rb
|
431
|
+
- lib/twilio-ruby/rest/messaging/v1.rb
|
432
|
+
- lib/twilio-ruby/rest/messaging/v1/service.rb
|
433
|
+
- lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb
|
434
|
+
- lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb
|
435
|
+
- lib/twilio-ruby/rest/messaging/v1/service/short_code.rb
|
436
|
+
- lib/twilio-ruby/rest/monitor.rb
|
437
|
+
- lib/twilio-ruby/rest/monitor/v1.rb
|
438
|
+
- lib/twilio-ruby/rest/monitor/v1/alert.rb
|
439
|
+
- lib/twilio-ruby/rest/monitor/v1/event.rb
|
440
|
+
- lib/twilio-ruby/rest/notify.rb
|
441
|
+
- lib/twilio-ruby/rest/notify/v1.rb
|
442
|
+
- lib/twilio-ruby/rest/notify/v1/credential.rb
|
443
|
+
- lib/twilio-ruby/rest/notify/v1/service.rb
|
444
|
+
- lib/twilio-ruby/rest/notify/v1/service/binding.rb
|
445
|
+
- lib/twilio-ruby/rest/notify/v1/service/notification.rb
|
446
|
+
- lib/twilio-ruby/rest/numbers.rb
|
447
|
+
- lib/twilio-ruby/rest/numbers/v2.rb
|
448
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb
|
449
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb
|
450
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb
|
451
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb
|
452
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb
|
453
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb
|
454
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb
|
455
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb
|
456
|
+
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb
|
457
|
+
- lib/twilio-ruby/rest/preview.rb
|
458
|
+
- lib/twilio-ruby/rest/preview/bulk_exports.rb
|
459
|
+
- lib/twilio-ruby/rest/preview/bulk_exports/export.rb
|
460
|
+
- lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb
|
461
|
+
- lib/twilio-ruby/rest/preview/bulk_exports/export/export_custom_job.rb
|
462
|
+
- lib/twilio-ruby/rest/preview/bulk_exports/export/job.rb
|
463
|
+
- lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb
|
464
|
+
- lib/twilio-ruby/rest/preview/deployed_devices.rb
|
465
|
+
- lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb
|
466
|
+
- lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb
|
467
|
+
- lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb
|
468
|
+
- lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb
|
469
|
+
- lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb
|
470
|
+
- lib/twilio-ruby/rest/preview/hosted_numbers.rb
|
471
|
+
- lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb
|
472
|
+
- lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb
|
473
|
+
- lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb
|
474
|
+
- lib/twilio-ruby/rest/preview/marketplace.rb
|
475
|
+
- lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb
|
476
|
+
- lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb
|
477
|
+
- lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb
|
478
|
+
- lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb
|
479
|
+
- lib/twilio-ruby/rest/preview/sync.rb
|
480
|
+
- lib/twilio-ruby/rest/preview/sync/service.rb
|
481
|
+
- lib/twilio-ruby/rest/preview/sync/service/document.rb
|
482
|
+
- lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb
|
483
|
+
- lib/twilio-ruby/rest/preview/sync/service/sync_list.rb
|
484
|
+
- lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb
|
485
|
+
- lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb
|
486
|
+
- lib/twilio-ruby/rest/preview/sync/service/sync_map.rb
|
487
|
+
- lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb
|
488
|
+
- lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb
|
489
|
+
- lib/twilio-ruby/rest/preview/trusted_comms.rb
|
490
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/branded_call.rb
|
491
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/brands_information.rb
|
492
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/business.rb
|
493
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/business/brand.rb
|
494
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/business/brand/branded_channel.rb
|
495
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/business/brand/branded_channel/channel.rb
|
496
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/business/insights.rb
|
497
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/business/insights/impressions_rate.rb
|
498
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/cps.rb
|
499
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb
|
500
|
+
- lib/twilio-ruby/rest/preview/trusted_comms/phone_call.rb
|
501
|
+
- lib/twilio-ruby/rest/preview/understand.rb
|
502
|
+
- lib/twilio-ruby/rest/preview/understand/assistant.rb
|
503
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb
|
504
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb
|
505
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb
|
506
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb
|
507
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb
|
508
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb
|
509
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/query.rb
|
510
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb
|
511
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/task.rb
|
512
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb
|
513
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb
|
514
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb
|
515
|
+
- lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb
|
516
|
+
- lib/twilio-ruby/rest/preview/wireless.rb
|
517
|
+
- lib/twilio-ruby/rest/preview/wireless/command.rb
|
518
|
+
- lib/twilio-ruby/rest/preview/wireless/rate_plan.rb
|
519
|
+
- lib/twilio-ruby/rest/preview/wireless/sim.rb
|
520
|
+
- lib/twilio-ruby/rest/preview/wireless/sim/usage.rb
|
180
521
|
- lib/twilio-ruby/rest/pricing.rb
|
181
|
-
- lib/twilio-ruby/rest/pricing/
|
182
|
-
- lib/twilio-ruby/rest/pricing/messaging.rb
|
183
|
-
- lib/twilio-ruby/rest/pricing/
|
184
|
-
- lib/twilio-ruby/rest/pricing/
|
185
|
-
- lib/twilio-ruby/rest/pricing/
|
186
|
-
- lib/twilio-ruby/rest/
|
187
|
-
- lib/twilio-ruby/rest/
|
188
|
-
- lib/twilio-ruby/rest/
|
189
|
-
- lib/twilio-ruby/rest/
|
190
|
-
- lib/twilio-ruby/rest/
|
191
|
-
- lib/twilio-ruby/rest/
|
192
|
-
- lib/twilio-ruby/rest/
|
193
|
-
- lib/twilio-ruby/rest/
|
194
|
-
- lib/twilio-ruby/rest/
|
195
|
-
- lib/twilio-ruby/rest/
|
196
|
-
- lib/twilio-ruby/rest/
|
197
|
-
- lib/twilio-ruby/rest/
|
198
|
-
- lib/twilio-ruby/rest/
|
199
|
-
- lib/twilio-ruby/rest/
|
200
|
-
- lib/twilio-ruby/rest/
|
201
|
-
- lib/twilio-ruby/rest/
|
202
|
-
- lib/twilio-ruby/rest/
|
203
|
-
- lib/twilio-ruby/rest/
|
204
|
-
- lib/twilio-ruby/rest/
|
205
|
-
- lib/twilio-ruby/rest/
|
206
|
-
- lib/twilio-ruby/rest/
|
207
|
-
- lib/twilio-ruby/rest/
|
208
|
-
- lib/twilio-ruby/rest/
|
209
|
-
- lib/twilio-ruby/rest/
|
210
|
-
- lib/twilio-ruby/rest/
|
211
|
-
- lib/twilio-ruby/rest/
|
212
|
-
- lib/twilio-ruby/rest/
|
213
|
-
- lib/twilio-ruby/rest/
|
214
|
-
- lib/twilio-ruby/rest/
|
215
|
-
- lib/twilio-ruby/rest/
|
216
|
-
- lib/twilio-ruby/rest/
|
217
|
-
- lib/twilio-ruby/rest/
|
218
|
-
- lib/twilio-ruby/rest/
|
219
|
-
- lib/twilio-ruby/rest/
|
220
|
-
- lib/twilio-ruby/rest/
|
221
|
-
- lib/twilio-ruby/rest/
|
222
|
-
- lib/twilio-ruby/rest/
|
223
|
-
- lib/twilio-ruby/rest/
|
224
|
-
- lib/twilio-ruby/rest/
|
225
|
-
- lib/twilio-ruby/rest/
|
226
|
-
- lib/twilio-ruby/rest/
|
227
|
-
- lib/twilio-ruby/rest/
|
228
|
-
- lib/twilio-ruby/
|
229
|
-
- lib/twilio-ruby/
|
230
|
-
- lib/twilio-ruby/
|
231
|
-
- lib/twilio-ruby/
|
522
|
+
- lib/twilio-ruby/rest/pricing/v1.rb
|
523
|
+
- lib/twilio-ruby/rest/pricing/v1/messaging.rb
|
524
|
+
- lib/twilio-ruby/rest/pricing/v1/messaging/country.rb
|
525
|
+
- lib/twilio-ruby/rest/pricing/v1/phone_number.rb
|
526
|
+
- lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb
|
527
|
+
- lib/twilio-ruby/rest/pricing/v1/voice.rb
|
528
|
+
- lib/twilio-ruby/rest/pricing/v1/voice/country.rb
|
529
|
+
- lib/twilio-ruby/rest/pricing/v1/voice/number.rb
|
530
|
+
- lib/twilio-ruby/rest/pricing/v2.rb
|
531
|
+
- lib/twilio-ruby/rest/pricing/v2/voice.rb
|
532
|
+
- lib/twilio-ruby/rest/pricing/v2/voice/country.rb
|
533
|
+
- lib/twilio-ruby/rest/pricing/v2/voice/number.rb
|
534
|
+
- lib/twilio-ruby/rest/proxy.rb
|
535
|
+
- lib/twilio-ruby/rest/proxy/v1.rb
|
536
|
+
- lib/twilio-ruby/rest/proxy/v1/service.rb
|
537
|
+
- lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb
|
538
|
+
- lib/twilio-ruby/rest/proxy/v1/service/session.rb
|
539
|
+
- lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb
|
540
|
+
- lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb
|
541
|
+
- lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb
|
542
|
+
- lib/twilio-ruby/rest/proxy/v1/service/short_code.rb
|
543
|
+
- lib/twilio-ruby/rest/serverless.rb
|
544
|
+
- lib/twilio-ruby/rest/serverless/v1.rb
|
545
|
+
- lib/twilio-ruby/rest/serverless/v1/service.rb
|
546
|
+
- lib/twilio-ruby/rest/serverless/v1/service/asset.rb
|
547
|
+
- lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb
|
548
|
+
- lib/twilio-ruby/rest/serverless/v1/service/build.rb
|
549
|
+
- lib/twilio-ruby/rest/serverless/v1/service/environment.rb
|
550
|
+
- lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb
|
551
|
+
- lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb
|
552
|
+
- lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb
|
553
|
+
- lib/twilio-ruby/rest/serverless/v1/service/function.rb
|
554
|
+
- lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb
|
555
|
+
- lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb
|
556
|
+
- lib/twilio-ruby/rest/studio.rb
|
557
|
+
- lib/twilio-ruby/rest/studio/v1.rb
|
558
|
+
- lib/twilio-ruby/rest/studio/v1/flow.rb
|
559
|
+
- lib/twilio-ruby/rest/studio/v1/flow/engagement.rb
|
560
|
+
- lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb
|
561
|
+
- lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb
|
562
|
+
- lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb
|
563
|
+
- lib/twilio-ruby/rest/studio/v1/flow/execution.rb
|
564
|
+
- lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb
|
565
|
+
- lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb
|
566
|
+
- lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb
|
567
|
+
- lib/twilio-ruby/rest/studio/v2.rb
|
568
|
+
- lib/twilio-ruby/rest/studio/v2/flow.rb
|
569
|
+
- lib/twilio-ruby/rest/studio/v2/flow/execution.rb
|
570
|
+
- lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb
|
571
|
+
- lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb
|
572
|
+
- lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb
|
573
|
+
- lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb
|
574
|
+
- lib/twilio-ruby/rest/studio/v2/flow/test_user.rb
|
575
|
+
- lib/twilio-ruby/rest/studio/v2/flow_validate.rb
|
576
|
+
- lib/twilio-ruby/rest/supersim.rb
|
577
|
+
- lib/twilio-ruby/rest/supersim/v1.rb
|
578
|
+
- lib/twilio-ruby/rest/supersim/v1/command.rb
|
579
|
+
- lib/twilio-ruby/rest/supersim/v1/fleet.rb
|
580
|
+
- lib/twilio-ruby/rest/supersim/v1/network.rb
|
581
|
+
- lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb
|
582
|
+
- lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb
|
583
|
+
- lib/twilio-ruby/rest/supersim/v1/sim.rb
|
584
|
+
- lib/twilio-ruby/rest/supersim/v1/usage_record.rb
|
585
|
+
- lib/twilio-ruby/rest/sync.rb
|
586
|
+
- lib/twilio-ruby/rest/sync/v1.rb
|
587
|
+
- lib/twilio-ruby/rest/sync/v1/service.rb
|
588
|
+
- lib/twilio-ruby/rest/sync/v1/service/document.rb
|
589
|
+
- lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb
|
590
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_list.rb
|
591
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb
|
592
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb
|
593
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_map.rb
|
594
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb
|
595
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb
|
596
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb
|
597
|
+
- lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb
|
598
|
+
- lib/twilio-ruby/rest/taskrouter.rb
|
599
|
+
- lib/twilio-ruby/rest/taskrouter/v1.rb
|
600
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace.rb
|
601
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb
|
602
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb
|
603
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb
|
604
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb
|
605
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb
|
606
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb
|
607
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb
|
608
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb
|
609
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb
|
610
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb
|
611
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb
|
612
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb
|
613
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb
|
614
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb
|
615
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb
|
616
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb
|
617
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb
|
618
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb
|
619
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb
|
620
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb
|
621
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb
|
622
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb
|
623
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb
|
624
|
+
- lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb
|
625
|
+
- lib/twilio-ruby/rest/trunking.rb
|
626
|
+
- lib/twilio-ruby/rest/trunking/v1.rb
|
627
|
+
- lib/twilio-ruby/rest/trunking/v1/trunk.rb
|
628
|
+
- lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb
|
629
|
+
- lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb
|
630
|
+
- lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb
|
631
|
+
- lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb
|
632
|
+
- lib/twilio-ruby/rest/verify.rb
|
633
|
+
- lib/twilio-ruby/rest/verify/v2.rb
|
634
|
+
- lib/twilio-ruby/rest/verify/v2/form.rb
|
635
|
+
- lib/twilio-ruby/rest/verify/v2/service.rb
|
636
|
+
- lib/twilio-ruby/rest/verify/v2/service/access_token.rb
|
637
|
+
- lib/twilio-ruby/rest/verify/v2/service/entity.rb
|
638
|
+
- lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb
|
639
|
+
- lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb
|
640
|
+
- lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb
|
641
|
+
- lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb
|
642
|
+
- lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb
|
643
|
+
- lib/twilio-ruby/rest/verify/v2/service/verification.rb
|
644
|
+
- lib/twilio-ruby/rest/verify/v2/service/verification_check.rb
|
645
|
+
- lib/twilio-ruby/rest/verify/v2/service/webhook.rb
|
646
|
+
- lib/twilio-ruby/rest/video.rb
|
647
|
+
- lib/twilio-ruby/rest/video/v1.rb
|
648
|
+
- lib/twilio-ruby/rest/video/v1/composition.rb
|
649
|
+
- lib/twilio-ruby/rest/video/v1/composition_hook.rb
|
650
|
+
- lib/twilio-ruby/rest/video/v1/composition_settings.rb
|
651
|
+
- lib/twilio-ruby/rest/video/v1/recording.rb
|
652
|
+
- lib/twilio-ruby/rest/video/v1/recording_settings.rb
|
653
|
+
- lib/twilio-ruby/rest/video/v1/room.rb
|
654
|
+
- lib/twilio-ruby/rest/video/v1/room/recording.rb
|
655
|
+
- lib/twilio-ruby/rest/video/v1/room/room_participant.rb
|
656
|
+
- lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb
|
657
|
+
- lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb
|
658
|
+
- lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb
|
659
|
+
- lib/twilio-ruby/rest/voice.rb
|
660
|
+
- lib/twilio-ruby/rest/voice/v1.rb
|
661
|
+
- lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb
|
662
|
+
- lib/twilio-ruby/rest/voice/v1/connection_policy.rb
|
663
|
+
- lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb
|
664
|
+
- lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb
|
665
|
+
- lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb
|
666
|
+
- lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb
|
667
|
+
- lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb
|
668
|
+
- lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb
|
669
|
+
- lib/twilio-ruby/rest/voice/v1/ip_record.rb
|
670
|
+
- lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb
|
671
|
+
- lib/twilio-ruby/rest/wireless.rb
|
672
|
+
- lib/twilio-ruby/rest/wireless/v1.rb
|
673
|
+
- lib/twilio-ruby/rest/wireless/v1/command.rb
|
674
|
+
- lib/twilio-ruby/rest/wireless/v1/rate_plan.rb
|
675
|
+
- lib/twilio-ruby/rest/wireless/v1/sim.rb
|
676
|
+
- lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb
|
677
|
+
- lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb
|
678
|
+
- lib/twilio-ruby/rest/wireless/v1/usage_record.rb
|
679
|
+
- lib/twilio-ruby/security/request_validator.rb
|
680
|
+
- lib/twilio-ruby/twiml/fax_response.rb
|
681
|
+
- lib/twilio-ruby/twiml/messaging_response.rb
|
682
|
+
- lib/twilio-ruby/twiml/twiml.rb
|
683
|
+
- lib/twilio-ruby/twiml/voice_response.rb
|
232
684
|
- lib/twilio-ruby/util.rb
|
233
|
-
- lib/twilio-ruby/util/access_token.rb
|
234
|
-
- lib/twilio-ruby/util/capability.rb
|
235
|
-
- lib/twilio-ruby/util/client_config.rb
|
236
685
|
- lib/twilio-ruby/util/configuration.rb
|
237
|
-
- lib/twilio-ruby/util/request_validator.rb
|
238
686
|
- lib/twilio-ruby/version.rb
|
687
|
+
- spec/framework/request_spec.rb
|
688
|
+
- spec/framework/serialize_spec.rb
|
689
|
+
- spec/framework/version_spec.rb
|
690
|
+
- spec/holodeck/holodeck.rb
|
691
|
+
- spec/holodeck/hologram.rb
|
692
|
+
- spec/http/http_client_spec.rb
|
693
|
+
- spec/integration/accounts/v1/credential/aws_spec.rb
|
694
|
+
- spec/integration/accounts/v1/credential/public_key_spec.rb
|
695
|
+
- spec/integration/accounts/v1/credential_spec.rb
|
696
|
+
- spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb
|
697
|
+
- spec/integration/api/v2010/account/address_spec.rb
|
698
|
+
- spec/integration/api/v2010/account/application_spec.rb
|
699
|
+
- spec/integration/api/v2010/account/authorized_connect_app_spec.rb
|
700
|
+
- spec/integration/api/v2010/account/available_phone_number/local_spec.rb
|
701
|
+
- spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb
|
702
|
+
- spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb
|
703
|
+
- spec/integration/api/v2010/account/available_phone_number/national_spec.rb
|
704
|
+
- spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb
|
705
|
+
- spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb
|
706
|
+
- spec/integration/api/v2010/account/available_phone_number/voip_spec.rb
|
707
|
+
- spec/integration/api/v2010/account/available_phone_number_spec.rb
|
708
|
+
- spec/integration/api/v2010/account/balance_spec.rb
|
709
|
+
- spec/integration/api/v2010/account/call/feedback_spec.rb
|
710
|
+
- spec/integration/api/v2010/account/call/feedback_summary_spec.rb
|
711
|
+
- spec/integration/api/v2010/account/call/notification_spec.rb
|
712
|
+
- spec/integration/api/v2010/account/call/payment_spec.rb
|
713
|
+
- spec/integration/api/v2010/account/call/recording_spec.rb
|
714
|
+
- spec/integration/api/v2010/account/call_spec.rb
|
715
|
+
- spec/integration/api/v2010/account/conference/participant_spec.rb
|
716
|
+
- spec/integration/api/v2010/account/conference/recording_spec.rb
|
717
|
+
- spec/integration/api/v2010/account/conference_spec.rb
|
718
|
+
- spec/integration/api/v2010/account/connect_app_spec.rb
|
719
|
+
- spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb
|
720
|
+
- spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb
|
721
|
+
- spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb
|
722
|
+
- spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb
|
723
|
+
- spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb
|
724
|
+
- spec/integration/api/v2010/account/incoming_phone_number_spec.rb
|
725
|
+
- spec/integration/api/v2010/account/key_spec.rb
|
726
|
+
- spec/integration/api/v2010/account/message/feedback_spec.rb
|
727
|
+
- spec/integration/api/v2010/account/message/media_spec.rb
|
728
|
+
- spec/integration/api/v2010/account/message_spec.rb
|
729
|
+
- spec/integration/api/v2010/account/new_key_spec.rb
|
730
|
+
- spec/integration/api/v2010/account/new_signing_key_spec.rb
|
731
|
+
- spec/integration/api/v2010/account/notification_spec.rb
|
732
|
+
- spec/integration/api/v2010/account/outgoing_caller_id_spec.rb
|
733
|
+
- spec/integration/api/v2010/account/queue/member_spec.rb
|
734
|
+
- spec/integration/api/v2010/account/queue_spec.rb
|
735
|
+
- spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb
|
736
|
+
- spec/integration/api/v2010/account/recording/add_on_result_spec.rb
|
737
|
+
- spec/integration/api/v2010/account/recording/transcription_spec.rb
|
738
|
+
- spec/integration/api/v2010/account/recording_spec.rb
|
739
|
+
- spec/integration/api/v2010/account/short_code_spec.rb
|
740
|
+
- spec/integration/api/v2010/account/signing_key_spec.rb
|
741
|
+
- spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb
|
742
|
+
- spec/integration/api/v2010/account/sip/credential_list_spec.rb
|
743
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb
|
744
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb
|
745
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping_spec.rb
|
746
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping_spec.rb
|
747
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping_spec.rb
|
748
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types_spec.rb
|
749
|
+
- spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb
|
750
|
+
- spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb
|
751
|
+
- spec/integration/api/v2010/account/sip/domain_spec.rb
|
752
|
+
- spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb
|
753
|
+
- spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb
|
754
|
+
- spec/integration/api/v2010/account/sip_spec.rb
|
755
|
+
- spec/integration/api/v2010/account/token_spec.rb
|
756
|
+
- spec/integration/api/v2010/account/transcription_spec.rb
|
757
|
+
- spec/integration/api/v2010/account/usage/record/all_time_spec.rb
|
758
|
+
- spec/integration/api/v2010/account/usage/record/daily_spec.rb
|
759
|
+
- spec/integration/api/v2010/account/usage/record/last_month_spec.rb
|
760
|
+
- spec/integration/api/v2010/account/usage/record/monthly_spec.rb
|
761
|
+
- spec/integration/api/v2010/account/usage/record/this_month_spec.rb
|
762
|
+
- spec/integration/api/v2010/account/usage/record/today_spec.rb
|
763
|
+
- spec/integration/api/v2010/account/usage/record/yearly_spec.rb
|
764
|
+
- spec/integration/api/v2010/account/usage/record/yesterday_spec.rb
|
765
|
+
- spec/integration/api/v2010/account/usage/record_spec.rb
|
766
|
+
- spec/integration/api/v2010/account/usage/trigger_spec.rb
|
767
|
+
- spec/integration/api/v2010/account/usage_spec.rb
|
768
|
+
- spec/integration/api/v2010/account/validation_request_spec.rb
|
769
|
+
- spec/integration/api/v2010/account_spec.rb
|
770
|
+
- spec/integration/autopilot/v1/assistant/defaults_spec.rb
|
771
|
+
- spec/integration/autopilot/v1/assistant/dialogue_spec.rb
|
772
|
+
- spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb
|
773
|
+
- spec/integration/autopilot/v1/assistant/field_type_spec.rb
|
774
|
+
- spec/integration/autopilot/v1/assistant/model_build_spec.rb
|
775
|
+
- spec/integration/autopilot/v1/assistant/query_spec.rb
|
776
|
+
- spec/integration/autopilot/v1/assistant/style_sheet_spec.rb
|
777
|
+
- spec/integration/autopilot/v1/assistant/task/field_spec.rb
|
778
|
+
- spec/integration/autopilot/v1/assistant/task/sample_spec.rb
|
779
|
+
- spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb
|
780
|
+
- spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb
|
781
|
+
- spec/integration/autopilot/v1/assistant/task_spec.rb
|
782
|
+
- spec/integration/autopilot/v1/assistant/webhook_spec.rb
|
783
|
+
- spec/integration/autopilot/v1/assistant_spec.rb
|
784
|
+
- spec/integration/autopilot/v1/restore_assistant_spec.rb
|
785
|
+
- spec/integration/bulkexports/v1/export/day_spec.rb
|
786
|
+
- spec/integration/bulkexports/v1/export/export_custom_job_spec.rb
|
787
|
+
- spec/integration/bulkexports/v1/export/job_spec.rb
|
788
|
+
- spec/integration/bulkexports/v1/export_configuration_spec.rb
|
789
|
+
- spec/integration/bulkexports/v1/export_spec.rb
|
790
|
+
- spec/integration/chat/v1/credential_spec.rb
|
791
|
+
- spec/integration/chat/v1/service/channel/invite_spec.rb
|
792
|
+
- spec/integration/chat/v1/service/channel/member_spec.rb
|
793
|
+
- spec/integration/chat/v1/service/channel/message_spec.rb
|
794
|
+
- spec/integration/chat/v1/service/channel_spec.rb
|
795
|
+
- spec/integration/chat/v1/service/role_spec.rb
|
796
|
+
- spec/integration/chat/v1/service/user/user_channel_spec.rb
|
797
|
+
- spec/integration/chat/v1/service/user_spec.rb
|
798
|
+
- spec/integration/chat/v1/service_spec.rb
|
799
|
+
- spec/integration/chat/v2/credential_spec.rb
|
800
|
+
- spec/integration/chat/v2/service/binding_spec.rb
|
801
|
+
- spec/integration/chat/v2/service/channel/invite_spec.rb
|
802
|
+
- spec/integration/chat/v2/service/channel/member_spec.rb
|
803
|
+
- spec/integration/chat/v2/service/channel/message_spec.rb
|
804
|
+
- spec/integration/chat/v2/service/channel/webhook_spec.rb
|
805
|
+
- spec/integration/chat/v2/service/channel_spec.rb
|
806
|
+
- spec/integration/chat/v2/service/role_spec.rb
|
807
|
+
- spec/integration/chat/v2/service/user/user_binding_spec.rb
|
808
|
+
- spec/integration/chat/v2/service/user/user_channel_spec.rb
|
809
|
+
- spec/integration/chat/v2/service/user_spec.rb
|
810
|
+
- spec/integration/chat/v2/service_spec.rb
|
811
|
+
- spec/integration/conversations/v1/conversation/message/delivery_receipt_spec.rb
|
812
|
+
- spec/integration/conversations/v1/conversation/message_spec.rb
|
813
|
+
- spec/integration/conversations/v1/conversation/participant_spec.rb
|
814
|
+
- spec/integration/conversations/v1/conversation/webhook_spec.rb
|
815
|
+
- spec/integration/conversations/v1/conversation_spec.rb
|
816
|
+
- spec/integration/conversations/v1/webhook_spec.rb
|
817
|
+
- spec/integration/events/v1/sink/sink_test_spec.rb
|
818
|
+
- spec/integration/events/v1/sink/sink_validate_spec.rb
|
819
|
+
- spec/integration/events/v1/sink_spec.rb
|
820
|
+
- spec/integration/events/v1/subscription/subscribed_event_spec.rb
|
821
|
+
- spec/integration/events/v1/subscription_spec.rb
|
822
|
+
- spec/integration/fax/v1/fax/fax_media_spec.rb
|
823
|
+
- spec/integration/fax/v1/fax_spec.rb
|
824
|
+
- spec/integration/flex_api/v1/channel_spec.rb
|
825
|
+
- spec/integration/flex_api/v1/configuration_spec.rb
|
826
|
+
- spec/integration/flex_api/v1/flex_flow_spec.rb
|
827
|
+
- spec/integration/flex_api/v1/web_channel_spec.rb
|
828
|
+
- spec/integration/insights/v1/call/event_spec.rb
|
829
|
+
- spec/integration/insights/v1/call/metric_spec.rb
|
830
|
+
- spec/integration/insights/v1/call/summary_spec.rb
|
831
|
+
- spec/integration/insights/v1/call_spec.rb
|
832
|
+
- spec/integration/ip_messaging/v1/credential_spec.rb
|
833
|
+
- spec/integration/ip_messaging/v1/service/channel/invite_spec.rb
|
834
|
+
- spec/integration/ip_messaging/v1/service/channel/member_spec.rb
|
835
|
+
- spec/integration/ip_messaging/v1/service/channel/message_spec.rb
|
836
|
+
- spec/integration/ip_messaging/v1/service/channel_spec.rb
|
837
|
+
- spec/integration/ip_messaging/v1/service/role_spec.rb
|
838
|
+
- spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb
|
839
|
+
- spec/integration/ip_messaging/v1/service/user_spec.rb
|
840
|
+
- spec/integration/ip_messaging/v1/service_spec.rb
|
841
|
+
- spec/integration/ip_messaging/v2/credential_spec.rb
|
842
|
+
- spec/integration/ip_messaging/v2/service/binding_spec.rb
|
843
|
+
- spec/integration/ip_messaging/v2/service/channel/invite_spec.rb
|
844
|
+
- spec/integration/ip_messaging/v2/service/channel/member_spec.rb
|
845
|
+
- spec/integration/ip_messaging/v2/service/channel/message_spec.rb
|
846
|
+
- spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb
|
847
|
+
- spec/integration/ip_messaging/v2/service/channel_spec.rb
|
848
|
+
- spec/integration/ip_messaging/v2/service/role_spec.rb
|
849
|
+
- spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb
|
850
|
+
- spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb
|
851
|
+
- spec/integration/ip_messaging/v2/service/user_spec.rb
|
852
|
+
- spec/integration/ip_messaging/v2/service_spec.rb
|
853
|
+
- spec/integration/lookups/v1/phone_number_spec.rb
|
854
|
+
- spec/integration/messaging/v1/service/alpha_sender_spec.rb
|
855
|
+
- spec/integration/messaging/v1/service/phone_number_spec.rb
|
856
|
+
- spec/integration/messaging/v1/service/short_code_spec.rb
|
857
|
+
- spec/integration/messaging/v1/service_spec.rb
|
858
|
+
- spec/integration/monitor/v1/alert_spec.rb
|
859
|
+
- spec/integration/monitor/v1/event_spec.rb
|
860
|
+
- spec/integration/notify/v1/credential_spec.rb
|
861
|
+
- spec/integration/notify/v1/service/binding_spec.rb
|
862
|
+
- spec/integration/notify/v1/service/notification_spec.rb
|
863
|
+
- spec/integration/notify/v1/service_spec.rb
|
864
|
+
- spec/integration/numbers/v2/regulatory_compliance/bundle/evaluation_spec.rb
|
865
|
+
- spec/integration/numbers/v2/regulatory_compliance/bundle/item_assignment_spec.rb
|
866
|
+
- spec/integration/numbers/v2/regulatory_compliance/bundle_spec.rb
|
867
|
+
- spec/integration/numbers/v2/regulatory_compliance/end_user_spec.rb
|
868
|
+
- spec/integration/numbers/v2/regulatory_compliance/end_user_type_spec.rb
|
869
|
+
- spec/integration/numbers/v2/regulatory_compliance/regulation_spec.rb
|
870
|
+
- spec/integration/numbers/v2/regulatory_compliance/supporting_document_spec.rb
|
871
|
+
- spec/integration/numbers/v2/regulatory_compliance/supporting_document_type_spec.rb
|
872
|
+
- spec/integration/numbers/v2/regulatory_compliance_spec.rb
|
873
|
+
- spec/integration/preview/bulk_exports/export/day_spec.rb
|
874
|
+
- spec/integration/preview/bulk_exports/export/export_custom_job_spec.rb
|
875
|
+
- spec/integration/preview/bulk_exports/export/job_spec.rb
|
876
|
+
- spec/integration/preview/bulk_exports/export_configuration_spec.rb
|
877
|
+
- spec/integration/preview/bulk_exports/export_spec.rb
|
878
|
+
- spec/integration/preview/deployed_devices/fleet/certificate_spec.rb
|
879
|
+
- spec/integration/preview/deployed_devices/fleet/deployment_spec.rb
|
880
|
+
- spec/integration/preview/deployed_devices/fleet/device_spec.rb
|
881
|
+
- spec/integration/preview/deployed_devices/fleet/key_spec.rb
|
882
|
+
- spec/integration/preview/deployed_devices/fleet_spec.rb
|
883
|
+
- spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb
|
884
|
+
- spec/integration/preview/hosted_numbers/authorization_document_spec.rb
|
885
|
+
- spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb
|
886
|
+
- spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb
|
887
|
+
- spec/integration/preview/marketplace/available_add_on_spec.rb
|
888
|
+
- spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb
|
889
|
+
- spec/integration/preview/marketplace/installed_add_on_spec.rb
|
890
|
+
- spec/integration/preview/sync/service/document/document_permission_spec.rb
|
891
|
+
- spec/integration/preview/sync/service/document_spec.rb
|
892
|
+
- spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb
|
893
|
+
- spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb
|
894
|
+
- spec/integration/preview/sync/service/sync_list_spec.rb
|
895
|
+
- spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb
|
896
|
+
- spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb
|
897
|
+
- spec/integration/preview/sync/service/sync_map_spec.rb
|
898
|
+
- spec/integration/preview/sync/service_spec.rb
|
899
|
+
- spec/integration/preview/trusted_comms/branded_call_spec.rb
|
900
|
+
- spec/integration/preview/trusted_comms/brands_information_spec.rb
|
901
|
+
- spec/integration/preview/trusted_comms/business/brand/branded_channel/channel_spec.rb
|
902
|
+
- spec/integration/preview/trusted_comms/business/brand/branded_channel_spec.rb
|
903
|
+
- spec/integration/preview/trusted_comms/business/brand_spec.rb
|
904
|
+
- spec/integration/preview/trusted_comms/business/insights/impressions_rate_spec.rb
|
905
|
+
- spec/integration/preview/trusted_comms/business/insights_spec.rb
|
906
|
+
- spec/integration/preview/trusted_comms/business_spec.rb
|
907
|
+
- spec/integration/preview/trusted_comms/cps_spec.rb
|
908
|
+
- spec/integration/preview/trusted_comms/current_call_spec.rb
|
909
|
+
- spec/integration/preview/trusted_comms/phone_call_spec.rb
|
910
|
+
- spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb
|
911
|
+
- spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb
|
912
|
+
- spec/integration/preview/understand/assistant/dialogue_spec.rb
|
913
|
+
- spec/integration/preview/understand/assistant/field_type/field_value_spec.rb
|
914
|
+
- spec/integration/preview/understand/assistant/field_type_spec.rb
|
915
|
+
- spec/integration/preview/understand/assistant/model_build_spec.rb
|
916
|
+
- spec/integration/preview/understand/assistant/query_spec.rb
|
917
|
+
- spec/integration/preview/understand/assistant/style_sheet_spec.rb
|
918
|
+
- spec/integration/preview/understand/assistant/task/field_spec.rb
|
919
|
+
- spec/integration/preview/understand/assistant/task/sample_spec.rb
|
920
|
+
- spec/integration/preview/understand/assistant/task/task_actions_spec.rb
|
921
|
+
- spec/integration/preview/understand/assistant/task/task_statistics_spec.rb
|
922
|
+
- spec/integration/preview/understand/assistant/task_spec.rb
|
923
|
+
- spec/integration/preview/understand/assistant_spec.rb
|
924
|
+
- spec/integration/preview/wireless/command_spec.rb
|
925
|
+
- spec/integration/preview/wireless/rate_plan_spec.rb
|
926
|
+
- spec/integration/preview/wireless/sim/usage_spec.rb
|
927
|
+
- spec/integration/preview/wireless/sim_spec.rb
|
928
|
+
- spec/integration/pricing/v1/messaging/country_spec.rb
|
929
|
+
- spec/integration/pricing/v1/messaging_spec.rb
|
930
|
+
- spec/integration/pricing/v1/phone_number/country_spec.rb
|
931
|
+
- spec/integration/pricing/v1/phone_number_spec.rb
|
932
|
+
- spec/integration/pricing/v1/voice/country_spec.rb
|
933
|
+
- spec/integration/pricing/v1/voice/number_spec.rb
|
934
|
+
- spec/integration/pricing/v1/voice_spec.rb
|
935
|
+
- spec/integration/pricing/v2/voice/country_spec.rb
|
936
|
+
- spec/integration/pricing/v2/voice/number_spec.rb
|
937
|
+
- spec/integration/pricing/v2/voice_spec.rb
|
938
|
+
- spec/integration/proxy/v1/service/phone_number_spec.rb
|
939
|
+
- spec/integration/proxy/v1/service/session/interaction_spec.rb
|
940
|
+
- spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb
|
941
|
+
- spec/integration/proxy/v1/service/session/participant_spec.rb
|
942
|
+
- spec/integration/proxy/v1/service/session_spec.rb
|
943
|
+
- spec/integration/proxy/v1/service/short_code_spec.rb
|
944
|
+
- spec/integration/proxy/v1/service_spec.rb
|
945
|
+
- spec/integration/serverless/v1/service/asset/asset_version_spec.rb
|
946
|
+
- spec/integration/serverless/v1/service/asset_spec.rb
|
947
|
+
- spec/integration/serverless/v1/service/build_spec.rb
|
948
|
+
- spec/integration/serverless/v1/service/environment/deployment_spec.rb
|
949
|
+
- spec/integration/serverless/v1/service/environment/log_spec.rb
|
950
|
+
- spec/integration/serverless/v1/service/environment/variable_spec.rb
|
951
|
+
- spec/integration/serverless/v1/service/environment_spec.rb
|
952
|
+
- spec/integration/serverless/v1/service/function/function_version/function_version_content_spec.rb
|
953
|
+
- spec/integration/serverless/v1/service/function/function_version_spec.rb
|
954
|
+
- spec/integration/serverless/v1/service/function_spec.rb
|
955
|
+
- spec/integration/serverless/v1/service_spec.rb
|
956
|
+
- spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb
|
957
|
+
- spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb
|
958
|
+
- spec/integration/studio/v1/flow/engagement/step_spec.rb
|
959
|
+
- spec/integration/studio/v1/flow/engagement_spec.rb
|
960
|
+
- spec/integration/studio/v1/flow/execution/execution_context_spec.rb
|
961
|
+
- spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb
|
962
|
+
- spec/integration/studio/v1/flow/execution/execution_step_spec.rb
|
963
|
+
- spec/integration/studio/v1/flow/execution_spec.rb
|
964
|
+
- spec/integration/studio/v1/flow_spec.rb
|
965
|
+
- spec/integration/studio/v2/flow/execution/execution_context_spec.rb
|
966
|
+
- spec/integration/studio/v2/flow/execution/execution_step/execution_step_context_spec.rb
|
967
|
+
- spec/integration/studio/v2/flow/execution/execution_step_spec.rb
|
968
|
+
- spec/integration/studio/v2/flow/execution_spec.rb
|
969
|
+
- spec/integration/studio/v2/flow/flow_revision_spec.rb
|
970
|
+
- spec/integration/studio/v2/flow/test_user_spec.rb
|
971
|
+
- spec/integration/studio/v2/flow_spec.rb
|
972
|
+
- spec/integration/studio/v2/flow_validate_spec.rb
|
973
|
+
- spec/integration/supersim/v1/command_spec.rb
|
974
|
+
- spec/integration/supersim/v1/fleet_spec.rb
|
975
|
+
- spec/integration/supersim/v1/network_access_profile/network_access_profile_network_spec.rb
|
976
|
+
- spec/integration/supersim/v1/network_access_profile_spec.rb
|
977
|
+
- spec/integration/supersim/v1/network_spec.rb
|
978
|
+
- spec/integration/supersim/v1/sim_spec.rb
|
979
|
+
- spec/integration/supersim/v1/usage_record_spec.rb
|
980
|
+
- spec/integration/sync/v1/service/document/document_permission_spec.rb
|
981
|
+
- spec/integration/sync/v1/service/document_spec.rb
|
982
|
+
- spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb
|
983
|
+
- spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb
|
984
|
+
- spec/integration/sync/v1/service/sync_list_spec.rb
|
985
|
+
- spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb
|
986
|
+
- spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb
|
987
|
+
- spec/integration/sync/v1/service/sync_map_spec.rb
|
988
|
+
- spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb
|
989
|
+
- spec/integration/sync/v1/service/sync_stream_spec.rb
|
990
|
+
- spec/integration/sync/v1/service_spec.rb
|
991
|
+
- spec/integration/taskrouter/v1/workspace/activity_spec.rb
|
992
|
+
- spec/integration/taskrouter/v1/workspace/event_spec.rb
|
993
|
+
- spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb
|
994
|
+
- spec/integration/taskrouter/v1/workspace/task_channel_spec.rb
|
995
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb
|
996
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb
|
997
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb
|
998
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb
|
999
|
+
- spec/integration/taskrouter/v1/workspace/task_queue_spec.rb
|
1000
|
+
- spec/integration/taskrouter/v1/workspace/task_spec.rb
|
1001
|
+
- spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb
|
1002
|
+
- spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb
|
1003
|
+
- spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb
|
1004
|
+
- spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb
|
1005
|
+
- spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb
|
1006
|
+
- spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb
|
1007
|
+
- spec/integration/taskrouter/v1/workspace/worker_spec.rb
|
1008
|
+
- spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb
|
1009
|
+
- spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb
|
1010
|
+
- spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb
|
1011
|
+
- spec/integration/taskrouter/v1/workspace/workflow_spec.rb
|
1012
|
+
- spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb
|
1013
|
+
- spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb
|
1014
|
+
- spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb
|
1015
|
+
- spec/integration/taskrouter/v1/workspace_spec.rb
|
1016
|
+
- spec/integration/trunking/v1/trunk/credential_list_spec.rb
|
1017
|
+
- spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb
|
1018
|
+
- spec/integration/trunking/v1/trunk/origination_url_spec.rb
|
1019
|
+
- spec/integration/trunking/v1/trunk/phone_number_spec.rb
|
1020
|
+
- spec/integration/trunking/v1/trunk_spec.rb
|
1021
|
+
- spec/integration/verify/v2/form_spec.rb
|
1022
|
+
- spec/integration/verify/v2/service/access_token_spec.rb
|
1023
|
+
- spec/integration/verify/v2/service/entity/challenge_spec.rb
|
1024
|
+
- spec/integration/verify/v2/service/entity/factor_spec.rb
|
1025
|
+
- spec/integration/verify/v2/service/entity_spec.rb
|
1026
|
+
- spec/integration/verify/v2/service/messaging_configuration_spec.rb
|
1027
|
+
- spec/integration/verify/v2/service/rate_limit/bucket_spec.rb
|
1028
|
+
- spec/integration/verify/v2/service/rate_limit_spec.rb
|
1029
|
+
- spec/integration/verify/v2/service/verification_check_spec.rb
|
1030
|
+
- spec/integration/verify/v2/service/verification_spec.rb
|
1031
|
+
- spec/integration/verify/v2/service/webhook_spec.rb
|
1032
|
+
- spec/integration/verify/v2/service_spec.rb
|
1033
|
+
- spec/integration/video/v1/composition_hook_spec.rb
|
1034
|
+
- spec/integration/video/v1/composition_settings_spec.rb
|
1035
|
+
- spec/integration/video/v1/composition_spec.rb
|
1036
|
+
- spec/integration/video/v1/recording_settings_spec.rb
|
1037
|
+
- spec/integration/video/v1/recording_spec.rb
|
1038
|
+
- spec/integration/video/v1/room/recording_spec.rb
|
1039
|
+
- spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb
|
1040
|
+
- spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb
|
1041
|
+
- spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb
|
1042
|
+
- spec/integration/video/v1/room/room_participant_spec.rb
|
1043
|
+
- spec/integration/video/v1/room_spec.rb
|
1044
|
+
- spec/integration/voice/v1/byoc_trunk_spec.rb
|
1045
|
+
- spec/integration/voice/v1/connection_policy/connection_policy_target_spec.rb
|
1046
|
+
- spec/integration/voice/v1/connection_policy_spec.rb
|
1047
|
+
- spec/integration/voice/v1/dialing_permissions/bulk_country_update_spec.rb
|
1048
|
+
- spec/integration/voice/v1/dialing_permissions/country/highrisk_special_prefix_spec.rb
|
1049
|
+
- spec/integration/voice/v1/dialing_permissions/country_spec.rb
|
1050
|
+
- spec/integration/voice/v1/dialing_permissions/settings_spec.rb
|
1051
|
+
- spec/integration/voice/v1/dialing_permissions_spec.rb
|
1052
|
+
- spec/integration/voice/v1/ip_record_spec.rb
|
1053
|
+
- spec/integration/voice/v1/source_ip_mapping_spec.rb
|
1054
|
+
- spec/integration/wireless/v1/command_spec.rb
|
1055
|
+
- spec/integration/wireless/v1/rate_plan_spec.rb
|
1056
|
+
- spec/integration/wireless/v1/sim/data_session_spec.rb
|
1057
|
+
- spec/integration/wireless/v1/sim/usage_record_spec.rb
|
1058
|
+
- spec/integration/wireless/v1/sim_spec.rb
|
1059
|
+
- spec/integration/wireless/v1/usage_record_spec.rb
|
1060
|
+
- spec/jwt/access_token_spec.rb
|
1061
|
+
- spec/jwt/client_capability_spec.rb
|
1062
|
+
- spec/jwt/task_router_spec.rb
|
239
1063
|
- spec/rack/twilio_webhook_authentication_spec.rb
|
240
|
-
- spec/rest/account_spec.rb
|
241
|
-
- spec/rest/address_spec.rb
|
242
|
-
- spec/rest/call_feedback_spec.rb
|
243
|
-
- spec/rest/call_feedback_summary_spec.rb
|
244
|
-
- spec/rest/call_spec.rb
|
245
1064
|
- spec/rest/client_spec.rb
|
246
|
-
- spec/
|
247
|
-
- spec/rest/instance_resource_spec.rb
|
248
|
-
- spec/rest/ip-messaging/channel_spec.rb
|
249
|
-
- spec/rest/ip-messaging/service_spec.rb
|
250
|
-
- spec/rest/ip_messaging_client_spec.rb
|
251
|
-
- spec/rest/key_spec.rb
|
252
|
-
- spec/rest/lookups/phone_number_spec.rb
|
253
|
-
- spec/rest/message_spec.rb
|
254
|
-
- spec/rest/monitor_client_spec.rb
|
255
|
-
- spec/rest/numbers_spec.rb
|
256
|
-
- spec/rest/pricing_client_spec.rb
|
257
|
-
- spec/rest/queue_spec.rb
|
258
|
-
- spec/rest/recording_spec.rb
|
259
|
-
- spec/rest/sms/message_spec.rb
|
260
|
-
- spec/rest/sms/messages_spec.rb
|
261
|
-
- spec/rest/task_router/reservation_spec.rb
|
262
|
-
- spec/rest/task_router/statistics_spec.rb
|
263
|
-
- spec/rest/task_router/task_queue_spec.rb
|
264
|
-
- spec/rest/token_spec.rb
|
265
|
-
- spec/rest/trunking/trunk_spec.rb
|
266
|
-
- spec/rest/utils_spec.rb
|
1065
|
+
- spec/security/request_validator_spec.rb
|
267
1066
|
- spec/spec_helper.rb
|
268
1067
|
- spec/support/fakeweb.rb
|
269
|
-
- spec/task_router/workflow_builder_spec.rb
|
270
|
-
- spec/task_router_deprecated_spec.rb
|
271
|
-
- spec/task_router_spec.rb
|
272
|
-
- spec/task_router_taskqueue_spec.rb
|
273
|
-
- spec/task_router_worker_spec.rb
|
274
|
-
- spec/task_router_workspace_spec.rb
|
275
1068
|
- spec/twilio_spec.rb
|
276
|
-
- spec/
|
277
|
-
- spec/
|
278
|
-
- spec/util/client_config_spec.rb
|
1069
|
+
- spec/twiml/messaging_response_spec.rb
|
1070
|
+
- spec/twiml/voice_response_spec.rb
|
279
1071
|
- spec/util/configuration_spec.rb
|
280
|
-
- spec/util/request_validator_spec.rb
|
281
1072
|
- spec/util/url_encode_spec.rb
|
282
1073
|
- twilio-ruby.gemspec
|
283
|
-
homepage:
|
1074
|
+
homepage: https://github.com/twilio/twilio-ruby
|
284
1075
|
licenses:
|
285
1076
|
- MIT
|
286
|
-
metadata:
|
1077
|
+
metadata:
|
1078
|
+
yard.run: yri
|
287
1079
|
post_install_message:
|
288
1080
|
rdoc_options:
|
289
|
-
- --line-numbers
|
290
|
-
- --inline-source
|
291
|
-
- --title
|
1081
|
+
- "--line-numbers"
|
1082
|
+
- "--inline-source"
|
1083
|
+
- "--title"
|
292
1084
|
- twilio-ruby
|
293
|
-
- --main
|
1085
|
+
- "--main"
|
294
1086
|
- README.md
|
295
1087
|
require_paths:
|
296
1088
|
- lib
|
297
1089
|
required_ruby_version: !ruby/object:Gem::Requirement
|
298
1090
|
requirements:
|
299
|
-
- -
|
1091
|
+
- - ">="
|
300
1092
|
- !ruby/object:Gem::Version
|
301
|
-
version:
|
1093
|
+
version: 2.0.0
|
302
1094
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
303
1095
|
requirements:
|
304
|
-
- -
|
1096
|
+
- - ">="
|
305
1097
|
- !ruby/object:Gem::Version
|
306
1098
|
version: '0'
|
307
1099
|
requirements: []
|
308
|
-
|
309
|
-
rubygems_version: 2.0.14.1
|
1100
|
+
rubygems_version: 3.0.8
|
310
1101
|
signing_key:
|
311
1102
|
specification_version: 4
|
312
|
-
summary:
|
313
|
-
and generating Twilio
|
1103
|
+
summary: The official library for communicating with the Twilio REST API, building
|
1104
|
+
TwiML, and generating Twilio JWT Capability Tokens
|
314
1105
|
test_files:
|
1106
|
+
- spec/framework/request_spec.rb
|
1107
|
+
- spec/framework/serialize_spec.rb
|
1108
|
+
- spec/framework/version_spec.rb
|
1109
|
+
- spec/holodeck/holodeck.rb
|
1110
|
+
- spec/holodeck/hologram.rb
|
1111
|
+
- spec/http/http_client_spec.rb
|
1112
|
+
- spec/integration/accounts/v1/credential/aws_spec.rb
|
1113
|
+
- spec/integration/accounts/v1/credential/public_key_spec.rb
|
1114
|
+
- spec/integration/accounts/v1/credential_spec.rb
|
1115
|
+
- spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb
|
1116
|
+
- spec/integration/api/v2010/account/address_spec.rb
|
1117
|
+
- spec/integration/api/v2010/account/application_spec.rb
|
1118
|
+
- spec/integration/api/v2010/account/authorized_connect_app_spec.rb
|
1119
|
+
- spec/integration/api/v2010/account/available_phone_number/local_spec.rb
|
1120
|
+
- spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb
|
1121
|
+
- spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb
|
1122
|
+
- spec/integration/api/v2010/account/available_phone_number/national_spec.rb
|
1123
|
+
- spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb
|
1124
|
+
- spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb
|
1125
|
+
- spec/integration/api/v2010/account/available_phone_number/voip_spec.rb
|
1126
|
+
- spec/integration/api/v2010/account/available_phone_number_spec.rb
|
1127
|
+
- spec/integration/api/v2010/account/balance_spec.rb
|
1128
|
+
- spec/integration/api/v2010/account/call/feedback_spec.rb
|
1129
|
+
- spec/integration/api/v2010/account/call/feedback_summary_spec.rb
|
1130
|
+
- spec/integration/api/v2010/account/call/notification_spec.rb
|
1131
|
+
- spec/integration/api/v2010/account/call/payment_spec.rb
|
1132
|
+
- spec/integration/api/v2010/account/call/recording_spec.rb
|
1133
|
+
- spec/integration/api/v2010/account/call_spec.rb
|
1134
|
+
- spec/integration/api/v2010/account/conference/participant_spec.rb
|
1135
|
+
- spec/integration/api/v2010/account/conference/recording_spec.rb
|
1136
|
+
- spec/integration/api/v2010/account/conference_spec.rb
|
1137
|
+
- spec/integration/api/v2010/account/connect_app_spec.rb
|
1138
|
+
- spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb
|
1139
|
+
- spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb
|
1140
|
+
- spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb
|
1141
|
+
- spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb
|
1142
|
+
- spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb
|
1143
|
+
- spec/integration/api/v2010/account/incoming_phone_number_spec.rb
|
1144
|
+
- spec/integration/api/v2010/account/key_spec.rb
|
1145
|
+
- spec/integration/api/v2010/account/message/feedback_spec.rb
|
1146
|
+
- spec/integration/api/v2010/account/message/media_spec.rb
|
1147
|
+
- spec/integration/api/v2010/account/message_spec.rb
|
1148
|
+
- spec/integration/api/v2010/account/new_key_spec.rb
|
1149
|
+
- spec/integration/api/v2010/account/new_signing_key_spec.rb
|
1150
|
+
- spec/integration/api/v2010/account/notification_spec.rb
|
1151
|
+
- spec/integration/api/v2010/account/outgoing_caller_id_spec.rb
|
1152
|
+
- spec/integration/api/v2010/account/queue/member_spec.rb
|
1153
|
+
- spec/integration/api/v2010/account/queue_spec.rb
|
1154
|
+
- spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb
|
1155
|
+
- spec/integration/api/v2010/account/recording/add_on_result_spec.rb
|
1156
|
+
- spec/integration/api/v2010/account/recording/transcription_spec.rb
|
1157
|
+
- spec/integration/api/v2010/account/recording_spec.rb
|
1158
|
+
- spec/integration/api/v2010/account/short_code_spec.rb
|
1159
|
+
- spec/integration/api/v2010/account/signing_key_spec.rb
|
1160
|
+
- spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb
|
1161
|
+
- spec/integration/api/v2010/account/sip/credential_list_spec.rb
|
1162
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb
|
1163
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb
|
1164
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping_spec.rb
|
1165
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping_spec.rb
|
1166
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping_spec.rb
|
1167
|
+
- spec/integration/api/v2010/account/sip/domain/auth_types_spec.rb
|
1168
|
+
- spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb
|
1169
|
+
- spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb
|
1170
|
+
- spec/integration/api/v2010/account/sip/domain_spec.rb
|
1171
|
+
- spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb
|
1172
|
+
- spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb
|
1173
|
+
- spec/integration/api/v2010/account/sip_spec.rb
|
1174
|
+
- spec/integration/api/v2010/account/token_spec.rb
|
1175
|
+
- spec/integration/api/v2010/account/transcription_spec.rb
|
1176
|
+
- spec/integration/api/v2010/account/usage/record/all_time_spec.rb
|
1177
|
+
- spec/integration/api/v2010/account/usage/record/daily_spec.rb
|
1178
|
+
- spec/integration/api/v2010/account/usage/record/last_month_spec.rb
|
1179
|
+
- spec/integration/api/v2010/account/usage/record/monthly_spec.rb
|
1180
|
+
- spec/integration/api/v2010/account/usage/record/this_month_spec.rb
|
1181
|
+
- spec/integration/api/v2010/account/usage/record/today_spec.rb
|
1182
|
+
- spec/integration/api/v2010/account/usage/record/yearly_spec.rb
|
1183
|
+
- spec/integration/api/v2010/account/usage/record/yesterday_spec.rb
|
1184
|
+
- spec/integration/api/v2010/account/usage/record_spec.rb
|
1185
|
+
- spec/integration/api/v2010/account/usage/trigger_spec.rb
|
1186
|
+
- spec/integration/api/v2010/account/usage_spec.rb
|
1187
|
+
- spec/integration/api/v2010/account/validation_request_spec.rb
|
1188
|
+
- spec/integration/api/v2010/account_spec.rb
|
1189
|
+
- spec/integration/autopilot/v1/assistant/defaults_spec.rb
|
1190
|
+
- spec/integration/autopilot/v1/assistant/dialogue_spec.rb
|
1191
|
+
- spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb
|
1192
|
+
- spec/integration/autopilot/v1/assistant/field_type_spec.rb
|
1193
|
+
- spec/integration/autopilot/v1/assistant/model_build_spec.rb
|
1194
|
+
- spec/integration/autopilot/v1/assistant/query_spec.rb
|
1195
|
+
- spec/integration/autopilot/v1/assistant/style_sheet_spec.rb
|
1196
|
+
- spec/integration/autopilot/v1/assistant/task/field_spec.rb
|
1197
|
+
- spec/integration/autopilot/v1/assistant/task/sample_spec.rb
|
1198
|
+
- spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb
|
1199
|
+
- spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb
|
1200
|
+
- spec/integration/autopilot/v1/assistant/task_spec.rb
|
1201
|
+
- spec/integration/autopilot/v1/assistant/webhook_spec.rb
|
1202
|
+
- spec/integration/autopilot/v1/assistant_spec.rb
|
1203
|
+
- spec/integration/autopilot/v1/restore_assistant_spec.rb
|
1204
|
+
- spec/integration/bulkexports/v1/export/day_spec.rb
|
1205
|
+
- spec/integration/bulkexports/v1/export/export_custom_job_spec.rb
|
1206
|
+
- spec/integration/bulkexports/v1/export/job_spec.rb
|
1207
|
+
- spec/integration/bulkexports/v1/export_configuration_spec.rb
|
1208
|
+
- spec/integration/bulkexports/v1/export_spec.rb
|
1209
|
+
- spec/integration/chat/v1/credential_spec.rb
|
1210
|
+
- spec/integration/chat/v1/service/channel/invite_spec.rb
|
1211
|
+
- spec/integration/chat/v1/service/channel/member_spec.rb
|
1212
|
+
- spec/integration/chat/v1/service/channel/message_spec.rb
|
1213
|
+
- spec/integration/chat/v1/service/channel_spec.rb
|
1214
|
+
- spec/integration/chat/v1/service/role_spec.rb
|
1215
|
+
- spec/integration/chat/v1/service/user/user_channel_spec.rb
|
1216
|
+
- spec/integration/chat/v1/service/user_spec.rb
|
1217
|
+
- spec/integration/chat/v1/service_spec.rb
|
1218
|
+
- spec/integration/chat/v2/credential_spec.rb
|
1219
|
+
- spec/integration/chat/v2/service/binding_spec.rb
|
1220
|
+
- spec/integration/chat/v2/service/channel/invite_spec.rb
|
1221
|
+
- spec/integration/chat/v2/service/channel/member_spec.rb
|
1222
|
+
- spec/integration/chat/v2/service/channel/message_spec.rb
|
1223
|
+
- spec/integration/chat/v2/service/channel/webhook_spec.rb
|
1224
|
+
- spec/integration/chat/v2/service/channel_spec.rb
|
1225
|
+
- spec/integration/chat/v2/service/role_spec.rb
|
1226
|
+
- spec/integration/chat/v2/service/user/user_binding_spec.rb
|
1227
|
+
- spec/integration/chat/v2/service/user/user_channel_spec.rb
|
1228
|
+
- spec/integration/chat/v2/service/user_spec.rb
|
1229
|
+
- spec/integration/chat/v2/service_spec.rb
|
1230
|
+
- spec/integration/conversations/v1/conversation/message/delivery_receipt_spec.rb
|
1231
|
+
- spec/integration/conversations/v1/conversation/message_spec.rb
|
1232
|
+
- spec/integration/conversations/v1/conversation/participant_spec.rb
|
1233
|
+
- spec/integration/conversations/v1/conversation/webhook_spec.rb
|
1234
|
+
- spec/integration/conversations/v1/conversation_spec.rb
|
1235
|
+
- spec/integration/conversations/v1/webhook_spec.rb
|
1236
|
+
- spec/integration/events/v1/sink/sink_test_spec.rb
|
1237
|
+
- spec/integration/events/v1/sink/sink_validate_spec.rb
|
1238
|
+
- spec/integration/events/v1/sink_spec.rb
|
1239
|
+
- spec/integration/events/v1/subscription/subscribed_event_spec.rb
|
1240
|
+
- spec/integration/events/v1/subscription_spec.rb
|
1241
|
+
- spec/integration/fax/v1/fax/fax_media_spec.rb
|
1242
|
+
- spec/integration/fax/v1/fax_spec.rb
|
1243
|
+
- spec/integration/flex_api/v1/channel_spec.rb
|
1244
|
+
- spec/integration/flex_api/v1/configuration_spec.rb
|
1245
|
+
- spec/integration/flex_api/v1/flex_flow_spec.rb
|
1246
|
+
- spec/integration/flex_api/v1/web_channel_spec.rb
|
1247
|
+
- spec/integration/insights/v1/call/event_spec.rb
|
1248
|
+
- spec/integration/insights/v1/call/metric_spec.rb
|
1249
|
+
- spec/integration/insights/v1/call/summary_spec.rb
|
1250
|
+
- spec/integration/insights/v1/call_spec.rb
|
1251
|
+
- spec/integration/ip_messaging/v1/credential_spec.rb
|
1252
|
+
- spec/integration/ip_messaging/v1/service/channel/invite_spec.rb
|
1253
|
+
- spec/integration/ip_messaging/v1/service/channel/member_spec.rb
|
1254
|
+
- spec/integration/ip_messaging/v1/service/channel/message_spec.rb
|
1255
|
+
- spec/integration/ip_messaging/v1/service/channel_spec.rb
|
1256
|
+
- spec/integration/ip_messaging/v1/service/role_spec.rb
|
1257
|
+
- spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb
|
1258
|
+
- spec/integration/ip_messaging/v1/service/user_spec.rb
|
1259
|
+
- spec/integration/ip_messaging/v1/service_spec.rb
|
1260
|
+
- spec/integration/ip_messaging/v2/credential_spec.rb
|
1261
|
+
- spec/integration/ip_messaging/v2/service/binding_spec.rb
|
1262
|
+
- spec/integration/ip_messaging/v2/service/channel/invite_spec.rb
|
1263
|
+
- spec/integration/ip_messaging/v2/service/channel/member_spec.rb
|
1264
|
+
- spec/integration/ip_messaging/v2/service/channel/message_spec.rb
|
1265
|
+
- spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb
|
1266
|
+
- spec/integration/ip_messaging/v2/service/channel_spec.rb
|
1267
|
+
- spec/integration/ip_messaging/v2/service/role_spec.rb
|
1268
|
+
- spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb
|
1269
|
+
- spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb
|
1270
|
+
- spec/integration/ip_messaging/v2/service/user_spec.rb
|
1271
|
+
- spec/integration/ip_messaging/v2/service_spec.rb
|
1272
|
+
- spec/integration/lookups/v1/phone_number_spec.rb
|
1273
|
+
- spec/integration/messaging/v1/service/alpha_sender_spec.rb
|
1274
|
+
- spec/integration/messaging/v1/service/phone_number_spec.rb
|
1275
|
+
- spec/integration/messaging/v1/service/short_code_spec.rb
|
1276
|
+
- spec/integration/messaging/v1/service_spec.rb
|
1277
|
+
- spec/integration/monitor/v1/alert_spec.rb
|
1278
|
+
- spec/integration/monitor/v1/event_spec.rb
|
1279
|
+
- spec/integration/notify/v1/credential_spec.rb
|
1280
|
+
- spec/integration/notify/v1/service/binding_spec.rb
|
1281
|
+
- spec/integration/notify/v1/service/notification_spec.rb
|
1282
|
+
- spec/integration/notify/v1/service_spec.rb
|
1283
|
+
- spec/integration/numbers/v2/regulatory_compliance/bundle/evaluation_spec.rb
|
1284
|
+
- spec/integration/numbers/v2/regulatory_compliance/bundle/item_assignment_spec.rb
|
1285
|
+
- spec/integration/numbers/v2/regulatory_compliance/bundle_spec.rb
|
1286
|
+
- spec/integration/numbers/v2/regulatory_compliance/end_user_spec.rb
|
1287
|
+
- spec/integration/numbers/v2/regulatory_compliance/end_user_type_spec.rb
|
1288
|
+
- spec/integration/numbers/v2/regulatory_compliance/regulation_spec.rb
|
1289
|
+
- spec/integration/numbers/v2/regulatory_compliance/supporting_document_spec.rb
|
1290
|
+
- spec/integration/numbers/v2/regulatory_compliance/supporting_document_type_spec.rb
|
1291
|
+
- spec/integration/numbers/v2/regulatory_compliance_spec.rb
|
1292
|
+
- spec/integration/preview/bulk_exports/export/day_spec.rb
|
1293
|
+
- spec/integration/preview/bulk_exports/export/export_custom_job_spec.rb
|
1294
|
+
- spec/integration/preview/bulk_exports/export/job_spec.rb
|
1295
|
+
- spec/integration/preview/bulk_exports/export_configuration_spec.rb
|
1296
|
+
- spec/integration/preview/bulk_exports/export_spec.rb
|
1297
|
+
- spec/integration/preview/deployed_devices/fleet/certificate_spec.rb
|
1298
|
+
- spec/integration/preview/deployed_devices/fleet/deployment_spec.rb
|
1299
|
+
- spec/integration/preview/deployed_devices/fleet/device_spec.rb
|
1300
|
+
- spec/integration/preview/deployed_devices/fleet/key_spec.rb
|
1301
|
+
- spec/integration/preview/deployed_devices/fleet_spec.rb
|
1302
|
+
- spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb
|
1303
|
+
- spec/integration/preview/hosted_numbers/authorization_document_spec.rb
|
1304
|
+
- spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb
|
1305
|
+
- spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb
|
1306
|
+
- spec/integration/preview/marketplace/available_add_on_spec.rb
|
1307
|
+
- spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb
|
1308
|
+
- spec/integration/preview/marketplace/installed_add_on_spec.rb
|
1309
|
+
- spec/integration/preview/sync/service/document/document_permission_spec.rb
|
1310
|
+
- spec/integration/preview/sync/service/document_spec.rb
|
1311
|
+
- spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb
|
1312
|
+
- spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb
|
1313
|
+
- spec/integration/preview/sync/service/sync_list_spec.rb
|
1314
|
+
- spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb
|
1315
|
+
- spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb
|
1316
|
+
- spec/integration/preview/sync/service/sync_map_spec.rb
|
1317
|
+
- spec/integration/preview/sync/service_spec.rb
|
1318
|
+
- spec/integration/preview/trusted_comms/branded_call_spec.rb
|
1319
|
+
- spec/integration/preview/trusted_comms/brands_information_spec.rb
|
1320
|
+
- spec/integration/preview/trusted_comms/business/brand/branded_channel/channel_spec.rb
|
1321
|
+
- spec/integration/preview/trusted_comms/business/brand/branded_channel_spec.rb
|
1322
|
+
- spec/integration/preview/trusted_comms/business/brand_spec.rb
|
1323
|
+
- spec/integration/preview/trusted_comms/business/insights/impressions_rate_spec.rb
|
1324
|
+
- spec/integration/preview/trusted_comms/business/insights_spec.rb
|
1325
|
+
- spec/integration/preview/trusted_comms/business_spec.rb
|
1326
|
+
- spec/integration/preview/trusted_comms/cps_spec.rb
|
1327
|
+
- spec/integration/preview/trusted_comms/current_call_spec.rb
|
1328
|
+
- spec/integration/preview/trusted_comms/phone_call_spec.rb
|
1329
|
+
- spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb
|
1330
|
+
- spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb
|
1331
|
+
- spec/integration/preview/understand/assistant/dialogue_spec.rb
|
1332
|
+
- spec/integration/preview/understand/assistant/field_type/field_value_spec.rb
|
1333
|
+
- spec/integration/preview/understand/assistant/field_type_spec.rb
|
1334
|
+
- spec/integration/preview/understand/assistant/model_build_spec.rb
|
1335
|
+
- spec/integration/preview/understand/assistant/query_spec.rb
|
1336
|
+
- spec/integration/preview/understand/assistant/style_sheet_spec.rb
|
1337
|
+
- spec/integration/preview/understand/assistant/task/field_spec.rb
|
1338
|
+
- spec/integration/preview/understand/assistant/task/sample_spec.rb
|
1339
|
+
- spec/integration/preview/understand/assistant/task/task_actions_spec.rb
|
1340
|
+
- spec/integration/preview/understand/assistant/task/task_statistics_spec.rb
|
1341
|
+
- spec/integration/preview/understand/assistant/task_spec.rb
|
1342
|
+
- spec/integration/preview/understand/assistant_spec.rb
|
1343
|
+
- spec/integration/preview/wireless/command_spec.rb
|
1344
|
+
- spec/integration/preview/wireless/rate_plan_spec.rb
|
1345
|
+
- spec/integration/preview/wireless/sim/usage_spec.rb
|
1346
|
+
- spec/integration/preview/wireless/sim_spec.rb
|
1347
|
+
- spec/integration/pricing/v1/messaging/country_spec.rb
|
1348
|
+
- spec/integration/pricing/v1/messaging_spec.rb
|
1349
|
+
- spec/integration/pricing/v1/phone_number/country_spec.rb
|
1350
|
+
- spec/integration/pricing/v1/phone_number_spec.rb
|
1351
|
+
- spec/integration/pricing/v1/voice/country_spec.rb
|
1352
|
+
- spec/integration/pricing/v1/voice/number_spec.rb
|
1353
|
+
- spec/integration/pricing/v1/voice_spec.rb
|
1354
|
+
- spec/integration/pricing/v2/voice/country_spec.rb
|
1355
|
+
- spec/integration/pricing/v2/voice/number_spec.rb
|
1356
|
+
- spec/integration/pricing/v2/voice_spec.rb
|
1357
|
+
- spec/integration/proxy/v1/service/phone_number_spec.rb
|
1358
|
+
- spec/integration/proxy/v1/service/session/interaction_spec.rb
|
1359
|
+
- spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb
|
1360
|
+
- spec/integration/proxy/v1/service/session/participant_spec.rb
|
1361
|
+
- spec/integration/proxy/v1/service/session_spec.rb
|
1362
|
+
- spec/integration/proxy/v1/service/short_code_spec.rb
|
1363
|
+
- spec/integration/proxy/v1/service_spec.rb
|
1364
|
+
- spec/integration/serverless/v1/service/asset/asset_version_spec.rb
|
1365
|
+
- spec/integration/serverless/v1/service/asset_spec.rb
|
1366
|
+
- spec/integration/serverless/v1/service/build_spec.rb
|
1367
|
+
- spec/integration/serverless/v1/service/environment/deployment_spec.rb
|
1368
|
+
- spec/integration/serverless/v1/service/environment/log_spec.rb
|
1369
|
+
- spec/integration/serverless/v1/service/environment/variable_spec.rb
|
1370
|
+
- spec/integration/serverless/v1/service/environment_spec.rb
|
1371
|
+
- spec/integration/serverless/v1/service/function/function_version/function_version_content_spec.rb
|
1372
|
+
- spec/integration/serverless/v1/service/function/function_version_spec.rb
|
1373
|
+
- spec/integration/serverless/v1/service/function_spec.rb
|
1374
|
+
- spec/integration/serverless/v1/service_spec.rb
|
1375
|
+
- spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb
|
1376
|
+
- spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb
|
1377
|
+
- spec/integration/studio/v1/flow/engagement/step_spec.rb
|
1378
|
+
- spec/integration/studio/v1/flow/engagement_spec.rb
|
1379
|
+
- spec/integration/studio/v1/flow/execution/execution_context_spec.rb
|
1380
|
+
- spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb
|
1381
|
+
- spec/integration/studio/v1/flow/execution/execution_step_spec.rb
|
1382
|
+
- spec/integration/studio/v1/flow/execution_spec.rb
|
1383
|
+
- spec/integration/studio/v1/flow_spec.rb
|
1384
|
+
- spec/integration/studio/v2/flow/execution/execution_context_spec.rb
|
1385
|
+
- spec/integration/studio/v2/flow/execution/execution_step/execution_step_context_spec.rb
|
1386
|
+
- spec/integration/studio/v2/flow/execution/execution_step_spec.rb
|
1387
|
+
- spec/integration/studio/v2/flow/execution_spec.rb
|
1388
|
+
- spec/integration/studio/v2/flow/flow_revision_spec.rb
|
1389
|
+
- spec/integration/studio/v2/flow/test_user_spec.rb
|
1390
|
+
- spec/integration/studio/v2/flow_spec.rb
|
1391
|
+
- spec/integration/studio/v2/flow_validate_spec.rb
|
1392
|
+
- spec/integration/supersim/v1/command_spec.rb
|
1393
|
+
- spec/integration/supersim/v1/fleet_spec.rb
|
1394
|
+
- spec/integration/supersim/v1/network_access_profile/network_access_profile_network_spec.rb
|
1395
|
+
- spec/integration/supersim/v1/network_access_profile_spec.rb
|
1396
|
+
- spec/integration/supersim/v1/network_spec.rb
|
1397
|
+
- spec/integration/supersim/v1/sim_spec.rb
|
1398
|
+
- spec/integration/supersim/v1/usage_record_spec.rb
|
1399
|
+
- spec/integration/sync/v1/service/document/document_permission_spec.rb
|
1400
|
+
- spec/integration/sync/v1/service/document_spec.rb
|
1401
|
+
- spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb
|
1402
|
+
- spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb
|
1403
|
+
- spec/integration/sync/v1/service/sync_list_spec.rb
|
1404
|
+
- spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb
|
1405
|
+
- spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb
|
1406
|
+
- spec/integration/sync/v1/service/sync_map_spec.rb
|
1407
|
+
- spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb
|
1408
|
+
- spec/integration/sync/v1/service/sync_stream_spec.rb
|
1409
|
+
- spec/integration/sync/v1/service_spec.rb
|
1410
|
+
- spec/integration/taskrouter/v1/workspace/activity_spec.rb
|
1411
|
+
- spec/integration/taskrouter/v1/workspace/event_spec.rb
|
1412
|
+
- spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb
|
1413
|
+
- spec/integration/taskrouter/v1/workspace/task_channel_spec.rb
|
1414
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb
|
1415
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb
|
1416
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb
|
1417
|
+
- spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb
|
1418
|
+
- spec/integration/taskrouter/v1/workspace/task_queue_spec.rb
|
1419
|
+
- spec/integration/taskrouter/v1/workspace/task_spec.rb
|
1420
|
+
- spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb
|
1421
|
+
- spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb
|
1422
|
+
- spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb
|
1423
|
+
- spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb
|
1424
|
+
- spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb
|
1425
|
+
- spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb
|
1426
|
+
- spec/integration/taskrouter/v1/workspace/worker_spec.rb
|
1427
|
+
- spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb
|
1428
|
+
- spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb
|
1429
|
+
- spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb
|
1430
|
+
- spec/integration/taskrouter/v1/workspace/workflow_spec.rb
|
1431
|
+
- spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb
|
1432
|
+
- spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb
|
1433
|
+
- spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb
|
1434
|
+
- spec/integration/taskrouter/v1/workspace_spec.rb
|
1435
|
+
- spec/integration/trunking/v1/trunk/credential_list_spec.rb
|
1436
|
+
- spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb
|
1437
|
+
- spec/integration/trunking/v1/trunk/origination_url_spec.rb
|
1438
|
+
- spec/integration/trunking/v1/trunk/phone_number_spec.rb
|
1439
|
+
- spec/integration/trunking/v1/trunk_spec.rb
|
1440
|
+
- spec/integration/verify/v2/form_spec.rb
|
1441
|
+
- spec/integration/verify/v2/service/access_token_spec.rb
|
1442
|
+
- spec/integration/verify/v2/service/entity/challenge_spec.rb
|
1443
|
+
- spec/integration/verify/v2/service/entity/factor_spec.rb
|
1444
|
+
- spec/integration/verify/v2/service/entity_spec.rb
|
1445
|
+
- spec/integration/verify/v2/service/messaging_configuration_spec.rb
|
1446
|
+
- spec/integration/verify/v2/service/rate_limit/bucket_spec.rb
|
1447
|
+
- spec/integration/verify/v2/service/rate_limit_spec.rb
|
1448
|
+
- spec/integration/verify/v2/service/verification_check_spec.rb
|
1449
|
+
- spec/integration/verify/v2/service/verification_spec.rb
|
1450
|
+
- spec/integration/verify/v2/service/webhook_spec.rb
|
1451
|
+
- spec/integration/verify/v2/service_spec.rb
|
1452
|
+
- spec/integration/video/v1/composition_hook_spec.rb
|
1453
|
+
- spec/integration/video/v1/composition_settings_spec.rb
|
1454
|
+
- spec/integration/video/v1/composition_spec.rb
|
1455
|
+
- spec/integration/video/v1/recording_settings_spec.rb
|
1456
|
+
- spec/integration/video/v1/recording_spec.rb
|
1457
|
+
- spec/integration/video/v1/room/recording_spec.rb
|
1458
|
+
- spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb
|
1459
|
+
- spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb
|
1460
|
+
- spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb
|
1461
|
+
- spec/integration/video/v1/room/room_participant_spec.rb
|
1462
|
+
- spec/integration/video/v1/room_spec.rb
|
1463
|
+
- spec/integration/voice/v1/byoc_trunk_spec.rb
|
1464
|
+
- spec/integration/voice/v1/connection_policy/connection_policy_target_spec.rb
|
1465
|
+
- spec/integration/voice/v1/connection_policy_spec.rb
|
1466
|
+
- spec/integration/voice/v1/dialing_permissions/bulk_country_update_spec.rb
|
1467
|
+
- spec/integration/voice/v1/dialing_permissions/country/highrisk_special_prefix_spec.rb
|
1468
|
+
- spec/integration/voice/v1/dialing_permissions/country_spec.rb
|
1469
|
+
- spec/integration/voice/v1/dialing_permissions/settings_spec.rb
|
1470
|
+
- spec/integration/voice/v1/dialing_permissions_spec.rb
|
1471
|
+
- spec/integration/voice/v1/ip_record_spec.rb
|
1472
|
+
- spec/integration/voice/v1/source_ip_mapping_spec.rb
|
1473
|
+
- spec/integration/wireless/v1/command_spec.rb
|
1474
|
+
- spec/integration/wireless/v1/rate_plan_spec.rb
|
1475
|
+
- spec/integration/wireless/v1/sim/data_session_spec.rb
|
1476
|
+
- spec/integration/wireless/v1/sim/usage_record_spec.rb
|
1477
|
+
- spec/integration/wireless/v1/sim_spec.rb
|
1478
|
+
- spec/integration/wireless/v1/usage_record_spec.rb
|
1479
|
+
- spec/jwt/access_token_spec.rb
|
1480
|
+
- spec/jwt/client_capability_spec.rb
|
1481
|
+
- spec/jwt/task_router_spec.rb
|
315
1482
|
- spec/rack/twilio_webhook_authentication_spec.rb
|
316
|
-
- spec/rest/account_spec.rb
|
317
|
-
- spec/rest/address_spec.rb
|
318
|
-
- spec/rest/call_feedback_spec.rb
|
319
|
-
- spec/rest/call_feedback_summary_spec.rb
|
320
|
-
- spec/rest/call_spec.rb
|
321
1483
|
- spec/rest/client_spec.rb
|
322
|
-
- spec/
|
323
|
-
- spec/rest/instance_resource_spec.rb
|
324
|
-
- spec/rest/ip-messaging/channel_spec.rb
|
325
|
-
- spec/rest/ip-messaging/service_spec.rb
|
326
|
-
- spec/rest/ip_messaging_client_spec.rb
|
327
|
-
- spec/rest/key_spec.rb
|
328
|
-
- spec/rest/lookups/phone_number_spec.rb
|
329
|
-
- spec/rest/message_spec.rb
|
330
|
-
- spec/rest/monitor_client_spec.rb
|
331
|
-
- spec/rest/numbers_spec.rb
|
332
|
-
- spec/rest/pricing_client_spec.rb
|
333
|
-
- spec/rest/queue_spec.rb
|
334
|
-
- spec/rest/recording_spec.rb
|
335
|
-
- spec/rest/sms/message_spec.rb
|
336
|
-
- spec/rest/sms/messages_spec.rb
|
337
|
-
- spec/rest/task_router/reservation_spec.rb
|
338
|
-
- spec/rest/task_router/statistics_spec.rb
|
339
|
-
- spec/rest/task_router/task_queue_spec.rb
|
340
|
-
- spec/rest/token_spec.rb
|
341
|
-
- spec/rest/trunking/trunk_spec.rb
|
342
|
-
- spec/rest/utils_spec.rb
|
1484
|
+
- spec/security/request_validator_spec.rb
|
343
1485
|
- spec/spec_helper.rb
|
344
1486
|
- spec/support/fakeweb.rb
|
345
|
-
- spec/task_router/workflow_builder_spec.rb
|
346
|
-
- spec/task_router_deprecated_spec.rb
|
347
|
-
- spec/task_router_spec.rb
|
348
|
-
- spec/task_router_taskqueue_spec.rb
|
349
|
-
- spec/task_router_worker_spec.rb
|
350
|
-
- spec/task_router_workspace_spec.rb
|
351
1487
|
- spec/twilio_spec.rb
|
352
|
-
- spec/
|
353
|
-
- spec/
|
354
|
-
- spec/util/client_config_spec.rb
|
1488
|
+
- spec/twiml/messaging_response_spec.rb
|
1489
|
+
- spec/twiml/voice_response_spec.rb
|
355
1490
|
- spec/util/configuration_spec.rb
|
356
|
-
- spec/util/request_validator_spec.rb
|
357
1491
|
- spec/util/url_encode_spec.rb
|