twilio-ruby 5.77.0 → 7.3.3
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/.github/workflows/test-and-deploy.yml +11 -1
- data/.gitignore +3 -0
- data/CHANGES.md +722 -0
- data/CONTRIBUTING.md +10 -2
- data/Gemfile +3 -0
- data/LICENSE +1 -1
- data/Makefile +6 -0
- data/README.md +15 -9
- data/UPGRADE.md +21 -0
- data/cluster_spec.rb +77 -0
- data/lib/twilio-ruby/base/client_base.rb +124 -0
- data/lib/twilio-ruby/framework/request.rb +8 -1
- data/lib/twilio-ruby/framework/rest/error.rb +0 -12
- data/lib/twilio-ruby/http/http_client.rb +13 -5
- data/lib/twilio-ruby/jwt/access_token.rb +0 -59
- data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +201 -178
- data/lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb +133 -0
- data/lib/twilio-ruby/rest/accounts/v1/bulk_contacts.rb +133 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +380 -332
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +380 -332
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +122 -114
- data/lib/twilio-ruby/rest/accounts/v1/safelist.rb +176 -0
- data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +219 -192
- data/lib/twilio-ruby/rest/accounts/v1.rb +63 -42
- data/lib/twilio-ruby/rest/accounts.rb +4 -34
- data/lib/twilio-ruby/rest/accounts_base.rb +38 -0
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +371 -365
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +560 -530
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +624 -605
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +316 -320
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +395 -0
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +435 -0
- data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +139 -118
- data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +203 -194
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +403 -417
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +294 -342
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +503 -511
- data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +844 -641
- data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +844 -641
- data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +307 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +159 -153
- data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +233 -240
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +955 -1050
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +668 -756
- data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +458 -458
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +494 -493
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +433 -407
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +323 -352
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +403 -418
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +539 -554
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +539 -553
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +539 -553
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +850 -903
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +342 -302
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +170 -166
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +345 -350
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +624 -641
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +160 -138
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +160 -138
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +403 -399
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +375 -358
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +345 -338
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +435 -390
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload/data.rb +200 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +384 -380
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +373 -385
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +369 -372
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +512 -513
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +422 -408
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +342 -306
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +384 -368
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +408 -373
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +353 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_ip_access_control_list_mapping.rb +353 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +141 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +353 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +127 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +95 -103
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +346 -339
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +346 -338
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +658 -645
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +421 -421
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +408 -374
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +142 -150
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +174 -154
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +369 -350
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +315 -339
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +382 -416
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +494 -484
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +113 -104
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +175 -161
- data/lib/twilio-ruby/rest/api/v2010/account.rb +986 -943
- data/lib/twilio-ruby/rest/api/v2010.rb +126 -148
- data/lib/twilio-ruby/rest/api.rb +25 -34
- data/lib/twilio-ruby/rest/api_base.rb +38 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_knowledge.rb +355 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_tool.rb +362 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb +303 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/message.rb +201 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant.rb +668 -0
- data/lib/twilio-ruby/rest/assistants/v1/knowledge/chunk.rb +229 -0
- data/lib/twilio-ruby/rest/assistants/v1/knowledge/knowledge_status.rb +209 -0
- data/lib/twilio-ruby/rest/assistants/v1/knowledge.rb +591 -0
- data/lib/twilio-ruby/rest/assistants/v1/policy.rb +264 -0
- data/lib/twilio-ruby/rest/assistants/v1/session/message.rb +264 -0
- data/lib/twilio-ruby/rest/assistants/v1/session.rb +328 -0
- data/lib/twilio-ruby/rest/assistants/v1/tool.rb +586 -0
- data/lib/twilio-ruby/rest/assistants/v1.rb +100 -0
- data/lib/twilio-ruby/rest/assistants.rb +6 -0
- data/lib/twilio-ruby/rest/assistants_base.rb +38 -0
- data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +302 -279
- data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +301 -279
- data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +276 -248
- data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +249 -235
- data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +248 -216
- data/lib/twilio-ruby/rest/bulkexports/v1.rb +57 -55
- data/lib/twilio-ruby/rest/bulkexports.rb +3 -34
- data/lib/twilio-ruby/rest/bulkexports_base.rb +38 -0
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +428 -403
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +381 -391
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +431 -440
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +447 -437
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +543 -515
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +405 -367
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +245 -239
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +474 -440
- data/lib/twilio-ruby/rest/chat/v1/service.rb +870 -894
- data/lib/twilio-ruby/rest/chat/v1.rb +57 -55
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +428 -401
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +376 -370
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +381 -386
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +492 -527
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +519 -533
- data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +449 -467
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +612 -605
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +405 -369
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +369 -381
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +412 -419
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +516 -491
- data/lib/twilio-ruby/rest/chat/v2/service.rb +773 -778
- data/lib/twilio-ruby/rest/chat/v2.rb +57 -53
- data/lib/twilio-ruby/rest/chat/v3/channel.rb +291 -267
- data/lib/twilio-ruby/rest/chat/v3.rb +64 -41
- data/lib/twilio-ruby/rest/chat.rb +4 -48
- data/lib/twilio-ruby/rest/chat_base.rb +48 -0
- data/lib/twilio-ruby/rest/client.rb +333 -584
- data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +185 -0
- data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +202 -188
- data/lib/twilio-ruby/rest/content/v1/content.rb +941 -336
- data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +244 -232
- data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +258 -246
- data/lib/twilio-ruby/rest/content/v1.rb +54 -52
- data/lib/twilio-ruby/rest/content/v2/content.rb +316 -0
- data/lib/twilio-ruby/rest/content/v2/content_and_approvals.rb +309 -0
- data/lib/twilio-ruby/rest/content/v2.rb +46 -0
- data/lib/twilio-ruby/rest/content.rb +2 -46
- data/lib/twilio-ruby/rest/content_base.rb +43 -0
- data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +481 -444
- data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +259 -227
- data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +284 -252
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +337 -344
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +543 -510
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +504 -495
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +434 -403
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +626 -590
- data/lib/twilio-ruby/rest/conversations/v1/credential.rb +434 -409
- data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +305 -304
- data/lib/twilio-ruby/rest/conversations/v1/role.rb +393 -356
- data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +369 -373
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +305 -289
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +251 -235
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +312 -279
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +344 -371
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +550 -550
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +513 -530
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +443 -438
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +638 -626
- data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +311 -317
- data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +405 -380
- data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +453 -455
- data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +490 -474
- data/lib/twilio-ruby/rest/conversations/v1/service.rb +483 -447
- data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +452 -435
- data/lib/twilio-ruby/rest/conversations/v1/user.rb +478 -441
- data/lib/twilio-ruby/rest/conversations/v1.rb +129 -136
- data/lib/twilio-ruby/rest/conversations.rb +9 -34
- data/lib/twilio-ruby/rest/conversations_base.rb +38 -0
- data/lib/twilio-ruby/rest/events/v1/event_type.rb +319 -288
- data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +302 -0
- data/lib/twilio-ruby/rest/events/v1/schema.rb +230 -218
- data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +117 -100
- data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +123 -103
- data/lib/twilio-ruby/rest/events/v1/sink.rb +443 -408
- data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +374 -339
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +425 -387
- data/lib/twilio-ruby/rest/events/v1.rb +87 -87
- data/lib/twilio-ruby/rest/events.rb +5 -34
- data/lib/twilio-ruby/rest/events_base.rb +38 -0
- data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +439 -387
- data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +372 -330
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +547 -496
- data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +572 -570
- data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +321 -306
- data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +221 -208
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +435 -384
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +350 -303
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +435 -380
- data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +352 -403
- data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +209 -190
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +157 -0
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +137 -124
- data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +188 -166
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +247 -229
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +343 -319
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +404 -398
- data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +264 -225
- data/lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb +397 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin.rb +446 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb +247 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration/configured_plugin.rb +393 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration.rb +386 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration_archive.rb +233 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_release.rb +332 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_version_archive.rb +256 -0
- data/lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb +188 -0
- data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +387 -331
- data/lib/twilio-ruby/rest/flex_api/v1.rb +313 -214
- data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +370 -0
- data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +145 -127
- data/lib/twilio-ruby/rest/flex_api/v2.rb +70 -28
- data/lib/twilio-ruby/rest/flex_api.rb +21 -117
- data/lib/twilio-ruby/rest/flex_api_base.rb +43 -0
- data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +247 -227
- data/lib/twilio-ruby/rest/frontline_api/v1.rb +42 -38
- data/lib/twilio-ruby/rest/frontline_api.rb +2 -34
- data/lib/twilio-ruby/rest/frontline_api_base.rb +38 -0
- data/lib/twilio-ruby/rest/iam/v1/api_key.rb +270 -0
- data/lib/twilio-ruby/rest/iam/v1/get_api_keys.rb +223 -0
- data/lib/twilio-ruby/rest/iam/v1/key.rb +177 -0
- data/lib/twilio-ruby/rest/iam/v1.rb +61 -0
- data/lib/twilio-ruby/rest/iam.rb +6 -0
- data/lib/twilio-ruby/rest/iam_base.rb +38 -0
- data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +315 -315
- data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +353 -0
- data/lib/twilio-ruby/rest/insights/v1/call/event.rb +270 -255
- data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +242 -225
- data/lib/twilio-ruby/rest/insights/v1/call.rb +263 -236
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +534 -439
- data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +484 -467
- data/lib/twilio-ruby/rest/insights/v1/conference.rb +498 -502
- data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +379 -371
- data/lib/twilio-ruby/rest/insights/v1/room.rb +491 -489
- data/lib/twilio-ruby/rest/insights/v1/setting.rb +249 -205
- data/lib/twilio-ruby/rest/insights/v1.rb +84 -83
- data/lib/twilio-ruby/rest/insights.rb +6 -34
- data/lib/twilio-ruby/rest/insights_base.rb +38 -0
- data/lib/twilio-ruby/rest/intelligence/v2/custom_operator.rb +447 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator.rb +356 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator_attachment.rb +217 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator_attachments.rb +197 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +358 -0
- data/lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb +356 -0
- data/lib/twilio-ruby/rest/intelligence/v2/service.rb +517 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +227 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +389 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +262 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +525 -0
- data/lib/twilio-ruby/rest/intelligence/v2.rb +176 -0
- data/lib/twilio-ruby/rest/intelligence.rb +6 -0
- data/lib/twilio-ruby/rest/intelligence_base.rb +38 -0
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +428 -364
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +381 -359
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +431 -397
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +447 -409
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +543 -488
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +405 -347
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +245 -233
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +474 -418
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +870 -779
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +57 -53
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +428 -364
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +376 -343
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +381 -359
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +492 -451
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +519 -479
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +449 -411
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +612 -555
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +405 -347
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +369 -351
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +404 -384
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +516 -467
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +773 -689
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +57 -53
- data/lib/twilio-ruby/rest/ip_messaging.rb +3 -41
- data/lib/twilio-ruby/rest/ip_messaging_base.rb +43 -0
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +246 -239
- data/lib/twilio-ruby/rest/lookups/v1.rb +42 -39
- data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +376 -335
- data/lib/twilio-ruby/rest/lookups/v2.rb +42 -38
- data/lib/twilio-ruby/rest/lookups.rb +2 -41
- data/lib/twilio-ruby/rest/lookups_base.rb +43 -0
- data/lib/twilio-ruby/rest/marketplace/v1/available_add_on/available_add_on_extension.rb +309 -0
- data/lib/twilio-ruby/rest/marketplace/v1/available_add_on.rb +336 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.rb +352 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +157 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on.rb +465 -0
- data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +310 -0
- data/lib/twilio-ruby/rest/marketplace/v1/referral_conversion.rb +199 -0
- data/lib/twilio-ruby/rest/marketplace/v1.rb +85 -0
- data/lib/twilio-ruby/rest/marketplace.rb +6 -0
- data/lib/twilio-ruby/rest/marketplace_base.rb +38 -0
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +124 -119
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +361 -346
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +499 -466
- data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +192 -0
- data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +285 -0
- data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +282 -232
- data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +231 -218
- data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +161 -144
- data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +209 -210
- data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb +197 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +356 -335
- data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +370 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +363 -341
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +363 -336
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +613 -521
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +124 -115
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +774 -763
- data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +793 -713
- data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +109 -94
- data/lib/twilio-ruby/rest/messaging/v1.rb +187 -165
- data/lib/twilio-ruby/rest/messaging.rb +10 -53
- data/lib/twilio-ruby/rest/messaging_base.rb +38 -0
- data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +355 -307
- data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +348 -300
- data/lib/twilio-ruby/rest/microvisor/v1/app/app_manifest.rb +202 -185
- data/lib/twilio-ruby/rest/microvisor/v1/app.rb +342 -320
- data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +374 -335
- data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +367 -328
- data/lib/twilio-ruby/rest/microvisor/v1/device.rb +420 -383
- data/lib/twilio-ruby/rest/microvisor/v1.rb +87 -85
- data/lib/twilio-ruby/rest/microvisor.rb +4 -50
- data/lib/twilio-ruby/rest/microvisor_base.rb +38 -0
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +401 -395
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +384 -390
- data/lib/twilio-ruby/rest/monitor/v1.rb +57 -53
- data/lib/twilio-ruby/rest/monitor.rb +3 -34
- data/lib/twilio-ruby/rest/monitor_base.rb +38 -0
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +428 -408
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +442 -452
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +316 -362
- data/lib/twilio-ruby/rest/notify/v1/service.rb +633 -622
- data/lib/twilio-ruby/rest/notify/v1.rb +57 -55
- data/lib/twilio-ruby/rest/notify.rb +3 -34
- data/lib/twilio-ruby/rest/notify_base.rb +38 -0
- data/lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb +241 -0
- data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +111 -94
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +294 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +322 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +256 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +149 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +168 -0
- data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +273 -0
- data/lib/twilio-ruby/rest/numbers/v1/webhook.rb +161 -0
- data/lib/twilio-ruby/rest/numbers/v1.rb +148 -28
- data/lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb +344 -0
- data/lib/twilio-ruby/rest/numbers/v2/authorization_document.rb +408 -0
- data/lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb +266 -0
- data/lib/twilio-ruby/rest/numbers/v2/bundle_clone.rb +277 -0
- data/lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb +507 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +281 -261
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +329 -298
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +340 -309
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +197 -181
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +613 -607
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +400 -351
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +293 -266
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +342 -307
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +428 -371
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +293 -266
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +178 -181
- data/lib/twilio-ruby/rest/numbers/v2.rb +93 -28
- data/lib/twilio-ruby/rest/numbers.rb +2 -47
- data/lib/twilio-ruby/rest/numbers_base.rb +43 -0
- data/lib/twilio-ruby/rest/oauth/v1/authorize.rb +144 -0
- data/lib/twilio-ruby/rest/oauth/v1/token.rb +176 -151
- data/lib/twilio-ruby/rest/oauth/v1.rb +39 -56
- data/lib/twilio-ruby/rest/oauth.rb +3 -65
- data/lib/twilio-ruby/rest/oauth_base.rb +38 -0
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +371 -396
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +451 -446
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +617 -625
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +57 -55
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +302 -298
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +326 -309
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +345 -330
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +436 -398
- data/lib/twilio-ruby/rest/preview/marketplace.rb +57 -53
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +383 -374
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +448 -399
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +439 -407
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +383 -374
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +424 -398
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +442 -404
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +383 -374
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +424 -398
- data/lib/twilio-ruby/rest/preview/sync/service.rb +502 -452
- data/lib/twilio-ruby/rest/preview/sync.rb +42 -37
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +390 -364
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +455 -398
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +233 -205
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +577 -523
- data/lib/twilio-ruby/rest/preview/wireless.rb +72 -69
- data/lib/twilio-ruby/rest/preview.rb +11 -79
- data/lib/twilio-ruby/rest/preview_base.rb +53 -0
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +300 -275
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +108 -119
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +293 -268
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +108 -119
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +300 -275
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +223 -197
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +122 -135
- data/lib/twilio-ruby/rest/pricing/v1.rb +45 -42
- data/lib/twilio-ruby/rest/pricing/v2/country.rb +292 -270
- data/lib/twilio-ruby/rest/pricing/v2/number.rb +235 -217
- data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +300 -275
- data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +241 -220
- data/lib/twilio-ruby/rest/pricing/v2/voice.rb +122 -138
- data/lib/twilio-ruby/rest/pricing/v2.rb +63 -65
- data/lib/twilio-ruby/rest/pricing.rb +6 -41
- data/lib/twilio-ruby/rest/pricing_base.rb +43 -0
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +426 -403
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +411 -418
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +433 -449
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +426 -442
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +529 -506
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +406 -370
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +566 -596
- data/lib/twilio-ruby/rest/proxy/v1.rb +42 -38
- data/lib/twilio-ruby/rest/proxy.rb +2 -34
- data/lib/twilio-ruby/rest/proxy_base.rb +38 -0
- data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +265 -227
- data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +265 -223
- data/lib/twilio-ruby/rest/routes/v2/trunk.rb +265 -227
- data/lib/twilio-ruby/rest/routes/v2.rb +72 -69
- data/lib/twilio-ruby/rest/routes.rb +4 -34
- data/lib/twilio-ruby/rest/routes_base.rb +38 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +316 -323
- data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +419 -380
- data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +209 -208
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +412 -384
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +342 -338
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +362 -383
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +410 -396
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +461 -447
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +224 -234
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +343 -353
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +419 -380
- data/lib/twilio-ruby/rest/serverless/v1/service.rb +530 -493
- data/lib/twilio-ruby/rest/serverless/v1.rb +42 -37
- data/lib/twilio-ruby/rest/serverless.rb +2 -34
- data/lib/twilio-ruby/rest/serverless_base.rb +38 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +209 -199
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +224 -218
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +364 -355
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +429 -394
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +209 -200
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +224 -221
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +364 -361
- data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +477 -449
- data/lib/twilio-ruby/rest/studio/v1/flow.rb +385 -355
- data/lib/twilio-ruby/rest/studio/v1.rb +42 -37
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +209 -200
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +224 -221
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +364 -361
- data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +470 -442
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +344 -320
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +237 -0
- data/lib/twilio-ruby/rest/studio/v2/flow.rb +528 -472
- data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +124 -99
- data/lib/twilio-ruby/rest/studio/v2.rb +48 -44
- data/lib/twilio-ruby/rest/studio.rb +3 -41
- data/lib/twilio-ruby/rest/studio_base.rb +43 -0
- data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +396 -382
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +477 -483
- data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +401 -409
- data/lib/twilio-ruby/rest/supersim/v1/network.rb +303 -297
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +342 -332
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +385 -351
- data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +247 -237
- data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +243 -224
- data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +201 -188
- data/lib/twilio-ruby/rest/supersim/v1/sim.rb +465 -453
- data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +361 -361
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +306 -344
- data/lib/twilio-ruby/rest/supersim/v1.rb +144 -147
- data/lib/twilio-ruby/rest/supersim.rb +10 -34
- data/lib/twilio-ruby/rest/supersim_base.rb +38 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +383 -371
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +464 -423
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +473 -490
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +383 -370
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +479 -445
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +476 -495
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +383 -368
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +479 -444
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +142 -132
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +428 -400
- data/lib/twilio-ruby/rest/sync/v1/service.rb +584 -567
- data/lib/twilio-ruby/rest/sync/v1.rb +42 -37
- data/lib/twilio-ruby/rest/sync.rb +2 -34
- data/lib/twilio-ruby/rest/sync_base.rb +38 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +414 -395
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +445 -464
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +709 -749
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +659 -661
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +418 -382
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_bulk_real_time_statistics.rb +164 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +362 -369
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +282 -275
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +233 -236
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +240 -258
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +583 -572
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +691 -732
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +394 -388
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +238 -239
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +284 -265
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +218 -193
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +254 -234
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +630 -637
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +362 -375
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +248 -241
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +233 -244
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +532 -510
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +356 -356
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +234 -206
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +244 -234
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +729 -730
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +42 -37
- data/lib/twilio-ruby/rest/taskrouter.rb +2 -34
- data/lib/twilio-ruby/rest/taskrouter_base.rb +38 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +349 -320
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +349 -317
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +449 -419
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +482 -451
- data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +229 -191
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +632 -630
- data/lib/twilio-ruby/rest/trunking/v1.rb +42 -38
- data/lib/twilio-ruby/rest/trunking.rb +2 -34
- data/lib/twilio-ruby/rest/trunking_base.rb +38 -0
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +249 -0
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb +357 -0
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +220 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +364 -352
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +348 -323
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +338 -321
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +541 -513
- data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +392 -346
- data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +285 -261
- data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +278 -252
- data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +406 -359
- data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +285 -261
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +364 -352
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +348 -323
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +338 -321
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +541 -513
- data/lib/twilio-ruby/rest/trusthub/v1.rb +168 -139
- data/lib/twilio-ruby/rest/trusthub.rb +8 -34
- data/lib/twilio-ruby/rest/trusthub_base.rb +38 -0
- data/lib/twilio-ruby/rest/verify/v2/form.rb +196 -183
- data/lib/twilio-ruby/rest/verify/v2/safelist.rb +228 -207
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +277 -254
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +194 -192
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +503 -531
- data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +454 -453
- data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +252 -283
- data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +429 -414
- data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +388 -363
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +410 -388
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +429 -384
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +390 -372
- data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +224 -205
- data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +456 -412
- data/lib/twilio-ruby/rest/verify/v2/service.rb +816 -780
- data/lib/twilio-ruby/rest/verify/v2/template.rb +222 -205
- data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +375 -387
- data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +242 -226
- data/lib/twilio-ruby/rest/verify/v2.rb +99 -103
- data/lib/twilio-ruby/rest/verify.rb +7 -34
- data/lib/twilio-ruby/rest/verify_base.rb +38 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +484 -507
- data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +534 -647
- data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +286 -261
- data/lib/twilio-ruby/rest/video/v1/recording.rb +431 -426
- data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +286 -261
- data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +262 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +334 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +186 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +341 -0
- data/lib/twilio-ruby/rest/video/v1/room/participant.rb +503 -0
- data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +175 -0
- data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +428 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +613 -602
- data/lib/twilio-ruby/rest/video/v1.rb +99 -99
- data/lib/twilio-ruby/rest/video.rb +7 -34
- data/lib/twilio-ruby/rest/video_base.rb +38 -0
- data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +161 -176
- data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +510 -486
- data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +449 -434
- data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +400 -352
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +138 -121
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +196 -183
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +376 -397
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +220 -190
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +123 -121
- data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +386 -339
- data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +369 -319
- data/lib/twilio-ruby/rest/voice/v1.rb +130 -117
- data/lib/twilio-ruby/rest/voice.rb +7 -34
- data/lib/twilio-ruby/rest/voice_base.rb +38 -0
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +415 -406
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +472 -436
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +299 -284
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +240 -243
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +641 -647
- data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +227 -221
- data/lib/twilio-ruby/rest/wireless/v1.rb +78 -76
- data/lib/twilio-ruby/rest/wireless.rb +5 -34
- data/lib/twilio-ruby/rest/wireless_base.rb +38 -0
- data/lib/twilio-ruby/rest.rb +1 -0
- data/lib/twilio-ruby/twiml/messaging_response.rb +1 -1
- data/lib/twilio-ruby/twiml/voice_response.rb +97 -18
- data/lib/twilio-ruby/version.rb +1 -1
- data/sonar-project.properties +1 -1
- data/twilio-ruby.gemspec +2 -1
- metadata +148 -80
- data/conf/cacert.pem +0 -3376
- data/lib/twilio-ruby/framework/twilio_response.rb +0 -19
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +0 -500
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +0 -464
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +0 -301
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +0 -314
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +0 -348
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +0 -348
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +0 -163
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +0 -348
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +0 -137
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +0 -220
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +0 -214
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +0 -399
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +0 -418
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +0 -392
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +0 -469
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +0 -218
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +0 -386
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +0 -456
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +0 -255
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +0 -237
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +0 -507
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +0 -420
- data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +0 -650
- data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +0 -194
- data/lib/twilio-ruby/rest/autopilot/v1.rb +0 -52
- data/lib/twilio-ruby/rest/autopilot.rb +0 -53
- data/lib/twilio-ruby/rest/events/v1/schema/version.rb +0 -290
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answersets.rb +0 -144
- data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +0 -321
- data/lib/twilio-ruby/rest/media/v1/media_processor.rb +0 -397
- data/lib/twilio-ruby/rest/media/v1/media_recording.rb +0 -399
- data/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +0 -221
- data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +0 -403
- data/lib/twilio-ruby/rest/media/v1.rb +0 -76
- data/lib/twilio-ruby/rest/media.rb +0 -65
- data/lib/twilio-ruby/rest/messaging/v1/deactivation.rb +0 -164
- data/lib/twilio-ruby/rest/messaging/v1/domain_cert.rb +0 -257
- data/lib/twilio-ruby/rest/oauth/v1/device_code.rb +0 -153
- data/lib/twilio-ruby/rest/oauth/v1/oauth.rb +0 -162
- data/lib/twilio-ruby/rest/oauth/v1/openid_discovery.rb +0 -242
- data/lib/twilio-ruby/rest/oauth/v1/user_info.rb +0 -193
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +0 -382
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +0 -365
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +0 -425
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +0 -376
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +0 -469
- data/lib/twilio-ruby/rest/preview/deployed_devices.rb +0 -45
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +0 -212
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +0 -212
- data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +0 -206
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +0 -386
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +0 -407
- data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +0 -380
- data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +0 -437
- data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +0 -212
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +0 -373
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +0 -428
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +0 -241
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +0 -225
- data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +0 -495
- data/lib/twilio-ruby/rest/preview/understand/assistant.rb +0 -629
- data/lib/twilio-ruby/rest/preview/understand.rb +0 -45
- data/lib/twilio-ruby/rest/studio/v2/flow/test_user.rb +0 -199
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -413
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_anonymize.rb +0 -240
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +0 -335
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +0 -175
- data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +0 -340
- data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +0 -499
- data/lib/twilio-ruby/rest/video/v1/room/room_recording_rule.rb +0 -144
data/CHANGES.md
CHANGED
|
@@ -1,6 +1,728 @@
|
|
|
1
1
|
twilio-ruby changelog
|
|
2
2
|
=====================
|
|
3
3
|
|
|
4
|
+
[2024-10-03] Version 7.3.3
|
|
5
|
+
--------------------------
|
|
6
|
+
**Messaging**
|
|
7
|
+
- Add A2P external campaign CnpMigration flag
|
|
8
|
+
|
|
9
|
+
**Numbers**
|
|
10
|
+
- Add address sid to portability API
|
|
11
|
+
|
|
12
|
+
**Verify**
|
|
13
|
+
- Add `SnaClientToken` optional parameter on Verification check.
|
|
14
|
+
- Add `EnableSnaClientToken` optional parameter for Verification creation.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
[2024-09-25] Version 7.3.2
|
|
18
|
+
--------------------------
|
|
19
|
+
**Accounts**
|
|
20
|
+
- Update docs and mounts.
|
|
21
|
+
- Change library visibility to public
|
|
22
|
+
- Enable consent and contact bulk upsert APIs in prod.
|
|
23
|
+
|
|
24
|
+
**Serverless**
|
|
25
|
+
- Add is_plugin parameter in deployments api to check if it is plugins deployment
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
[2024-09-18] Version 7.3.1
|
|
29
|
+
--------------------------
|
|
30
|
+
**Intelligence**
|
|
31
|
+
- Remove public from operator_type
|
|
32
|
+
- Update operator_type to include general-availablity and deprecated
|
|
33
|
+
|
|
34
|
+
**Numbers**
|
|
35
|
+
- Remove beta flag for bundle clone API
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
[2024-09-05] Version 7.3.0
|
|
39
|
+
--------------------------
|
|
40
|
+
**Iam**
|
|
41
|
+
- updated library_visibility public for new public apikeys
|
|
42
|
+
|
|
43
|
+
**Numbers**
|
|
44
|
+
- Add new field in Error Codes for Regulatory Compliance.
|
|
45
|
+
- Change typing of Port In Request date_created field to date_time instead of date **(breaking change)**
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
[2024-08-26] Version 7.2.4
|
|
49
|
+
--------------------------
|
|
50
|
+
**Library - Chore**
|
|
51
|
+
- [PR #729](https://github.com/twilio/twilio-ruby/pull/729): remove preview_iam reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
52
|
+
- [PR #727](https://github.com/twilio/twilio-ruby/pull/727): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
53
|
+
- [PR #726](https://github.com/twilio/twilio-ruby/pull/726): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
54
|
+
- [PR #725](https://github.com/twilio/twilio-ruby/pull/725): fix documentation link. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
55
|
+
|
|
56
|
+
**Api**
|
|
57
|
+
- Update documentation of `error_code` and `error_message` on the Message resource.
|
|
58
|
+
- Remove generic parameters from `transcription` resource
|
|
59
|
+
- Added public documentation for Payload Data retrieval API
|
|
60
|
+
|
|
61
|
+
**Flex**
|
|
62
|
+
- Adding update Flex User api
|
|
63
|
+
|
|
64
|
+
**Insights**
|
|
65
|
+
- Added 'branded', 'business_profile' and 'voice_integrity' fields in List Call Summary
|
|
66
|
+
|
|
67
|
+
**Intelligence**
|
|
68
|
+
- Add `words` array information to the Sentences v2 entity.
|
|
69
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Operator Results.
|
|
70
|
+
- Change the path parameter when fetching an `/OperatorType/{}` from `sid<EY>` to `string` to support searching by SID or by name
|
|
71
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Transcript and Service endpoints.
|
|
72
|
+
|
|
73
|
+
**Messaging**
|
|
74
|
+
- Adds two new channel senders api to add/remove channel senders to/from a messaging service
|
|
75
|
+
- Extend ERC api to accept an optional attribute in request body to indicate CNP migration for an ERC
|
|
76
|
+
|
|
77
|
+
**Numbers**
|
|
78
|
+
- Modify visibility to public in bundle clone API
|
|
79
|
+
- Add `port_date` field to Port In Request and Port In Phone Numbers Fetch APIs
|
|
80
|
+
- Change properties docs for port in phone numbers api
|
|
81
|
+
- Add is_test body param to the Bundle Create API
|
|
82
|
+
- Change properties docs for port in api
|
|
83
|
+
|
|
84
|
+
**Trusthub**
|
|
85
|
+
- Add new field in themeSetId in compliance_inquiry.
|
|
86
|
+
|
|
87
|
+
**Verify**
|
|
88
|
+
- Update `custom_code_enabled` description on verification docs
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
[2024-07-02] Version 7.2.3
|
|
92
|
+
--------------------------
|
|
93
|
+
**Rubygems**
|
|
94
|
+
- Add docs link to gemspec
|
|
95
|
+
|
|
96
|
+
[2024-07-02] Version 7.2.2
|
|
97
|
+
--------------------------
|
|
98
|
+
**Intelligence**
|
|
99
|
+
- Deprecate account flag api.twilio-intelligence.v2
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
[2024-06-27] Version 7.2.1
|
|
103
|
+
--------------------------
|
|
104
|
+
**Api**
|
|
105
|
+
- Add `transcription` resource
|
|
106
|
+
- Add beta feature request managed cert
|
|
107
|
+
|
|
108
|
+
**Flex**
|
|
109
|
+
- Changed mount name for flex_team v2 api
|
|
110
|
+
|
|
111
|
+
**Intelligence**
|
|
112
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
|
|
113
|
+
|
|
114
|
+
**Numbers**
|
|
115
|
+
- Added include_constraints query parameter to the Regulations API
|
|
116
|
+
|
|
117
|
+
**Twiml**
|
|
118
|
+
- Add support for `<Transcription>` noun
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
[2024-06-18] Version 7.2.0
|
|
122
|
+
--------------------------
|
|
123
|
+
**Library - Chore**
|
|
124
|
+
- [PR #723](https://github.com/twilio/twilio-ruby/pull/723): adding contentType in post and put. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
125
|
+
|
|
126
|
+
**Events**
|
|
127
|
+
- Add `status` and `documentation_url` to Event Types
|
|
128
|
+
|
|
129
|
+
**Lookups**
|
|
130
|
+
- Removed unused `fraud` lookups in V1 only to facilitate rest proxy migration
|
|
131
|
+
|
|
132
|
+
**Numbers**
|
|
133
|
+
- Add date_created field to the Get Port In Request API
|
|
134
|
+
- Rename the `status_last_time_updated_timestamp` field to `last_updated` in the Get Port In Phone Number API **(breaking change)**
|
|
135
|
+
- Add Rejection reason and rejection reason code to the Get Port In Phone Number API
|
|
136
|
+
- Remove the carrier information from the Portability API
|
|
137
|
+
|
|
138
|
+
**Proxy**
|
|
139
|
+
- Change property `type` from enum to ienum
|
|
140
|
+
|
|
141
|
+
**Trusthub**
|
|
142
|
+
- Add skipMessagingUseCase field in compliance_tollfree_inquiry.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
[2024-06-06] Version 7.1.1
|
|
146
|
+
--------------------------
|
|
147
|
+
**Library - Chore**
|
|
148
|
+
- [PR #721](https://github.com/twilio/twilio-ruby/pull/721): adding rexml to Gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
149
|
+
|
|
150
|
+
**Api**
|
|
151
|
+
- Mark MaxPrice as obsolete
|
|
152
|
+
|
|
153
|
+
**Lookups**
|
|
154
|
+
- Update examples for `phone_number_quality_score`
|
|
155
|
+
|
|
156
|
+
**Messaging**
|
|
157
|
+
- List tollfree verifications on parent account and all sub-accounts
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
[2024-05-24] Version 7.1.0
|
|
161
|
+
--------------------------
|
|
162
|
+
**Library - Chore**
|
|
163
|
+
- [PR #720](https://github.com/twilio/twilio-ruby/pull/720): removing preview_messaging reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
164
|
+
|
|
165
|
+
**Api**
|
|
166
|
+
- Add ie1 as supported region for UserDefinedMessage and UserDefinedMessageSubscription.
|
|
167
|
+
|
|
168
|
+
**Flex**
|
|
169
|
+
- Adding validated field to `plugin_versions`
|
|
170
|
+
- Corrected the data type for `runtime_domain`, `call_recording_webhook_url`, `crm_callback_url`, `crm_fallback_url`, `flex_url` in Flex Configuration
|
|
171
|
+
- Making `routing` optional in Create Interactions endpoint
|
|
172
|
+
|
|
173
|
+
**Intelligence**
|
|
174
|
+
- Expose operator authoring apis to public visibility
|
|
175
|
+
- Deleted `language_code` parameter from updating service in v2 **(breaking change)**
|
|
176
|
+
- Add read_only_attached_operator_sids to v2 services
|
|
177
|
+
|
|
178
|
+
**Numbers**
|
|
179
|
+
- Add API endpoint for GET Porting Webhook Configurations By Account SID
|
|
180
|
+
- Remove bulk portability api under version `/v1`. **(breaking change)**
|
|
181
|
+
- Removed porting_port_in_fetch.json files and move the content into porting_port_in.json files
|
|
182
|
+
- Add API endpoint to deleting Webhook Configurations
|
|
183
|
+
- Add Get Phone Number by Port in request SID and Phone Number SID api
|
|
184
|
+
- Add Create Porting webhook configuration API
|
|
185
|
+
- Added bundle_sid and losing_carrier_information fields to Create PortInRequest api to support Japan porting
|
|
186
|
+
|
|
187
|
+
**Taskrouter**
|
|
188
|
+
- Add back `routing_target` property to tasks
|
|
189
|
+
- Add back `ignore_capacity` property to tasks
|
|
190
|
+
- Removing `routing_target` property to tasks due to revert
|
|
191
|
+
- Removing `ignore_capacity` property to tasks due to revert
|
|
192
|
+
- Add `routing_target` property to tasks
|
|
193
|
+
- Add `ignore_capacity` property to tasks
|
|
194
|
+
|
|
195
|
+
**Trusthub**
|
|
196
|
+
- Add new field errors to bundle as part of public API response in customer_profile.json and trust_product.json **(breaking change)**
|
|
197
|
+
- Add themeSetId field in compliance_tollfree_inquiry.
|
|
198
|
+
|
|
199
|
+
**Verify**
|
|
200
|
+
- Update `friendly_name` description on service docs
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
[2024-04-18] Version 7.0.2
|
|
204
|
+
--------------------------
|
|
205
|
+
**Flex**
|
|
206
|
+
- Add header `ui_version` to `web_channels` API
|
|
207
|
+
|
|
208
|
+
**Messaging**
|
|
209
|
+
- Redeploy after failed pipeline
|
|
210
|
+
|
|
211
|
+
**Numbers**
|
|
212
|
+
- Add Delete Port In request phone number api and Add Delete Port In request api
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
[2024-04-04] Version 7.0.1
|
|
216
|
+
--------------------------
|
|
217
|
+
**Api**
|
|
218
|
+
- Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
|
|
219
|
+
|
|
220
|
+
**Flex**
|
|
221
|
+
- Remove optional parameter from `plugins` and it to `plugin_versions`
|
|
222
|
+
|
|
223
|
+
**Lookups**
|
|
224
|
+
- Add new `pre_fill` package to the lookup response
|
|
225
|
+
|
|
226
|
+
**Messaging**
|
|
227
|
+
- Cleanup api.messaging.next-gen from Messaging Services endpoints
|
|
228
|
+
- Readd Sending-Window after fixing test failure
|
|
229
|
+
|
|
230
|
+
**Verify**
|
|
231
|
+
- Add `whatsapp.msg_service_sid` and `whatsapp.from` parameters to create, update, get and list of services endpoints
|
|
232
|
+
|
|
233
|
+
**Voice**
|
|
234
|
+
- Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
|
|
235
|
+
|
|
236
|
+
**Twiml**
|
|
237
|
+
- Add new `token_type` value `payment-method` for `Pay` verb
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
[2024-04-01] Version 7.0.0
|
|
241
|
+
--------------------------
|
|
242
|
+
**Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2024-01-19-6xx-to-7xx) for detailed migration notes.
|
|
243
|
+
|
|
244
|
+
**Library - Feature**
|
|
245
|
+
- [PR #719](https://github.com/twilio/twilio-ruby/pull/719): Merge '7.0.0-rc' into main. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)! **(breaking change)**
|
|
246
|
+
|
|
247
|
+
**Library - Chore**
|
|
248
|
+
- [PR #715](https://github.com/twilio/twilio-ruby/pull/715): remove media endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
249
|
+
|
|
250
|
+
**Api**
|
|
251
|
+
- Add property `queue_time` to conference participant resource
|
|
252
|
+
- Update RiskCheck documentation
|
|
253
|
+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
|
|
254
|
+
|
|
255
|
+
**Flex**
|
|
256
|
+
- Adding optional parameter to `plugins`
|
|
257
|
+
|
|
258
|
+
**Media**
|
|
259
|
+
- Remove API: MediaProcessor
|
|
260
|
+
|
|
261
|
+
**Messaging**
|
|
262
|
+
- Remove Sending-Window due to test failure
|
|
263
|
+
- Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
|
|
264
|
+
|
|
265
|
+
**Numbers**
|
|
266
|
+
- Correct valid_until_date field to be visible in Bundles resource
|
|
267
|
+
- Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
|
|
268
|
+
|
|
269
|
+
**Oauth**
|
|
270
|
+
- Modified token endpoint response
|
|
271
|
+
- Added refresh_token and scope as optional parameter to token endpoint
|
|
272
|
+
- Add new APIs for vendor authorize and token endpoints
|
|
273
|
+
|
|
274
|
+
**Trusthub**
|
|
275
|
+
- Add update inquiry endpoint in compliance_registration.
|
|
276
|
+
- Add new field in themeSetId in compliance_registration.
|
|
277
|
+
|
|
278
|
+
**Voice**
|
|
279
|
+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
|
|
280
|
+
|
|
281
|
+
**Twiml**
|
|
282
|
+
- Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
|
|
283
|
+
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
[2024-03-12] Version 6.12.1
|
|
287
|
+
---------------------------
|
|
288
|
+
**Api**
|
|
289
|
+
- Correct precedence documentation for application_sid vs status_callback in message creation
|
|
290
|
+
- Mark MaxPrice as deprecated
|
|
291
|
+
|
|
292
|
+
**Flex**
|
|
293
|
+
- Making `plugins` visibility to public
|
|
294
|
+
|
|
295
|
+
**Messaging**
|
|
296
|
+
- Add new `errors` attribute to the Brand Registration resource.
|
|
297
|
+
- Mark `brand_feedback` attribute as deprecated.
|
|
298
|
+
- Mark `failure_reason` attribute as deprecated.
|
|
299
|
+
- The new `errors` attribute is expected to provide additional information about Brand registration failures and feedback (if any has been provided by The Campaign Registry). Consumers should use this attribute instead of `brand_feedback` and `failure_reason`.
|
|
300
|
+
|
|
301
|
+
**Numbers**
|
|
302
|
+
- Correcting mount_name for porting port in fetch API
|
|
303
|
+
|
|
304
|
+
**Trusthub**
|
|
305
|
+
- Add new field in statusCallbackUrl in compliance_registration.
|
|
306
|
+
- Add new field in isvRegisteringForSelfOrTenant in compliance_registration.
|
|
307
|
+
|
|
308
|
+
**Twiml**
|
|
309
|
+
- Expanded description of Action parameter for Message verb
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
[2024-02-27] Version 6.12.0
|
|
313
|
+
---------------------------
|
|
314
|
+
**Library - Chore**
|
|
315
|
+
- [PR #712](https://github.com/twilio/twilio-ruby/pull/712): cluster tests enabled. Thanks to [@sbansla](https://github.com/sbansla)!
|
|
316
|
+
|
|
317
|
+
**Api**
|
|
318
|
+
- remove feedback and feedback summary from call resource
|
|
319
|
+
|
|
320
|
+
**Flex**
|
|
321
|
+
- Adding `routing_properties` to Interactions Channels Participant
|
|
322
|
+
|
|
323
|
+
**Lookups**
|
|
324
|
+
- Add new `line_status` package to the lookup response
|
|
325
|
+
- Remove `live_activity` package from the lookup response **(breaking change)**
|
|
326
|
+
|
|
327
|
+
**Messaging**
|
|
328
|
+
- Add tollfree multiple rejection reasons response array
|
|
329
|
+
|
|
330
|
+
**Trusthub**
|
|
331
|
+
- Add ENUM for businessRegistrationAuthority in compliance_registration. **(breaking change)**
|
|
332
|
+
- Add new field in isIsvEmbed in compliance_registration.
|
|
333
|
+
- Add additional optional fields in compliance_registration for Individual business type.
|
|
334
|
+
|
|
335
|
+
**Twiml**
|
|
336
|
+
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
[2024-02-09] Version 6.11.0
|
|
340
|
+
---------------------------
|
|
341
|
+
**Library - Chore**
|
|
342
|
+
- [PR #710](https://github.com/twilio/twilio-ruby/pull/710): remove live media endpoint. Thanks to [@califlower](https://github.com/califlower)!
|
|
343
|
+
- [PR #708](https://github.com/twilio/twilio-ruby/pull/708): removing oauth and autopilot references. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
344
|
+
|
|
345
|
+
**Api**
|
|
346
|
+
- Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
|
|
347
|
+
- Update documentation to reflect RiskCheck GA
|
|
348
|
+
- Added optional parameter `CallToken` for create participant api
|
|
349
|
+
|
|
350
|
+
**Events**
|
|
351
|
+
- Marked as GA
|
|
352
|
+
|
|
353
|
+
**Flex**
|
|
354
|
+
- Adding `flex_instance_sid` to Flex Configuration
|
|
355
|
+
- Adding `provisioning_status` for Email Manager
|
|
356
|
+
- Adding `offline_config` to Flex Configuration
|
|
357
|
+
|
|
358
|
+
**Insights**
|
|
359
|
+
- add flag to restrict access to unapid customers
|
|
360
|
+
- decommission voice-qualitystats-endpoint role
|
|
361
|
+
|
|
362
|
+
**Intelligence**
|
|
363
|
+
- Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
|
|
364
|
+
|
|
365
|
+
**Lookups**
|
|
366
|
+
- Remove `carrier` field from `sms_pumping_risk` and leave `carrier_risk_category` **(breaking change)**
|
|
367
|
+
- Remove carrier information from call forwarding package **(breaking change)**
|
|
368
|
+
|
|
369
|
+
**Messaging**
|
|
370
|
+
- Add update instance endpoints to us_app_to_person api
|
|
371
|
+
- Add tollfree edit_allowed and edit_reason fields
|
|
372
|
+
- Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
|
|
373
|
+
- Add DELETE support to Tollfree Verification resource
|
|
374
|
+
|
|
375
|
+
**Numbers**
|
|
376
|
+
- Add Get Port In request api
|
|
377
|
+
|
|
378
|
+
**Push**
|
|
379
|
+
- Migrated to new Push API V4 with Resilient Notification Delivery.
|
|
380
|
+
|
|
381
|
+
**Serverless**
|
|
382
|
+
- Add node18 as a valid Build runtime
|
|
383
|
+
|
|
384
|
+
**Taskrouter**
|
|
385
|
+
- Add `jitter_buffer_size` param in update reservation
|
|
386
|
+
- Add container attribute to task_queue_bulk_real_time_statistics endpoint
|
|
387
|
+
- Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
|
|
388
|
+
|
|
389
|
+
**Trusthub**
|
|
390
|
+
- Add optional field NotificationEmail to the POST /v1/ComplianceInquiries/Customers/Initialize API
|
|
391
|
+
- Add additional optional fields in compliance_tollfree_inquiry.json
|
|
392
|
+
- Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
|
|
393
|
+
- Add new optional field notification_email to compliance_tollfree_inquiry.json
|
|
394
|
+
|
|
395
|
+
**Verify**
|
|
396
|
+
- `Tags` property added again to Public Docs **(breaking change)**
|
|
397
|
+
- Remove `Tags` from Public Docs **(breaking change)**
|
|
398
|
+
- Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
|
|
399
|
+
- Add `Tags` optional parameter on Verification creation.
|
|
400
|
+
- Update Verify TOTP maturity to GA.
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
[2024-01-25] Version 6.10.0
|
|
404
|
+
---------------------------
|
|
405
|
+
**Oauth**
|
|
406
|
+
- updated openid discovery endpoint uri **(breaking change)**
|
|
407
|
+
- Added device code authorization endpoint
|
|
408
|
+
- added oauth JWKS endpoint
|
|
409
|
+
- Get userinfo resource
|
|
410
|
+
- OpenID discovery resource
|
|
411
|
+
- Add new API for token endpoint
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
[2024-01-14] Version 6.9.1
|
|
415
|
+
--------------------------
|
|
416
|
+
**Library - Chore**
|
|
417
|
+
- [PR #691](https://github.com/twilio/twilio-ruby/pull/691): Removing tests related to Autopilot and Understand Endpoints - product EoL. Thanks to [@miriamela](https://github.com/miriamela)!
|
|
418
|
+
|
|
419
|
+
**Library - Fix**
|
|
420
|
+
- [PR #693](https://github.com/twilio/twilio-ruby/pull/693): fixed query param not going for delete. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
421
|
+
|
|
422
|
+
**Push**
|
|
423
|
+
- Migrated to new Push API V4 with Resilient Notification Delivery.
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
[2023-12-14] Version 6.9.0
|
|
427
|
+
--------------------------
|
|
428
|
+
**Api**
|
|
429
|
+
- Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
|
|
430
|
+
|
|
431
|
+
**Events**
|
|
432
|
+
- Marked as GA
|
|
433
|
+
|
|
434
|
+
**Insights**
|
|
435
|
+
- decommission voice-qualitystats-endpoint role
|
|
436
|
+
|
|
437
|
+
**Numbers**
|
|
438
|
+
- Add Get Port In request api
|
|
439
|
+
|
|
440
|
+
**Taskrouter**
|
|
441
|
+
- Add `jitter_buffer_size` param in update reservation
|
|
442
|
+
|
|
443
|
+
**Trusthub**
|
|
444
|
+
- Add additional optional fields in compliance_tollfree_inquiry.json
|
|
445
|
+
|
|
446
|
+
**Verify**
|
|
447
|
+
- Remove `Tags` from Public Docs **(breaking change)**
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
[2023-12-01] Version 6.8.3
|
|
451
|
+
--------------------------
|
|
452
|
+
**Verify**
|
|
453
|
+
- Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
[2023-11-17] Version 6.8.2
|
|
457
|
+
--------------------------
|
|
458
|
+
**Library - Chore**
|
|
459
|
+
- [PR #687](https://github.com/twilio/twilio-ruby/pull/687): remove more oauth refrences. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
|
|
460
|
+
|
|
461
|
+
**Api**
|
|
462
|
+
- Update documentation to reflect RiskCheck GA
|
|
463
|
+
|
|
464
|
+
**Messaging**
|
|
465
|
+
- Add tollfree edit_allowed and edit_reason fields
|
|
466
|
+
- Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
|
|
467
|
+
|
|
468
|
+
**Taskrouter**
|
|
469
|
+
- Add container attribute to task_queue_bulk_real_time_statistics endpoint
|
|
470
|
+
|
|
471
|
+
**Trusthub**
|
|
472
|
+
- Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
|
|
473
|
+
- Add new optional field notification_email to compliance_tollfree_inquiry.json
|
|
474
|
+
|
|
475
|
+
**Verify**
|
|
476
|
+
- Add `Tags` optional parameter on Verification creation.
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
[2023-11-06] Version 6.8.1
|
|
480
|
+
--------------------------
|
|
481
|
+
**Flex**
|
|
482
|
+
- Adding `provisioning_status` for Email Manager
|
|
483
|
+
|
|
484
|
+
**Intelligence**
|
|
485
|
+
- Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
|
|
486
|
+
|
|
487
|
+
**Messaging**
|
|
488
|
+
- Add DELETE support to Tollfree Verification resource
|
|
489
|
+
|
|
490
|
+
**Serverless**
|
|
491
|
+
- Add node18 as a valid Build runtime
|
|
492
|
+
|
|
493
|
+
**Verify**
|
|
494
|
+
- Update Verify TOTP maturity to GA.
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
[2023-10-19] Version 6.8.0
|
|
498
|
+
--------------------------
|
|
499
|
+
**Library - Chore**
|
|
500
|
+
- [PR #682](https://github.com/twilio/twilio-ruby/pull/682): Removing Test Related To Deprecated Endpoint - OAuth. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
|
|
501
|
+
|
|
502
|
+
**Library - Fix**
|
|
503
|
+
- [PR #680](https://github.com/twilio/twilio-ruby/pull/680): update validate ssl method with new endpoint. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
|
|
504
|
+
|
|
505
|
+
**Accounts**
|
|
506
|
+
- Updated Safelist metadata to correct the docs.
|
|
507
|
+
- Add Global SafeList API changes
|
|
508
|
+
|
|
509
|
+
**Api**
|
|
510
|
+
- Added optional parameter `CallToken` for create participant api
|
|
511
|
+
|
|
512
|
+
**Flex**
|
|
513
|
+
- Adding `offline_config` to Flex Configuration
|
|
514
|
+
|
|
515
|
+
**Intelligence**
|
|
516
|
+
- Deleted `redacted` parameter from fetching transcript in v2 **(breaking change)**
|
|
517
|
+
|
|
518
|
+
**Lookups**
|
|
519
|
+
- Add new `phone_number_quality_score` package to the lookup response
|
|
520
|
+
- Remove `disposable_phone_number_risk` package **(breaking change)**
|
|
521
|
+
|
|
522
|
+
**Messaging**
|
|
523
|
+
- Update US App To Person documentation with current `message_samples` requirements
|
|
524
|
+
|
|
525
|
+
**Taskrouter**
|
|
526
|
+
- Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
|
|
527
|
+
- Add `virtual_start_time` property to tasks
|
|
528
|
+
- Updating `task_queue_data` format from `map` to `array` in the response of bulk get endpoint of TaskQueue Real Time Statistics API **(breaking change)**
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
[2023-10-05] Version 6.7.1
|
|
532
|
+
--------------------------
|
|
533
|
+
**Library - Chore**
|
|
534
|
+
- [PR #678](https://github.com/twilio/twilio-ruby/pull/678): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
|
|
535
|
+
|
|
536
|
+
**Lookups**
|
|
537
|
+
- Add test api support for Lookup v2
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
[2023-09-21] Version 6.7.0
|
|
541
|
+
--------------------------
|
|
542
|
+
**Conversations**
|
|
543
|
+
- Enable conversation email bindings, email address configurations and email message subjects
|
|
544
|
+
|
|
545
|
+
**Flex**
|
|
546
|
+
- Adding `console_errors_included` to Flex Configuration field `debugger_integrations`
|
|
547
|
+
- Introducing new channel status as `inactive` in modify channel endpoint for leave functionality **(breaking change)**
|
|
548
|
+
- Adding `citrix_voice_vdi` to Flex Configuration
|
|
549
|
+
|
|
550
|
+
**Taskrouter**
|
|
551
|
+
- Add Update Queues, Workers, Workflow Real Time Statistics API to flex-rt-data-api-v2 endpoint
|
|
552
|
+
- Add Update Workspace Real Time Statistics API to flex-rt-data-api-v2 endpoint
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
[2023-09-07] Version 6.6.0
|
|
556
|
+
--------------------------
|
|
557
|
+
**Api**
|
|
558
|
+
- Make message tagging parameters public **(breaking change)**
|
|
559
|
+
|
|
560
|
+
**Flex**
|
|
561
|
+
- Adding `agent_conv_end_methods` to Flex Configuration
|
|
562
|
+
|
|
563
|
+
**Messaging**
|
|
564
|
+
- Mark Mesasging Services fallback_to_long_code feature obsolete
|
|
565
|
+
|
|
566
|
+
**Numbers**
|
|
567
|
+
- Add Create Port In request api
|
|
568
|
+
- Renaming sid for bulk_hosting_sid and remove account_sid response field in numbers/v2/BulkHostedNumberOrders **(breaking change)**
|
|
569
|
+
|
|
570
|
+
**Pricing**
|
|
571
|
+
- gate resources behind a beta_feature
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
[2023-08-24] Version 6.5.0
|
|
575
|
+
--------------------------
|
|
576
|
+
**Api**
|
|
577
|
+
- Add new property `RiskCheck` for SMS pumping protection feature only (public beta to be available soon): Include this parameter with a value of `disable` to skip any kind of risk check on the respective message request
|
|
578
|
+
|
|
579
|
+
**Flex**
|
|
580
|
+
- Changing `sid<UO>` path param to `sid<UT>` in interaction channel participant update endpoint **(breaking change)**
|
|
581
|
+
|
|
582
|
+
**Messaging**
|
|
583
|
+
- Add Channel Sender api
|
|
584
|
+
- Fixing country code docs and removing Zipwhip references
|
|
585
|
+
|
|
586
|
+
**Numbers**
|
|
587
|
+
- Request status changed in numbers/v2/BulkHostedNumberOrders **(breaking change)**
|
|
588
|
+
- Add bulk hosting orders API under version `/v2
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
[2023-08-10] Version 6.4.0
|
|
592
|
+
--------------------------
|
|
593
|
+
**Library - Fix**
|
|
594
|
+
- [PR #673](https://github.com/twilio/twilio-ruby/pull/673): remove ruby version. Thanks to [@kridai](https://github.com/kridai)!
|
|
595
|
+
- [PR #672](https://github.com/twilio/twilio-ruby/pull/672): revert setting ruby version. Thanks to [@kridai](https://github.com/kridai)!
|
|
596
|
+
- [PR #671](https://github.com/twilio/twilio-ruby/pull/671): fix the headers issue. Thanks to [@kridai](https://github.com/kridai)!
|
|
597
|
+
|
|
598
|
+
**Insights**
|
|
599
|
+
- Normalize annotations parameters in list summary api to be prefixed
|
|
600
|
+
|
|
601
|
+
**Numbers**
|
|
602
|
+
- Change Bulk_hosted_sid from BHR to BH prefix in HNO and dependent under version `/v2` API's. **(breaking change)**
|
|
603
|
+
- Added parameter target_account_sid to portability and account_sid to response body
|
|
604
|
+
|
|
605
|
+
**Verify**
|
|
606
|
+
- Remove beta feature flag to list attempts API.
|
|
607
|
+
- Remove beta feature flag to verifications summary attempts API.
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
[2023-07-27] Version 6.3.1
|
|
611
|
+
--------------------------
|
|
612
|
+
**Api**
|
|
613
|
+
- Added `voice-intelligence`, `voice-intelligence-transcription` and `voice-intelligence-operators` to `usage_record` API.
|
|
614
|
+
- Added `tts-google` to `usage_record` API.
|
|
615
|
+
|
|
616
|
+
**Lookups**
|
|
617
|
+
- Add new `disposable_phone_number_risk` package to the lookup response
|
|
618
|
+
|
|
619
|
+
**Verify**
|
|
620
|
+
- Documentation of list attempts API was improved by correcting `date_created_after` and `date_created_before` expected date format.
|
|
621
|
+
- Documentation was improved by correcting `date_created_after` and `date_created_before` expected date format parameter on attempts summary API.
|
|
622
|
+
- Documentation was improved by adding `WHATSAPP` as optional valid parameter on attempts summary API.
|
|
623
|
+
|
|
624
|
+
**Twiml**
|
|
625
|
+
- Added support for he-il inside of ssm_lang.json that was missing
|
|
626
|
+
- Added support for he-il language in say.json that was missing
|
|
627
|
+
- Add `statusCallback` and `statusCallbackMethod` attributes to `<Siprec>`.
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
[2023-07-13] Version 6.3.0
|
|
631
|
+
--------------------------
|
|
632
|
+
**Library - Chore**
|
|
633
|
+
- [PR #668](https://github.com/twilio/twilio-ruby/pull/668): remove cacert. Thanks to [@sbansla](https://github.com/sbansla)!
|
|
634
|
+
|
|
635
|
+
**Flex**
|
|
636
|
+
- Adding `interaction_context_sid` as optional parameter in Interactions API
|
|
637
|
+
|
|
638
|
+
**Messaging**
|
|
639
|
+
- Making visiblity public for tollfree_verification API
|
|
640
|
+
|
|
641
|
+
**Numbers**
|
|
642
|
+
- Remove Sms capability property from HNO creation under version `/v2` of HNO API. **(breaking change)**
|
|
643
|
+
- Update required properties in LOA creation under version `/v2` of Authorization document API. **(breaking change)**
|
|
644
|
+
|
|
645
|
+
**Taskrouter**
|
|
646
|
+
- Add api to fetch task queue statistics for multiple TaskQueues
|
|
647
|
+
|
|
648
|
+
**Verify**
|
|
649
|
+
- Add `RiskCheck` optional parameter on Verification creation.
|
|
650
|
+
|
|
651
|
+
**Twiml**
|
|
652
|
+
- Add Google Voices and languages
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
[2023-06-28] Version 6.2.0
|
|
656
|
+
--------------------------
|
|
657
|
+
**Library - Fix**
|
|
658
|
+
- [PR #665](https://github.com/twilio/twilio-ruby/pull/665): #663 local jump error due to lack of block passing for recording list. Thanks to [@JYorston](https://github.com/JYorston)!
|
|
659
|
+
|
|
660
|
+
**Lookups**
|
|
661
|
+
- Add `reassigned_number` package to the lookup response
|
|
662
|
+
|
|
663
|
+
**Numbers**
|
|
664
|
+
- Add hosted_number_order under version `/v2`.
|
|
665
|
+
- Update properties in Porting and Bulk Porting APIs. **(breaking change)**
|
|
666
|
+
- Added bulk Portability API under version `/v1`.
|
|
667
|
+
- Added Portability API under version `/v1`.
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
[2023-06-15] Version 6.1.0
|
|
671
|
+
--------------------------
|
|
672
|
+
**Api**
|
|
673
|
+
- Added `content_sid` as conditional parameter
|
|
674
|
+
- Removed `content_sid` as optional field **(breaking change)**
|
|
675
|
+
|
|
676
|
+
**Insights**
|
|
677
|
+
- Added `annotation` to list summary output
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
[2023-06-01] Version 6.0.2
|
|
681
|
+
--------------------------
|
|
682
|
+
**Api**
|
|
683
|
+
- Add `Trim` to create Conference Participant API
|
|
684
|
+
|
|
685
|
+
**Intelligence**
|
|
686
|
+
- First public beta release for Voice Intelligence APIs with client libraries
|
|
687
|
+
|
|
688
|
+
**Messaging**
|
|
689
|
+
- Add new `errors` attribute to us_app_to_person resource. This attribute will provide additional information about campaign registration errors.
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
[2023-05-18] Version 6.0.1
|
|
693
|
+
--------------------------
|
|
694
|
+
**Library - Fix**
|
|
695
|
+
- [PR #654](https://github.com/twilio/twilio-ruby/pull/654): match only against the end of a file path. Thanks to [@pat](https://github.com/pat)!
|
|
696
|
+
|
|
697
|
+
**Conversations**
|
|
698
|
+
- Added `AddressCountry` parameter to Address Configuration endpoint, to support regional short code addresses
|
|
699
|
+
- Added query parameters `start_date`, `end_date` and `state` in list Conversations resource for filtering
|
|
700
|
+
|
|
701
|
+
**Insights**
|
|
702
|
+
- Added annotations parameters to list summary api
|
|
703
|
+
|
|
704
|
+
**Messaging**
|
|
705
|
+
- Add GET domainByMessagingService endpoint to linkShortening service
|
|
706
|
+
- Add `disable_https` to link shortening domain_config properties
|
|
707
|
+
|
|
708
|
+
**Numbers**
|
|
709
|
+
- Add bulk_eligibility api under version `/v1`.
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
[2023-05-04] Version 6.0.0
|
|
713
|
+
--------------------------
|
|
714
|
+
**Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2023-05-03-5xx-to-6xx) for detailed migration notes.
|
|
715
|
+
|
|
716
|
+
**Library - Feature**
|
|
717
|
+
- [PR #651](https://github.com/twilio/twilio-ruby/pull/651): Merge branch '6.x.x-rc' to main. Thanks to [@shrutiburman](https://github.com/shrutiburman)! **(breaking change)**
|
|
718
|
+
|
|
719
|
+
**Conversations**
|
|
720
|
+
- Remove `start_date`, `end_date` and `state` query parameters from list operation on Conversations resource **(breaking change)**
|
|
721
|
+
|
|
722
|
+
**Twiml**
|
|
723
|
+
- Add support for new Amazon Polly voices (Q1 2023) for `Say` verb
|
|
724
|
+
|
|
725
|
+
|
|
4
726
|
[2023-04-19] Version 5.77.0
|
|
5
727
|
---------------------------
|
|
6
728
|
**Library - Docs**
|