twilio-ruby 4.13.0 → 5.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.rubocop.yml +40 -0
- data/.rubocop_todo.yml +187 -0
- data/.travis.yml +11 -21
- data/AUTHORS.md +46 -32
- data/CHANGES.md +400 -62
- data/CONTRIBUTING.md +159 -0
- data/Gemfile +2 -2
- data/ISSUE_TEMPLATE.md +26 -0
- data/LICENSE.md +12 -12
- data/Makefile +18 -4
- data/README.md +76 -146
- data/Rakefile +54 -0
- data/UPGRADE.md +30 -0
- data/VERSIONS.md +36 -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 +5 -6
- data/lib/twilio-ruby/framework/domain.rb +34 -0
- data/lib/twilio-ruby/framework/error.rb +33 -0
- data/lib/twilio-ruby/framework/helper.rb +9 -0
- data/lib/twilio-ruby/framework/obsolete_client.rb +10 -0
- data/lib/twilio-ruby/framework/page.rb +101 -0
- data/lib/twilio-ruby/framework/request.rb +39 -0
- data/lib/twilio-ruby/framework/resource.rb +21 -0
- data/lib/twilio-ruby/framework/response.rb +16 -0
- data/lib/twilio-ruby/framework/serialize.rb +79 -0
- data/lib/twilio-ruby/framework/twilio_response.rb +17 -0
- data/lib/twilio-ruby/framework/values.rb +7 -0
- data/lib/twilio-ruby/framework/version.rb +164 -0
- data/lib/twilio-ruby/http/http_client.rb +58 -0
- data/lib/twilio-ruby/jwt/access_token.rb +263 -0
- data/lib/twilio-ruby/jwt/client_capability.rb +100 -0
- data/lib/twilio-ruby/jwt/jwt.rb +51 -0
- data/lib/twilio-ruby/jwt/task_router.rb +170 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +338 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +345 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +119 -0
- data/lib/twilio-ruby/rest/accounts/v1.rb +33 -0
- data/lib/twilio-ruby/rest/accounts.rb +36 -10
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +366 -0
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +490 -0
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +598 -0
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +322 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +396 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +457 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +284 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +304 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +421 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +408 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +756 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +510 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +443 -0
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +397 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +358 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +430 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +457 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +457 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +457 -0
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +844 -0
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +306 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +166 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +353 -0
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +557 -0
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +147 -0
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +147 -0
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +407 -0
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +362 -0
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +332 -0
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +394 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +378 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +390 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +368 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +473 -0
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +409 -0
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +316 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +381 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +388 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +352 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +352 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +548 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +394 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +393 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +153 -0
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +162 -0
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +350 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +302 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +392 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +482 -0
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +117 -0
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +157 -0
- data/lib/twilio-ruby/rest/api/v2010/account.rb +936 -0
- data/lib/twilio-ruby/rest/api/v2010.rb +147 -0
- data/lib/twilio-ruby/rest/api.rb +234 -0
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +382 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +374 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +416 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +428 -0
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +503 -0
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +362 -0
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +240 -0
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +433 -0
- data/lib/twilio-ruby/rest/chat/v1/service.rb +891 -0
- data/lib/twilio-ruby/rest/chat/v1.rb +56 -0
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +382 -0
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +349 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +374 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +442 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +479 -0
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +525 -0
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +362 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +361 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +240 -0
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +463 -0
- data/lib/twilio-ruby/rest/chat/v2/service.rb +707 -0
- data/lib/twilio-ruby/rest/chat/v2.rb +56 -0
- data/lib/twilio-ruby/rest/chat.rb +59 -0
- data/lib/twilio-ruby/rest/client.rb +394 -153
- data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +313 -0
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +525 -0
- data/lib/twilio-ruby/rest/fax/v1.rb +41 -0
- data/lib/twilio-ruby/rest/fax.rb +44 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +382 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +374 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +416 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +428 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +503 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +362 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +240 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +433 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +891 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +56 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +382 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +349 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +374 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +442 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +479 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +525 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +362 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +361 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +240 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +463 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +707 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +56 -0
- data/lib/twilio-ruby/rest/ip_messaging.rb +59 -0
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +219 -0
- data/lib/twilio-ruby/rest/lookups/v1.rb +41 -0
- data/lib/twilio-ruby/rest/lookups.rb +44 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +338 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +345 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +340 -0
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +603 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +41 -0
- data/lib/twilio-ruby/rest/messaging.rb +44 -0
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +389 -0
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +372 -0
- data/lib/twilio-ruby/rest/monitor/v1.rb +56 -0
- data/lib/twilio-ruby/rest/monitor.rb +52 -0
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +390 -0
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +418 -0
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +290 -0
- data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +223 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +260 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +436 -0
- data/lib/twilio-ruby/rest/notify/v1/service/user.rb +424 -0
- data/lib/twilio-ruby/rest/notify/v1/service.rb +604 -0
- data/lib/twilio-ruby/rest/notify/v1.rb +56 -0
- data/lib/twilio-ruby/rest/notify.rb +52 -0
- data/lib/twilio-ruby/rest/preview/acc_security/service/verification.rb +183 -0
- data/lib/twilio-ruby/rest/preview/acc_security/service/verification_check.rb +180 -0
- data/lib/twilio-ruby/rest/preview/acc_security/service.rb +386 -0
- data/lib/twilio-ruby/rest/preview/acc_security.rb +41 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +209 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +201 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +225 -0
- data/lib/twilio-ruby/rest/preview/bulk_exports.rb +56 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +390 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +373 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +433 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +384 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +477 -0
- data/lib/twilio-ruby/rest/preview/deployed_devices.rb +42 -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 +438 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +634 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +58 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +301 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +320 -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 +417 -0
- data/lib/twilio-ruby/rest/preview/marketplace.rb +58 -0
- data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +345 -0
- data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +435 -0
- data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +453 -0
- data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +512 -0
- data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +495 -0
- data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +340 -0
- data/lib/twilio-ruby/rest/preview/proxy/service.rb +462 -0
- data/lib/twilio-ruby/rest/preview/proxy.rb +41 -0
- data/lib/twilio-ruby/rest/preview/studio/flow/engagement/step.rb +348 -0
- data/lib/twilio-ruby/rest/preview/studio/flow/engagement.rb +370 -0
- data/lib/twilio-ruby/rest/preview/studio/flow.rb +353 -0
- data/lib/twilio-ruby/rest/preview/studio.rb +41 -0
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +388 -0
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +411 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +419 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +388 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +409 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +416 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +388 -0
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +409 -0
- data/lib/twilio-ruby/rest/preview/sync/service.rb +470 -0
- data/lib/twilio-ruby/rest/preview/sync.rb +41 -0
- data/lib/twilio-ruby/rest/preview/understand/service/field_type/field_value.rb +375 -0
- data/lib/twilio-ruby/rest/preview/understand/service/field_type.rb +399 -0
- data/lib/twilio-ruby/rest/preview/understand/service/intent/field.rb +371 -0
- data/lib/twilio-ruby/rest/preview/understand/service/intent/sample.rb +407 -0
- data/lib/twilio-ruby/rest/preview/understand/service/intent.rb +425 -0
- data/lib/twilio-ruby/rest/preview/understand/service/model_build.rb +368 -0
- data/lib/twilio-ruby/rest/preview/understand/service/query.rb +422 -0
- data/lib/twilio-ruby/rest/preview/understand/service.rb +503 -0
- data/lib/twilio-ruby/rest/preview/understand.rb +41 -0
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +378 -0
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +416 -0
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +228 -0
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +536 -0
- data/lib/twilio-ruby/rest/preview/wireless.rb +71 -0
- data/lib/twilio-ruby/rest/preview.rb +199 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +277 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +123 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +270 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +123 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +277 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +201 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +139 -0
- data/lib/twilio-ruby/rest/pricing/v1.rb +47 -0
- data/lib/twilio-ruby/rest/pricing.rb +50 -2
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +356 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +461 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +451 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +503 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +543 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +343 -0
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +524 -0
- data/lib/twilio-ruby/rest/proxy/v1.rb +41 -0
- data/lib/twilio-ruby/rest/proxy.rb +44 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +348 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +370 -0
- data/lib/twilio-ruby/rest/studio/v1/flow.rb +346 -0
- data/lib/twilio-ruby/rest/studio/v1.rb +41 -0
- data/lib/twilio-ruby/rest/studio.rb +44 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +388 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +425 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +429 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +388 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +441 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +426 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +388 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +441 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +142 -0
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +412 -0
- data/lib/twilio-ruby/rest/sync/v1/service.rb +503 -0
- data/lib/twilio-ruby/rest/sync/v1.rb +41 -0
- data/lib/twilio-ruby/rest/sync.rb +44 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +373 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +402 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +582 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +554 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +299 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +341 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +251 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +236 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +253 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +528 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +582 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +386 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +225 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +257 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +192 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +220 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +578 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +348 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +230 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +236 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +481 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +330 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +218 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +210 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +669 -0
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +41 -0
- data/lib/twilio-ruby/rest/taskrouter.rb +44 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +323 -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 +410 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +451 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +528 -0
- data/lib/twilio-ruby/rest/trunking/v1.rb +41 -0
- data/lib/twilio-ruby/rest/trunking.rb +44 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +429 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +380 -0
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +365 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +326 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +311 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +431 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +502 -0
- data/lib/twilio-ruby/rest/video/v1.rb +71 -0
- data/lib/twilio-ruby/rest/video.rb +60 -0
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +358 -0
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +433 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +294 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +234 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +567 -0
- data/lib/twilio-ruby/rest/wireless/v1.rb +71 -0
- data/lib/twilio-ruby/rest/wireless.rb +60 -0
- data/lib/twilio-ruby/{util → security}/request_validator.rb +21 -4
- data/lib/twilio-ruby/twiml/fax_response.rb +40 -0
- data/lib/twilio-ruby/twiml/messaging_response.rb +105 -0
- data/lib/twilio-ruby/twiml/twiml.rb +75 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +541 -0
- data/lib/twilio-ruby/util/configuration.rb +7 -0
- data/lib/twilio-ruby/util.rb +3 -1
- data/lib/twilio-ruby/version.rb +1 -1
- data/lib/twilio-ruby.rb +30 -102
- data/spec/framework/request_spec.rb +36 -0
- data/spec/framework/serialize_spec.rb +80 -0
- data/spec/holodeck/holodeck.rb +61 -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 +224 -0
- data/spec/integration/accounts/v1/credential/public_key_spec.rb +224 -0
- data/spec/integration/accounts/v1/credential_spec.rb +10 -0
- data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +105 -0
- data/spec/integration/api/v2010/account/address_spec.rb +267 -0
- data/spec/integration/api/v2010/account/application_spec.rb +284 -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 +101 -0
- data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +101 -0
- data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +100 -0
- data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +101 -0
- data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +101 -0
- data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +100 -0
- data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +101 -0
- data/spec/integration/api/v2010/account/available_phone_number_spec.rb +128 -0
- data/spec/integration/api/v2010/account/call/feedback_spec.rb +137 -0
- data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +149 -0
- data/spec/integration/api/v2010/account/call/notification_spec.rb +179 -0
- data/spec/integration/api/v2010/account/call/recording_spec.rb +186 -0
- data/spec/integration/api/v2010/account/call_spec.rb +312 -0
- data/spec/integration/api/v2010/account/conference/participant_spec.rb +280 -0
- data/spec/integration/api/v2010/account/conference_spec.rb +177 -0
- data/spec/integration/api/v2010/account/connect_app_spec.rb +177 -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 +221 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +183 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +183 -0
- data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +183 -0
- data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +339 -0
- data/spec/integration/api/v2010/account/key_spec.rb +178 -0
- data/spec/integration/api/v2010/account/message/feedback_spec.rb +48 -0
- data/spec/integration/api/v2010/account/message/media_spec.rb +162 -0
- data/spec/integration/api/v2010/account/message_spec.rb +293 -0
- data/spec/integration/api/v2010/account/new_key_spec.rb +45 -0
- data/spec/integration/api/v2010/account/new_signing_key_spec.rb +45 -0
- data/spec/integration/api/v2010/account/notification_spec.rb +172 -0
- data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +193 -0
- data/spec/integration/api/v2010/account/queue/member_spec.rb +167 -0
- data/spec/integration/api/v2010/account/queue_spec.rb +240 -0
- data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +175 -0
- data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +166 -0
- data/spec/integration/api/v2010/account/recording/transcription_spec.rb +174 -0
- data/spec/integration/api/v2010/account/recording_spec.rb +187 -0
- data/spec/integration/api/v2010/account/short_code_spec.rb +180 -0
- data/spec/integration/api/v2010/account/signing_key_spec.rb +178 -0
- data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +254 -0
- data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +242 -0
- data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +208 -0
- data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +218 -0
- data/spec/integration/api/v2010/account/sip/domain_spec.rb +285 -0
- data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +258 -0
- data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +252 -0
- data/spec/integration/api/v2010/account/sip_spec.rb +10 -0
- data/spec/integration/api/v2010/account/token_spec.rb +56 -0
- data/spec/integration/api/v2010/account/transcription_spec.rb +167 -0
- data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/today_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +111 -0
- data/spec/integration/api/v2010/account/usage/record_spec.rb +108 -0
- data/spec/integration/api/v2010/account/usage/trigger_spec.rb +283 -0
- data/spec/integration/api/v2010/account/usage_spec.rb +10 -0
- data/spec/integration/api/v2010/account/validation_request_spec.rb +46 -0
- data/spec/integration/api/v2010/account_spec.rb +254 -0
- data/spec/integration/chat/v1/credential_spec.rb +221 -0
- data/spec/integration/chat/v1/service/channel/invite_spec.rb +208 -0
- data/spec/integration/chat/v1/service/channel/member_spec.rb +282 -0
- data/spec/integration/chat/v1/service/channel/message_spec.rb +292 -0
- data/spec/integration/chat/v1/service/channel_spec.rb +275 -0
- data/spec/integration/chat/v1/service/role_spec.rb +261 -0
- data/spec/integration/chat/v1/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/chat/v1/service/user_spec.rb +264 -0
- data/spec/integration/chat/v1/service_spec.rb +297 -0
- data/spec/integration/chat/v2/credential_spec.rb +221 -0
- data/spec/integration/chat/v2/service/binding_spec.rb +175 -0
- data/spec/integration/chat/v2/service/channel/invite_spec.rb +208 -0
- data/spec/integration/chat/v2/service/channel/member_spec.rb +255 -0
- data/spec/integration/chat/v2/service/channel/message_spec.rb +403 -0
- data/spec/integration/chat/v2/service/channel_spec.rb +275 -0
- data/spec/integration/chat/v2/service/role_spec.rb +261 -0
- data/spec/integration/chat/v2/service/user/user_binding_spec.rb +178 -0
- data/spec/integration/chat/v2/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/chat/v2/service/user_spec.rb +268 -0
- data/spec/integration/chat/v2/service_spec.rb +352 -0
- data/spec/integration/fax/v1/fax/fax_media_spec.rb +126 -0
- data/spec/integration/fax/v1/fax_spec.rb +269 -0
- data/spec/integration/ip_messaging/v1/credential_spec.rb +221 -0
- data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +208 -0
- data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +282 -0
- data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +292 -0
- data/spec/integration/ip_messaging/v1/service/channel_spec.rb +275 -0
- data/spec/integration/ip_messaging/v1/service/role_spec.rb +261 -0
- data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/ip_messaging/v1/service/user_spec.rb +264 -0
- data/spec/integration/ip_messaging/v1/service_spec.rb +297 -0
- data/spec/integration/ip_messaging/v2/credential_spec.rb +221 -0
- data/spec/integration/ip_messaging/v2/service/binding_spec.rb +175 -0
- data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +208 -0
- data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +255 -0
- data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +403 -0
- data/spec/integration/ip_messaging/v2/service/channel_spec.rb +275 -0
- data/spec/integration/ip_messaging/v2/service/role_spec.rb +261 -0
- data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +178 -0
- data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +92 -0
- data/spec/integration/ip_messaging/v2/service/user_spec.rb +268 -0
- data/spec/integration/ip_messaging/v2/service_spec.rb +352 -0
- data/spec/integration/lookups/v1/phone_number_spec.rb +70 -0
- data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +168 -0
- data/spec/integration/messaging/v1/service/phone_number_spec.rb +199 -0
- data/spec/integration/messaging/v1/service/short_code_spec.rb +171 -0
- data/spec/integration/messaging/v1/service_spec.rb +261 -0
- data/spec/integration/monitor/v1/alert_spec.rb +161 -0
- data/spec/integration/monitor/v1/event_spec.rb +148 -0
- data/spec/integration/notify/v1/credential_spec.rb +221 -0
- data/spec/integration/notify/v1/service/binding_spec.rb +223 -0
- data/spec/integration/notify/v1/service/notification_spec.rb +97 -0
- data/spec/integration/notify/v1/service/segment_spec.rb +84 -0
- data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +116 -0
- data/spec/integration/notify/v1/service/user/user_binding_spec.rb +266 -0
- data/spec/integration/notify/v1/service/user_spec.rb +211 -0
- data/spec/integration/notify/v1/service_spec.rb +284 -0
- data/spec/integration/preview/acc_security/service/verification_check_spec.rb +50 -0
- data/spec/integration/preview/acc_security/service/verification_spec.rb +50 -0
- data/spec/integration/preview/acc_security/service_spec.rb +183 -0
- data/spec/integration/preview/bulk_exports/export/day_spec.rb +56 -0
- data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +77 -0
- data/spec/integration/preview/bulk_exports/export_spec.rb +43 -0
- data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +236 -0
- data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +231 -0
- data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +247 -0
- data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +235 -0
- data/spec/integration/preview/deployed_devices/fleet_spec.rb +244 -0
- data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +109 -0
- data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +223 -0
- data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +391 -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 +252 -0
- data/spec/integration/preview/proxy/service/phone_number_spec.rb +171 -0
- data/spec/integration/preview/proxy/service/session/interaction_spec.rb +104 -0
- data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +164 -0
- data/spec/integration/preview/proxy/service/session/participant_spec.rb +224 -0
- data/spec/integration/preview/proxy/service/session_spec.rb +216 -0
- data/spec/integration/preview/proxy/service/short_code_spec.rb +171 -0
- data/spec/integration/preview/proxy/service_spec.rb +200 -0
- data/spec/integration/preview/studio/flow/engagement/step_spec.rb +96 -0
- data/spec/integration/preview/studio/flow/engagement_spec.rb +143 -0
- data/spec/integration/preview/studio/flow_spec.rb +115 -0
- data/spec/integration/preview/sync/service/document/document_permission_spec.rb +202 -0
- data/spec/integration/preview/sync/service/document_spec.rb +252 -0
- data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +252 -0
- data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +202 -0
- data/spec/integration/preview/sync/service/sync_list_spec.rb +207 -0
- data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +252 -0
- data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +202 -0
- data/spec/integration/preview/sync/service/sync_map_spec.rb +207 -0
- data/spec/integration/preview/sync/service_spec.rb +244 -0
- data/spec/integration/preview/understand/service/field_type/field_value_spec.rb +205 -0
- data/spec/integration/preview/understand/service/field_type_spec.rb +244 -0
- data/spec/integration/preview/understand/service/intent/field_spec.rb +205 -0
- data/spec/integration/preview/understand/service/intent/sample_spec.rb +247 -0
- data/spec/integration/preview/understand/service/intent_spec.rb +252 -0
- data/spec/integration/preview/understand/service/model_build_spec.rb +231 -0
- data/spec/integration/preview/understand/service/query_spec.rb +300 -0
- data/spec/integration/preview/understand/service_spec.rb +256 -0
- data/spec/integration/preview/wireless/command_spec.rb +167 -0
- data/spec/integration/preview/wireless/rate_plan_spec.rb +260 -0
- data/spec/integration/preview/wireless/sim/usage_spec.rb +49 -0
- data/spec/integration/preview/wireless/sim_spec.rb +208 -0
- data/spec/integration/pricing/v1/messaging/country_spec.rb +137 -0
- data/spec/integration/pricing/v1/messaging_spec.rb +10 -0
- data/spec/integration/pricing/v1/phone_number/country_spec.rb +128 -0
- data/spec/integration/pricing/v1/phone_number_spec.rb +10 -0
- data/spec/integration/pricing/v1/voice/country_spec.rb +266 -0
- data/spec/integration/pricing/v1/voice/number_spec.rb +54 -0
- data/spec/integration/pricing/v1/voice_spec.rb +10 -0
- data/spec/integration/proxy/v1/service/phone_number_spec.rb +182 -0
- data/spec/integration/proxy/v1/service/session/interaction_spec.rb +134 -0
- data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +164 -0
- data/spec/integration/proxy/v1/service/session/participant_spec.rb +227 -0
- data/spec/integration/proxy/v1/service/session_spec.rb +228 -0
- data/spec/integration/proxy/v1/service/short_code_spec.rb +180 -0
- data/spec/integration/proxy/v1/service_spec.rb +213 -0
- data/spec/integration/studio/v1/flow/engagement/step_spec.rb +96 -0
- data/spec/integration/studio/v1/flow/engagement_spec.rb +143 -0
- data/spec/integration/studio/v1/flow_spec.rb +114 -0
- data/spec/integration/sync/v1/service/document/document_permission_spec.rb +202 -0
- data/spec/integration/sync/v1/service/document_spec.rb +255 -0
- data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +255 -0
- data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +202 -0
- data/spec/integration/sync/v1/service/sync_list_spec.rb +255 -0
- data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +255 -0
- data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +202 -0
- data/spec/integration/sync/v1/service/sync_map_spec.rb +255 -0
- data/spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb +45 -0
- data/spec/integration/sync/v1/service/sync_stream_spec.rb +247 -0
- data/spec/integration/sync/v1/service_spec.rb +252 -0
- data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +234 -0
- data/spec/integration/taskrouter/v1/workspace/event_spec.rb +157 -0
- data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +192 -0
- data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +127 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +94 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +79 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +106 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +144 -0
- data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +296 -0
- data/spec/integration/taskrouter/v1/workspace/task_spec.rb +324 -0
- data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +192 -0
- data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +186 -0
- data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +90 -0
- data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +87 -0
- data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +68 -0
- data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +114 -0
- data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +292 -0
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +95 -0
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +55 -0
- data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +69 -0
- data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +270 -0
- data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +92 -0
- data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +70 -0
- data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +103 -0
- data/spec/integration/taskrouter/v1/workspace_spec.rb +293 -0
- data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +190 -0
- data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +190 -0
- data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +250 -0
- data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +265 -0
- data/spec/integration/trunking/v1/trunk_spec.rb +276 -0
- data/spec/integration/video/v1/composition_spec.rb +223 -0
- data/spec/integration/video/v1/recording_spec.rb +171 -0
- data/spec/integration/video/v1/room/recording_spec.rb +146 -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_subscribed_track_spec.rb +132 -0
- data/spec/integration/video/v1/room/room_participant_spec.rb +185 -0
- data/spec/integration/video/v1/room_spec.rb +255 -0
- data/spec/integration/wireless/v1/command_spec.rb +164 -0
- data/spec/integration/wireless/v1/rate_plan_spec.rb +268 -0
- data/spec/integration/wireless/v1/sim/data_session_spec.rb +85 -0
- data/spec/integration/wireless/v1/sim/usage_record_spec.rb +65 -0
- data/spec/integration/wireless/v1/sim_spec.rb +214 -0
- data/spec/jwt/access_token_spec.rb +149 -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 +29 -257
- data/spec/{util → security}/request_validator_spec.rb +5 -5
- data/spec/spec_helper.rb +18 -1
- data/spec/support/fakeweb.rb +1 -1
- data/spec/twiml/messaging_response_spec.rb +95 -0
- data/spec/twiml/voice_response_spec.rb +479 -0
- data/twilio-ruby.gemspec +14 -11
- metadata +904 -248
- 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/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/CHANGES.md
CHANGED
|
@@ -1,117 +1,455 @@
|
|
|
1
1
|
twilio-ruby changelog
|
|
2
2
|
=====================
|
|
3
3
|
|
|
4
|
-
Version
|
|
5
|
-
|
|
4
|
+
[2018-02-23] Version 5.6.4
|
|
5
|
+
---------------------------
|
|
6
|
+
**Library**
|
|
7
|
+
- PR #385 - Fix ClientCapability appParams
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
**Api**
|
|
10
|
+
- Add `trim` param to Outbound Calls API
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
**Lookups**
|
|
13
|
+
- Add support for `fraud` lookup type
|
|
10
14
|
|
|
11
|
-
|
|
12
|
-
|
|
15
|
+
**Numbers**
|
|
16
|
+
- Initial Release
|
|
13
17
|
|
|
14
|
-
|
|
18
|
+
**Video**
|
|
19
|
+
- [composer] Add `SEQUENCE` value to available layouts, and `trim` and `reuse` params.
|
|
15
20
|
|
|
16
|
-
- Add VoiceGrant.
|
|
17
21
|
|
|
18
|
-
Version
|
|
19
|
-
|
|
22
|
+
[2018-02-09] Version 5.6.3
|
|
23
|
+
---------------------------
|
|
24
|
+
**Api**
|
|
25
|
+
- Add `AnnounceUrl` and `AnnounceMethod` params for conference announce
|
|
20
26
|
|
|
21
|
-
|
|
27
|
+
**Chat**
|
|
28
|
+
- Add support to looking up user channels by identity in v1
|
|
22
29
|
|
|
23
|
-
- Add missing Keys mount to Account
|
|
24
30
|
|
|
25
|
-
Version
|
|
26
|
-
|
|
31
|
+
[2018-01-30] Version 5.6.2
|
|
32
|
+
---------------------------
|
|
33
|
+
**Api**
|
|
34
|
+
- Add `studio-engagements` usage key
|
|
27
35
|
|
|
28
|
-
|
|
36
|
+
**Preview**
|
|
37
|
+
- Remove Studio Engagement Deletion
|
|
29
38
|
|
|
30
|
-
|
|
39
|
+
**Studio**
|
|
40
|
+
- Initial Release
|
|
31
41
|
|
|
32
|
-
|
|
33
|
-
|
|
42
|
+
**Video**
|
|
43
|
+
- [omit] Beta: Allow updates to `SubscribedTracks`.
|
|
44
|
+
- Add `SubscribedTracks`.
|
|
45
|
+
- Add track name to Video Recording resource
|
|
46
|
+
- Add Composition and Composition Media resources
|
|
34
47
|
|
|
35
|
-
Released January 28, 2016:
|
|
36
48
|
|
|
37
|
-
-
|
|
38
|
-
|
|
49
|
+
[2018-01-22] Version 5.6.1
|
|
50
|
+
---------------------------
|
|
51
|
+
**Api**
|
|
52
|
+
- Add `conference_sid` property on Recordings
|
|
53
|
+
- Add proxy and sms usage key
|
|
39
54
|
|
|
40
|
-
|
|
41
|
-
|
|
55
|
+
**Chat**
|
|
56
|
+
- Make user channels accessible by identity
|
|
57
|
+
- Add notifications logs flag parameter
|
|
42
58
|
|
|
43
|
-
|
|
59
|
+
**Fax**
|
|
60
|
+
- Added `ttl` parameter
|
|
61
|
+
`ttl` is the number of minutes a fax is considered valid.
|
|
44
62
|
|
|
45
|
-
|
|
63
|
+
**Preview**
|
|
64
|
+
- Add `call_delay`, `extension`, `verification_code`, and `verification_call_sids`.
|
|
65
|
+
- Add `failure_reason` to HostedNumberOrders.
|
|
66
|
+
- Add DependentHostedNumberOrders endpoint for AuthorizationDocuments preview API.
|
|
46
67
|
|
|
47
|
-
Version 4.9.0
|
|
48
|
-
-------------
|
|
49
68
|
|
|
50
|
-
|
|
69
|
+
[2017-12-15] Version 5.6.0
|
|
70
|
+
---------------------------
|
|
71
|
+
**Api**
|
|
72
|
+
- Add `voip`, `national`, `shared_cost`, and `machine_to_machine` sub-resources to `/2010-04-01/Accounts/{AccountSid}/AvailablePhoneNumbers/{IsoCountryCode}/`
|
|
73
|
+
- Add programmable video keys
|
|
51
74
|
|
|
52
|
-
|
|
75
|
+
**Preview**
|
|
76
|
+
- Add `verification_type` and `verification_document_sid` to HostedNumberOrders.
|
|
53
77
|
|
|
54
|
-
|
|
55
|
-
|
|
78
|
+
**Proxy**
|
|
79
|
+
- Fixed typo in session status enum value
|
|
56
80
|
|
|
57
|
-
|
|
81
|
+
**Twiml**
|
|
82
|
+
- Fix Dial record property incorrectly typed as accepting TrimEnum values when it actually has its own enum of values. *(breaking change)*
|
|
83
|
+
- Add `priority` and `timeout` properties to Task TwiML.
|
|
84
|
+
- Add support for `recording_status_callback_event` for Dial verb and for Conference
|
|
58
85
|
|
|
59
|
-
- Make nbf optional
|
|
60
86
|
|
|
61
|
-
Version
|
|
62
|
-
|
|
87
|
+
[2017-12-01] Version 5.5.1
|
|
88
|
+
---------------------------
|
|
89
|
+
**Api**
|
|
90
|
+
- Use the correct properties for Dependent Phone Numbers of an Address *(breaking change)*
|
|
91
|
+
- Update Call Recordings with the correct properties
|
|
63
92
|
|
|
64
|
-
|
|
93
|
+
**Preview**
|
|
94
|
+
- Add `status` and `email` query param filters for AuthorizationDocument list endpoint
|
|
65
95
|
|
|
66
|
-
|
|
96
|
+
**Proxy**
|
|
97
|
+
- Added DELETE support to Interaction
|
|
98
|
+
- Standardized enum values to dash-case
|
|
99
|
+
- Rename Service#friendly_name to Service#unique_name
|
|
67
100
|
|
|
68
|
-
|
|
69
|
-
|
|
101
|
+
**Video**
|
|
102
|
+
- Remove beta flag from `media_region` and `video_codecs`
|
|
103
|
+
|
|
104
|
+
**Wireless**
|
|
105
|
+
- Bug fix: Changed `operator_mcc` and `operator_mnc` in `DataSessions` subresource from `integer` to `string`
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
[2017-11-17] Version 5.5.0
|
|
109
|
+
---------------------------
|
|
110
|
+
**Sync**
|
|
111
|
+
- Add TTL support for Sync objects *(breaking change)*
|
|
112
|
+
- The required `data` parameter on the following actions is now optional: "Update Document", "Update Map Item", "Update List Item"
|
|
113
|
+
- New actions available for updating TTL of Sync objects: "Update List", "Update Map", "Update Stream"
|
|
114
|
+
|
|
115
|
+
**Video**
|
|
116
|
+
- [bi] Rename `RoomParticipant` to `Participant`
|
|
117
|
+
- Add Recording Settings resource
|
|
118
|
+
- Expose EncryptionKey and MediaExternalLocation properties in Recording resource
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
[2017-11-10] Version 5.4.5
|
|
122
|
+
---------------------------
|
|
123
|
+
**Accounts**
|
|
124
|
+
- Add AWS credential type
|
|
125
|
+
|
|
126
|
+
**Preview**
|
|
127
|
+
- Removed `iso_country` as required field for creating a HostedNumberOrder.
|
|
128
|
+
|
|
129
|
+
**Proxy**
|
|
130
|
+
- Added new fields to Service: geo_match_level, number_selection_behavior, intercept_callback_url, out_of_session_callback_url
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
[2017-11-03] Version 5.4.4
|
|
134
|
+
---------------------------
|
|
135
|
+
**Library**
|
|
136
|
+
- PR #365: Fixed proxy interpolation. Thanks @ankane.
|
|
137
|
+
|
|
138
|
+
**Api**
|
|
139
|
+
- Add programmable video keys
|
|
140
|
+
|
|
141
|
+
**Video**
|
|
142
|
+
- Add `Participants`
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
[2017-10-27] Version 5.4.3
|
|
146
|
+
---------------------------
|
|
147
|
+
**Chat**
|
|
148
|
+
- Add Binding resource
|
|
149
|
+
- Add UserBinding resource
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
[2017-10-20] Version 5.4.2
|
|
153
|
+
---------------------------
|
|
154
|
+
**Library**
|
|
155
|
+
- #360 Fix downcasing twiml parameters that are not snake_case
|
|
156
|
+
|
|
157
|
+
[2017-10-20] Version 5.4.1
|
|
158
|
+
---------------------------
|
|
159
|
+
**Library**
|
|
160
|
+
- #359 Correctly set headers on Twilio::Response
|
|
161
|
+
|
|
162
|
+
**Api**
|
|
163
|
+
- Add `address_sid` param to IncomingPhoneNumbers create and update
|
|
164
|
+
- Add 'fax_enabled' option for Phone Number Search
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
[2017-10-13] Version 5.4.0
|
|
168
|
+
---------------------------
|
|
169
|
+
**Api**
|
|
170
|
+
- Add `smart_encoded` param for Messages
|
|
171
|
+
- Add `identity_sid` param to IncomingPhoneNumbers create and update
|
|
172
|
+
|
|
173
|
+
**Preview**
|
|
174
|
+
- Make 'address_sid' and 'email' optional fields when creating a HostedNumberOrder
|
|
175
|
+
- Add AuthorizationDocuments preview API.
|
|
176
|
+
|
|
177
|
+
**Proxy**
|
|
178
|
+
- Initial Release
|
|
179
|
+
|
|
180
|
+
**Wireless**
|
|
181
|
+
- Added `ip_address` to sim resource
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
[2017-10-06] Version 5.3.1
|
|
185
|
+
---------------------------
|
|
186
|
+
**Preview**
|
|
187
|
+
- Add `acc_security` (authy-phone-verification) initial api-definitions
|
|
188
|
+
|
|
189
|
+
**Taskrouter**
|
|
190
|
+
- [bi] Less verbose naming of cumulative and real time statistics
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
[2017-09-29] Version 5.3.0
|
|
194
|
+
---------------------------
|
|
195
|
+
**Library**
|
|
196
|
+
- Remove left over files from legacy 4.x library
|
|
197
|
+
|
|
198
|
+
**Chat**
|
|
199
|
+
- Make member accessible through identity
|
|
200
|
+
- Make channel subresources accessible by channel unique name
|
|
201
|
+
- Set get list 'max_page_size' parameter to 100
|
|
202
|
+
- Add service instance webhook retry configuration
|
|
203
|
+
- Add media message capability
|
|
204
|
+
- Make `body` an optional parameter on Message creation. *(breaking change)*
|
|
205
|
+
|
|
206
|
+
**Notify**
|
|
207
|
+
- `data`, `apn`, `gcm`, `fcm`, `sms` parameters in `Notifications` create resource now accept objects (hashes) instead of strings. Passing manually stringified json will continue to work.
|
|
208
|
+
|
|
209
|
+
**Taskrouter**
|
|
210
|
+
- Add new query ability by TaskChannelSid or TaskChannelUniqueName
|
|
211
|
+
- Move Events, Worker, Workers endpoint over to CPR
|
|
212
|
+
- Add new RealTime and Cumulative Statistics endpoints
|
|
213
|
+
|
|
214
|
+
**Video**
|
|
215
|
+
- Create should allow an array of video_codecs.
|
|
216
|
+
- Add video_codecs as a property of room to make it externally visible.
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
[2017-09-15] Version 5.2.3
|
|
220
|
+
---------------------------
|
|
221
|
+
**Api**
|
|
222
|
+
- Add `sip_registration` property on SIP Domains
|
|
223
|
+
- Add new video and market usage category keys
|
|
224
|
+
- Add support for transferring IncomingPhoneNumbers between accounts.
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
[2017-09-08] Version 5.2.2
|
|
228
|
+
---------------------------
|
|
229
|
+
- Add configurable timeout to HttpClient
|
|
230
|
+
|
|
231
|
+
[2017-09-01] Version 5.2.1
|
|
232
|
+
---------------------------
|
|
233
|
+
**Sync**
|
|
234
|
+
- Add support for Streams
|
|
235
|
+
|
|
236
|
+
**Wireless**
|
|
237
|
+
- Added DataSessions sub-resource to Sims.
|
|
70
238
|
|
|
71
|
-
Release November 19, 2015
|
|
72
239
|
|
|
73
|
-
-
|
|
240
|
+
[2017-08-25] Version 5.2.0
|
|
241
|
+
---------------------------
|
|
242
|
+
**Library**
|
|
243
|
+
- Add `last_request`, `last_response` properties to http client for easier debugging.
|
|
244
|
+
- Add `Request` class to abstract http client implementations.
|
|
245
|
+
- Rename `TwilioResponse` to `Response` for consistency, deprecate `TwilioResponse` class.
|
|
246
|
+
- Support libxml 2 and 3. Issue #315. Thanks @malmckay.
|
|
247
|
+
- Add `inspect` methods to all classes. Thanks @malmckay.
|
|
74
248
|
|
|
75
|
-
|
|
249
|
+
**Api**
|
|
250
|
+
- Update `status` enum for Recordings to include 'failed'
|
|
251
|
+
- Add `error_code` property on Recordings
|
|
252
|
+
|
|
253
|
+
**Chat**
|
|
254
|
+
- Add mutable parameters for channel, members and messages
|
|
255
|
+
|
|
256
|
+
**Video**
|
|
257
|
+
- New `media_region` parameter when creating a room, which controls which region media will be served out of.
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
[2017-08-18] Version 5.1.2
|
|
261
|
+
---------------------------
|
|
262
|
+
**Api**
|
|
263
|
+
- Add VoiceReceiveMode {'voice', 'fax'} option to IncomingPhoneNumber UPDATE requests
|
|
264
|
+
|
|
265
|
+
**Chat**
|
|
266
|
+
- Add channel message media information
|
|
267
|
+
- Add service instance message media information
|
|
268
|
+
|
|
269
|
+
**Preview**
|
|
270
|
+
- Removed 'email' from bulk_exports configuration api [bi]. No migration plan needed because api has not been used yet.
|
|
271
|
+
- Add DeployedDevices.
|
|
272
|
+
|
|
273
|
+
**Sync**
|
|
274
|
+
- Add support for Service Instance unique names
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
[2017-08-10] Version 5.1.1
|
|
278
|
+
---------------------------
|
|
279
|
+
**Library**
|
|
280
|
+
- Don't override Faraday default param encoder. Thanks to @isaacseymour. PR #309
|
|
281
|
+
- Fix incorrectly aliased `to_xml` on TwiML classes. Thanks to @philnash. PR #318
|
|
282
|
+
- Only define `to_s` on BaseJWT instead of subclasses. Thanks to @philnash. PR #321
|
|
283
|
+
- Silence deprecation messages in testing. Thanks to @philnash. PR #323
|
|
284
|
+
|
|
285
|
+
**Api**
|
|
286
|
+
- Add New wireless usage keys added
|
|
287
|
+
- Add `auto_correct_address` param for Addresses create and update
|
|
288
|
+
|
|
289
|
+
**Video**
|
|
290
|
+
- Add `video_codec` enum and `video_codecs` parameter, which can be set to either `VP8` or `H264` during room creation.
|
|
291
|
+
- Restrict recordings page size to 100
|
|
292
|
+
|
|
293
|
+
**Chat**
|
|
294
|
+
- Add ChatGrant to available access tokens.
|
|
295
|
+
- Mark IpMessagingGrant as deprecated in favor of ChatGrant.
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
[2017-07-27] Version 5.1.0
|
|
299
|
+
---------------------------
|
|
300
|
+
This release adds Beta and Preview products to main artifact.
|
|
301
|
+
|
|
302
|
+
Previously, Beta and Preview products were only included in the alpha artifact.
|
|
303
|
+
They are now being included in the main artifact to ease product
|
|
304
|
+
discoverability and the collective operational overhead of maintaining multiple
|
|
305
|
+
artifacts per library.
|
|
306
|
+
|
|
307
|
+
**Api**
|
|
308
|
+
- Remove unused `encryption_type` property on Recordings *(breaking change)*
|
|
309
|
+
- Update `status` enum for Messages to include 'accepted'
|
|
310
|
+
- Update `AnnounceMethod` parameter naming for consistency
|
|
311
|
+
|
|
312
|
+
**Messaging**
|
|
313
|
+
- Fix incorrectly typed capabilities property for PhoneNumbers.
|
|
314
|
+
|
|
315
|
+
**Notify**
|
|
316
|
+
- Add `ToBinding` optional parameter on Notifications resource creation. Accepted values are json strings.
|
|
317
|
+
|
|
318
|
+
**Preview**
|
|
319
|
+
- Add `sms_application_sid` to HostedNumberOrders.
|
|
320
|
+
- Add `verification_attempts` to HostedNumberOrders.
|
|
321
|
+
|
|
322
|
+
**Taskrouter**
|
|
323
|
+
- Fully support conference functionality in reservations.
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
[2017-07-13] Version 5.0.0
|
|
327
|
+
--------------------------------
|
|
328
|
+
- Moving to General Availability
|
|
329
|
+
|
|
330
|
+
[2017-07-07] Version 5.0.0.rc26
|
|
331
|
+
--------------------------------
|
|
332
|
+
**Api**
|
|
333
|
+
- [omit] Rachet /Keys and /SigningKeys
|
|
334
|
+
|
|
335
|
+
**Preview**
|
|
336
|
+
- Add `status_callback_url` and `status_callback_method` to HostedNumberOrders.
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
[2017-07-06] Version 5.0.0.rc25
|
|
340
|
+
--------------------------------
|
|
341
|
+
**Messaging**
|
|
342
|
+
- Fix incorrectly typed capabilities property for PhoneNumbers.
|
|
343
|
+
|
|
344
|
+
**Notify**
|
|
345
|
+
- Add `ToBinding` optional parameter on Notifications resource creation. Accepted values are json strings.
|
|
346
|
+
|
|
347
|
+
**Preview**
|
|
348
|
+
- [omit] Enabled beta feature flag (api.vault.data-platform) for bulk_exports api
|
|
349
|
+
|
|
350
|
+
**Video**
|
|
351
|
+
- Filter recordings by date using the parameters `DateCreatedAfter` and `DateCreatedBefore`.
|
|
352
|
+
- Override the default time-to-live of a recording's media URL through the `Ttl` parameter (in seconds, default value is 3600).
|
|
353
|
+
- Add query parameters `SourceSid`, `Status`, `DateCreatedAfter` and `DateCreatedBefore` to the convenience method for retrieving Room recordings.
|
|
354
|
+
|
|
355
|
+
**Wireless**
|
|
356
|
+
- Added national and international data limits to the RatePlans resource.
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
[2017-06-22] Version 5.0.0.rc24
|
|
360
|
+
-------------------------------
|
|
361
|
+
- Namespaced Policy, Grants, and Scope to their respective Token.
|
|
362
|
+
- Added `announce_url` and `annouce_url_method` to Conference update.
|
|
363
|
+
- Added `store_media` to Fax.
|
|
364
|
+
|
|
365
|
+
[2017-06-19] Version 5.0.0.rc23
|
|
366
|
+
-------------------------------
|
|
367
|
+
- Fixed ClientCapability parameter encoded bug.
|
|
368
|
+
- Optional URL parameter for TwiML Play verb.
|
|
369
|
+
|
|
370
|
+
[2017-06-15] Version 5.0.0.rc22
|
|
371
|
+
-------------------------------
|
|
372
|
+
- Refactor JWT token constructors
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
[2017-05-24] Version 5.0.0.rc21
|
|
376
|
+
-------------------------------
|
|
377
|
+
- Add HostedNumbers preview support.
|
|
378
|
+
- Add Proxy preview support.
|
|
379
|
+
- Add BulkExports preview support.
|
|
380
|
+
|
|
381
|
+
[2017-05-22] Version 5.0.0.rc20
|
|
382
|
+
-------------------------------
|
|
383
|
+
- Add Wireless Domain
|
|
384
|
+
- Add Fax Domain
|
|
385
|
+
- Add Video Domain
|
|
386
|
+
- Updated Usage Trigger enums with missing categories.
|
|
387
|
+
- Add `area_code_geomatch`, `validtiy_period`, `fallback_to_long_code` to Messaging Service
|
|
388
|
+
- Converted `TwilioException` to `TwilioError`
|
|
389
|
+
|
|
390
|
+
[2017-04-27] Version 5.0.0.rc19
|
|
391
|
+
-------------------------------
|
|
392
|
+
|
|
393
|
+
- Add chat v2.
|
|
394
|
+
- Wireless rate plans updates.
|
|
395
|
+
- Message `ValidityPeriod` parameter.
|
|
396
|
+
- New Usage API categories.
|
|
397
|
+
|
|
398
|
+
Version 5.0.0.rc18
|
|
399
|
+
-------------------------------
|
|
400
|
+
|
|
401
|
+
Release April 17, 2017
|
|
402
|
+
|
|
403
|
+
- Update VideoGrant access token to accept `room` instead of `configuration_profile_sid`
|
|
404
|
+
|
|
405
|
+
Version 5.0.0.rc16
|
|
406
|
+
-------------------------------
|
|
407
|
+
|
|
408
|
+
Release September 1, 2016
|
|
409
|
+
|
|
410
|
+
- Add voice grant.
|
|
411
|
+
|
|
412
|
+
Version 5.0.0.rc8
|
|
76
413
|
-------------
|
|
77
414
|
|
|
78
|
-
Release
|
|
415
|
+
Release July 8, 2016
|
|
79
416
|
|
|
80
|
-
-
|
|
417
|
+
- Add SMS and Facebook Messenger for Notify
|
|
81
418
|
|
|
82
|
-
Version
|
|
419
|
+
Version 5.0.0.rc7
|
|
83
420
|
-------------
|
|
84
421
|
|
|
85
|
-
Release
|
|
422
|
+
Release June 9, 2016
|
|
423
|
+
|
|
424
|
+
- Add messaging feedback support
|
|
86
425
|
|
|
87
|
-
- Add /Keys endpoint
|
|
88
426
|
|
|
89
|
-
Version
|
|
427
|
+
Version 5.0.0.rc5
|
|
90
428
|
-------------
|
|
91
429
|
|
|
92
|
-
Release
|
|
430
|
+
Release May 31, 2016
|
|
93
431
|
|
|
94
|
-
- Add
|
|
95
|
-
- Add TaskRouter Workflow builder
|
|
432
|
+
- Add preview.twilio.com/wireless support
|
|
96
433
|
|
|
97
|
-
Version
|
|
434
|
+
Version 5.0.0.rc4
|
|
98
435
|
-------------
|
|
99
436
|
|
|
100
|
-
Release
|
|
437
|
+
Release March 28, 2016
|
|
101
438
|
|
|
102
|
-
- Add
|
|
103
|
-
- Workspace
|
|
104
|
-
- Worker
|
|
105
|
-
- TaskQueue
|
|
439
|
+
- Add notifications.twilio.com subdomain
|
|
106
440
|
|
|
107
|
-
Version
|
|
441
|
+
Version 5.0.0
|
|
108
442
|
-------------
|
|
109
443
|
|
|
110
|
-
Release
|
|
444
|
+
Release January 29, 2016
|
|
111
445
|
|
|
112
|
-
-
|
|
113
|
-
-
|
|
114
|
-
-
|
|
446
|
+
- First class paging support
|
|
447
|
+
- Streaming auto-paging functionality
|
|
448
|
+
- Separation between strict paging and streaming, with network-efficient defaults
|
|
449
|
+
- Fully configurable and swappable HTTP Client interfaces
|
|
450
|
+
- Normalization of mounts -> endpoints relations, with first-class unified support for subdomains and multi-version support
|
|
451
|
+
- Fixed URL pathing of subresources, preventing edge case errors with path building via mounting
|
|
452
|
+
- Proper serialization/deserialization of types (integers, dates, etc.)
|
|
115
453
|
|
|
116
454
|
Version 4.2.0
|
|
117
455
|
-------------
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# Contributing to `twilio-ruby`
|
|
2
|
+
|
|
3
|
+
We'd love for you to contribute to our source code and to make `twilio-ruby`
|
|
4
|
+
even better than it is today! Here are the guidelines we'd like you to follow:
|
|
5
|
+
|
|
6
|
+
- [Code of Conduct](#coc)
|
|
7
|
+
- [Question or Problem?](#question)
|
|
8
|
+
- [Issues and Bugs](#issue)
|
|
9
|
+
- [Feature Requests](#feature)
|
|
10
|
+
- [Documentation fixes](#docs)
|
|
11
|
+
- [Submission Guidelines](#submit)
|
|
12
|
+
- [Coding Rules](#rules)
|
|
13
|
+
|
|
14
|
+
## <a name="coc"></a> Code of Conduct
|
|
15
|
+
|
|
16
|
+
Help us keep `twilio-ruby` open and inclusive. Please be kind to and considerate
|
|
17
|
+
of other developers, as we all have the same goal: make `twilio-ruby` as good as
|
|
18
|
+
it can be.
|
|
19
|
+
|
|
20
|
+
## <a name="question"></a> Got an API/Product Question or Problem?
|
|
21
|
+
|
|
22
|
+
If you have questions about how to use `twilio-ruby`, please see our
|
|
23
|
+
[docs][docs-link], and if you don't find the answer there, please contact
|
|
24
|
+
[help@twilio.com](mailto:help@twilio.com) with any issues you have.
|
|
25
|
+
|
|
26
|
+
## <a name="issue"></a> Found an Issue?
|
|
27
|
+
|
|
28
|
+
If you find a bug in the source code or a mistake in the documentation, you can
|
|
29
|
+
help us by submitting [an issue][issue-link]. If the file in which the error
|
|
30
|
+
exists has this header:
|
|
31
|
+
```
|
|
32
|
+
"""
|
|
33
|
+
This code was generated by
|
|
34
|
+
\ / _ _ _| _ _
|
|
35
|
+
| (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
36
|
+
/ /
|
|
37
|
+
"""
|
|
38
|
+
```
|
|
39
|
+
then it is a generated file and the change will need to be made by us, but
|
|
40
|
+
submitting an issue will help us track it and keep you up-to-date. If the file
|
|
41
|
+
isn't generated, you can help us out even more by submitting a Pull Request with
|
|
42
|
+
a fix.
|
|
43
|
+
|
|
44
|
+
**Please see the [Submission Guidelines](#submit) below.**
|
|
45
|
+
|
|
46
|
+
## <a name="feature"></a> Want a Feature?
|
|
47
|
+
|
|
48
|
+
You can request a new feature by submitting an issue to our
|
|
49
|
+
[GitHub Repository][github]. If you would like to implement a new feature then
|
|
50
|
+
consider what kind of change it is:
|
|
51
|
+
|
|
52
|
+
* **Major Changes** that you wish to contribute to the project should be
|
|
53
|
+
discussed first with `twilio-ruby` contributors in an issue or pull request so
|
|
54
|
+
that we can develop a proper solution and better coordinate our efforts,
|
|
55
|
+
prevent duplication of work, and help you to craft the change so that it is
|
|
56
|
+
successfully accepted into the project.
|
|
57
|
+
* **Small Changes** can be crafted and submitted to the
|
|
58
|
+
[GitHub Repository][github] as a Pull Request.
|
|
59
|
+
|
|
60
|
+
## <a name="docs"></a> Want a Doc Fix?
|
|
61
|
+
|
|
62
|
+
If you want to help improve the docs in the helper library, it's a good idea to
|
|
63
|
+
let others know what you're working on to minimize duplication of effort. Create
|
|
64
|
+
a new issue (or comment on a related existing one) to let others know what
|
|
65
|
+
you're working on.
|
|
66
|
+
|
|
67
|
+
For large fixes, please build and test the documentation before submitting the
|
|
68
|
+
PR to be sure you haven't accidentally introduced layout or formatting issues.
|
|
69
|
+
|
|
70
|
+
If you want to help improve the docs at
|
|
71
|
+
[https://www.twilio.com/docs/libraries/ruby][docs-link], please contact
|
|
72
|
+
[help@twilio.com](mailto:help@twilio.com).
|
|
73
|
+
|
|
74
|
+
## <a name="submit"></a> Submission Guidelines
|
|
75
|
+
|
|
76
|
+
### Submitting an Issue
|
|
77
|
+
Before you submit your issue search the archive, maybe your question was already
|
|
78
|
+
answered.
|
|
79
|
+
|
|
80
|
+
If your issue appears to be a bug, and hasn't been reported, open a new issue.
|
|
81
|
+
Help us to maximize the effort we can spend fixing issues and adding new
|
|
82
|
+
features by not reporting duplicate issues. Providing the following information
|
|
83
|
+
will increase the chances of your issue being dealt with quickly:
|
|
84
|
+
|
|
85
|
+
* **Overview of the Issue** - if an error is being thrown a non-minified stack
|
|
86
|
+
trace helps
|
|
87
|
+
* **Motivation for or Use Case** - explain why this is a bug for you
|
|
88
|
+
* **`twilio-ruby` Version(s)** - is it a regression?
|
|
89
|
+
* **Operating System (if relevant)** - is this a problem with all systems or
|
|
90
|
+
only specific ones?
|
|
91
|
+
* **Reproduce the Error** - provide an isolated code snippet or an unambiguous
|
|
92
|
+
set of steps.
|
|
93
|
+
* **Related Issues** - has a similar issue been reported before?
|
|
94
|
+
* **Suggest a Fix** - if you can't fix the bug yourself, perhaps you can point
|
|
95
|
+
to what might be causing the problem (line of code or commit)
|
|
96
|
+
|
|
97
|
+
**If you get help, help others. Good karma rules!**
|
|
98
|
+
|
|
99
|
+
### Submitting a Pull Request
|
|
100
|
+
Before you submit your pull request consider the following guidelines:
|
|
101
|
+
|
|
102
|
+
* Search [GitHub][github] for an open or closed Pull Request that relates to
|
|
103
|
+
your submission. You don't want to duplicate effort.
|
|
104
|
+
* Make your changes in a new git branch:
|
|
105
|
+
|
|
106
|
+
```shell
|
|
107
|
+
git checkout -b my-fix-branch master
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
* Create your patch, **including appropriate test cases**.
|
|
111
|
+
* Follow our [Coding Rules](#rules).
|
|
112
|
+
* Run the full `twilio-ruby` test suite (aliased by `make test`), and ensure
|
|
113
|
+
that all tests pass.
|
|
114
|
+
* Commit your changes using a descriptive commit message.
|
|
115
|
+
|
|
116
|
+
```shell
|
|
117
|
+
git commit -a
|
|
118
|
+
```
|
|
119
|
+
Note: the optional commit `-a` command line option will automatically "add"
|
|
120
|
+
and "rm" edited files.
|
|
121
|
+
|
|
122
|
+
* Build your changes locally to ensure all the tests pass:
|
|
123
|
+
|
|
124
|
+
```shell
|
|
125
|
+
make test
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
* Push your branch to GitHub:
|
|
129
|
+
|
|
130
|
+
```shell
|
|
131
|
+
git push origin my-fix-branch
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
In GitHub, send a pull request to `twilio-ruby:master`.
|
|
135
|
+
If we suggest changes, then:
|
|
136
|
+
|
|
137
|
+
* Make the required updates.
|
|
138
|
+
* Re-run the `twilio-ruby` test suite to ensure tests are still passing.
|
|
139
|
+
* Commit your changes to your branch (e.g. `my-fix-branch`).
|
|
140
|
+
* Push the changes to your GitHub repository (this will update your Pull Request).
|
|
141
|
+
|
|
142
|
+
That's it! Thank you for your contribution!
|
|
143
|
+
|
|
144
|
+
#### After your pull request is merged
|
|
145
|
+
|
|
146
|
+
After your pull request is merged, you can safely delete your branch and pull
|
|
147
|
+
the changes from the main (upstream) repository.
|
|
148
|
+
|
|
149
|
+
## <a name="rules"></a> Coding Rules
|
|
150
|
+
|
|
151
|
+
To ensure consistency throughout the source code, keep these rules in mind as
|
|
152
|
+
you are working:
|
|
153
|
+
|
|
154
|
+
* All features or bug fixes **must be tested** by one or more tests.
|
|
155
|
+
* All classes and methods **must be documented**.
|
|
156
|
+
|
|
157
|
+
[docs-link]: https://www.twilio.com/docs/libraries/ruby
|
|
158
|
+
[issue-link]: https://github.com/twilio/twilio-ruby/issues/new
|
|
159
|
+
[github]: https://github.com/twilio/twilio-ruby
|