twilio-ruby 6.8.0 → 7.10.7
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 +5 -5
- data/.dockerignore +1 -1
- data/.github/ISSUE_TEMPLATE/bug_report.yml +69 -0
- data/.github/workflows/test-and-deploy.yml +17 -8
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -0
- data/CHANGES.md +1303 -1
- data/Dockerfile +3 -2
- data/Gemfile +5 -0
- data/Makefile +4 -1
- data/README.md +7 -2
- data/UPGRADE.md +11 -0
- data/cluster/cluster_oauth_spec.rb +19 -0
- data/cluster/cluster_orgs_spec.rb +40 -0
- data/{cluster_spec.rb → cluster/cluster_spec.rb} +0 -2
- data/examples/public_oauth.rb +13 -0
- data/lib/twilio-ruby/auth_strategy/auth_strategy.rb +19 -0
- data/lib/twilio-ruby/auth_strategy/no_auth_strategy.rb +17 -0
- data/lib/twilio-ruby/auth_strategy/token_auth_strategy.rb +39 -0
- data/lib/twilio-ruby/base/client_base.rb +12 -2
- data/lib/twilio-ruby/credential/auth_type.rb +17 -0
- data/lib/twilio-ruby/credential/client_credential_provider.rb +28 -0
- data/lib/twilio-ruby/credential/credential_provider.rb +11 -0
- data/lib/twilio-ruby/credential/orgs_credential_provider.rb +30 -0
- data/lib/twilio-ruby/framework/request.rb +8 -1
- data/lib/twilio-ruby/framework/rest/api_v1_version.rb +22 -0
- data/lib/twilio-ruby/framework/rest/domain.rb +0 -1
- data/lib/twilio-ruby/framework/rest/error.rb +27 -0
- data/lib/twilio-ruby/framework/rest/page.rb +1 -0
- data/lib/twilio-ruby/framework/rest/page_metadata.rb +83 -0
- data/lib/twilio-ruby/framework/rest/resource.rb +16 -0
- data/lib/twilio-ruby/framework/rest/token_page.rb +73 -0
- data/lib/twilio-ruby/framework/rest/version.rb +91 -4
- data/lib/twilio-ruby/http/client_token_manager.rb +31 -0
- data/lib/twilio-ruby/http/http_client.rb +22 -5
- data/lib/twilio-ruby/http/org_token_manager.rb +31 -0
- data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +143 -1
- data/lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb +231 -0
- data/lib/twilio-ruby/rest/accounts/v1/bulk_contacts.rb +231 -0
- data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +295 -14
- data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +295 -14
- data/lib/twilio-ruby/rest/accounts/v1/credential.rb +64 -0
- data/lib/twilio-ruby/rest/accounts/v1/messaging_geopermissions.rb +285 -0
- data/lib/twilio-ruby/rest/accounts/v1/safelist.rb +177 -10
- data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +168 -2
- data/lib/twilio-ruby/rest/accounts/v1.rb +29 -2
- data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +102 -5
- data/lib/twilio-ruby/rest/api/v2010/account/address.rb +385 -42
- data/lib/twilio-ruby/rest/api/v2010/account/application.rb +427 -57
- data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +183 -20
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +141 -8
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +183 -6
- data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +96 -1
- data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +102 -5
- data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +192 -6
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +283 -28
- data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +330 -19
- data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +1004 -207
- data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +1010 -213
- data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +559 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +109 -3
- data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +186 -5
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +550 -120
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +572 -86
- data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +263 -12
- data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +274 -36
- data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +285 -24
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +185 -8
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +250 -11
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +238 -29
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +238 -29
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +238 -29
- data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +507 -79
- data/lib/twilio-ruby/rest/api/v2010/account/key.rb +250 -10
- data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +105 -2
- data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +215 -7
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +421 -52
- data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +104 -2
- data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +104 -2
- data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +191 -6
- data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +254 -10
- data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +232 -11
- data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +299 -15
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload/data.rb +343 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +232 -8
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +209 -7
- data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +209 -7
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +229 -10
- data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +254 -19
- data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +250 -10
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +297 -13
- data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +290 -12
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +250 -9
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_ip_access_control_list_mapping.rb +250 -9
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +64 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +250 -9
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +64 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +64 -0
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +250 -9
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +250 -9
- data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +398 -48
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +311 -18
- data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +290 -12
- data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +64 -0
- data/lib/twilio-ruby/rest/api/v2010/account/token.rb +104 -2
- data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +208 -7
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +114 -9
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +335 -27
- data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +64 -0
- data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +124 -7
- data/lib/twilio-ruby/rest/api/v2010/account.rb +271 -13
- data/lib/twilio-ruby/rest/api/v2010.rb +1 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_knowledge.rb +558 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_tool.rb +558 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb +431 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant/message.rb +296 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant.rb +927 -0
- data/lib/twilio-ruby/rest/{microvisor/v1/app.rb → assistants/v1/knowledge/chunk.rb} +145 -169
- data/lib/twilio-ruby/rest/assistants/v1/knowledge/knowledge_status.rb +349 -0
- data/lib/twilio-ruby/rest/assistants/v1/knowledge.rb +871 -0
- data/lib/twilio-ruby/rest/assistants/v1/policy.rb +364 -0
- data/lib/twilio-ruby/rest/assistants/v1/session/message.rb +360 -0
- data/lib/twilio-ruby/rest/assistants/v1/session.rb +501 -0
- data/lib/twilio-ruby/rest/assistants/v1/tool.rb +847 -0
- data/lib/twilio-ruby/rest/assistants/v1.rb +104 -0
- data/lib/twilio-ruby/rest/assistants.rb +6 -0
- data/lib/twilio-ruby/rest/{autopilot_base.rb → assistants_base.rb} +6 -6
- data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +183 -6
- data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +163 -13
- data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +170 -3
- data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +144 -1
- data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +195 -8
- data/lib/twilio-ruby/rest/bulkexports/v1.rb +2 -0
- data/lib/twilio-ruby/rest/chat/v1/credential.rb +336 -28
- data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +257 -10
- data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +305 -15
- data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +308 -16
- data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +315 -19
- data/lib/twilio-ruby/rest/chat/v1/service/role.rb +298 -14
- data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +102 -5
- data/lib/twilio-ruby/rest/chat/v1/service/user.rb +312 -19
- data/lib/twilio-ruby/rest/chat/v1/service.rb +552 -118
- data/lib/twilio-ruby/rest/chat/v1.rb +2 -0
- data/lib/twilio-ruby/rest/chat/v2/credential.rb +336 -28
- data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +214 -7
- data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +257 -10
- data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +354 -33
- data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +353 -33
- data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +342 -28
- data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +351 -33
- data/lib/twilio-ruby/rest/chat/v2/service/role.rb +298 -14
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +212 -7
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +266 -16
- data/lib/twilio-ruby/rest/chat/v2/service/user.rb +317 -22
- data/lib/twilio-ruby/rest/chat/v2/service.rb +437 -72
- data/lib/twilio-ruby/rest/chat/v2.rb +2 -0
- data/lib/twilio-ruby/rest/chat/v3/channel.rb +162 -7
- data/lib/twilio-ruby/rest/chat/v3.rb +6 -0
- data/lib/twilio-ruby/rest/client.rb +26 -11
- data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +280 -0
- data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +144 -3
- data/lib/twilio-ruby/rest/content/v1/content.rb +1577 -10
- data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +102 -5
- data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +102 -5
- data/lib/twilio-ruby/rest/content/v1.rb +1 -0
- data/lib/twilio-ruby/rest/content/v2/content.rb +433 -0
- data/lib/twilio-ruby/rest/content/v2/content_and_approvals.rb +426 -0
- data/lib/twilio-ruby/rest/content/v2.rb +46 -0
- data/lib/twilio-ruby/rest/content_base.rb +6 -1
- data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +373 -39
- data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +206 -15
- data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +198 -10
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +184 -6
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +360 -37
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +367 -40
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +334 -26
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +421 -76
- data/lib/twilio-ruby/rest/conversations/v1/conversation_with_participants.rb +392 -0
- data/lib/twilio-ruby/rest/conversations/v1/credential.rb +341 -30
- data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +106 -5
- data/lib/twilio-ruby/rest/conversations/v1/role.rb +295 -14
- data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +217 -10
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +245 -28
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +200 -10
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +216 -26
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +185 -6
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +363 -37
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +370 -40
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +337 -26
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +425 -77
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation_with_participants.rb +399 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +106 -5
- data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +298 -14
- data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +262 -14
- data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +321 -24
- data/lib/twilio-ruby/rest/conversations/v1/service.rb +283 -27
- data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +260 -14
- data/lib/twilio-ruby/rest/conversations/v1/user.rb +318 -24
- data/lib/twilio-ruby/rest/conversations/v1.rb +12 -0
- data/lib/twilio-ruby/rest/conversations/v2/action.rb +507 -0
- data/lib/twilio-ruby/rest/conversations/v2/communication.rb +698 -0
- data/lib/twilio-ruby/rest/conversations/v2/configuration.rb +1208 -0
- data/lib/twilio-ruby/rest/conversations/v2/conversation.rb +1365 -0
- data/lib/twilio-ruby/rest/conversations/v2/operation.rb +369 -0
- data/lib/twilio-ruby/rest/conversations/v2/participant.rb +745 -0
- data/lib/twilio-ruby/rest/conversations/v2.rb +142 -0
- data/lib/twilio-ruby/rest/conversations_base.rb +6 -1
- data/lib/twilio-ruby/rest/events/v1/event_type.rb +198 -8
- data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +183 -8
- data/lib/twilio-ruby/rest/events/v1/schema.rb +144 -3
- data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +96 -1
- data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +104 -2
- data/lib/twilio-ruby/rest/events/v1/sink.rb +299 -16
- data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +298 -19
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +297 -22
- data/lib/twilio-ruby/rest/events/v1.rb +4 -0
- data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +288 -31
- data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +282 -18
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +216 -3
- data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +433 -60
- data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +172 -16
- data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +106 -5
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +331 -30
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +266 -18
- data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +305 -30
- data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +109 -5
- data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +147 -5
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +98 -2
- data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +98 -2
- data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +147 -5
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +143 -7
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +251 -11
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_transfer.rb +548 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +257 -11
- data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +275 -5
- data/lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb +629 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin.rb +708 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb +390 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration/configured_plugin.rb +572 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration.rb +607 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration_archive.rb +376 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_release.rb +547 -0
- data/lib/twilio-ruby/rest/flex_api/v1/plugin_version_archive.rb +400 -0
- data/lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb +327 -0
- data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +312 -19
- data/lib/twilio-ruby/rest/flex_api/v1.rb +137 -0
- data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +515 -0
- data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +125 -5
- data/lib/twilio-ruby/rest/flex_api/v2.rb +43 -0
- data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +200 -12
- data/lib/twilio-ruby/rest/frontline_api/v1.rb +1 -0
- data/lib/twilio-ruby/rest/iam/v1/api_key.rb +471 -0
- data/lib/twilio-ruby/rest/iam/v1/get_api_keys.rb +328 -0
- data/lib/twilio-ruby/rest/iam/v1/new_api_key.rb +284 -0
- data/lib/twilio-ruby/rest/iam/v1/o_auth_app.rb +647 -0
- data/lib/twilio-ruby/rest/iam/v1/role_permission.rb +327 -0
- data/lib/twilio-ruby/rest/iam/v1/token.rb +301 -0
- data/lib/twilio-ruby/rest/iam/v1.rb +99 -0
- data/lib/twilio-ruby/rest/iam.rb +6 -0
- data/lib/twilio-ruby/rest/iam_base.rb +33 -0
- data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +216 -19
- data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +162 -13
- data/lib/twilio-ruby/rest/insights/v1/call/event.rb +108 -9
- data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +106 -5
- data/lib/twilio-ruby/rest/insights/v1/call.rb +144 -1
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +267 -26
- data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +202 -10
- data/lib/twilio-ruby/rest/insights/v1/conference.rb +202 -6
- data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +183 -8
- data/lib/twilio-ruby/rest/insights/v1/room.rb +194 -8
- data/lib/twilio-ruby/rest/insights/v1/setting.rb +201 -10
- data/lib/twilio-ruby/rest/insights/v1.rb +3 -0
- data/lib/twilio-ruby/rest/insights/v2/inbound.rb +579 -0
- data/lib/twilio-ruby/rest/insights/v2/outbound.rb +650 -0
- data/lib/twilio-ruby/rest/insights/v2/report.rb +941 -0
- data/lib/twilio-ruby/rest/insights/v2.rb +82 -0
- data/lib/twilio-ruby/rest/insights/v3/metadata.rb +227 -0
- data/lib/twilio-ruby/rest/insights/v3/query.rb +394 -0
- data/lib/twilio-ruby/rest/insights/v3.rb +46 -0
- data/lib/twilio-ruby/rest/insights_base.rb +11 -1
- data/lib/twilio-ruby/rest/intelligence/v2/custom_operator.rb +728 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator.rb +533 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator_attachment.rb +380 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator_attachments.rb +337 -0
- data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +539 -0
- data/lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb +533 -0
- data/lib/twilio-ruby/rest/intelligence/v2/service.rb +392 -50
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/encrypted_operator_results.rb +359 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/encrypted_sentences.rb +359 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +152 -5
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +207 -10
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +124 -10
- data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +333 -30
- data/lib/twilio-ruby/rest/intelligence/v2.rb +125 -0
- data/lib/twilio-ruby/rest/intelligence/v3/configuration.rb +1073 -0
- data/lib/twilio-ruby/rest/intelligence/v3/conversation.rb +602 -0
- data/lib/twilio-ruby/rest/intelligence/v3/operator.rb +784 -0
- data/lib/twilio-ruby/rest/intelligence/v3/operator_result.rb +622 -0
- data/lib/twilio-ruby/rest/intelligence/v3/version.rb +556 -0
- data/lib/twilio-ruby/rest/intelligence/v3.rb +120 -0
- data/lib/twilio-ruby/rest/intelligence_base.rb +6 -1
- data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +336 -28
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +257 -10
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +305 -15
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +308 -16
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +315 -19
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +298 -14
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +102 -5
- data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +312 -19
- data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +552 -118
- data/lib/twilio-ruby/rest/ip_messaging/v1.rb +2 -0
- data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +336 -28
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +214 -7
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +257 -10
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +354 -33
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +353 -33
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +342 -28
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +351 -33
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +298 -14
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +212 -7
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +262 -14
- data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +317 -22
- data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +437 -72
- data/lib/twilio-ruby/rest/ip_messaging/v2.rb +2 -0
- data/lib/twilio-ruby/rest/knowledge/v1/knowledge/chunk.rb +325 -0
- data/lib/twilio-ruby/rest/knowledge/v1/knowledge/knowledge_status.rb +349 -0
- data/lib/twilio-ruby/rest/knowledge/v1/knowledge.rb +865 -0
- data/lib/twilio-ruby/rest/{preview/sync.rb → knowledge/v1.rb} +17 -16
- data/lib/twilio-ruby/rest/knowledge/v2/chunk.rb +306 -0
- data/lib/twilio-ruby/rest/knowledge/v2/knowledge.rb +714 -0
- data/lib/twilio-ruby/rest/knowledge/v2/knowledge_basis.rb +739 -0
- data/lib/twilio-ruby/rest/knowledge/v2/operation.rb +376 -0
- data/lib/twilio-ruby/rest/knowledge/v2/search.rb +355 -0
- data/lib/twilio-ruby/rest/knowledge/v2.rb +145 -0
- data/lib/twilio-ruby/rest/knowledge.rb +6 -0
- data/lib/twilio-ruby/rest/knowledge_base.rb +43 -0
- data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +170 -12
- data/lib/twilio-ruby/rest/lookups/v1.rb +1 -0
- data/lib/twilio-ruby/rest/lookups/v2/bucket.rb +501 -0
- data/lib/twilio-ruby/rest/lookups/v2/lookup_override.rb +605 -0
- data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +252 -44
- data/lib/twilio-ruby/rest/lookups/v2/query.rb +351 -0
- data/lib/twilio-ruby/rest/lookups/v2/rate_limit.rb +229 -0
- data/lib/twilio-ruby/rest/lookups/v2.rb +99 -0
- data/lib/twilio-ruby/rest/marketplace/v1/available_add_on/available_add_on_extension.rb +483 -0
- data/lib/twilio-ruby/rest/marketplace/v1/available_add_on.rb +509 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.rb +563 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +252 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on.rb +743 -0
- data/lib/twilio-ruby/rest/marketplace/v1/module_data.rb +342 -0
- data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +511 -0
- data/lib/twilio-ruby/rest/marketplace/v1/referral_conversion.rb +235 -0
- data/lib/twilio-ruby/rest/marketplace/v1.rb +94 -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/memory/v1/bulk.rb +362 -0
- data/lib/twilio-ruby/rest/memory/v1/conversation_summary.rb +798 -0
- data/lib/twilio-ruby/rest/memory/v1/data_mapping.rb +843 -0
- data/lib/twilio-ruby/rest/memory/v1/event.rb +320 -0
- data/lib/twilio-ruby/rest/memory/v1/identifier.rb +710 -0
- data/lib/twilio-ruby/rest/memory/v1/identity_resolution_setting.rb +442 -0
- data/lib/twilio-ruby/rest/memory/v1/import.rb +574 -0
- data/lib/twilio-ruby/rest/memory/v1/lookup.rb +250 -0
- data/lib/twilio-ruby/rest/memory/v1/observation.rb +786 -0
- data/lib/twilio-ruby/rest/memory/v1/operation.rb +376 -0
- data/lib/twilio-ruby/rest/memory/v1/profile.rb +721 -0
- data/lib/twilio-ruby/rest/memory/v1/recall.rb +366 -0
- data/lib/twilio-ruby/rest/memory/v1/revision.rb +349 -0
- data/lib/twilio-ruby/rest/memory/v1/store.rb +746 -0
- data/lib/twilio-ruby/rest/memory/v1/trait.rb +336 -0
- data/lib/twilio-ruby/rest/memory/v1/trait_group.rb +904 -0
- data/lib/twilio-ruby/rest/memory/v1.rb +475 -0
- data/lib/twilio-ruby/rest/memory.rb +6 -0
- data/lib/twilio-ruby/rest/{media_base.rb → memory_base.rb} +6 -6
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +96 -1
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +229 -11
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +296 -17
- data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +151 -3
- data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +210 -7
- data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +200 -12
- data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +144 -3
- data/lib/twilio-ruby/rest/messaging/v1/domain_validate_dn.rb +344 -0
- data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +113 -3
- data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +170 -4
- data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb +144 -3
- data/lib/twilio-ruby/rest/messaging/v1/request_managed_cert.rb +379 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +248 -11
- data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +282 -9
- data/lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb +616 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +248 -11
- data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +248 -11
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +543 -30
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +103 -2
- data/lib/twilio-ruby/rest/messaging/v1/service.rb +453 -63
- data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +870 -83
- data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +95 -1
- data/lib/twilio-ruby/rest/messaging/v1.rb +46 -1
- data/lib/twilio-ruby/rest/messaging/v2/channels_sender.rb +1017 -0
- data/lib/twilio-ruby/rest/messaging/v2/domain_certs.rb +386 -0
- data/lib/twilio-ruby/rest/messaging/v2/typing_indicator.rb +237 -0
- data/lib/twilio-ruby/rest/messaging/v2.rb +72 -0
- data/lib/twilio-ruby/rest/messaging/v3/typing_indicator.rb +247 -0
- data/lib/twilio-ruby/rest/messaging/v3.rb +40 -0
- data/lib/twilio-ruby/rest/messaging_base.rb +11 -1
- data/lib/twilio-ruby/rest/monitor/v1/alert.rb +188 -6
- data/lib/twilio-ruby/rest/monitor/v1/event.rb +195 -7
- data/lib/twilio-ruby/rest/monitor/v1.rb +2 -0
- data/lib/twilio-ruby/rest/notify/v1/credential.rb +336 -30
- data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +282 -17
- data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +173 -20
- data/lib/twilio-ruby/rest/notify/v1/service.rb +410 -57
- data/lib/twilio-ruby/rest/notify/v1.rb +2 -0
- data/lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb +190 -3
- data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +221 -0
- data/lib/twilio-ruby/rest/numbers/v1/embedded_session.rb +251 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_all_port_in.rb +375 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +616 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +485 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +168 -26
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +242 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +301 -0
- data/lib/twilio-ruby/rest/numbers/v1/sender_id_registration.rb +333 -0
- data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +403 -0
- data/lib/twilio-ruby/rest/numbers/v1/webhook.rb +252 -0
- data/lib/twilio-ruby/rest/numbers/v1.rb +125 -12
- data/lib/twilio-ruby/rest/numbers/v2/application.rb +715 -0
- data/lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb +110 -5
- data/lib/twilio-ruby/rest/numbers/v2/authorization_document.rb +270 -16
- data/lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb +198 -5
- data/lib/twilio-ruby/rest/numbers/v2/bundle_clone.rb +430 -0
- data/lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb +448 -27
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +142 -7
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +215 -7
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +248 -9
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +104 -2
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +376 -30
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +300 -16
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +182 -6
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +218 -11
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +307 -16
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +182 -6
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +64 -0
- data/lib/twilio-ruby/rest/numbers/v2.rb +35 -0
- data/lib/twilio-ruby/rest/numbers/v3/hosted_number_order.rb +484 -0
- data/lib/twilio-ruby/rest/numbers/v3.rb +40 -0
- data/lib/twilio-ruby/rest/numbers_base.rb +5 -0
- data/lib/twilio-ruby/rest/oauth/v1/authorize.rb +253 -0
- data/lib/twilio-ruby/rest/oauth/v1/token.rb +149 -27
- data/lib/twilio-ruby/rest/oauth/v1.rb +4 -22
- data/lib/twilio-ruby/rest/oauth/v2/authorize.rb +253 -0
- data/lib/twilio-ruby/rest/oauth/v2/token.rb +311 -0
- data/lib/twilio-ruby/rest/oauth/v2.rb +46 -0
- data/lib/twilio-ruby/rest/oauth.rb +2 -29
- data/lib/twilio-ruby/rest/oauth_base.rb +6 -1
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +112 -5
- data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +316 -30
- data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +406 -48
- data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +2 -0
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +183 -8
- data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +182 -8
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +225 -11
- data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +304 -19
- data/lib/twilio-ruby/rest/preview/marketplace.rb +2 -0
- data/lib/twilio-ruby/rest/preview/wireless/command.rb +253 -16
- data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +328 -25
- data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +157 -7
- data/lib/twilio-ruby/rest/preview/wireless/sim.rb +308 -41
- data/lib/twilio-ruby/rest/preview/wireless.rb +3 -0
- data/lib/twilio-ruby/rest/preview.rb +1 -20
- data/lib/twilio-ruby/rest/preview_base.rb +0 -15
- data/lib/twilio-ruby/rest/preview_iam/v1/authorize.rb +253 -0
- data/lib/twilio-ruby/rest/preview_iam/v1/token.rb +301 -0
- data/lib/twilio-ruby/rest/preview_iam/v1.rb +46 -0
- data/lib/twilio-ruby/rest/preview_iam/versionless/organization/account.rb +476 -0
- data/lib/twilio-ruby/rest/preview_iam/versionless/organization/role_assignment.rb +603 -0
- data/lib/twilio-ruby/rest/preview_iam/versionless/organization/user.rb +981 -0
- data/lib/twilio-ruby/rest/preview_iam/versionless/organization.rb +413 -0
- data/lib/twilio-ruby/rest/preview_iam/versionless.rb +50 -0
- data/lib/twilio-ruby/rest/preview_iam.rb +9 -0
- data/lib/twilio-ruby/rest/{microvisor_base.rb → preview_iam_base.rb} +6 -6
- data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +182 -6
- data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +64 -0
- data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +182 -6
- data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +64 -0
- data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +182 -6
- data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +144 -1
- data/lib/twilio-ruby/rest/pricing/v1/voice.rb +64 -0
- data/lib/twilio-ruby/rest/pricing/v1.rb +22 -4
- data/lib/twilio-ruby/rest/pricing/v2/country.rb +182 -6
- data/lib/twilio-ruby/rest/pricing/v2/number.rb +152 -3
- data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +182 -6
- data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +152 -3
- data/lib/twilio-ruby/rest/pricing/v2/voice.rb +64 -0
- data/lib/twilio-ruby/rest/pricing/v2.rb +13 -2
- data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +298 -16
- data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +210 -10
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +231 -11
- data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +262 -14
- data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +320 -23
- data/lib/twilio-ruby/rest/proxy/v1/service.rb +350 -62
- data/lib/twilio-ruby/rest/proxy/v1.rb +1 -0
- data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +190 -6
- data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +190 -6
- data/lib/twilio-ruby/rest/routes/v2/trunk.rb +190 -6
- data/lib/twilio-ruby/rest/routes/v2.rb +3 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +184 -8
- data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +290 -14
- data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +145 -3
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +260 -14
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +231 -10
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +191 -9
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +302 -17
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +252 -12
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +146 -3
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +184 -8
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +290 -14
- data/lib/twilio-ruby/rest/serverless/v1/service.rb +309 -21
- data/lib/twilio-ruby/rest/serverless/v1.rb +1 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +145 -1
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +146 -1
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +198 -6
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +256 -11
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +145 -1
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +146 -1
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +198 -6
- data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +302 -14
- data/lib/twilio-ruby/rest/studio/v1/flow.rb +207 -7
- data/lib/twilio-ruby/rest/studio/v1.rb +1 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +145 -1
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +146 -1
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +198 -6
- data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +333 -16
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +190 -6
- data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +185 -4
- data/lib/twilio-ruby/rest/studio/v2/flow.rb +336 -21
- data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +115 -5
- data/lib/twilio-ruby/rest/studio/v2.rb +1 -0
- data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +243 -17
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +326 -33
- data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +249 -15
- data/lib/twilio-ruby/rest/supersim/v1/network.rb +188 -8
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +248 -11
- data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +266 -14
- data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +106 -5
- data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +102 -5
- data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +102 -5
- data/lib/twilio-ruby/rest/supersim/v1/sim.rb +297 -24
- data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +239 -13
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +118 -5
- data/lib/twilio-ruby/rest/supersim/v1.rb +7 -0
- data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +262 -14
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +306 -18
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +333 -25
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +262 -14
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +303 -16
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +337 -26
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +262 -14
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +303 -16
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +105 -2
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +294 -13
- data/lib/twilio-ruby/rest/sync/v1/service.rb +341 -30
- data/lib/twilio-ruby/rest/sync/v1.rb +1 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +298 -13
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +205 -6
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +505 -117
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +411 -41
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +303 -16
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_bulk_real_time_statistics.rb +258 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +173 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +154 -4
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +173 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +114 -5
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +351 -27
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +493 -113
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +232 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +168 -9
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +167 -9
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +152 -3
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +182 -15
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +336 -24
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +173 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +153 -3
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +173 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +333 -26
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +172 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +152 -3
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +172 -11
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +339 -29
- data/lib/twilio-ruby/rest/taskrouter/v1.rb +1 -0
- data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +248 -9
- data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +248 -9
- data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +326 -24
- data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +249 -10
- data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +190 -6
- data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +357 -33
- data/lib/twilio-ruby/rest/trunking/v1.rb +1 -0
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +213 -5
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb +656 -0
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +474 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +256 -10
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +258 -11
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +223 -8
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +327 -21
- data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +300 -16
- data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +182 -6
- data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +182 -6
- data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +300 -16
- data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +182 -6
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +256 -10
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +258 -11
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +223 -8
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +345 -39
- data/lib/twilio-ruby/rest/trusthub/v1.rb +31 -1
- data/lib/twilio-ruby/rest/verify/v2/form.rb +144 -3
- data/lib/twilio-ruby/rest/verify/v2/safelist.rb +208 -6
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +197 -6
- data/lib/twilio-ruby/rest/verify/v2/service/approve_challenge.rb +402 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +106 -2
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +299 -18
- data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +292 -26
- data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +164 -15
- data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +248 -9
- data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +294 -13
- data/lib/twilio-ruby/rest/verify/v2/service/new_challenge.rb +479 -0
- data/lib/twilio-ruby/rest/verify/v2/service/new_factor.rb +387 -0
- data/lib/twilio-ruby/rest/verify/v2/service/new_verify_factor.rb +357 -0
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +302 -15
- data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +294 -13
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +301 -23
- data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +127 -7
- data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +332 -30
- data/lib/twilio-ruby/rest/verify/v2/service.rb +667 -65
- data/lib/twilio-ruby/rest/verify/v2/template.rb +104 -5
- data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +202 -10
- data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +179 -16
- data/lib/twilio-ruby/rest/verify/v2.rb +4 -0
- data/lib/twilio-ruby/rest/video/v1/composition.rb +286 -17
- data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +376 -39
- data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +211 -17
- data/lib/twilio-ruby/rest/video/v1/recording.rb +220 -7
- data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +211 -17
- data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +145 -1
- data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +184 -6
- data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +138 -3
- data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +184 -6
- data/lib/twilio-ruby/rest/video/v1/room/participant.rb +233 -9
- data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +136 -3
- data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +216 -7
- data/lib/twilio-ruby/rest/video/v1/room/transcriptions.rb +665 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +379 -39
- data/lib/twilio-ruby/rest/video/v1.rb +4 -0
- data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +137 -3
- data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +368 -39
- data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +326 -24
- data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +287 -12
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +103 -2
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +102 -5
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +194 -8
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +183 -6
- data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +64 -0
- data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +295 -14
- data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +291 -13
- data/lib/twilio-ruby/rest/voice/v1.rb +10 -0
- data/lib/twilio-ruby/rest/voice/v3/transcription.rb +514 -0
- data/lib/twilio-ruby/rest/voice/v3.rb +50 -0
- data/lib/twilio-ruby/rest/voice_base.rb +6 -1
- data/lib/twilio-ruby/rest/wireless/v1/command.rb +278 -15
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +338 -24
- data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +102 -5
- data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +108 -5
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +343 -44
- data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +108 -5
- data/lib/twilio-ruby/rest/wireless/v1.rb +3 -0
- data/lib/twilio-ruby/twiml/messaging_response.rb +1 -1
- data/lib/twilio-ruby/twiml/voice_response.rb +403 -24
- data/lib/twilio-ruby/version.rb +1 -1
- data/twilio-ruby.gemspec +4 -3
- metadata +193 -88
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +0 -264
- data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +0 -328
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +0 -241
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +0 -217
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +0 -389
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +0 -435
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +0 -409
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +0 -473
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +0 -241
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +0 -373
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +0 -436
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +0 -253
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +0 -226
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +0 -525
- data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +0 -433
- data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +0 -683
- data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +0 -207
- data/lib/twilio-ruby/rest/autopilot/v1.rb +0 -55
- data/lib/twilio-ruby/rest/autopilot.rb +0 -22
- data/lib/twilio-ruby/rest/media/v1/media_processor.rb +0 -420
- data/lib/twilio-ruby/rest/media/v1/media_recording.rb +0 -404
- data/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +0 -252
- data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +0 -432
- data/lib/twilio-ruby/rest/media/v1.rb +0 -79
- data/lib/twilio-ruby/rest/media.rb +0 -35
- data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +0 -358
- data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +0 -351
- data/lib/twilio-ruby/rest/microvisor/v1/app/app_manifest.rb +0 -208
- data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +0 -374
- data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +0 -367
- data/lib/twilio-ruby/rest/microvisor/v1/device.rb +0 -427
- data/lib/twilio-ruby/rest/microvisor/v1.rb +0 -94
- data/lib/twilio-ruby/rest/microvisor.rb +0 -24
- data/lib/twilio-ruby/rest/numbers/v1/porting_bulk_portability.rb +0 -229
- data/lib/twilio-ruby/rest/oauth/v1/device_code.rb +0 -171
- data/lib/twilio-ruby/rest/oauth/v1/oauth.rb +0 -185
- data/lib/twilio-ruby/rest/oauth/v1/openid_discovery.rb +0 -262
- data/lib/twilio-ruby/rest/oauth/v1/user_info.rb +0 -213
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +0 -417
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +0 -401
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +0 -456
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +0 -414
- data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +0 -504
- data/lib/twilio-ruby/rest/preview/deployed_devices.rb +0 -49
- data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -389
- data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -449
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -445
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -389
- data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -426
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -448
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -389
- data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -426
- data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -505
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +0 -241
- data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +0 -241
- data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +0 -217
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +0 -389
- data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +0 -435
- data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +0 -409
- data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +0 -463
- data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +0 -241
- 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 -436
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +0 -253
- data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +0 -226
- data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +0 -525
- data/lib/twilio-ruby/rest/preview/understand/assistant.rb +0 -663
- data/lib/twilio-ruby/rest/preview/understand.rb +0 -49
- data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +0 -406
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,1307 @@
|
|
|
1
1
|
twilio-ruby changelog
|
|
2
|
-
=====================
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
[2026-05-07] Version 7.10.7
|
|
5
|
+
---------------------------
|
|
6
|
+
**Conversations**
|
|
7
|
+
- update actions api visibility
|
|
8
|
+
|
|
9
|
+
**Memory**
|
|
10
|
+
- ## 2026-05-07
|
|
11
|
+
- **Content updates**:
|
|
12
|
+
- include store api
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
[2026-05-06] Version 7.10.6
|
|
16
|
+
---------------------------
|
|
17
|
+
**Library - Chore**
|
|
18
|
+
- [PR #786](https://github.com/twilio/twilio-ruby/pull/786): Update faraday dependency version range. Thanks to [@shrutiburman](https://github.com/shrutiburman)!
|
|
19
|
+
|
|
20
|
+
**Twiml**
|
|
21
|
+
- Set `recording_configuration_id` attribute to public visibility in `<Conference>`, `<Dial>`, `<Record>` verbs and `<Recording>` noun
|
|
22
|
+
|
|
23
|
+
**Api**
|
|
24
|
+
- Add RecordingConfigurationId parameter for CreateCall, CreateCallRecording, CreateConferenceRecording, and CreateParticipant endpoints
|
|
25
|
+
|
|
26
|
+
**Authy**
|
|
27
|
+
- # Changelog
|
|
28
|
+
- ## v1
|
|
29
|
+
- Added Authy API v1 under `/v1` — initial onboarding of Public API (`/v1/protected/*`), Device API (`/v1/json/*`), and Dashboard API (`/v1/dashboard/*`) behind REST Proxy using transparent proxy mode.
|
|
30
|
+
|
|
31
|
+
**Data-ingress**
|
|
32
|
+
- ## 2026-04-21
|
|
33
|
+
- **Content updates**:
|
|
34
|
+
- Updated description for `CreateDataSync`
|
|
35
|
+
- Updated description for `DeleteCloudAppDataset`
|
|
36
|
+
- Updated description for `DeleteWarehouseDataset`
|
|
37
|
+
- ## 2026-04-20
|
|
38
|
+
- Minor updates (formatting, metadata)
|
|
39
|
+
- ## 2026-04-17
|
|
40
|
+
- updated operationId for dataplane APIs,Minor updates (formatting, metadata)
|
|
41
|
+
- ## 2026-04-15
|
|
42
|
+
- libraryVisibility to private
|
|
43
|
+
- ## 2026-04-14
|
|
44
|
+
- **Added 1 new path(s)**:
|
|
45
|
+
- `/v1/DataSyncs/Latest` (GetLatestDataSyncs)
|
|
46
|
+
|
|
47
|
+
**Memory**
|
|
48
|
+
- ## 2026-04-21
|
|
49
|
+
- **Content updates**:
|
|
50
|
+
- Remove Prefer/Async-Operation headers
|
|
51
|
+
- ## 2026-04-21
|
|
52
|
+
- **Content updates**:
|
|
53
|
+
- Added 301 response for `ListIdentifiers` and `GetIdentifier`
|
|
54
|
+
- Added 308 response for `DeleteProfile`, `CreateIdentifier`, `PatchIdentifier`, and `DeleteIdentifier`
|
|
55
|
+
- ## 2026-04-14
|
|
56
|
+
- **Modified 1 path(s)**:
|
|
57
|
+
- `/v1/ControlPlane/Stores/{storeId}` (added delete)
|
|
58
|
+
- Minor updates (formatting, metadata)
|
|
59
|
+
|
|
60
|
+
**Voice**
|
|
61
|
+
- ## 2026-04-17
|
|
62
|
+
- Added `I-Twilio-Auth-Account` to `downstreamRequest` headers in POST /v3/Transcriptions transactions to document RestProxy account header injection
|
|
63
|
+
- ## 2026-04-10
|
|
64
|
+
- Added initial version of Transcriptions V3 API
|
|
65
|
+
- Added POST /v3/Transcriptions endpoint to create a new transcription from a source ID or media URL
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
[2026-04-16] Version 7.10.5
|
|
69
|
+
---------------------------
|
|
70
|
+
**Twiml**
|
|
71
|
+
- Add `backgroundNoiseReduction`, `speechTimeout`, `deepgramSmartFormat`, `ignoreBackchannel`, `events` attributes to `<ConversationRelay>`
|
|
72
|
+
|
|
73
|
+
**Api**
|
|
74
|
+
- Enabled incoming phone numbers(IPN) public apis in stage-ie1
|
|
75
|
+
|
|
76
|
+
**Data-ingress**
|
|
77
|
+
- ## 2026-04-09
|
|
78
|
+
- **Content updates**:
|
|
79
|
+
- Added parameter(s) to `GetDataSync`: datasetId
|
|
80
|
+
- ## 2026-04-09
|
|
81
|
+
- Minor updates (formatting, metadata)
|
|
82
|
+
- ## 2026-04-06
|
|
83
|
+
- Minor updates (formatting, metadata)
|
|
84
|
+
- ## 2026-04-06
|
|
85
|
+
- Minor updates (formatting, metadata)
|
|
86
|
+
- ## 2026-04-06
|
|
87
|
+
- Minor updates (formatting, metadata)
|
|
88
|
+
- ## 2026-04-06
|
|
89
|
+
- Minor updates (formatting, metadata)
|
|
90
|
+
- ## 2026-04-06
|
|
91
|
+
- **Content updates**:
|
|
92
|
+
- Added properties to `CloudAppSourceUpdate`: config
|
|
93
|
+
- Added properties to `CloudAppDatasetUpdate`: schedule
|
|
94
|
+
- Added properties to `WarehouseSourceUpdate`: config
|
|
95
|
+
- Added properties to `WarehouseDatasetUpdate`: schedule
|
|
96
|
+
- ## 2026-04-06
|
|
97
|
+
- **Content updates**:
|
|
98
|
+
- Updated description for `GetCloudAppPreviewResult`
|
|
99
|
+
- Updated description for `GetWarehousePreviewResult`
|
|
100
|
+
- Updated description for `GetDataSampleResult`
|
|
101
|
+
- ## 2026-03-27
|
|
102
|
+
- Add schema oneOf back without discriminator
|
|
103
|
+
- ## 2026-03-26
|
|
104
|
+
- Minor updates (formatting, metadata)
|
|
105
|
+
- ## 2026-03-26
|
|
106
|
+
- Added prod-us1 to supportedRealms for all endpoints
|
|
107
|
+
- ## 2026-03-25
|
|
108
|
+
- Minor updates (formatting, metadata)
|
|
109
|
+
- ## 2026-03-24
|
|
110
|
+
- Minor updates (formatting, metadata)
|
|
111
|
+
- ## 2026-03-24
|
|
112
|
+
- Minor updates (formatting, metadata)
|
|
113
|
+
- ## 2026-03-24
|
|
114
|
+
- Minor updates (formatting, metadata)
|
|
115
|
+
- ## 2026-03-24
|
|
116
|
+
- **Added 10 new path(s)**:
|
|
117
|
+
- `/v1/DataSyncs` (ListDataSyncs, TriggerDataSync)
|
|
118
|
+
- `/v1/DataSyncs/{SyncId}` (GetDataSync)
|
|
119
|
+
- `/v1/CloudAppSources/{SourceId}/Objects` (ListCloudAppObjects)
|
|
120
|
+
- `/v1/CloudAppSources/{SourceId}/Objects/{Name}/Properties` (ListCloudAppObjectProperties)
|
|
121
|
+
- `/v1/CloudAppSources/{SourceId}/Objects/{Name}/Preview` (PreviewCloudAppObjectData)
|
|
122
|
+
- `/v1/CloudAppSources/{SourceId}/Objects/{Name}/Preview/{OperationId}` (GetCloudAppPreviewResult)
|
|
123
|
+
- `/v1/WarehouseSources/{SourceId}/Preview` (PreviewWarehouseData)
|
|
124
|
+
- `/v1/WarehouseSources/{SourceId}/Preview/{OperationId}` (GetWarehousePreviewResult)
|
|
125
|
+
- `/v1/DataSample` (TriggerDataSample)
|
|
126
|
+
- `/v1/DataSample/{OperationId}` (GetDataSampleResult)
|
|
127
|
+
- ## 2026-03-24
|
|
128
|
+
- Minor updates (formatting, metadata)
|
|
129
|
+
- ## 2026-03-24
|
|
130
|
+
- Use `explode: true` for query params when getting by ids and limit max items to 25
|
|
131
|
+
- Make schema description for `Schema` more specific by using oneOf without discriminator for now.
|
|
132
|
+
|
|
133
|
+
**Insights**
|
|
134
|
+
- Added Insights Domains endpoints under `/v3/InsightsDomains/*` (Query + Metadata) to provide a versioned, GA-ready namespace alongside existing `/preview` endpoints.
|
|
135
|
+
|
|
136
|
+
**Mcp**
|
|
137
|
+
- # API Changes
|
|
138
|
+
- ## 2026-04-07
|
|
139
|
+
- **Added 1 new path(s)**:
|
|
140
|
+
- `/v1/docs` (InvokeDocsMcp)
|
|
141
|
+
|
|
142
|
+
**Memory**
|
|
143
|
+
- ## 2026-04-09
|
|
144
|
+
- **Removed 2 path(s)**:
|
|
145
|
+
- `/v1/Stores/{storeId}/Profiles/Import` (ListProfileImports, CreateProfilesImport)
|
|
146
|
+
- `/v1/Stores/{storeId}/Profiles/Import/{importId}` (FetchProfileImport)
|
|
147
|
+
- libraryVisibility: private, docsVisibility: private
|
|
148
|
+
- ## 2026-04-08
|
|
149
|
+
- **Content updates**:
|
|
150
|
+
- Added 301 response for `GetProfile` and `GetProfileTraits`
|
|
151
|
+
- Added canonical ID header to response for `GetProfile` and `GetProfileTraits`
|
|
152
|
+
- Add 308 response for `PatchProfile`
|
|
153
|
+
- ## 2026-04-07
|
|
154
|
+
- Added `AGENT` and `UNKNOWN` values to `ParticipantType` enum
|
|
155
|
+
- ## 2026-04-06
|
|
156
|
+
- **Content updates**:
|
|
157
|
+
- Added async operation support to `UpdateTraitGroup` 202 response (Operation-Id, Location, Retry-After headers; statusUrl in body)
|
|
158
|
+
- Added async operation support to `CreateDataMapping`, `UpdateDataMapping`, `DeleteDataMapping` 202 responses (Operation-Id, Location, Retry-After headers; statusUrl in body)
|
|
159
|
+
- ## 2026-03-30
|
|
160
|
+
- **Content updates**:
|
|
161
|
+
- Updated description for `FetchProfileMemory`
|
|
162
|
+
- ## 2026-03-27
|
|
163
|
+
- **Content updates**:
|
|
164
|
+
- Updated schema description for `TraitGroupCore`
|
|
165
|
+
- ## 2026-03-25
|
|
166
|
+
- **Content updates**:
|
|
167
|
+
- Removed properties from `TraitDefinition`: displayName
|
|
168
|
+
- ## 2026-03-25
|
|
169
|
+
- **Content updates**:
|
|
170
|
+
- Updated description for `UpdateProfileTraits`
|
|
171
|
+
- Updated description for `FetchIdentityResolutionSettings`
|
|
172
|
+
- Updated description for `UpdateIdentityResolutionSettings`
|
|
173
|
+
- Updated schema description for `IdentityResolutionSettingsCore`
|
|
174
|
+
- Updated schema description for `TraitGroupCore`
|
|
175
|
+
- Made all fields besides `idType` optional w/ defaults for schema `IdentifierConfig`
|
|
176
|
+
- ## 2026-03-24
|
|
177
|
+
- **Content updates**:
|
|
178
|
+
- Added properties to `OperationStatus`: result
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
[2026-03-24] Version 7.10.4
|
|
182
|
+
---------------------------
|
|
183
|
+
**Data-ingress**
|
|
184
|
+
- # API Changes
|
|
185
|
+
- ## 2026-03-23
|
|
186
|
+
- Added stage-us1 to supportedRealms for all endpoints
|
|
187
|
+
- ## 2026-03-20
|
|
188
|
+
- **Content updates**:
|
|
189
|
+
- Removed estimatedCompletionTime from `LongRunningOperationResponse`
|
|
190
|
+
- Moved operationId from `LongRunningOperationResponse` to headers
|
|
191
|
+
- ## 2026-03-18
|
|
192
|
+
- **Added 1 new path(s)**:
|
|
193
|
+
- `/v1/ControlPlane/Operations/{OperationId}` (GetControlPlaneOperationStatus)
|
|
194
|
+
- ## 2026-03-11
|
|
195
|
+
- Minor updates (formatting, metadata)
|
|
196
|
+
- ## 2026-03-11
|
|
197
|
+
- Minor updates (formatting, metadata)
|
|
198
|
+
- ## 2026-03-11
|
|
199
|
+
- Minor updates (formatting, metadata)
|
|
200
|
+
- ## 2026-03-11
|
|
201
|
+
- Minor updates (formatting, metadata)
|
|
202
|
+
- ## 2026-03-11
|
|
203
|
+
- Minor updates (formatting, metadata)
|
|
204
|
+
- ## 2026-03-05
|
|
205
|
+
- Initial release with 10 paths and 22 operations
|
|
206
|
+
|
|
207
|
+
**Memory**
|
|
208
|
+
- ## 2026-03-19
|
|
209
|
+
- **Added 1 new path(s)**:
|
|
210
|
+
- `/v1/ControlPlane/Operations/{operationId}` (FetchOperation)
|
|
211
|
+
- ## 2026-03-11
|
|
212
|
+
- Minor updates (formatting, metadata)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
[2026-03-10] Version 7.10.3
|
|
216
|
+
---------------------------
|
|
217
|
+
**Library - Chore**
|
|
218
|
+
- [PR #781](https://github.com/twilio/twilio-ruby/pull/781): disable oauth message fetching test. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
219
|
+
|
|
220
|
+
**Twiml**
|
|
221
|
+
- Rename `recording_configuration` to `recording_configuration_id` attribute in `<Conference>`, `<Dial>`, `<Record>` verbs and `<Recording>` noun
|
|
222
|
+
|
|
223
|
+
**Ace**
|
|
224
|
+
- # ACE Signals API Changes
|
|
225
|
+
- ## 2026-02-18
|
|
226
|
+
- Initial release: POST /signals, GET/POST /signals/{signal_id}/results, GET /health
|
|
227
|
+
- Enables OneAdmin integration for synchronous signal ingestion and policy result polling
|
|
228
|
+
- Supports permission-based authorization for signal operations
|
|
229
|
+
- Health endpoint available for monitoring without authentication
|
|
230
|
+
|
|
231
|
+
**Api**
|
|
232
|
+
- Added optional parameter `Confirmation` to Payments create endpoint to enable payment confirmation prompt before gateway submission
|
|
233
|
+
- Added optional parameter `RequireMatchingInputs` to Payments create endpoint for input confirmation in agent-assisted payment flows
|
|
234
|
+
- Added matcher capture types (`payment-card-number-matcher`, `expiration-date-matcher`, `security-code-matcher`, `postal-code-matcher`) to Payments update endpoint
|
|
235
|
+
|
|
236
|
+
**Memory**
|
|
237
|
+
- ## 2026-03-06
|
|
238
|
+
- **Modified 1 path(s)**:
|
|
239
|
+
- `/v1/Stores/{storeId}/Profiles/{profileId}/ConversationSummaries/{summaryId}` (added patch, get)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
[2026-02-18] Version 7.10.2
|
|
243
|
+
---------------------------
|
|
244
|
+
**Api**
|
|
245
|
+
- Remove inequality examples from Calls StartTime and EndTime filter descriptions
|
|
246
|
+
|
|
247
|
+
**Memory**
|
|
248
|
+
- ## 2026-02-06
|
|
249
|
+
- Minor updates (formatting, metadata)
|
|
250
|
+
- ## 2026-02-06
|
|
251
|
+
- Minor updates (formatting, metadata)
|
|
252
|
+
- ## 2026-02-06
|
|
253
|
+
- ## 2026-01-23
|
|
254
|
+
- ## 2026-01-23
|
|
255
|
+
- **Added 3 new path(s)**:
|
|
256
|
+
- `/v1/Stores/{storeId}/Profiles/Imports` (ListProfileImportsV2, CreateProfilesImportV2)
|
|
257
|
+
- `/v1/Stores/{storeId}/Profiles/Imports/{importId}` (FetchProfileImportV2)
|
|
258
|
+
- **Removed 6 path(s)**:
|
|
259
|
+
- `/v1/KnowledgeBases/{kbId}/Knowledge` (ListKnowledge, CreateKnowledge)
|
|
260
|
+
- `/v1/KnowledgeBases/{kbId}/Search` (KnowledgeSearch)
|
|
261
|
+
- `/v1/KnowledgeBases/{kbId}/Knowledge/{knowledgeId}` (RetrieveKnowledge, PatchKnowledge, DeleteKnowledge)
|
|
262
|
+
- `/v1/KnowledgeBases/{kbId}/Knowledge/{knowledgeId}/Chunks` (ListKnowledgeChunks)
|
|
263
|
+
- `/v1/ControlPlane/KnowledgeBases` (ListKnowledgeBases, CreateKnowledgeBase)
|
|
264
|
+
- `/v1/ControlPlane/KnowledgeBases/{kbId}` (GetKnowledgeBase, UpdateKnowledgeBase, DeleteKnowledgeBase)
|
|
265
|
+
- ## 2026-01-05
|
|
266
|
+
- ## 2026-01-05
|
|
267
|
+
- Initial release with 26 paths and 48 operations
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
[2026-02-05] Version 7.10.1
|
|
271
|
+
---------------------------
|
|
272
|
+
**Library - Fix**
|
|
273
|
+
- [PR #779](https://github.com/twilio/twilio-ruby/pull/779): Reverse edge processing. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
274
|
+
|
|
275
|
+
**Twiml**
|
|
276
|
+
- Add `recording_configuration` attribute to `<Recording>` noun
|
|
277
|
+
|
|
278
|
+
**Api**
|
|
279
|
+
- Clarify the behavior of date filters with the Calls API
|
|
280
|
+
- Added Phone Number `type` property to `/IncomingPhoneNumbers` resource
|
|
281
|
+
|
|
282
|
+
**Memory**
|
|
283
|
+
- ## 2026-01-23
|
|
284
|
+
- No path changes (updated metadata only)
|
|
285
|
+
- ## 2026-01-22
|
|
286
|
+
- No path changes (updated metadata only)
|
|
287
|
+
- ## 2026-01-22
|
|
288
|
+
- **Modified 1 path(s)**:
|
|
289
|
+
- `/v1/Stores/{storeId}/Profiles/{profileId}` (added delete)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
[2026-01-22] Version 7.10.0
|
|
293
|
+
---------------------------
|
|
294
|
+
**Library - Feature**
|
|
295
|
+
- [PR #774](https://github.com/twilio/twilio-ruby/pull/774): Response header. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
296
|
+
|
|
297
|
+
**Library - Chore**
|
|
298
|
+
- [PR #778](https://github.com/twilio/twilio-ruby/pull/778): hotfix. Thanks to [@shrutiburman](https://github.com/shrutiburman)!
|
|
299
|
+
|
|
300
|
+
**Twiml**
|
|
301
|
+
- Added support for <Uri> and <Headers> inside <Dial><Sip>
|
|
302
|
+
|
|
303
|
+
**Assistants**
|
|
304
|
+
- AI Assistants v1 release
|
|
305
|
+
|
|
306
|
+
**Autopilot**
|
|
307
|
+
- Remove Export resource from Autopilot Assistant
|
|
308
|
+
- Add dialogue_sid param to Query list resource
|
|
309
|
+
- Add Restore resource to Autopilot Assistant
|
|
310
|
+
- Add one new property in Query i.e dialogue_sid
|
|
311
|
+
- Add Export resource to Autopilot Assistant.
|
|
312
|
+
- Adds two new properties in Assistant i.e needs_model_build and development_stage
|
|
313
|
+
- Add Webhooks resource to Autopilot Assistant.
|
|
314
|
+
- Introduce `autopilot` subdomain with all resources from `preview.understand`
|
|
315
|
+
|
|
316
|
+
**Compliance**
|
|
317
|
+
- Added the new InventoryComplianceInsights API under version `/v1`.
|
|
318
|
+
|
|
319
|
+
**Content**
|
|
320
|
+
- changes for adding v2 endpoints
|
|
321
|
+
|
|
322
|
+
**Marketplace**
|
|
323
|
+
- Initial transition to Marketplace domain
|
|
324
|
+
|
|
325
|
+
**Memory**
|
|
326
|
+
- # API Changes
|
|
327
|
+
- ## 2026-01-15
|
|
328
|
+
- No path changes (updated metadata only)
|
|
329
|
+
- ## 2026-01-13
|
|
330
|
+
- **Added 1 new path(s)**:
|
|
331
|
+
- `/v1/Stores/{storeId}/Profiles/{profileId}/ConversationSummaries/{summaryId}` (DeleteProfileConversationSummary)
|
|
332
|
+
- ## 2026-01-12
|
|
333
|
+
- No path changes (updated metadata only)
|
|
334
|
+
- ## 2026-01-12
|
|
335
|
+
- No path changes (updated metadata only)
|
|
336
|
+
- ## 2026-01-12
|
|
337
|
+
- No path changes (updated metadata only)
|
|
338
|
+
- ## 2026-01-12
|
|
339
|
+
- **Added 2 new path(s)**:
|
|
340
|
+
- `/v1/Stores/{storeId}/Profiles/Imports` (ListProfileImportsV2, ImportProfilesV2)
|
|
341
|
+
- `/v1/Stores/{storeId}/Profiles/Imports/{importId}` (GetProfileImportV2)
|
|
342
|
+
- ## 2026-01-13
|
|
343
|
+
- No path changes (updated metadata only)
|
|
344
|
+
- ## 2026-01-07
|
|
345
|
+
- No path changes (updated metadata only)
|
|
346
|
+
- ## 2026-01-05
|
|
347
|
+
- No path changes (updated metadata only)
|
|
348
|
+
- ## 2025-12-17
|
|
349
|
+
- No path changes (updated metadata only)
|
|
350
|
+
- ## 2025-12-17
|
|
351
|
+
- No path changes (updated metadata only)
|
|
352
|
+
- ## 2025-12-17
|
|
353
|
+
- **Added 1 new path(s)**:
|
|
354
|
+
- `/v1/Stores/{storeId}/Profiles/{profileId}/Observations/{observationId}/Revisions` (ListObservationRevisions)
|
|
355
|
+
|
|
356
|
+
**Sender-ids**
|
|
357
|
+
- Added all v2 sender-id-service endpoints
|
|
358
|
+
|
|
359
|
+
**Trusthub**
|
|
360
|
+
- Add new delete endpoint for compliance_registration.
|
|
361
|
+
|
|
362
|
+
**Voice**
|
|
363
|
+
- Add ProvisioningStatus public API endpoints.
|
|
364
|
+
|
|
365
|
+
**Wise_owl**
|
|
366
|
+
- Init API as open-api spec
|
|
367
|
+
- Updated Get Chat, Send Message and Create Chat to include `contexts` in Message, instead of root Chat
|
|
368
|
+
|
|
369
|
+
**Www**
|
|
370
|
+
- Port APIs from oauth.twilio.com to www.twilio.com
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
[2026-01-07] Version 7.9.1
|
|
374
|
+
--------------------------
|
|
375
|
+
**Library - Chore**
|
|
376
|
+
- [PR #772](https://github.com/twilio/twilio-ruby/pull/772): Token Pagination support. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
377
|
+
- [PR #773](https://github.com/twilio/twilio-ruby/pull/773): custom error response redesign. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
378
|
+
|
|
379
|
+
**Api**
|
|
380
|
+
- Added optional parameter `clientNotificationUrl` for create call api
|
|
381
|
+
- Added optional parameter `clientNotificationUrl` for create participant api
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
[2025-12-17] Version 7.9.0
|
|
385
|
+
--------------------------
|
|
386
|
+
**Library - Chore**
|
|
387
|
+
- [PR #771](https://github.com/twilio/twilio-ruby/pull/771): Patch support method. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
388
|
+
- [PR #766](https://github.com/twilio/twilio-ruby/pull/766): Support all status codes for delete. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
389
|
+
- [PR #769](https://github.com/twilio/twilio-ruby/pull/769): URL query percent encoded. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
390
|
+
|
|
391
|
+
**Library - Fix**
|
|
392
|
+
- [PR #770](https://github.com/twilio/twilio-ruby/pull/770): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
393
|
+
|
|
394
|
+
**Trunking**
|
|
395
|
+
- Corrected the type used for phone number capabilities when accessed through a Trunk. **(breaking change)**
|
|
396
|
+
- Corrected the type used for phone number capabilities when accessed through a Trunk. **(breaking change)**
|
|
397
|
+
|
|
398
|
+
**Trusthub**
|
|
399
|
+
- Added new parameters in in toll-free initialize api payload.
|
|
400
|
+
- Remove the invalid status transition to Draft from the examples
|
|
401
|
+
- Change the value of email to a valid one in the examples.
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
[2025-12-03] Version 7.8.8
|
|
405
|
+
--------------------------
|
|
406
|
+
**Library - Fix**
|
|
407
|
+
- [PR #765](https://github.com/twilio/twilio-ruby/pull/765): Regional API domain processing. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
408
|
+
|
|
409
|
+
**Api**
|
|
410
|
+
- Add `twiml_session` resource for calls
|
|
411
|
+
- Add `twiml_session` resource for calls
|
|
412
|
+
|
|
413
|
+
**Monitor**
|
|
414
|
+
- Update default output properties
|
|
415
|
+
|
|
416
|
+
**Trusthub**
|
|
417
|
+
- Added customer_profile_sid in toll-free initialize api payload.
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
[2025-11-20] Version 7.8.7
|
|
421
|
+
--------------------------
|
|
422
|
+
**Memory**
|
|
423
|
+
- # Memory API Changes
|
|
424
|
+
- Added initial Memory API endpoints with darkseagreen badge status
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
[2025-11-11] Version 7.8.6
|
|
428
|
+
--------------------------
|
|
429
|
+
**Twiml**
|
|
430
|
+
- Add new noun `<ConversationRelaySession>`
|
|
431
|
+
- Add support for `<Recording>` noun under `<Start>` verb
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
[2025-10-28] Version 7.8.5
|
|
435
|
+
--------------------------
|
|
436
|
+
**Ai**
|
|
437
|
+
- Add `error` as possible transcript status
|
|
438
|
+
- Add `error` as possible transcript status
|
|
439
|
+
|
|
440
|
+
**Chat**
|
|
441
|
+
- Updated v2 UserChannel `channel_status` from `not_participating` to `notParticipating`
|
|
442
|
+
|
|
443
|
+
**Intelligence**
|
|
444
|
+
- Make intelligence work with RestProxy
|
|
445
|
+
- Add additional enums to better represent the possible states
|
|
446
|
+
- Add `error` enum to transcription status to better align with possible outputs
|
|
447
|
+
- Add `json` output type to text classification
|
|
448
|
+
|
|
449
|
+
**Trusthub**
|
|
450
|
+
- Remove required parameter Primary Profile Sid from compliance_inquiry and compliance_inquiry_individual
|
|
451
|
+
|
|
452
|
+
**Accounts**
|
|
453
|
+
- Add Messaging GeoPermissions API changes
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
[2025-10-14] Version 7.8.4
|
|
457
|
+
--------------------------
|
|
458
|
+
**Library - Chore**
|
|
459
|
+
- [PR #763](https://github.com/twilio/twilio-ruby/pull/763): fix test failures. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
460
|
+
|
|
461
|
+
**Api**
|
|
462
|
+
- Updated description for property `CallerDisplayName` for participant create request
|
|
463
|
+
- Updated description for property `CallerDisplayName` for participant create request
|
|
464
|
+
|
|
465
|
+
**Accounts**
|
|
466
|
+
- FILE_IS_AUTO_GENERATED: false
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
[2025-09-30] Version 7.8.3
|
|
470
|
+
--------------------------
|
|
471
|
+
**Library - Chore**
|
|
472
|
+
- [PR #762](https://github.com/twilio/twilio-ruby/pull/762): change oauth token endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
473
|
+
|
|
474
|
+
**Insights**
|
|
475
|
+
- Replace `field` with `key` in Request Filters and Response Metadata Filters and for Reports API
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
[2025-09-25] Version 7.8.2
|
|
479
|
+
--------------------------
|
|
480
|
+
**Api**
|
|
481
|
+
- Added optional parameter `CallerDisplayName` for conference participant outbound
|
|
482
|
+
- Updated description for property `to` in the participant create request
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
[2025-09-18] Version 7.8.1
|
|
486
|
+
--------------------------
|
|
487
|
+
**Library - Chore**
|
|
488
|
+
- [PR #753](https://github.com/twilio/twilio-ruby/pull/753): Support JWT 3.x. Thanks to [@hieuk09](https://github.com/hieuk09)!
|
|
489
|
+
|
|
490
|
+
**Api**
|
|
491
|
+
- Add `date_created` property to media resource and date_created filtering parameters for read action
|
|
492
|
+
- Updated the Recordings Resource `channels` property to clarify channels = # of channels in the recording resource and how to specify the # of channels in recording download
|
|
493
|
+
|
|
494
|
+
**Intelligence**
|
|
495
|
+
- Add encryption_credential_sid field in transcripts and services in v2
|
|
496
|
+
|
|
497
|
+
**Trusthub**
|
|
498
|
+
- Remove beta feature flag for all TH APIs
|
|
499
|
+
- Remove beta feature flag for ComplianceInquiries API to support OneConsole traffic
|
|
500
|
+
|
|
501
|
+
**Twiml**
|
|
502
|
+
- Add new noun `<AiSession>`
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
[2025-09-04] Version 7.8.0
|
|
506
|
+
--------------------------
|
|
507
|
+
**Api**
|
|
508
|
+
- Remove usage category enum from usage record and usage triggers API **(breaking change)**
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
[2025-08-28] Version 7.7.2
|
|
512
|
+
--------------------------
|
|
513
|
+
**Studio**
|
|
514
|
+
- Add `type` to Step resource APIs
|
|
515
|
+
|
|
516
|
+
**Verify**
|
|
517
|
+
- Allow to update all passkeys parameters in the service update
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
[2025-08-18] Version 7.7.1
|
|
521
|
+
--------------------------
|
|
522
|
+
**Accounts**
|
|
523
|
+
- Update beta feature flag for consent and contact bulk upsert APIs
|
|
524
|
+
|
|
525
|
+
**Api**
|
|
526
|
+
- Add multiple missing usage categories to usage records and usage triggers api
|
|
527
|
+
- Add `channels-whatsapp-template-marketing` and `channels-whatsapp-template-utility` to usage categories
|
|
528
|
+
|
|
529
|
+
**Conversations**
|
|
530
|
+
- Fix `state` spelling for `initializing` enum value
|
|
531
|
+
- Update `state` to include `intializing` for ServiceConversationWithParticipants and ConversationWithParticipants
|
|
532
|
+
|
|
533
|
+
**Flex**
|
|
534
|
+
- Adding new optional parameter `identity` to `web_channels` API in version `v2`
|
|
535
|
+
|
|
536
|
+
**Trusthub**
|
|
537
|
+
- Add required Permissions to the ComplianceInquiries API
|
|
538
|
+
|
|
539
|
+
**Verify**
|
|
540
|
+
- Add passkeys support to Verify API creating and updating services.
|
|
541
|
+
- Update `ienum` type for Factor creation
|
|
542
|
+
- Add passkeys as challenge and factor type
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
[2025-07-24] Version 7.7.0
|
|
546
|
+
--------------------------
|
|
547
|
+
**Events**
|
|
548
|
+
- Remove `SinkSid` parameter when updating subscriptions. **(breaking change)**
|
|
549
|
+
|
|
550
|
+
**Twiml**
|
|
551
|
+
- Remove Duplicates.
|
|
552
|
+
- Add Polly Generative voices.
|
|
553
|
+
- Add Latest Google (Chirp3-HD) voices.
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
[2025-07-10] Version 7.6.5
|
|
557
|
+
--------------------------
|
|
558
|
+
**Flex**
|
|
559
|
+
- update team name for web_channel, webchat_init_token, webchat_refresh_token
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
[2025-07-03] Version 7.6.4
|
|
563
|
+
--------------------------
|
|
564
|
+
**Library - Chore**
|
|
565
|
+
- [PR #750](https://github.com/twilio/twilio-ruby/pull/750): Remove references to microvisor. Thanks to [@akhani18](https://github.com/akhani18)!
|
|
566
|
+
- [PR #752](https://github.com/twilio/twilio-ruby/pull/752): remove knowledge domain. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
567
|
+
|
|
568
|
+
**Bulkexports**
|
|
569
|
+
- Changed the type of 'details' field to be a list of objects instead of a single object
|
|
570
|
+
|
|
571
|
+
**Conversations**
|
|
572
|
+
- Updates to `method` casing for ConfgurationAddress, ConversationScopedWebhook, and ServiceConversationScopedWebhook for RestProxy compatibility
|
|
573
|
+
|
|
574
|
+
**Proxy**
|
|
575
|
+
- remove shortcodes resource as its no longer used
|
|
576
|
+
|
|
577
|
+
**Serverless**
|
|
578
|
+
- Change log field level from type `ienum` to `string` in Logs api
|
|
579
|
+
|
|
580
|
+
**Taskrouter**
|
|
581
|
+
- Remove `URL-encoded` from attributes param definition in tasks
|
|
582
|
+
|
|
583
|
+
**Trunking**
|
|
584
|
+
- Added `symmetric_rtp_enabled` property on Trunks.
|
|
585
|
+
|
|
586
|
+
**Twiml**
|
|
587
|
+
- Add support for `<WhatsApp>` noun under `<Dial>` verb
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
[2025-06-12] Version 7.6.3
|
|
591
|
+
--------------------------
|
|
592
|
+
**Library - Chore**
|
|
593
|
+
- [PR #751](https://github.com/twilio/twilio-ruby/pull/751): Delete knowledge related files. Thanks to [@krishnakalluri](https://github.com/krishnakalluri)!
|
|
594
|
+
|
|
595
|
+
**Api**
|
|
596
|
+
- Change DependentPhoneNumber `capabilities` type `object` and `date_created`, `date_updated` to `date_time<rfc2822>`
|
|
597
|
+
- Updated the `Default` value from 0 to 1 in the Recordings Resource `channels` property
|
|
598
|
+
|
|
599
|
+
**Serverless**
|
|
600
|
+
- Update `ienum` type level in Logs api
|
|
601
|
+
|
|
602
|
+
**Verify**
|
|
603
|
+
- Update Channel list in Verify Attempst API
|
|
604
|
+
- Update `ienum` type for Conversion_Status in Verify Attempts API
|
|
605
|
+
|
|
606
|
+
**Twiml**
|
|
607
|
+
- Add `us2` to the list of supported values for the region attribute in the `<Conference>` TwiML noun.
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
[2025-05-29] Version 7.6.2
|
|
611
|
+
--------------------------
|
|
612
|
+
**Library - Chore**
|
|
613
|
+
- [PR #749](https://github.com/twilio/twilio-ruby/pull/749): move from preview_iam to iam token endpoint. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
614
|
+
- [PR #748](https://github.com/twilio/twilio-ruby/pull/748): removing ruby-head from CI. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
615
|
+
|
|
616
|
+
**Api**
|
|
617
|
+
- Added several usage category enums to `usage_record` API
|
|
618
|
+
|
|
619
|
+
**Numbers**
|
|
620
|
+
- Update the porting documentation
|
|
621
|
+
|
|
622
|
+
**Verify**
|
|
623
|
+
- Update `ienum` type for Channels in Verify Attempts API
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
[2025-05-13] Version 7.6.1
|
|
627
|
+
--------------------------
|
|
628
|
+
**Accounts**
|
|
629
|
+
- Changes to add date_of_consent param in Bulk Consent API
|
|
630
|
+
|
|
631
|
+
**Api**
|
|
632
|
+
- Change `friendly_name`, `date_created` and `date_updated` properties to type `string`.
|
|
633
|
+
|
|
634
|
+
**Twiml**
|
|
635
|
+
- Update twiml definition for `<ConversationRelay>` and `<Assistant>`
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
[2025-05-05] Version 7.6.0
|
|
639
|
+
--------------------------
|
|
640
|
+
**Library - Chore**
|
|
641
|
+
- [PR #742](https://github.com/twilio/twilio-ruby/pull/742): remove ostruct and benchmark from gemspec. Thanks to [@oehlschl](https://github.com/oehlschl)!
|
|
642
|
+
|
|
643
|
+
**Api**
|
|
644
|
+
- Add `response_key` for `Usage Triggers` fetch endpoint.
|
|
645
|
+
|
|
646
|
+
**Flex**
|
|
647
|
+
- Add Update Interaction API
|
|
648
|
+
- Adding `webhook_ttid` as optional parameter in Interactions API
|
|
649
|
+
|
|
650
|
+
**Serverless**
|
|
651
|
+
- Add node22 as a valid Build runtime
|
|
652
|
+
- Add node20 as a valid Build runtime
|
|
653
|
+
|
|
654
|
+
**Video**
|
|
655
|
+
- removed `transcribe_participants_on_connect` and `transcriptions_configuration` from the room resource **(breaking change)**
|
|
656
|
+
- Added `transcribe_participants_on_connect` and `transcriptions_configuration` to the room resource
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
[2025-04-07] Version 7.5.2
|
|
660
|
+
--------------------------
|
|
661
|
+
**Studio**
|
|
662
|
+
- Add documentation for parent_step_sid field in Step resource
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
[2025-03-20] Version 7.5.1
|
|
666
|
+
--------------------------
|
|
667
|
+
**Accounts**
|
|
668
|
+
- Update Safelist API docs as part of prefix supoort
|
|
669
|
+
|
|
670
|
+
**Flex**
|
|
671
|
+
- Removing `first_name`, `last_name`, and `friendly_name` from the Flex User API
|
|
672
|
+
|
|
673
|
+
**Messaging**
|
|
674
|
+
- Add missing tests under transaction/phone_numbers and transaction/short_code
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
[2025-03-11] Version 7.5.0
|
|
678
|
+
--------------------------
|
|
679
|
+
**Library - Feature**
|
|
680
|
+
- [PR #745](https://github.com/twilio/twilio-ruby/pull/745): MVR ready. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
681
|
+
|
|
682
|
+
**Library - Chore**
|
|
683
|
+
- [PR #744](https://github.com/twilio/twilio-ruby/pull/744): create image with required files. Thanks to [@sbansla](https://github.com/sbansla)!
|
|
684
|
+
|
|
685
|
+
**Api**
|
|
686
|
+
- Add the missing `emergency_enabled` field for `Address Service` endpoints
|
|
687
|
+
|
|
688
|
+
**Messaging**
|
|
689
|
+
- Add missing enums for A2P and TF
|
|
690
|
+
|
|
691
|
+
**Numbers**
|
|
692
|
+
- add missing enum values to hosted_number_order_status
|
|
693
|
+
|
|
694
|
+
**Twiml**
|
|
695
|
+
- Convert Twiml Attribute `speechModel` of type enum to string **(breaking change)**
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
[2025-02-20] Version 7.4.5
|
|
699
|
+
--------------------------
|
|
700
|
+
**Flex**
|
|
701
|
+
- Adding Digital Transfers APIs under v1/Interactions
|
|
702
|
+
|
|
703
|
+
**Numbers**
|
|
704
|
+
- Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
|
|
705
|
+
|
|
706
|
+
**Trusthub**
|
|
707
|
+
- Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
[2025-02-11] Version 7.4.4
|
|
711
|
+
--------------------------
|
|
712
|
+
**Api**
|
|
713
|
+
- Change downstream url and change media type for file `base/api/v2010/validation_request.json`.
|
|
714
|
+
|
|
715
|
+
**Intelligence**
|
|
716
|
+
- Add json_results for Generative JSON operator results
|
|
717
|
+
|
|
718
|
+
**Messaging**
|
|
719
|
+
- Add DestinationAlphaSender API to support Country-Specific Alpha Senders
|
|
720
|
+
|
|
721
|
+
**Video**
|
|
722
|
+
- Change codec type from enum to case-insensitive enum in recording and room_recording apis
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
[2025-01-28] Version 7.4.3
|
|
726
|
+
--------------------------
|
|
727
|
+
**Library - Chore**
|
|
728
|
+
- [PR #740](https://github.com/twilio/twilio-ruby/pull/740): added bug report issue template. Thanks to [@sbansla](https://github.com/sbansla)!
|
|
729
|
+
|
|
730
|
+
**Api**
|
|
731
|
+
- Add open-api file tag to `conference/call recordings` and `recording_transcriptions`.
|
|
732
|
+
|
|
733
|
+
**Events**
|
|
734
|
+
- Add support for subaccount subscriptions (beta)
|
|
735
|
+
|
|
736
|
+
**Insights**
|
|
737
|
+
- add new region to conference APIs
|
|
738
|
+
|
|
739
|
+
**Lookups**
|
|
740
|
+
- Add new `parnter_sub_id` query parameter to the lookup request
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
[2025-01-13] Version 7.4.2
|
|
744
|
+
--------------------------
|
|
745
|
+
**Library - Chore**
|
|
746
|
+
- [PR #739](https://github.com/twilio/twilio-ruby/pull/739): add ostruct and benchmark in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
747
|
+
- [PR #738](https://github.com/twilio/twilio-ruby/pull/738): add ostruct in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
748
|
+
|
|
749
|
+
**Messaging**
|
|
750
|
+
- Adds validity period Default value in service resource documentation
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
[2025-01-09] Version 7.4.1
|
|
754
|
+
--------------------------
|
|
755
|
+
**Library - Chore**
|
|
756
|
+
- [PR #736](https://github.com/twilio/twilio-ruby/pull/736): removing jruby-9.2. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
757
|
+
|
|
758
|
+
**Numbers**
|
|
759
|
+
- Change beta feature flag to use v2/BulkHostedNumberOrders
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
[2024-12-12] Version 7.4.0
|
|
763
|
+
--------------------------
|
|
764
|
+
**Library - Feature**
|
|
765
|
+
- [PR #735](https://github.com/twilio/twilio-ruby/pull/735): public oauth. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
[2024-12-05] Version 7.3.7
|
|
769
|
+
--------------------------
|
|
770
|
+
**Api**
|
|
771
|
+
- Add optional parameter `intelligence_service` to `transcription`
|
|
772
|
+
- Updated `phone_number_sid` to be populated for sip trunking terminating calls.
|
|
773
|
+
|
|
774
|
+
**Numbers**
|
|
775
|
+
- Add Update Hosted Number Order V2 API endpoint
|
|
776
|
+
- Update Port in docs
|
|
777
|
+
|
|
778
|
+
**Twiml**
|
|
779
|
+
- Add optional parameter `intelligence_service` to `<Transcription>`
|
|
780
|
+
- Add support for new `<ConversationRelay>` and `<Assistant>` noun
|
|
781
|
+
- Add `events` attribute to `<Dial>` verb
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
[2024-11-15] Version 7.3.6
|
|
785
|
+
--------------------------
|
|
786
|
+
**Library - Chore**
|
|
787
|
+
- [PR #732](https://github.com/twilio/twilio-ruby/pull/732): removed preview sync api. Thanks to [@sbansla](https://github.com/sbansla)!
|
|
788
|
+
|
|
789
|
+
**Api**
|
|
790
|
+
- Added `ivr-virtual-agent-custom-voices` and `ivr-virtual-agent-genai` to `usage_record` API.
|
|
791
|
+
- Add open-api file tag to realtime_transcriptions
|
|
792
|
+
|
|
793
|
+
**Taskrouter**
|
|
794
|
+
- Add `api-tag` property to workers reservation
|
|
795
|
+
- Add `api-tag` property to task reservation
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
[2024-10-24] Version 7.3.5
|
|
799
|
+
--------------------------
|
|
800
|
+
**Conversations**
|
|
801
|
+
- Expose ConversationWithParticipants resource that allows creating a conversation with participants
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
[2024-10-17] Version 7.3.4
|
|
805
|
+
--------------------------
|
|
806
|
+
**Api**
|
|
807
|
+
- Add response key `country` to fetch AvailablePhoneNumber resource by specific country.
|
|
808
|
+
|
|
809
|
+
**Messaging**
|
|
810
|
+
- Make library and doc public for requestManagedCert Endpoint
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
[2024-10-03] Version 7.3.3
|
|
814
|
+
--------------------------
|
|
815
|
+
**Messaging**
|
|
816
|
+
- Add A2P external campaign CnpMigration flag
|
|
817
|
+
|
|
818
|
+
**Numbers**
|
|
819
|
+
- Add address sid to portability API
|
|
820
|
+
|
|
821
|
+
**Verify**
|
|
822
|
+
- Add `SnaClientToken` optional parameter on Verification check.
|
|
823
|
+
- Add `EnableSnaClientToken` optional parameter for Verification creation.
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
[2024-09-25] Version 7.3.2
|
|
827
|
+
--------------------------
|
|
828
|
+
**Accounts**
|
|
829
|
+
- Update docs and mounts.
|
|
830
|
+
- Change library visibility to public
|
|
831
|
+
- Enable consent and contact bulk upsert APIs in prod.
|
|
832
|
+
|
|
833
|
+
**Serverless**
|
|
834
|
+
- Add is_plugin parameter in deployments api to check if it is plugins deployment
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
[2024-09-18] Version 7.3.1
|
|
838
|
+
--------------------------
|
|
839
|
+
**Intelligence**
|
|
840
|
+
- Remove public from operator_type
|
|
841
|
+
- Update operator_type to include general-availablity and deprecated
|
|
842
|
+
|
|
843
|
+
**Numbers**
|
|
844
|
+
- Remove beta flag for bundle clone API
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
[2024-09-05] Version 7.3.0
|
|
848
|
+
--------------------------
|
|
849
|
+
**Iam**
|
|
850
|
+
- updated library_visibility public for new public apikeys
|
|
851
|
+
|
|
852
|
+
**Numbers**
|
|
853
|
+
- Add new field in Error Codes for Regulatory Compliance.
|
|
854
|
+
- Change typing of Port In Request date_created field to date_time instead of date **(breaking change)**
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
[2024-08-26] Version 7.2.4
|
|
858
|
+
--------------------------
|
|
859
|
+
**Library - Chore**
|
|
860
|
+
- [PR #729](https://github.com/twilio/twilio-ruby/pull/729): remove preview_iam reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
861
|
+
- [PR #727](https://github.com/twilio/twilio-ruby/pull/727): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
862
|
+
- [PR #726](https://github.com/twilio/twilio-ruby/pull/726): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
863
|
+
- [PR #725](https://github.com/twilio/twilio-ruby/pull/725): fix documentation link. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
864
|
+
|
|
865
|
+
**Api**
|
|
866
|
+
- Update documentation of `error_code` and `error_message` on the Message resource.
|
|
867
|
+
- Remove generic parameters from `transcription` resource
|
|
868
|
+
- Added public documentation for Payload Data retrieval API
|
|
869
|
+
|
|
870
|
+
**Flex**
|
|
871
|
+
- Adding update Flex User api
|
|
872
|
+
|
|
873
|
+
**Insights**
|
|
874
|
+
- Added 'branded', 'business_profile' and 'voice_integrity' fields in List Call Summary
|
|
875
|
+
|
|
876
|
+
**Intelligence**
|
|
877
|
+
- Add `words` array information to the Sentences v2 entity.
|
|
878
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Operator Results.
|
|
879
|
+
- Change the path parameter when fetching an `/OperatorType/{}` from `sid<EY>` to `string` to support searching by SID or by name
|
|
880
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Transcript and Service endpoints.
|
|
881
|
+
|
|
882
|
+
**Messaging**
|
|
883
|
+
- Adds two new channel senders api to add/remove channel senders to/from a messaging service
|
|
884
|
+
- Extend ERC api to accept an optional attribute in request body to indicate CNP migration for an ERC
|
|
885
|
+
|
|
886
|
+
**Numbers**
|
|
887
|
+
- Modify visibility to public in bundle clone API
|
|
888
|
+
- Add `port_date` field to Port In Request and Port In Phone Numbers Fetch APIs
|
|
889
|
+
- Change properties docs for port in phone numbers api
|
|
890
|
+
- Add is_test body param to the Bundle Create API
|
|
891
|
+
- Change properties docs for port in api
|
|
892
|
+
|
|
893
|
+
**Trusthub**
|
|
894
|
+
- Add new field in themeSetId in compliance_inquiry.
|
|
895
|
+
|
|
896
|
+
**Verify**
|
|
897
|
+
- Update `custom_code_enabled` description on verification docs
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
[2024-07-02] Version 7.2.3
|
|
901
|
+
--------------------------
|
|
902
|
+
**Rubygems**
|
|
903
|
+
- Add docs link to gemspec
|
|
904
|
+
|
|
905
|
+
[2024-07-02] Version 7.2.2
|
|
906
|
+
--------------------------
|
|
907
|
+
**Intelligence**
|
|
908
|
+
- Deprecate account flag api.twilio-intelligence.v2
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
[2024-06-27] Version 7.2.1
|
|
912
|
+
--------------------------
|
|
913
|
+
**Api**
|
|
914
|
+
- Add `transcription` resource
|
|
915
|
+
- Add beta feature request managed cert
|
|
916
|
+
|
|
917
|
+
**Flex**
|
|
918
|
+
- Changed mount name for flex_team v2 api
|
|
919
|
+
|
|
920
|
+
**Intelligence**
|
|
921
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
|
|
922
|
+
|
|
923
|
+
**Numbers**
|
|
924
|
+
- Added include_constraints query parameter to the Regulations API
|
|
925
|
+
|
|
926
|
+
**Twiml**
|
|
927
|
+
- Add support for `<Transcription>` noun
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
[2024-06-18] Version 7.2.0
|
|
931
|
+
--------------------------
|
|
932
|
+
**Library - Chore**
|
|
933
|
+
- [PR #723](https://github.com/twilio/twilio-ruby/pull/723): adding contentType in post and put. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
934
|
+
|
|
935
|
+
**Events**
|
|
936
|
+
- Add `status` and `documentation_url` to Event Types
|
|
937
|
+
|
|
938
|
+
**Lookups**
|
|
939
|
+
- Removed unused `fraud` lookups in V1 only to facilitate rest proxy migration
|
|
940
|
+
|
|
941
|
+
**Numbers**
|
|
942
|
+
- Add date_created field to the Get Port In Request API
|
|
943
|
+
- Rename the `status_last_time_updated_timestamp` field to `last_updated` in the Get Port In Phone Number API **(breaking change)**
|
|
944
|
+
- Add Rejection reason and rejection reason code to the Get Port In Phone Number API
|
|
945
|
+
- Remove the carrier information from the Portability API
|
|
946
|
+
|
|
947
|
+
**Proxy**
|
|
948
|
+
- Change property `type` from enum to ienum
|
|
949
|
+
|
|
950
|
+
**Trusthub**
|
|
951
|
+
- Add skipMessagingUseCase field in compliance_tollfree_inquiry.
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
[2024-06-06] Version 7.1.1
|
|
955
|
+
--------------------------
|
|
956
|
+
**Library - Chore**
|
|
957
|
+
- [PR #721](https://github.com/twilio/twilio-ruby/pull/721): adding rexml to Gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
958
|
+
|
|
959
|
+
**Api**
|
|
960
|
+
- Mark MaxPrice as obsolete
|
|
961
|
+
|
|
962
|
+
**Lookups**
|
|
963
|
+
- Update examples for `phone_number_quality_score`
|
|
964
|
+
|
|
965
|
+
**Messaging**
|
|
966
|
+
- List tollfree verifications on parent account and all sub-accounts
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
[2024-05-24] Version 7.1.0
|
|
970
|
+
--------------------------
|
|
971
|
+
**Library - Chore**
|
|
972
|
+
- [PR #720](https://github.com/twilio/twilio-ruby/pull/720): removing preview_messaging reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
973
|
+
|
|
974
|
+
**Api**
|
|
975
|
+
- Add ie1 as supported region for UserDefinedMessage and UserDefinedMessageSubscription.
|
|
976
|
+
|
|
977
|
+
**Flex**
|
|
978
|
+
- Adding validated field to `plugin_versions`
|
|
979
|
+
- Corrected the data type for `runtime_domain`, `call_recording_webhook_url`, `crm_callback_url`, `crm_fallback_url`, `flex_url` in Flex Configuration
|
|
980
|
+
- Making `routing` optional in Create Interactions endpoint
|
|
981
|
+
|
|
982
|
+
**Intelligence**
|
|
983
|
+
- Expose operator authoring apis to public visibility
|
|
984
|
+
- Deleted `language_code` parameter from updating service in v2 **(breaking change)**
|
|
985
|
+
- Add read_only_attached_operator_sids to v2 services
|
|
986
|
+
|
|
987
|
+
**Numbers**
|
|
988
|
+
- Add API endpoint for GET Porting Webhook Configurations By Account SID
|
|
989
|
+
- Remove bulk portability api under version `/v1`. **(breaking change)**
|
|
990
|
+
- Removed porting_port_in_fetch.json files and move the content into porting_port_in.json files
|
|
991
|
+
- Add API endpoint to deleting Webhook Configurations
|
|
992
|
+
- Add Get Phone Number by Port in request SID and Phone Number SID api
|
|
993
|
+
- Add Create Porting webhook configuration API
|
|
994
|
+
- Added bundle_sid and losing_carrier_information fields to Create PortInRequest api to support Japan porting
|
|
995
|
+
|
|
996
|
+
**Taskrouter**
|
|
997
|
+
- Add back `routing_target` property to tasks
|
|
998
|
+
- Add back `ignore_capacity` property to tasks
|
|
999
|
+
- Removing `routing_target` property to tasks due to revert
|
|
1000
|
+
- Removing `ignore_capacity` property to tasks due to revert
|
|
1001
|
+
- Add `routing_target` property to tasks
|
|
1002
|
+
- Add `ignore_capacity` property to tasks
|
|
1003
|
+
|
|
1004
|
+
**Trusthub**
|
|
1005
|
+
- Add new field errors to bundle as part of public API response in customer_profile.json and trust_product.json **(breaking change)**
|
|
1006
|
+
- Add themeSetId field in compliance_tollfree_inquiry.
|
|
1007
|
+
|
|
1008
|
+
**Verify**
|
|
1009
|
+
- Update `friendly_name` description on service docs
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
[2024-04-18] Version 7.0.2
|
|
1013
|
+
--------------------------
|
|
1014
|
+
**Flex**
|
|
1015
|
+
- Add header `ui_version` to `web_channels` API
|
|
1016
|
+
|
|
1017
|
+
**Messaging**
|
|
1018
|
+
- Redeploy after failed pipeline
|
|
1019
|
+
|
|
1020
|
+
**Numbers**
|
|
1021
|
+
- Add Delete Port In request phone number api and Add Delete Port In request api
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
[2024-04-04] Version 7.0.1
|
|
1025
|
+
--------------------------
|
|
1026
|
+
**Api**
|
|
1027
|
+
- Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
|
|
1028
|
+
|
|
1029
|
+
**Flex**
|
|
1030
|
+
- Remove optional parameter from `plugins` and it to `plugin_versions`
|
|
1031
|
+
|
|
1032
|
+
**Lookups**
|
|
1033
|
+
- Add new `pre_fill` package to the lookup response
|
|
1034
|
+
|
|
1035
|
+
**Messaging**
|
|
1036
|
+
- Cleanup api.messaging.next-gen from Messaging Services endpoints
|
|
1037
|
+
- Readd Sending-Window after fixing test failure
|
|
1038
|
+
|
|
1039
|
+
**Verify**
|
|
1040
|
+
- Add `whatsapp.msg_service_sid` and `whatsapp.from` parameters to create, update, get and list of services endpoints
|
|
1041
|
+
|
|
1042
|
+
**Voice**
|
|
1043
|
+
- Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
|
|
1044
|
+
|
|
1045
|
+
**Twiml**
|
|
1046
|
+
- Add new `token_type` value `payment-method` for `Pay` verb
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
[2024-04-01] Version 7.0.0
|
|
1050
|
+
--------------------------
|
|
1051
|
+
**Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2024-01-19-6xx-to-7xx) for detailed migration notes.
|
|
1052
|
+
|
|
1053
|
+
**Library - Feature**
|
|
1054
|
+
- [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)**
|
|
1055
|
+
|
|
1056
|
+
**Library - Chore**
|
|
1057
|
+
- [PR #715](https://github.com/twilio/twilio-ruby/pull/715): remove media endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
1058
|
+
|
|
1059
|
+
**Api**
|
|
1060
|
+
- Add property `queue_time` to conference participant resource
|
|
1061
|
+
- Update RiskCheck documentation
|
|
1062
|
+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
|
|
1063
|
+
|
|
1064
|
+
**Flex**
|
|
1065
|
+
- Adding optional parameter to `plugins`
|
|
1066
|
+
|
|
1067
|
+
**Media**
|
|
1068
|
+
- Remove API: MediaProcessor
|
|
1069
|
+
|
|
1070
|
+
**Messaging**
|
|
1071
|
+
- Remove Sending-Window due to test failure
|
|
1072
|
+
- Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
|
|
1073
|
+
|
|
1074
|
+
**Numbers**
|
|
1075
|
+
- Correct valid_until_date field to be visible in Bundles resource
|
|
1076
|
+
- Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
|
|
1077
|
+
|
|
1078
|
+
**Oauth**
|
|
1079
|
+
- Modified token endpoint response
|
|
1080
|
+
- Added refresh_token and scope as optional parameter to token endpoint
|
|
1081
|
+
- Add new APIs for vendor authorize and token endpoints
|
|
1082
|
+
|
|
1083
|
+
**Trusthub**
|
|
1084
|
+
- Add update inquiry endpoint in compliance_registration.
|
|
1085
|
+
- Add new field in themeSetId in compliance_registration.
|
|
1086
|
+
|
|
1087
|
+
**Voice**
|
|
1088
|
+
- Correct call filtering by start and end time documentation, clarifying that times are UTC.
|
|
1089
|
+
|
|
1090
|
+
**Twiml**
|
|
1091
|
+
- Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
|
|
1092
|
+
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
[2024-03-12] Version 6.12.1
|
|
1096
|
+
---------------------------
|
|
1097
|
+
**Api**
|
|
1098
|
+
- Correct precedence documentation for application_sid vs status_callback in message creation
|
|
1099
|
+
- Mark MaxPrice as deprecated
|
|
1100
|
+
|
|
1101
|
+
**Flex**
|
|
1102
|
+
- Making `plugins` visibility to public
|
|
1103
|
+
|
|
1104
|
+
**Messaging**
|
|
1105
|
+
- Add new `errors` attribute to the Brand Registration resource.
|
|
1106
|
+
- Mark `brand_feedback` attribute as deprecated.
|
|
1107
|
+
- Mark `failure_reason` attribute as deprecated.
|
|
1108
|
+
- 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`.
|
|
1109
|
+
|
|
1110
|
+
**Numbers**
|
|
1111
|
+
- Correcting mount_name for porting port in fetch API
|
|
1112
|
+
|
|
1113
|
+
**Trusthub**
|
|
1114
|
+
- Add new field in statusCallbackUrl in compliance_registration.
|
|
1115
|
+
- Add new field in isvRegisteringForSelfOrTenant in compliance_registration.
|
|
1116
|
+
|
|
1117
|
+
**Twiml**
|
|
1118
|
+
- Expanded description of Action parameter for Message verb
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
[2024-02-27] Version 6.12.0
|
|
1122
|
+
---------------------------
|
|
1123
|
+
**Library - Chore**
|
|
1124
|
+
- [PR #712](https://github.com/twilio/twilio-ruby/pull/712): cluster tests enabled. Thanks to [@sbansla](https://github.com/sbansla)!
|
|
1125
|
+
|
|
1126
|
+
**Api**
|
|
1127
|
+
- remove feedback and feedback summary from call resource
|
|
1128
|
+
|
|
1129
|
+
**Flex**
|
|
1130
|
+
- Adding `routing_properties` to Interactions Channels Participant
|
|
1131
|
+
|
|
1132
|
+
**Lookups**
|
|
1133
|
+
- Add new `line_status` package to the lookup response
|
|
1134
|
+
- Remove `live_activity` package from the lookup response **(breaking change)**
|
|
1135
|
+
|
|
1136
|
+
**Messaging**
|
|
1137
|
+
- Add tollfree multiple rejection reasons response array
|
|
1138
|
+
|
|
1139
|
+
**Trusthub**
|
|
1140
|
+
- Add ENUM for businessRegistrationAuthority in compliance_registration. **(breaking change)**
|
|
1141
|
+
- Add new field in isIsvEmbed in compliance_registration.
|
|
1142
|
+
- Add additional optional fields in compliance_registration for Individual business type.
|
|
1143
|
+
|
|
1144
|
+
**Twiml**
|
|
1145
|
+
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
[2024-02-09] Version 6.11.0
|
|
1149
|
+
---------------------------
|
|
1150
|
+
**Library - Chore**
|
|
1151
|
+
- [PR #710](https://github.com/twilio/twilio-ruby/pull/710): remove live media endpoint. Thanks to [@califlower](https://github.com/califlower)!
|
|
1152
|
+
- [PR #708](https://github.com/twilio/twilio-ruby/pull/708): removing oauth and autopilot references. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
|
1153
|
+
|
|
1154
|
+
**Api**
|
|
1155
|
+
- Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
|
|
1156
|
+
- Update documentation to reflect RiskCheck GA
|
|
1157
|
+
- Added optional parameter `CallToken` for create participant api
|
|
1158
|
+
|
|
1159
|
+
**Events**
|
|
1160
|
+
- Marked as GA
|
|
1161
|
+
|
|
1162
|
+
**Flex**
|
|
1163
|
+
- Adding `flex_instance_sid` to Flex Configuration
|
|
1164
|
+
- Adding `provisioning_status` for Email Manager
|
|
1165
|
+
- Adding `offline_config` to Flex Configuration
|
|
1166
|
+
|
|
1167
|
+
**Insights**
|
|
1168
|
+
- add flag to restrict access to unapid customers
|
|
1169
|
+
- decommission voice-qualitystats-endpoint role
|
|
1170
|
+
|
|
1171
|
+
**Intelligence**
|
|
1172
|
+
- Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
|
|
1173
|
+
|
|
1174
|
+
**Lookups**
|
|
1175
|
+
- Remove `carrier` field from `sms_pumping_risk` and leave `carrier_risk_category` **(breaking change)**
|
|
1176
|
+
- Remove carrier information from call forwarding package **(breaking change)**
|
|
1177
|
+
|
|
1178
|
+
**Messaging**
|
|
1179
|
+
- Add update instance endpoints to us_app_to_person api
|
|
1180
|
+
- Add tollfree edit_allowed and edit_reason fields
|
|
1181
|
+
- Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
|
|
1182
|
+
- Add DELETE support to Tollfree Verification resource
|
|
1183
|
+
|
|
1184
|
+
**Numbers**
|
|
1185
|
+
- Add Get Port In request api
|
|
1186
|
+
|
|
1187
|
+
**Push**
|
|
1188
|
+
- Migrated to new Push API V4 with Resilient Notification Delivery.
|
|
1189
|
+
|
|
1190
|
+
**Serverless**
|
|
1191
|
+
- Add node18 as a valid Build runtime
|
|
1192
|
+
|
|
1193
|
+
**Taskrouter**
|
|
1194
|
+
- Add `jitter_buffer_size` param in update reservation
|
|
1195
|
+
- Add container attribute to task_queue_bulk_real_time_statistics endpoint
|
|
1196
|
+
- Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
|
|
1197
|
+
|
|
1198
|
+
**Trusthub**
|
|
1199
|
+
- Add optional field NotificationEmail to the POST /v1/ComplianceInquiries/Customers/Initialize API
|
|
1200
|
+
- Add additional optional fields in compliance_tollfree_inquiry.json
|
|
1201
|
+
- Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
|
|
1202
|
+
- Add new optional field notification_email to compliance_tollfree_inquiry.json
|
|
1203
|
+
|
|
1204
|
+
**Verify**
|
|
1205
|
+
- `Tags` property added again to Public Docs **(breaking change)**
|
|
1206
|
+
- Remove `Tags` from Public Docs **(breaking change)**
|
|
1207
|
+
- Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
|
|
1208
|
+
- Add `Tags` optional parameter on Verification creation.
|
|
1209
|
+
- Update Verify TOTP maturity to GA.
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
[2024-01-25] Version 6.10.0
|
|
1213
|
+
---------------------------
|
|
1214
|
+
**Oauth**
|
|
1215
|
+
- updated openid discovery endpoint uri **(breaking change)**
|
|
1216
|
+
- Added device code authorization endpoint
|
|
1217
|
+
- added oauth JWKS endpoint
|
|
1218
|
+
- Get userinfo resource
|
|
1219
|
+
- OpenID discovery resource
|
|
1220
|
+
- Add new API for token endpoint
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
[2024-01-14] Version 6.9.1
|
|
1224
|
+
--------------------------
|
|
1225
|
+
**Library - Chore**
|
|
1226
|
+
- [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)!
|
|
1227
|
+
|
|
1228
|
+
**Library - Fix**
|
|
1229
|
+
- [PR #693](https://github.com/twilio/twilio-ruby/pull/693): fixed query param not going for delete. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
|
1230
|
+
|
|
1231
|
+
**Push**
|
|
1232
|
+
- Migrated to new Push API V4 with Resilient Notification Delivery.
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
[2023-12-14] Version 6.9.0
|
|
1236
|
+
--------------------------
|
|
1237
|
+
**Api**
|
|
1238
|
+
- Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
|
|
1239
|
+
|
|
1240
|
+
**Events**
|
|
1241
|
+
- Marked as GA
|
|
1242
|
+
|
|
1243
|
+
**Insights**
|
|
1244
|
+
- decommission voice-qualitystats-endpoint role
|
|
1245
|
+
|
|
1246
|
+
**Numbers**
|
|
1247
|
+
- Add Get Port In request api
|
|
1248
|
+
|
|
1249
|
+
**Taskrouter**
|
|
1250
|
+
- Add `jitter_buffer_size` param in update reservation
|
|
1251
|
+
|
|
1252
|
+
**Trusthub**
|
|
1253
|
+
- Add additional optional fields in compliance_tollfree_inquiry.json
|
|
1254
|
+
|
|
1255
|
+
**Verify**
|
|
1256
|
+
- Remove `Tags` from Public Docs **(breaking change)**
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
[2023-12-01] Version 6.8.3
|
|
1260
|
+
--------------------------
|
|
1261
|
+
**Verify**
|
|
1262
|
+
- Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
[2023-11-17] Version 6.8.2
|
|
1266
|
+
--------------------------
|
|
1267
|
+
**Library - Chore**
|
|
1268
|
+
- [PR #687](https://github.com/twilio/twilio-ruby/pull/687): remove more oauth refrences. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
|
|
1269
|
+
|
|
1270
|
+
**Api**
|
|
1271
|
+
- Update documentation to reflect RiskCheck GA
|
|
1272
|
+
|
|
1273
|
+
**Messaging**
|
|
1274
|
+
- Add tollfree edit_allowed and edit_reason fields
|
|
1275
|
+
- Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
|
|
1276
|
+
|
|
1277
|
+
**Taskrouter**
|
|
1278
|
+
- Add container attribute to task_queue_bulk_real_time_statistics endpoint
|
|
1279
|
+
|
|
1280
|
+
**Trusthub**
|
|
1281
|
+
- Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
|
|
1282
|
+
- Add new optional field notification_email to compliance_tollfree_inquiry.json
|
|
1283
|
+
|
|
1284
|
+
**Verify**
|
|
1285
|
+
- Add `Tags` optional parameter on Verification creation.
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
[2023-11-06] Version 6.8.1
|
|
1289
|
+
--------------------------
|
|
1290
|
+
**Flex**
|
|
1291
|
+
- Adding `provisioning_status` for Email Manager
|
|
1292
|
+
|
|
1293
|
+
**Intelligence**
|
|
1294
|
+
- Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
|
|
1295
|
+
|
|
1296
|
+
**Messaging**
|
|
1297
|
+
- Add DELETE support to Tollfree Verification resource
|
|
1298
|
+
|
|
1299
|
+
**Serverless**
|
|
1300
|
+
- Add node18 as a valid Build runtime
|
|
1301
|
+
|
|
1302
|
+
**Verify**
|
|
1303
|
+
- Update Verify TOTP maturity to GA.
|
|
1304
|
+
|
|
3
1305
|
|
|
4
1306
|
[2023-10-19] Version 6.8.0
|
|
5
1307
|
--------------------------
|