twilio-ruby 5.10.7 → 7.6.2

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.
Files changed (1049) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +1 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.yml +69 -0
  4. data/.github/workflows/pr-lint.yml +21 -0
  5. data/.github/workflows/test-and-deploy.yml +147 -0
  6. data/.gitignore +11 -1
  7. data/.rubocop.yml +23 -6
  8. data/.rubocop_todo.yml +147 -73
  9. data/CHANGES.md +3392 -0
  10. data/CODE_OF_CONDUCT.md +73 -0
  11. data/CONTRIBUTING.md +14 -10
  12. data/Dockerfile +4 -3
  13. data/Gemfile +5 -8
  14. data/ISSUE_TEMPLATE.md +17 -13
  15. data/{LICENSE.md → LICENSE} +2 -2
  16. data/Makefile +22 -22
  17. data/PULL_REQUEST_TEMPLATE.md +30 -3
  18. data/README.md +219 -57
  19. data/Rakefile +0 -54
  20. data/UPGRADE.md +21 -0
  21. data/VERSIONS.md +9 -10
  22. data/advanced-examples/custom-http-client.md +170 -0
  23. data/cluster/cluster_oauth_spec.rb +19 -0
  24. data/cluster/cluster_orgs_spec.rb +40 -0
  25. data/cluster/cluster_spec.rb +75 -0
  26. data/examples/examples.rb +1 -1
  27. data/examples/public_oauth.rb +13 -0
  28. data/githooks/pre-commit +0 -0
  29. data/lib/rack/twilio_webhook_authentication.rb +25 -1
  30. data/lib/twilio-ruby/auth_strategy/auth_strategy.rb +19 -0
  31. data/lib/twilio-ruby/auth_strategy/no_auth_strategy.rb +17 -0
  32. data/lib/twilio-ruby/auth_strategy/token_auth_strategy.rb +39 -0
  33. data/lib/twilio-ruby/base/client_base.rb +131 -0
  34. data/lib/twilio-ruby/credential/auth_type.rb +17 -0
  35. data/lib/twilio-ruby/credential/client_credential_provider.rb +28 -0
  36. data/lib/twilio-ruby/credential/credential_provider.rb +11 -0
  37. data/lib/twilio-ruby/credential/orgs_credential_provider.rb +30 -0
  38. data/lib/twilio-ruby/framework/request.rb +8 -1
  39. data/lib/twilio-ruby/framework/{domain.rb → rest/domain.rb} +1 -2
  40. data/lib/twilio-ruby/framework/{error.rb → rest/error.rb} +3 -15
  41. data/lib/twilio-ruby/framework/{page.rb → rest/page.rb} +1 -0
  42. data/lib/twilio-ruby/framework/{version.rb → rest/version.rb} +7 -11
  43. data/lib/twilio-ruby/http/client_token_manager.rb +28 -0
  44. data/lib/twilio-ruby/http/http_client.rb +53 -17
  45. data/lib/twilio-ruby/http/org_token_manager.rb +28 -0
  46. data/lib/twilio-ruby/http.rb +5 -0
  47. data/lib/twilio-ruby/jwt/access_token.rb +20 -61
  48. data/lib/twilio-ruby/jwt/jwt.rb +6 -0
  49. data/lib/twilio-ruby/jwt/task_router.rb +2 -2
  50. data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +213 -0
  51. data/lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb +137 -0
  52. data/lib/twilio-ruby/rest/accounts/v1/bulk_contacts.rb +137 -0
  53. data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +398 -334
  54. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +398 -341
  55. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +123 -114
  56. data/lib/twilio-ruby/rest/accounts/v1/safelist.rb +186 -0
  57. data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +233 -0
  58. data/lib/twilio-ruby/rest/accounts/v1.rb +64 -29
  59. data/lib/twilio-ruby/rest/accounts.rb +10 -28
  60. data/lib/twilio-ruby/rest/accounts_base.rb +38 -0
  61. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +375 -364
  62. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +584 -521
  63. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +642 -606
  64. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +324 -318
  65. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +398 -0
  66. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +398 -0
  67. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +398 -0
  68. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +398 -0
  69. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +398 -0
  70. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +398 -0
  71. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +398 -0
  72. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +442 -0
  73. data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +150 -0
  74. data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +213 -0
  75. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +411 -413
  76. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +335 -0
  77. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +521 -485
  78. data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +885 -0
  79. data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +885 -0
  80. data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +318 -0
  81. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +170 -0
  82. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +250 -0
  83. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +973 -827
  84. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +686 -576
  85. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +472 -450
  86. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +506 -477
  87. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +447 -399
  88. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +331 -346
  89. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +417 -420
  90. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +547 -503
  91. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +547 -503
  92. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +547 -503
  93. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +868 -865
  94. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +356 -304
  95. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +175 -162
  96. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +355 -347
  97. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +645 -601
  98. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +165 -143
  99. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +165 -143
  100. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +411 -408
  101. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +389 -364
  102. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +357 -324
  103. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +453 -390
  104. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload/data.rb +204 -0
  105. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +386 -366
  106. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +383 -380
  107. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +379 -360
  108. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +522 -478
  109. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +434 -410
  110. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +356 -312
  111. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +402 -375
  112. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +426 -383
  113. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +366 -0
  114. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_ip_access_control_list_mapping.rb +366 -0
  115. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +141 -0
  116. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +366 -0
  117. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +127 -0
  118. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +127 -0
  119. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +360 -340
  120. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +360 -340
  121. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +677 -539
  122. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +439 -410
  123. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +426 -383
  124. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +143 -150
  125. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +179 -158
  126. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +379 -348
  127. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +319 -320
  128. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +319 -320
  129. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +319 -323
  130. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +319 -320
  131. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +319 -320
  132. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +319 -320
  133. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +319 -320
  134. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +319 -320
  135. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +386 -397
  136. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +512 -492
  137. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +114 -104
  138. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +180 -167
  139. data/lib/twilio-ruby/rest/api/v2010/account.rb +1002 -934
  140. data/lib/twilio-ruby/rest/api/v2010.rb +127 -144
  141. data/lib/twilio-ruby/rest/api.rb +62 -60
  142. data/lib/twilio-ruby/rest/api_base.rb +38 -0
  143. data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_knowledge.rb +371 -0
  144. data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_tool.rb +371 -0
  145. data/lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb +311 -0
  146. data/lib/twilio-ruby/rest/assistants/v1/assistant/message.rb +206 -0
  147. data/lib/twilio-ruby/rest/assistants/v1/assistant.rb +687 -0
  148. data/lib/twilio-ruby/rest/assistants/v1/knowledge/chunk.rb +232 -0
  149. data/lib/twilio-ruby/rest/assistants/v1/knowledge/knowledge_status.rb +213 -0
  150. data/lib/twilio-ruby/rest/assistants/v1/knowledge.rb +629 -0
  151. data/lib/twilio-ruby/rest/assistants/v1/policy.rb +267 -0
  152. data/lib/twilio-ruby/rest/assistants/v1/session/message.rb +267 -0
  153. data/lib/twilio-ruby/rest/assistants/v1/session.rb +335 -0
  154. data/lib/twilio-ruby/rest/assistants/v1/tool.rb +605 -0
  155. data/lib/twilio-ruby/rest/assistants/v1.rb +100 -0
  156. data/lib/twilio-ruby/rest/assistants.rb +6 -0
  157. data/lib/twilio-ruby/rest/assistants_base.rb +38 -0
  158. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +316 -0
  159. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +315 -0
  160. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +289 -0
  161. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +261 -0
  162. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +266 -0
  163. data/lib/twilio-ruby/rest/bulkexports/v1.rb +64 -0
  164. data/lib/twilio-ruby/rest/bulkexports.rb +25 -0
  165. data/lib/twilio-ruby/rest/bulkexports_base.rb +38 -0
  166. data/lib/twilio-ruby/rest/chat/v1/credential.rb +446 -393
  167. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +395 -386
  168. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +449 -444
  169. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +465 -430
  170. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +561 -508
  171. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +423 -368
  172. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +249 -238
  173. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +492 -448
  174. data/lib/twilio-ruby/rest/chat/v1/service.rb +888 -914
  175. data/lib/twilio-ruby/rest/chat/v1.rb +58 -52
  176. data/lib/twilio-ruby/rest/chat/v2/credential.rb +446 -409
  177. data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +386 -361
  178. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +395 -389
  179. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +510 -492
  180. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +537 -514
  181. data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +467 -422
  182. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +630 -576
  183. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +423 -365
  184. data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +379 -377
  185. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +428 -240
  186. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +534 -477
  187. data/lib/twilio-ruby/rest/chat/v2/service.rb +791 -740
  188. data/lib/twilio-ruby/rest/chat/v2.rb +58 -52
  189. data/lib/twilio-ruby/rest/chat/v3/channel.rb +303 -0
  190. data/lib/twilio-ruby/rest/chat/v3.rb +71 -0
  191. data/lib/twilio-ruby/rest/chat.rb +12 -40
  192. data/lib/twilio-ruby/rest/chat_base.rb +48 -0
  193. data/lib/twilio-ruby/rest/client.rb +344 -400
  194. data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +190 -0
  195. data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +213 -0
  196. data/lib/twilio-ruby/rest/content/v1/content.rb +974 -0
  197. data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +255 -0
  198. data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +269 -0
  199. data/lib/twilio-ruby/rest/content/v1.rb +61 -0
  200. data/lib/twilio-ruby/rest/content/v2/content.rb +319 -0
  201. data/lib/twilio-ruby/rest/content/v2/content_and_approvals.rb +312 -0
  202. data/lib/twilio-ruby/rest/content/v2.rb +46 -0
  203. data/lib/twilio-ruby/rest/content.rb +15 -0
  204. data/lib/twilio-ruby/rest/content_base.rb +43 -0
  205. data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +508 -0
  206. data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +294 -0
  207. data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +300 -0
  208. data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +355 -0
  209. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +567 -0
  210. data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +528 -0
  211. data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +458 -0
  212. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +653 -0
  213. data/lib/twilio-ruby/rest/conversations/v1/conversation_with_participants.rb +263 -0
  214. data/lib/twilio-ruby/rest/conversations/v1/credential.rb +461 -0
  215. data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +316 -0
  216. data/lib/twilio-ruby/rest/conversations/v1/role.rb +420 -0
  217. data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +385 -0
  218. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +347 -0
  219. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +293 -0
  220. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +327 -0
  221. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +366 -0
  222. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +580 -0
  223. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +541 -0
  224. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +471 -0
  225. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +662 -0
  226. data/lib/twilio-ruby/rest/conversations/v1/service/conversation_with_participants.rb +269 -0
  227. data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +321 -0
  228. data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +429 -0
  229. data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +477 -0
  230. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +514 -0
  231. data/lib/twilio-ruby/rest/conversations/v1/service.rb +525 -0
  232. data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +472 -0
  233. data/lib/twilio-ruby/rest/conversations/v1/user.rb +505 -0
  234. data/lib/twilio-ruby/rest/conversations/v1.rb +142 -0
  235. data/lib/twilio-ruby/rest/conversations.rb +79 -0
  236. data/lib/twilio-ruby/rest/conversations_base.rb +38 -0
  237. data/lib/twilio-ruby/rest/events/v1/event_type.rb +336 -0
  238. data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +309 -0
  239. data/lib/twilio-ruby/rest/events/v1/schema.rb +242 -0
  240. data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +136 -0
  241. data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +143 -0
  242. data/lib/twilio-ruby/rest/events/v1/sink.rb +470 -0
  243. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +398 -0
  244. data/lib/twilio-ruby/rest/events/v1/subscription.rb +452 -0
  245. data/lib/twilio-ruby/rest/events/v1.rb +94 -0
  246. data/lib/twilio-ruby/rest/events.rb +43 -0
  247. data/lib/twilio-ruby/rest/events_base.rb +38 -0
  248. data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +460 -0
  249. data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +395 -0
  250. data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +563 -0
  251. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +599 -0
  252. data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +336 -0
  253. data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +232 -0
  254. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +462 -0
  255. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +373 -0
  256. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +458 -0
  257. data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +365 -0
  258. data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +221 -0
  259. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +161 -0
  260. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +147 -0
  261. data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +200 -0
  262. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +261 -0
  263. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +365 -0
  264. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_transfer.rb +352 -0
  265. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +449 -0
  266. data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +329 -0
  267. data/lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb +408 -0
  268. data/lib/twilio-ruby/rest/flex_api/v1/plugin.rb +461 -0
  269. data/lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb +251 -0
  270. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration/configured_plugin.rb +400 -0
  271. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration.rb +397 -0
  272. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration_archive.rb +237 -0
  273. data/lib/twilio-ruby/rest/flex_api/v1/plugin_release.rb +343 -0
  274. data/lib/twilio-ruby/rest/flex_api/v1/plugin_version_archive.rb +260 -0
  275. data/lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb +192 -0
  276. data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +414 -0
  277. data/lib/twilio-ruby/rest/flex_api/v1.rb +320 -0
  278. data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +339 -0
  279. data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +155 -0
  280. data/lib/twilio-ruby/rest/flex_api/v2.rb +77 -0
  281. data/lib/twilio-ruby/rest/flex_api.rb +73 -0
  282. data/lib/twilio-ruby/rest/flex_api_base.rb +43 -0
  283. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +286 -0
  284. data/lib/twilio-ruby/rest/frontline_api/v1.rb +49 -0
  285. data/lib/twilio-ruby/rest/frontline_api.rb +15 -0
  286. data/lib/twilio-ruby/rest/frontline_api_base.rb +38 -0
  287. data/lib/twilio-ruby/rest/iam/v1/api_key.rb +280 -0
  288. data/lib/twilio-ruby/rest/iam/v1/get_api_keys.rb +226 -0
  289. data/lib/twilio-ruby/rest/iam/v1/new_api_key.rb +181 -0
  290. data/lib/twilio-ruby/rest/iam/v1/token.rb +186 -0
  291. data/lib/twilio-ruby/rest/iam/v1.rb +67 -0
  292. data/lib/twilio-ruby/rest/iam.rb +6 -0
  293. data/lib/twilio-ruby/rest/iam_base.rb +38 -0
  294. data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +330 -0
  295. data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +357 -0
  296. data/lib/twilio-ruby/rest/insights/v1/call/event.rb +280 -0
  297. data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +272 -0
  298. data/lib/twilio-ruby/rest/insights/v1/call.rb +275 -0
  299. data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +545 -0
  300. data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +498 -0
  301. data/lib/twilio-ruby/rest/insights/v1/conference.rb +515 -0
  302. data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +393 -0
  303. data/lib/twilio-ruby/rest/insights/v1/room.rb +508 -0
  304. data/lib/twilio-ruby/rest/insights/v1/setting.rb +267 -0
  305. data/lib/twilio-ruby/rest/insights/v1.rb +91 -0
  306. data/lib/twilio-ruby/rest/insights.rb +46 -0
  307. data/lib/twilio-ruby/rest/insights_base.rb +38 -0
  308. data/lib/twilio-ruby/rest/intelligence/v2/custom_operator.rb +464 -0
  309. data/lib/twilio-ruby/rest/intelligence/v2/operator.rb +363 -0
  310. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachment.rb +223 -0
  311. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachments.rb +201 -0
  312. data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +365 -0
  313. data/lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb +363 -0
  314. data/lib/twilio-ruby/rest/intelligence/v2/service.rb +534 -0
  315. data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +231 -0
  316. data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +403 -0
  317. data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +265 -0
  318. data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +538 -0
  319. data/lib/twilio-ruby/rest/intelligence/v2.rb +176 -0
  320. data/lib/twilio-ruby/rest/intelligence.rb +6 -0
  321. data/lib/twilio-ruby/rest/intelligence_base.rb +38 -0
  322. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +446 -393
  323. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +395 -386
  324. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +449 -444
  325. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +465 -430
  326. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +561 -508
  327. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +423 -368
  328. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +249 -238
  329. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +492 -448
  330. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +888 -914
  331. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +58 -52
  332. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +446 -409
  333. data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +386 -361
  334. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +395 -389
  335. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +510 -492
  336. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +537 -514
  337. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +467 -422
  338. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +630 -576
  339. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +423 -365
  340. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +379 -377
  341. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +420 -240
  342. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +534 -477
  343. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +791 -740
  344. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +58 -52
  345. data/lib/twilio-ruby/rest/ip_messaging.rb +9 -49
  346. data/lib/twilio-ruby/rest/ip_messaging_base.rb +43 -0
  347. data/lib/twilio-ruby/rest/knowledge/v1/knowledge/chunk.rb +232 -0
  348. data/lib/twilio-ruby/rest/knowledge/v1/knowledge/knowledge_status.rb +213 -0
  349. data/lib/twilio-ruby/rest/knowledge/v1/knowledge.rb +617 -0
  350. data/lib/twilio-ruby/rest/knowledge/v1.rb +49 -0
  351. data/lib/twilio-ruby/rest/knowledge.rb +6 -0
  352. data/lib/twilio-ruby/rest/knowledge_base.rb +38 -0
  353. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +249 -231
  354. data/lib/twilio-ruby/rest/lookups/v1.rb +43 -37
  355. data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +394 -0
  356. data/lib/twilio-ruby/rest/lookups/v2.rb +49 -0
  357. data/lib/twilio-ruby/rest/lookups.rb +5 -37
  358. data/lib/twilio-ruby/rest/lookups_base.rb +43 -0
  359. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on/available_add_on_extension.rb +316 -0
  360. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on.rb +343 -0
  361. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.rb +363 -0
  362. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +162 -0
  363. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on.rb +482 -0
  364. data/lib/twilio-ruby/rest/marketplace/v1/module_data.rb +221 -0
  365. data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +325 -0
  366. data/lib/twilio-ruby/rest/marketplace/v1/referral_conversion.rb +146 -0
  367. data/lib/twilio-ruby/rest/marketplace/v1.rb +91 -0
  368. data/lib/twilio-ruby/rest/marketplace.rb +6 -0
  369. data/lib/twilio-ruby/rest/marketplace_base.rb +38 -0
  370. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +143 -0
  371. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +379 -0
  372. data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +524 -0
  373. data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +196 -0
  374. data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +295 -0
  375. data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +300 -0
  376. data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +243 -0
  377. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +171 -0
  378. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +223 -0
  379. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb +201 -0
  380. data/lib/twilio-ruby/rest/messaging/v1/request_managed_cert.rb +243 -0
  381. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +370 -338
  382. data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +383 -0
  383. data/lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb +386 -0
  384. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +377 -342
  385. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +377 -337
  386. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +637 -0
  387. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +142 -0
  388. data/lib/twilio-ruby/rest/messaging/v1/service.rb +819 -620
  389. data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +820 -0
  390. data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +130 -0
  391. data/lib/twilio-ruby/rest/messaging/v1.rb +203 -37
  392. data/lib/twilio-ruby/rest/messaging/v2/channels_sender.rb +492 -0
  393. data/lib/twilio-ruby/rest/messaging/v2.rb +49 -0
  394. data/lib/twilio-ruby/rest/messaging.rb +53 -25
  395. data/lib/twilio-ruby/rest/messaging_base.rb +43 -0
  396. data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +382 -0
  397. data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +375 -0
  398. data/lib/twilio-ruby/rest/microvisor/v1/app/app_manifest.rb +213 -0
  399. data/lib/twilio-ruby/rest/microvisor/v1/app.rb +361 -0
  400. data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +398 -0
  401. data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +391 -0
  402. data/lib/twilio-ruby/rest/microvisor/v1/device.rb +441 -0
  403. data/lib/twilio-ruby/rest/microvisor/v1.rb +94 -0
  404. data/lib/twilio-ruby/rest/microvisor.rb +24 -0
  405. data/lib/twilio-ruby/rest/microvisor_base.rb +38 -0
  406. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +409 -409
  407. data/lib/twilio-ruby/rest/monitor/v1/event.rb +392 -365
  408. data/lib/twilio-ruby/rest/monitor/v1.rb +58 -52
  409. data/lib/twilio-ruby/rest/monitor.rb +7 -36
  410. data/lib/twilio-ruby/rest/monitor_base.rb +38 -0
  411. data/lib/twilio-ruby/rest/notify/v1/credential.rb +446 -408
  412. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +456 -447
  413. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +321 -361
  414. data/lib/twilio-ruby/rest/notify/v1/service.rb +651 -635
  415. data/lib/twilio-ruby/rest/notify/v1.rb +58 -52
  416. data/lib/twilio-ruby/rest/notify.rb +7 -36
  417. data/lib/twilio-ruby/rest/notify_base.rb +38 -0
  418. data/lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb +249 -0
  419. data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +132 -0
  420. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +304 -0
  421. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +328 -0
  422. data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +260 -0
  423. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +153 -0
  424. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +170 -0
  425. data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +280 -0
  426. data/lib/twilio-ruby/rest/numbers/v1/webhook.rb +165 -0
  427. data/lib/twilio-ruby/rest/numbers/v1.rb +155 -0
  428. data/lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb +347 -0
  429. data/lib/twilio-ruby/rest/numbers/v2/authorization_document.rb +421 -0
  430. data/lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb +274 -0
  431. data/lib/twilio-ruby/rest/numbers/v2/bundle_clone.rb +281 -0
  432. data/lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb +613 -0
  433. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +295 -0
  434. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +351 -0
  435. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +364 -0
  436. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +208 -0
  437. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +637 -0
  438. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +424 -0
  439. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +307 -0
  440. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +356 -0
  441. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +452 -0
  442. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +307 -0
  443. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +186 -0
  444. data/lib/twilio-ruby/rest/numbers/v2.rb +100 -0
  445. data/lib/twilio-ruby/rest/numbers.rb +12 -0
  446. data/lib/twilio-ruby/rest/numbers_base.rb +43 -0
  447. data/lib/twilio-ruby/rest/oauth/v1/authorize.rb +148 -0
  448. data/lib/twilio-ruby/rest/oauth/v1/token.rb +186 -0
  449. data/lib/twilio-ruby/rest/oauth/v1.rb +46 -0
  450. data/lib/twilio-ruby/rest/oauth.rb +6 -0
  451. data/lib/twilio-ruby/rest/oauth_base.rb +38 -0
  452. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +375 -396
  453. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +467 -452
  454. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +635 -636
  455. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +58 -54
  456. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +310 -297
  457. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +334 -313
  458. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +357 -333
  459. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +454 -412
  460. data/lib/twilio-ruby/rest/preview/marketplace.rb +58 -54
  461. data/lib/twilio-ruby/rest/preview/wireless/command.rb +402 -371
  462. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +473 -409
  463. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +241 -206
  464. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +589 -529
  465. data/lib/twilio-ruby/rest/preview/wireless.rb +73 -67
  466. data/lib/twilio-ruby/rest/preview.rb +15 -143
  467. data/lib/twilio-ruby/rest/preview_base.rb +48 -0
  468. data/lib/twilio-ruby/rest/preview_iam/v1/authorize.rb +148 -0
  469. data/lib/twilio-ruby/rest/preview_iam/v1/token.rb +186 -0
  470. data/lib/twilio-ruby/rest/preview_iam/v1.rb +46 -0
  471. data/lib/twilio-ruby/rest/preview_iam/versionless/organization/account.rb +309 -0
  472. data/lib/twilio-ruby/rest/preview_iam/versionless/organization/role_assignment.rb +375 -0
  473. data/lib/twilio-ruby/rest/preview_iam/versionless/organization/user.rb +530 -0
  474. data/lib/twilio-ruby/rest/preview_iam/versionless/organization.rb +277 -0
  475. data/lib/twilio-ruby/rest/preview_iam/versionless.rb +49 -0
  476. data/lib/twilio-ruby/rest/preview_iam.rb +9 -0
  477. data/lib/twilio-ruby/rest/preview_iam_base.rb +38 -0
  478. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +308 -273
  479. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +109 -118
  480. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +301 -266
  481. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +109 -118
  482. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +308 -273
  483. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +228 -197
  484. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +123 -134
  485. data/lib/twilio-ruby/rest/pricing/v1.rb +46 -43
  486. data/lib/twilio-ruby/rest/pricing/v2/country.rb +309 -0
  487. data/lib/twilio-ruby/rest/pricing/v2/number.rb +247 -0
  488. data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +314 -0
  489. data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +252 -0
  490. data/lib/twilio-ruby/rest/pricing/v2/voice.rb +130 -0
  491. data/lib/twilio-ruby/rest/pricing/v2.rb +70 -0
  492. data/lib/twilio-ruby/rest/pricing.rb +24 -33
  493. data/lib/twilio-ruby/rest/pricing_base.rb +43 -0
  494. data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +444 -357
  495. data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +421 -441
  496. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +445 -449
  497. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +440 -449
  498. data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +547 -528
  499. data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +424 -339
  500. data/lib/twilio-ruby/rest/proxy/v1/service.rb +584 -535
  501. data/lib/twilio-ruby/rest/proxy/v1.rb +43 -37
  502. data/lib/twilio-ruby/rest/proxy.rb +4 -35
  503. data/lib/twilio-ruby/rest/proxy_base.rb +38 -0
  504. data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +281 -0
  505. data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +281 -0
  506. data/lib/twilio-ruby/rest/routes/v2/trunk.rb +281 -0
  507. data/lib/twilio-ruby/rest/routes/v2.rb +79 -0
  508. data/lib/twilio-ruby/rest/routes.rb +32 -0
  509. data/lib/twilio-ruby/rest/routes_base.rb +38 -0
  510. data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +334 -0
  511. data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +443 -0
  512. data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +224 -0
  513. data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +432 -0
  514. data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +364 -0
  515. data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +380 -0
  516. data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +438 -0
  517. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +481 -0
  518. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +235 -0
  519. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +361 -0
  520. data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +443 -0
  521. data/lib/twilio-ruby/rest/serverless/v1/service.rb +557 -0
  522. data/lib/twilio-ruby/rest/serverless/v1.rb +49 -0
  523. data/lib/twilio-ruby/rest/serverless.rb +15 -0
  524. data/lib/twilio-ruby/rest/serverless_base.rb +38 -0
  525. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +214 -207
  526. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +229 -226
  527. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +379 -365
  528. data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +443 -400
  529. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +214 -207
  530. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +229 -226
  531. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +379 -370
  532. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +495 -404
  533. data/lib/twilio-ruby/rest/studio/v1/flow.rb +395 -365
  534. data/lib/twilio-ruby/rest/studio/v1.rb +43 -37
  535. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +224 -0
  536. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +235 -0
  537. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +389 -0
  538. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +494 -0
  539. data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +358 -0
  540. data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +245 -0
  541. data/lib/twilio-ruby/rest/studio/v2/flow.rb +555 -0
  542. data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +146 -0
  543. data/lib/twilio-ruby/rest/studio/v2.rb +55 -0
  544. data/lib/twilio-ruby/rest/studio.rb +11 -35
  545. data/lib/twilio-ruby/rest/studio_base.rb +43 -0
  546. data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +417 -0
  547. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +502 -0
  548. data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +422 -0
  549. data/lib/twilio-ruby/rest/supersim/v1/network.rb +320 -0
  550. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +362 -0
  551. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +410 -0
  552. data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +260 -0
  553. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +253 -0
  554. data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +211 -0
  555. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +490 -0
  556. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +382 -0
  557. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +317 -0
  558. data/lib/twilio-ruby/rest/supersim/v1.rb +151 -0
  559. data/lib/twilio-ruby/rest/supersim.rb +88 -0
  560. data/lib/twilio-ruby/rest/supersim_base.rb +38 -0
  561. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +397 -381
  562. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +482 -428
  563. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +491 -443
  564. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +397 -381
  565. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +497 -442
  566. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +494 -444
  567. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +397 -381
  568. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +497 -442
  569. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +147 -142
  570. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +446 -411
  571. data/lib/twilio-ruby/rest/sync/v1/service.rb +602 -514
  572. data/lib/twilio-ruby/rest/sync/v1.rb +43 -37
  573. data/lib/twilio-ruby/rest/sync.rb +4 -35
  574. data/lib/twilio-ruby/rest/sync_base.rb +38 -0
  575. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +432 -390
  576. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +453 -419
  577. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +721 -577
  578. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +677 -621
  579. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +436 -295
  580. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_bulk_real_time_statistics.rb +168 -0
  581. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +367 -356
  582. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +270 -229
  583. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +238 -234
  584. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +244 -268
  585. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +601 -570
  586. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +703 -575
  587. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +406 -392
  588. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +243 -231
  589. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +289 -262
  590. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +223 -186
  591. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +259 -232
  592. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +648 -606
  593. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +367 -363
  594. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +253 -226
  595. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +238 -234
  596. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +550 -510
  597. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +361 -350
  598. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +242 -200
  599. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +249 -230
  600. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +747 -719
  601. data/lib/twilio-ruby/rest/taskrouter/v1.rb +43 -37
  602. data/lib/twilio-ruby/rest/taskrouter.rb +4 -35
  603. data/lib/twilio-ruby/rest/taskrouter_base.rb +38 -0
  604. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +363 -322
  605. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +363 -323
  606. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +467 -429
  607. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +496 -449
  608. data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +244 -0
  609. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +650 -600
  610. data/lib/twilio-ruby/rest/trunking/v1.rb +43 -37
  611. data/lib/twilio-ruby/rest/trunking.rb +4 -36
  612. data/lib/twilio-ruby/rest/trunking_base.rb +38 -0
  613. data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +257 -0
  614. data/lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb +365 -0
  615. data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +224 -0
  616. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +384 -0
  617. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +368 -0
  618. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +356 -0
  619. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +568 -0
  620. data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +419 -0
  621. data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +302 -0
  622. data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +295 -0
  623. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +433 -0
  624. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +302 -0
  625. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +384 -0
  626. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +368 -0
  627. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +356 -0
  628. data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +568 -0
  629. data/lib/twilio-ruby/rest/trusthub/v1.rb +175 -0
  630. data/lib/twilio-ruby/rest/trusthub.rb +74 -0
  631. data/lib/twilio-ruby/rest/trusthub_base.rb +38 -0
  632. data/lib/twilio-ruby/rest/verify/v2/form.rb +208 -0
  633. data/lib/twilio-ruby/rest/verify/v2/safelist.rb +246 -0
  634. data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +292 -0
  635. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +205 -0
  636. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +530 -0
  637. data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +478 -0
  638. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +276 -0
  639. data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +449 -0
  640. data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +412 -0
  641. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +438 -0
  642. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +453 -0
  643. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +409 -0
  644. data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +235 -0
  645. data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +480 -0
  646. data/lib/twilio-ruby/rest/verify/v2/service.rb +843 -0
  647. data/lib/twilio-ruby/rest/verify/v2/template.rb +233 -0
  648. data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +392 -0
  649. data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +254 -0
  650. data/lib/twilio-ruby/rest/verify/v2.rb +106 -0
  651. data/lib/twilio-ruby/rest/verify.rb +58 -0
  652. data/lib/twilio-ruby/rest/verify_base.rb +38 -0
  653. data/lib/twilio-ruby/rest/video/v1/composition.rb +498 -491
  654. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +561 -0
  655. data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +295 -271
  656. data/lib/twilio-ruby/rest/video/v1/recording.rb +441 -387
  657. data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +295 -271
  658. data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +266 -0
  659. data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +341 -0
  660. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +194 -0
  661. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +348 -0
  662. data/lib/twilio-ruby/rest/video/v1/room/participant.rb +514 -0
  663. data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +183 -0
  664. data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +437 -0
  665. data/lib/twilio-ruby/rest/video/v1/room.rb +635 -512
  666. data/lib/twilio-ruby/rest/video/v1.rb +100 -83
  667. data/lib/twilio-ruby/rest/video.rb +22 -40
  668. data/lib/twilio-ruby/rest/video_base.rb +38 -0
  669. data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +171 -0
  670. data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +537 -0
  671. data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +473 -0
  672. data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +427 -0
  673. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +149 -0
  674. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +206 -0
  675. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +390 -0
  676. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +235 -0
  677. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +131 -0
  678. data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +413 -0
  679. data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +396 -0
  680. data/lib/twilio-ruby/rest/voice/v1.rb +137 -0
  681. data/lib/twilio-ruby/rest/voice.rb +61 -0
  682. data/lib/twilio-ruby/rest/voice_base.rb +38 -0
  683. data/lib/twilio-ruby/rest/wireless/v1/command.rb +429 -361
  684. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +493 -439
  685. data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +303 -288
  686. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +244 -240
  687. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +655 -611
  688. data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +238 -0
  689. data/lib/twilio-ruby/rest/wireless/v1.rb +79 -67
  690. data/lib/twilio-ruby/rest/wireless.rb +11 -34
  691. data/lib/twilio-ruby/rest/wireless_base.rb +38 -0
  692. data/lib/twilio-ruby/rest.rb +14 -0
  693. data/lib/twilio-ruby/security/request_validator.rb +102 -8
  694. data/lib/twilio-ruby/twiml/fax_response.rb +6 -3
  695. data/lib/twilio-ruby/twiml/messaging_response.rb +2 -2
  696. data/lib/twilio-ruby/twiml/twiml.rb +12 -1
  697. data/lib/twilio-ruby/twiml/voice_response.rb +1705 -81
  698. data/lib/twilio-ruby/util/configuration.rb +22 -5
  699. data/lib/twilio-ruby/version.rb +1 -1
  700. data/lib/twilio-ruby.rb +9 -25
  701. data/sonar-project.properties +13 -0
  702. data/twilio-ruby.gemspec +15 -10
  703. metadata +542 -646
  704. data/.travis.yml +0 -31
  705. data/conf/cacert.pem +0 -3376
  706. data/lib/twilio-ruby/framework/twilio_response.rb +0 -19
  707. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +0 -509
  708. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +0 -398
  709. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +0 -506
  710. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +0 -398
  711. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +0 -398
  712. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +0 -506
  713. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +0 -398
  714. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +0 -459
  715. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +0 -296
  716. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +0 -314
  717. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -315
  718. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -530
  719. data/lib/twilio-ruby/rest/fax/v1.rb +0 -43
  720. data/lib/twilio-ruby/rest/fax.rb +0 -46
  721. data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +0 -225
  722. data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -262
  723. data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -438
  724. data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -438
  725. data/lib/twilio-ruby/rest/preview/acc_security/service/verification.rb +0 -185
  726. data/lib/twilio-ruby/rest/preview/acc_security/service/verification_check.rb +0 -182
  727. data/lib/twilio-ruby/rest/preview/acc_security/service.rb +0 -388
  728. data/lib/twilio-ruby/rest/preview/acc_security.rb +0 -43
  729. data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -211
  730. data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -203
  731. data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -227
  732. data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -58
  733. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +0 -392
  734. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +0 -375
  735. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +0 -435
  736. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +0 -386
  737. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +0 -479
  738. data/lib/twilio-ruby/rest/preview/deployed_devices.rb +0 -44
  739. data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +0 -347
  740. data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -437
  741. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +0 -455
  742. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +0 -514
  743. data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -497
  744. data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +0 -342
  745. data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -464
  746. data/lib/twilio-ruby/rest/preview/proxy.rb +0 -43
  747. data/lib/twilio-ruby/rest/preview/studio/flow/engagement/step.rb +0 -350
  748. data/lib/twilio-ruby/rest/preview/studio/flow/engagement.rb +0 -372
  749. data/lib/twilio-ruby/rest/preview/studio/flow.rb +0 -355
  750. data/lib/twilio-ruby/rest/preview/studio.rb +0 -43
  751. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -390
  752. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -413
  753. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -421
  754. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -390
  755. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -411
  756. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -418
  757. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -390
  758. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -411
  759. data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -472
  760. data/lib/twilio-ruby/rest/preview/sync.rb +0 -43
  761. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +0 -392
  762. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +0 -417
  763. data/lib/twilio-ruby/rest/preview/understand/assistant/intent/field.rb +0 -379
  764. data/lib/twilio-ruby/rest/preview/understand/assistant/intent/sample.rb +0 -438
  765. data/lib/twilio-ruby/rest/preview/understand/assistant/intent.rb +0 -447
  766. data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +0 -390
  767. data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +0 -443
  768. data/lib/twilio-ruby/rest/preview/understand/assistant.rb +0 -562
  769. data/lib/twilio-ruby/rest/preview/understand.rb +0 -43
  770. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -388
  771. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +0 -333
  772. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +0 -313
  773. data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +0 -456
  774. data/spec/framework/request_spec.rb +0 -36
  775. data/spec/framework/serialize_spec.rb +0 -80
  776. data/spec/holodeck/holodeck.rb +0 -61
  777. data/spec/holodeck/hologram.rb +0 -4
  778. data/spec/http/http_client_spec.rb +0 -122
  779. data/spec/integration/accounts/v1/credential/aws_spec.rb +0 -226
  780. data/spec/integration/accounts/v1/credential/public_key_spec.rb +0 -226
  781. data/spec/integration/accounts/v1/credential_spec.rb +0 -12
  782. data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +0 -107
  783. data/spec/integration/api/v2010/account/address_spec.rb +0 -269
  784. data/spec/integration/api/v2010/account/application_spec.rb +0 -280
  785. data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +0 -139
  786. data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +0 -103
  787. data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +0 -103
  788. data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +0 -102
  789. data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +0 -103
  790. data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +0 -103
  791. data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +0 -102
  792. data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +0 -103
  793. data/spec/integration/api/v2010/account/available_phone_number_spec.rb +0 -130
  794. data/spec/integration/api/v2010/account/call/feedback_spec.rb +0 -139
  795. data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +0 -151
  796. data/spec/integration/api/v2010/account/call/notification_spec.rb +0 -181
  797. data/spec/integration/api/v2010/account/call/recording_spec.rb +0 -291
  798. data/spec/integration/api/v2010/account/call_spec.rb +0 -314
  799. data/spec/integration/api/v2010/account/conference/participant_spec.rb +0 -282
  800. data/spec/integration/api/v2010/account/conference/recording_spec.rb +0 -240
  801. data/spec/integration/api/v2010/account/conference_spec.rb +0 -179
  802. data/spec/integration/api/v2010/account/connect_app_spec.rb +0 -179
  803. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -137
  804. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
  805. data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +0 -185
  806. data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +0 -185
  807. data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +0 -185
  808. data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +0 -341
  809. data/spec/integration/api/v2010/account/key_spec.rb +0 -180
  810. data/spec/integration/api/v2010/account/message/feedback_spec.rb +0 -50
  811. data/spec/integration/api/v2010/account/message/media_spec.rb +0 -164
  812. data/spec/integration/api/v2010/account/message_spec.rb +0 -290
  813. data/spec/integration/api/v2010/account/new_key_spec.rb +0 -47
  814. data/spec/integration/api/v2010/account/new_signing_key_spec.rb +0 -47
  815. data/spec/integration/api/v2010/account/notification_spec.rb +0 -174
  816. data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +0 -195
  817. data/spec/integration/api/v2010/account/queue/member_spec.rb +0 -169
  818. data/spec/integration/api/v2010/account/queue_spec.rb +0 -242
  819. data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +0 -177
  820. data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +0 -168
  821. data/spec/integration/api/v2010/account/recording/transcription_spec.rb +0 -176
  822. data/spec/integration/api/v2010/account/recording_spec.rb +0 -189
  823. data/spec/integration/api/v2010/account/short_code_spec.rb +0 -182
  824. data/spec/integration/api/v2010/account/signing_key_spec.rb +0 -180
  825. data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +0 -256
  826. data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +0 -244
  827. data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +0 -210
  828. data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +0 -220
  829. data/spec/integration/api/v2010/account/sip/domain_spec.rb +0 -287
  830. data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +0 -258
  831. data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +0 -254
  832. data/spec/integration/api/v2010/account/sip_spec.rb +0 -12
  833. data/spec/integration/api/v2010/account/token_spec.rb +0 -58
  834. data/spec/integration/api/v2010/account/transcription_spec.rb +0 -169
  835. data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +0 -113
  836. data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +0 -113
  837. data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +0 -113
  838. data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +0 -113
  839. data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +0 -113
  840. data/spec/integration/api/v2010/account/usage/record/today_spec.rb +0 -113
  841. data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +0 -113
  842. data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +0 -113
  843. data/spec/integration/api/v2010/account/usage/record_spec.rb +0 -110
  844. data/spec/integration/api/v2010/account/usage/trigger_spec.rb +0 -285
  845. data/spec/integration/api/v2010/account/usage_spec.rb +0 -12
  846. data/spec/integration/api/v2010/account/validation_request_spec.rb +0 -48
  847. data/spec/integration/api/v2010/account_spec.rb +0 -272
  848. data/spec/integration/chat/v1/credential_spec.rb +0 -223
  849. data/spec/integration/chat/v1/service/channel/invite_spec.rb +0 -210
  850. data/spec/integration/chat/v1/service/channel/member_spec.rb +0 -284
  851. data/spec/integration/chat/v1/service/channel/message_spec.rb +0 -294
  852. data/spec/integration/chat/v1/service/channel_spec.rb +0 -277
  853. data/spec/integration/chat/v1/service/role_spec.rb +0 -263
  854. data/spec/integration/chat/v1/service/user/user_channel_spec.rb +0 -94
  855. data/spec/integration/chat/v1/service/user_spec.rb +0 -266
  856. data/spec/integration/chat/v1/service_spec.rb +0 -299
  857. data/spec/integration/chat/v2/credential_spec.rb +0 -223
  858. data/spec/integration/chat/v2/service/binding_spec.rb +0 -177
  859. data/spec/integration/chat/v2/service/channel/invite_spec.rb +0 -210
  860. data/spec/integration/chat/v2/service/channel/member_spec.rb +0 -257
  861. data/spec/integration/chat/v2/service/channel/message_spec.rb +0 -405
  862. data/spec/integration/chat/v2/service/channel/webhook_spec.rb +0 -307
  863. data/spec/integration/chat/v2/service/channel_spec.rb +0 -281
  864. data/spec/integration/chat/v2/service/role_spec.rb +0 -263
  865. data/spec/integration/chat/v2/service/user/user_binding_spec.rb +0 -180
  866. data/spec/integration/chat/v2/service/user/user_channel_spec.rb +0 -94
  867. data/spec/integration/chat/v2/service/user_spec.rb +0 -270
  868. data/spec/integration/chat/v2/service_spec.rb +0 -354
  869. data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -128
  870. data/spec/integration/fax/v1/fax_spec.rb +0 -271
  871. data/spec/integration/ip_messaging/v1/credential_spec.rb +0 -223
  872. data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +0 -210
  873. data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +0 -284
  874. data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +0 -294
  875. data/spec/integration/ip_messaging/v1/service/channel_spec.rb +0 -277
  876. data/spec/integration/ip_messaging/v1/service/role_spec.rb +0 -263
  877. data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +0 -94
  878. data/spec/integration/ip_messaging/v1/service/user_spec.rb +0 -266
  879. data/spec/integration/ip_messaging/v1/service_spec.rb +0 -299
  880. data/spec/integration/ip_messaging/v2/credential_spec.rb +0 -223
  881. data/spec/integration/ip_messaging/v2/service/binding_spec.rb +0 -177
  882. data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +0 -210
  883. data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +0 -257
  884. data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +0 -405
  885. data/spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb +0 -307
  886. data/spec/integration/ip_messaging/v2/service/channel_spec.rb +0 -281
  887. data/spec/integration/ip_messaging/v2/service/role_spec.rb +0 -263
  888. data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +0 -180
  889. data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +0 -94
  890. data/spec/integration/ip_messaging/v2/service/user_spec.rb +0 -270
  891. data/spec/integration/ip_messaging/v2/service_spec.rb +0 -354
  892. data/spec/integration/lookups/v1/phone_number_spec.rb +0 -71
  893. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
  894. data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
  895. data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
  896. data/spec/integration/messaging/v1/service_spec.rb +0 -263
  897. data/spec/integration/monitor/v1/alert_spec.rb +0 -163
  898. data/spec/integration/monitor/v1/event_spec.rb +0 -150
  899. data/spec/integration/notify/v1/credential_spec.rb +0 -223
  900. data/spec/integration/notify/v1/service/binding_spec.rb +0 -225
  901. data/spec/integration/notify/v1/service/notification_spec.rb +0 -99
  902. data/spec/integration/notify/v1/service/segment_spec.rb +0 -86
  903. data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -118
  904. data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -268
  905. data/spec/integration/notify/v1/service/user_spec.rb +0 -213
  906. data/spec/integration/notify/v1/service_spec.rb +0 -286
  907. data/spec/integration/preview/acc_security/service/verification_check_spec.rb +0 -52
  908. data/spec/integration/preview/acc_security/service/verification_spec.rb +0 -52
  909. data/spec/integration/preview/acc_security/service_spec.rb +0 -185
  910. data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -58
  911. data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
  912. data/spec/integration/preview/bulk_exports/export_spec.rb +0 -45
  913. data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +0 -238
  914. data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +0 -233
  915. data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +0 -249
  916. data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +0 -237
  917. data/spec/integration/preview/deployed_devices/fleet_spec.rb +0 -246
  918. data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +0 -111
  919. data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +0 -227
  920. data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -393
  921. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -123
  922. data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -144
  923. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
  924. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -254
  925. data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -173
  926. data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -106
  927. data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -166
  928. data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -226
  929. data/spec/integration/preview/proxy/service/session_spec.rb +0 -218
  930. data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -173
  931. data/spec/integration/preview/proxy/service_spec.rb +0 -202
  932. data/spec/integration/preview/studio/flow/engagement/step_spec.rb +0 -98
  933. data/spec/integration/preview/studio/flow/engagement_spec.rb +0 -145
  934. data/spec/integration/preview/studio/flow_spec.rb +0 -117
  935. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -204
  936. data/spec/integration/preview/sync/service/document_spec.rb +0 -254
  937. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -254
  938. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -204
  939. data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -209
  940. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -254
  941. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -204
  942. data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -209
  943. data/spec/integration/preview/sync/service_spec.rb +0 -246
  944. data/spec/integration/preview/understand/assistant/field_type/field_value_spec.rb +0 -210
  945. data/spec/integration/preview/understand/assistant/field_type_spec.rb +0 -246
  946. data/spec/integration/preview/understand/assistant/intent/field_spec.rb +0 -207
  947. data/spec/integration/preview/understand/assistant/intent/sample_spec.rb +0 -253
  948. data/spec/integration/preview/understand/assistant/intent_spec.rb +0 -250
  949. data/spec/integration/preview/understand/assistant/model_build_spec.rb +0 -241
  950. data/spec/integration/preview/understand/assistant/query_spec.rb +0 -306
  951. data/spec/integration/preview/understand/assistant_spec.rb +0 -266
  952. data/spec/integration/preview/wireless/command_spec.rb +0 -169
  953. data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -262
  954. data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -51
  955. data/spec/integration/preview/wireless/sim_spec.rb +0 -210
  956. data/spec/integration/pricing/v1/messaging/country_spec.rb +0 -139
  957. data/spec/integration/pricing/v1/messaging_spec.rb +0 -12
  958. data/spec/integration/pricing/v1/phone_number/country_spec.rb +0 -130
  959. data/spec/integration/pricing/v1/phone_number_spec.rb +0 -12
  960. data/spec/integration/pricing/v1/voice/country_spec.rb +0 -140
  961. data/spec/integration/pricing/v1/voice/number_spec.rb +0 -56
  962. data/spec/integration/pricing/v1/voice_spec.rb +0 -12
  963. data/spec/integration/proxy/v1/service/phone_number_spec.rb +0 -184
  964. data/spec/integration/proxy/v1/service/session/interaction_spec.rb +0 -136
  965. data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +0 -166
  966. data/spec/integration/proxy/v1/service/session/participant_spec.rb +0 -181
  967. data/spec/integration/proxy/v1/service/session_spec.rb +0 -230
  968. data/spec/integration/proxy/v1/service/short_code_spec.rb +0 -182
  969. data/spec/integration/proxy/v1/service_spec.rb +0 -215
  970. data/spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb +0 -51
  971. data/spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb +0 -54
  972. data/spec/integration/studio/v1/flow/engagement/step_spec.rb +0 -101
  973. data/spec/integration/studio/v1/flow/engagement_spec.rb +0 -171
  974. data/spec/integration/studio/v1/flow/execution/execution_context_spec.rb +0 -51
  975. data/spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb +0 -54
  976. data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +0 -101
  977. data/spec/integration/studio/v1/flow/execution_spec.rb +0 -171
  978. data/spec/integration/studio/v1/flow_spec.rb +0 -117
  979. data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -204
  980. data/spec/integration/sync/v1/service/document_spec.rb +0 -257
  981. data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -257
  982. data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -204
  983. data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -257
  984. data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
  985. data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -204
  986. data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -257
  987. data/spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb +0 -47
  988. data/spec/integration/sync/v1/service/sync_stream_spec.rb +0 -249
  989. data/spec/integration/sync/v1/service_spec.rb +0 -254
  990. data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +0 -236
  991. data/spec/integration/taskrouter/v1/workspace/event_spec.rb +0 -159
  992. data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +0 -194
  993. data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +0 -129
  994. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +0 -96
  995. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +0 -81
  996. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +0 -108
  997. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +0 -146
  998. data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +0 -298
  999. data/spec/integration/taskrouter/v1/workspace/task_spec.rb +0 -326
  1000. data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +0 -194
  1001. data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +0 -188
  1002. data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +0 -92
  1003. data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +0 -89
  1004. data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +0 -70
  1005. data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +0 -116
  1006. data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +0 -294
  1007. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +0 -97
  1008. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +0 -57
  1009. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +0 -71
  1010. data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +0 -272
  1011. data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +0 -94
  1012. data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +0 -72
  1013. data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +0 -105
  1014. data/spec/integration/taskrouter/v1/workspace_spec.rb +0 -295
  1015. data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +0 -192
  1016. data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +0 -192
  1017. data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +0 -252
  1018. data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +0 -267
  1019. data/spec/integration/trunking/v1/trunk_spec.rb +0 -282
  1020. data/spec/integration/video/v1/composition_settings_spec.rb +0 -86
  1021. data/spec/integration/video/v1/composition_spec.rb +0 -325
  1022. data/spec/integration/video/v1/recording_settings_spec.rb +0 -86
  1023. data/spec/integration/video/v1/recording_spec.rb +0 -177
  1024. data/spec/integration/video/v1/room/recording_spec.rb +0 -186
  1025. data/spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb +0 -96
  1026. data/spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb +0 -134
  1027. data/spec/integration/video/v1/room/room_participant_spec.rb +0 -187
  1028. data/spec/integration/video/v1/room_spec.rb +0 -257
  1029. data/spec/integration/wireless/v1/command_spec.rb +0 -166
  1030. data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -270
  1031. data/spec/integration/wireless/v1/sim/data_session_spec.rb +0 -87
  1032. data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -67
  1033. data/spec/integration/wireless/v1/sim_spec.rb +0 -216
  1034. data/spec/jwt/access_token_spec.rb +0 -151
  1035. data/spec/jwt/client_capability_spec.rb +0 -104
  1036. data/spec/jwt/task_router_spec.rb +0 -172
  1037. data/spec/rack/twilio_webhook_authentication_spec.rb +0 -106
  1038. data/spec/rest/client_spec.rb +0 -61
  1039. data/spec/security/request_validator_spec.rb +0 -113
  1040. data/spec/spec_helper.rb +0 -38
  1041. data/spec/support/fakeweb.rb +0 -2
  1042. data/spec/twilio_spec.rb +0 -15
  1043. data/spec/twiml/messaging_response_spec.rb +0 -235
  1044. data/spec/twiml/voice_response_spec.rb +0 -807
  1045. data/spec/util/configuration_spec.rb +0 -15
  1046. data/spec/util/url_encode_spec.rb +0 -12
  1047. /data/lib/twilio-ruby/framework/{helper.rb → rest/helper.rb} +0 -0
  1048. /data/lib/twilio-ruby/framework/{obsolete_client.rb → rest/obsolete_client.rb} +0 -0
  1049. /data/lib/twilio-ruby/framework/{resource.rb → rest/resource.rb} +0 -0
data/CHANGES.md CHANGED
@@ -1,6 +1,3398 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2025-05-29] Version 7.6.2
5
+ --------------------------
6
+ **Library - Chore**
7
+ - [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)!
8
+ - [PR #748](https://github.com/twilio/twilio-ruby/pull/748): removing ruby-head from CI. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
9
+
10
+ **Api**
11
+ - Added several usage category enums to `usage_record` API
12
+
13
+ **Numbers**
14
+ - Update the porting documentation
15
+
16
+ **Verify**
17
+ - Update `ienum` type for Channels in Verify Attempts API
18
+
19
+
20
+ [2025-05-13] Version 7.6.1
21
+ --------------------------
22
+ **Accounts**
23
+ - Changes to add date_of_consent param in Bulk Consent API
24
+
25
+ **Api**
26
+ - Change `friendly_name`, `date_created` and `date_updated` properties to type `string`.
27
+
28
+ **Twiml**
29
+ - Update twiml definition for `<ConversationRelay>` and `<Assistant>`
30
+
31
+
32
+ [2025-05-05] Version 7.6.0
33
+ --------------------------
34
+ **Library - Chore**
35
+ - [PR #742](https://github.com/twilio/twilio-ruby/pull/742): remove ostruct and benchmark from gemspec. Thanks to [@oehlschl](https://github.com/oehlschl)!
36
+
37
+ **Api**
38
+ - Add `response_key` for `Usage Triggers` fetch endpoint.
39
+
40
+ **Flex**
41
+ - Add Update Interaction API
42
+ - Adding `webhook_ttid` as optional parameter in Interactions API
43
+
44
+ **Serverless**
45
+ - Add node22 as a valid Build runtime
46
+ - Add node20 as a valid Build runtime
47
+
48
+ **Video**
49
+ - removed `transcribe_participants_on_connect` and `transcriptions_configuration` from the room resource **(breaking change)**
50
+ - Added `transcribe_participants_on_connect` and `transcriptions_configuration` to the room resource
51
+
52
+
53
+ [2025-04-07] Version 7.5.2
54
+ --------------------------
55
+ **Studio**
56
+ - Add documentation for parent_step_sid field in Step resource
57
+
58
+
59
+ [2025-03-20] Version 7.5.1
60
+ --------------------------
61
+ **Accounts**
62
+ - Update Safelist API docs as part of prefix supoort
63
+
64
+ **Flex**
65
+ - Removing `first_name`, `last_name`, and `friendly_name` from the Flex User API
66
+
67
+ **Messaging**
68
+ - Add missing tests under transaction/phone_numbers and transaction/short_code
69
+
70
+
71
+ [2025-03-11] Version 7.5.0
72
+ --------------------------
73
+ **Library - Feature**
74
+ - [PR #745](https://github.com/twilio/twilio-ruby/pull/745): MVR ready. Thanks to [@manisha1997](https://github.com/manisha1997)!
75
+
76
+ **Library - Chore**
77
+ - [PR #744](https://github.com/twilio/twilio-ruby/pull/744): create image with required files. Thanks to [@sbansla](https://github.com/sbansla)!
78
+
79
+ **Api**
80
+ - Add the missing `emergency_enabled` field for `Address Service` endpoints
81
+
82
+ **Messaging**
83
+ - Add missing enums for A2P and TF
84
+
85
+ **Numbers**
86
+ - add missing enum values to hosted_number_order_status
87
+
88
+ **Twiml**
89
+ - Convert Twiml Attribute `speechModel` of type enum to string **(breaking change)**
90
+
91
+
92
+ [2025-02-20] Version 7.4.5
93
+ --------------------------
94
+ **Flex**
95
+ - Adding Digital Transfers APIs under v1/Interactions
96
+
97
+ **Numbers**
98
+ - Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
99
+
100
+ **Trusthub**
101
+ - Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
102
+
103
+
104
+ [2025-02-11] Version 7.4.4
105
+ --------------------------
106
+ **Api**
107
+ - Change downstream url and change media type for file `base/api/v2010/validation_request.json`.
108
+
109
+ **Intelligence**
110
+ - Add json_results for Generative JSON operator results
111
+
112
+ **Messaging**
113
+ - Add DestinationAlphaSender API to support Country-Specific Alpha Senders
114
+
115
+ **Video**
116
+ - Change codec type from enum to case-insensitive enum in recording and room_recording apis
117
+
118
+
119
+ [2025-01-28] Version 7.4.3
120
+ --------------------------
121
+ **Library - Chore**
122
+ - [PR #740](https://github.com/twilio/twilio-ruby/pull/740): added bug report issue template. Thanks to [@sbansla](https://github.com/sbansla)!
123
+
124
+ **Api**
125
+ - Add open-api file tag to `conference/call recordings` and `recording_transcriptions`.
126
+
127
+ **Events**
128
+ - Add support for subaccount subscriptions (beta)
129
+
130
+ **Insights**
131
+ - add new region to conference APIs
132
+
133
+ **Lookups**
134
+ - Add new `parnter_sub_id` query parameter to the lookup request
135
+
136
+
137
+ [2025-01-13] Version 7.4.2
138
+ --------------------------
139
+ **Library - Chore**
140
+ - [PR #739](https://github.com/twilio/twilio-ruby/pull/739): add ostruct and benchmark in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
141
+ - [PR #738](https://github.com/twilio/twilio-ruby/pull/738): add ostruct in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
142
+
143
+ **Messaging**
144
+ - Adds validity period Default value in service resource documentation
145
+
146
+
147
+ [2025-01-09] Version 7.4.1
148
+ --------------------------
149
+ **Library - Chore**
150
+ - [PR #736](https://github.com/twilio/twilio-ruby/pull/736): removing jruby-9.2. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
151
+
152
+ **Numbers**
153
+ - Change beta feature flag to use v2/BulkHostedNumberOrders
154
+
155
+
156
+ [2024-12-12] Version 7.4.0
157
+ --------------------------
158
+ **Library - Feature**
159
+ - [PR #735](https://github.com/twilio/twilio-ruby/pull/735): public oauth. Thanks to [@manisha1997](https://github.com/manisha1997)!
160
+
161
+
162
+ [2024-12-05] Version 7.3.7
163
+ --------------------------
164
+ **Api**
165
+ - Add optional parameter `intelligence_service` to `transcription`
166
+ - Updated `phone_number_sid` to be populated for sip trunking terminating calls.
167
+
168
+ **Numbers**
169
+ - Add Update Hosted Number Order V2 API endpoint
170
+ - Update Port in docs
171
+
172
+ **Twiml**
173
+ - Add optional parameter `intelligence_service` to `<Transcription>`
174
+ - Add support for new `<ConversationRelay>` and `<Assistant>` noun
175
+ - Add `events` attribute to `<Dial>` verb
176
+
177
+
178
+ [2024-11-15] Version 7.3.6
179
+ --------------------------
180
+ **Library - Chore**
181
+ - [PR #732](https://github.com/twilio/twilio-ruby/pull/732): removed preview sync api. Thanks to [@sbansla](https://github.com/sbansla)!
182
+
183
+ **Api**
184
+ - Added `ivr-virtual-agent-custom-voices` and `ivr-virtual-agent-genai` to `usage_record` API.
185
+ - Add open-api file tag to realtime_transcriptions
186
+
187
+ **Taskrouter**
188
+ - Add `api-tag` property to workers reservation
189
+ - Add `api-tag` property to task reservation
190
+
191
+
192
+ [2024-10-24] Version 7.3.5
193
+ --------------------------
194
+ **Conversations**
195
+ - Expose ConversationWithParticipants resource that allows creating a conversation with participants
196
+
197
+
198
+ [2024-10-17] Version 7.3.4
199
+ --------------------------
200
+ **Api**
201
+ - Add response key `country` to fetch AvailablePhoneNumber resource by specific country.
202
+
203
+ **Messaging**
204
+ - Make library and doc public for requestManagedCert Endpoint
205
+
206
+
207
+ [2024-10-03] Version 7.3.3
208
+ --------------------------
209
+ **Messaging**
210
+ - Add A2P external campaign CnpMigration flag
211
+
212
+ **Numbers**
213
+ - Add address sid to portability API
214
+
215
+ **Verify**
216
+ - Add `SnaClientToken` optional parameter on Verification check.
217
+ - Add `EnableSnaClientToken` optional parameter for Verification creation.
218
+
219
+
220
+ [2024-09-25] Version 7.3.2
221
+ --------------------------
222
+ **Accounts**
223
+ - Update docs and mounts.
224
+ - Change library visibility to public
225
+ - Enable consent and contact bulk upsert APIs in prod.
226
+
227
+ **Serverless**
228
+ - Add is_plugin parameter in deployments api to check if it is plugins deployment
229
+
230
+
231
+ [2024-09-18] Version 7.3.1
232
+ --------------------------
233
+ **Intelligence**
234
+ - Remove public from operator_type
235
+ - Update operator_type to include general-availablity and deprecated
236
+
237
+ **Numbers**
238
+ - Remove beta flag for bundle clone API
239
+
240
+
241
+ [2024-09-05] Version 7.3.0
242
+ --------------------------
243
+ **Iam**
244
+ - updated library_visibility public for new public apikeys
245
+
246
+ **Numbers**
247
+ - Add new field in Error Codes for Regulatory Compliance.
248
+ - Change typing of Port In Request date_created field to date_time instead of date **(breaking change)**
249
+
250
+
251
+ [2024-08-26] Version 7.2.4
252
+ --------------------------
253
+ **Library - Chore**
254
+ - [PR #729](https://github.com/twilio/twilio-ruby/pull/729): remove preview_iam reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
255
+ - [PR #727](https://github.com/twilio/twilio-ruby/pull/727): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
256
+ - [PR #726](https://github.com/twilio/twilio-ruby/pull/726): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
257
+ - [PR #725](https://github.com/twilio/twilio-ruby/pull/725): fix documentation link. Thanks to [@manisha1997](https://github.com/manisha1997)!
258
+
259
+ **Api**
260
+ - Update documentation of `error_code` and `error_message` on the Message resource.
261
+ - Remove generic parameters from `transcription` resource
262
+ - Added public documentation for Payload Data retrieval API
263
+
264
+ **Flex**
265
+ - Adding update Flex User api
266
+
267
+ **Insights**
268
+ - Added 'branded', 'business_profile' and 'voice_integrity' fields in List Call Summary
269
+
270
+ **Intelligence**
271
+ - Add `words` array information to the Sentences v2 entity.
272
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Operator Results.
273
+ - Change the path parameter when fetching an `/OperatorType/{}` from `sid<EY>` to `string` to support searching by SID or by name
274
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Transcript and Service endpoints.
275
+
276
+ **Messaging**
277
+ - Adds two new channel senders api to add/remove channel senders to/from a messaging service
278
+ - Extend ERC api to accept an optional attribute in request body to indicate CNP migration for an ERC
279
+
280
+ **Numbers**
281
+ - Modify visibility to public in bundle clone API
282
+ - Add `port_date` field to Port In Request and Port In Phone Numbers Fetch APIs
283
+ - Change properties docs for port in phone numbers api
284
+ - Add is_test body param to the Bundle Create API
285
+ - Change properties docs for port in api
286
+
287
+ **Trusthub**
288
+ - Add new field in themeSetId in compliance_inquiry.
289
+
290
+ **Verify**
291
+ - Update `custom_code_enabled` description on verification docs
292
+
293
+
294
+ [2024-07-02] Version 7.2.3
295
+ --------------------------
296
+ **Rubygems**
297
+ - Add docs link to gemspec
298
+
299
+ [2024-07-02] Version 7.2.2
300
+ --------------------------
301
+ **Intelligence**
302
+ - Deprecate account flag api.twilio-intelligence.v2
303
+
304
+
305
+ [2024-06-27] Version 7.2.1
306
+ --------------------------
307
+ **Api**
308
+ - Add `transcription` resource
309
+ - Add beta feature request managed cert
310
+
311
+ **Flex**
312
+ - Changed mount name for flex_team v2 api
313
+
314
+ **Intelligence**
315
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
316
+
317
+ **Numbers**
318
+ - Added include_constraints query parameter to the Regulations API
319
+
320
+ **Twiml**
321
+ - Add support for `<Transcription>` noun
322
+
323
+
324
+ [2024-06-18] Version 7.2.0
325
+ --------------------------
326
+ **Library - Chore**
327
+ - [PR #723](https://github.com/twilio/twilio-ruby/pull/723): adding contentType in post and put. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
328
+
329
+ **Events**
330
+ - Add `status` and `documentation_url` to Event Types
331
+
332
+ **Lookups**
333
+ - Removed unused `fraud` lookups in V1 only to facilitate rest proxy migration
334
+
335
+ **Numbers**
336
+ - Add date_created field to the Get Port In Request API
337
+ - Rename the `status_last_time_updated_timestamp` field to `last_updated` in the Get Port In Phone Number API **(breaking change)**
338
+ - Add Rejection reason and rejection reason code to the Get Port In Phone Number API
339
+ - Remove the carrier information from the Portability API
340
+
341
+ **Proxy**
342
+ - Change property `type` from enum to ienum
343
+
344
+ **Trusthub**
345
+ - Add skipMessagingUseCase field in compliance_tollfree_inquiry.
346
+
347
+
348
+ [2024-06-06] Version 7.1.1
349
+ --------------------------
350
+ **Library - Chore**
351
+ - [PR #721](https://github.com/twilio/twilio-ruby/pull/721): adding rexml to Gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
352
+
353
+ **Api**
354
+ - Mark MaxPrice as obsolete
355
+
356
+ **Lookups**
357
+ - Update examples for `phone_number_quality_score`
358
+
359
+ **Messaging**
360
+ - List tollfree verifications on parent account and all sub-accounts
361
+
362
+
363
+ [2024-05-24] Version 7.1.0
364
+ --------------------------
365
+ **Library - Chore**
366
+ - [PR #720](https://github.com/twilio/twilio-ruby/pull/720): removing preview_messaging reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
367
+
368
+ **Api**
369
+ - Add ie1 as supported region for UserDefinedMessage and UserDefinedMessageSubscription.
370
+
371
+ **Flex**
372
+ - Adding validated field to `plugin_versions`
373
+ - Corrected the data type for `runtime_domain`, `call_recording_webhook_url`, `crm_callback_url`, `crm_fallback_url`, `flex_url` in Flex Configuration
374
+ - Making `routing` optional in Create Interactions endpoint
375
+
376
+ **Intelligence**
377
+ - Expose operator authoring apis to public visibility
378
+ - Deleted `language_code` parameter from updating service in v2 **(breaking change)**
379
+ - Add read_only_attached_operator_sids to v2 services
380
+
381
+ **Numbers**
382
+ - Add API endpoint for GET Porting Webhook Configurations By Account SID
383
+ - Remove bulk portability api under version `/v1`. **(breaking change)**
384
+ - Removed porting_port_in_fetch.json files and move the content into porting_port_in.json files
385
+ - Add API endpoint to deleting Webhook Configurations
386
+ - Add Get Phone Number by Port in request SID and Phone Number SID api
387
+ - Add Create Porting webhook configuration API
388
+ - Added bundle_sid and losing_carrier_information fields to Create PortInRequest api to support Japan porting
389
+
390
+ **Taskrouter**
391
+ - Add back `routing_target` property to tasks
392
+ - Add back `ignore_capacity` property to tasks
393
+ - Removing `routing_target` property to tasks due to revert
394
+ - Removing `ignore_capacity` property to tasks due to revert
395
+ - Add `routing_target` property to tasks
396
+ - Add `ignore_capacity` property to tasks
397
+
398
+ **Trusthub**
399
+ - Add new field errors to bundle as part of public API response in customer_profile.json and trust_product.json **(breaking change)**
400
+ - Add themeSetId field in compliance_tollfree_inquiry.
401
+
402
+ **Verify**
403
+ - Update `friendly_name` description on service docs
404
+
405
+
406
+ [2024-04-18] Version 7.0.2
407
+ --------------------------
408
+ **Flex**
409
+ - Add header `ui_version` to `web_channels` API
410
+
411
+ **Messaging**
412
+ - Redeploy after failed pipeline
413
+
414
+ **Numbers**
415
+ - Add Delete Port In request phone number api and Add Delete Port In request api
416
+
417
+
418
+ [2024-04-04] Version 7.0.1
419
+ --------------------------
420
+ **Api**
421
+ - Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
422
+
423
+ **Flex**
424
+ - Remove optional parameter from `plugins` and it to `plugin_versions`
425
+
426
+ **Lookups**
427
+ - Add new `pre_fill` package to the lookup response
428
+
429
+ **Messaging**
430
+ - Cleanup api.messaging.next-gen from Messaging Services endpoints
431
+ - Readd Sending-Window after fixing test failure
432
+
433
+ **Verify**
434
+ - Add `whatsapp.msg_service_sid` and `whatsapp.from` parameters to create, update, get and list of services endpoints
435
+
436
+ **Voice**
437
+ - Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
438
+
439
+ **Twiml**
440
+ - Add new `token_type` value `payment-method` for `Pay` verb
441
+
442
+
443
+ [2024-04-01] Version 7.0.0
444
+ --------------------------
445
+ **Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2024-01-19-6xx-to-7xx) for detailed migration notes.
446
+
447
+ **Library - Feature**
448
+ - [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)**
449
+
450
+ **Library - Chore**
451
+ - [PR #715](https://github.com/twilio/twilio-ruby/pull/715): remove media endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
452
+
453
+ **Api**
454
+ - Add property `queue_time` to conference participant resource
455
+ - Update RiskCheck documentation
456
+ - Correct call filtering by start and end time documentation, clarifying that times are UTC.
457
+
458
+ **Flex**
459
+ - Adding optional parameter to `plugins`
460
+
461
+ **Media**
462
+ - Remove API: MediaProcessor
463
+
464
+ **Messaging**
465
+ - Remove Sending-Window due to test failure
466
+ - Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
467
+
468
+ **Numbers**
469
+ - Correct valid_until_date field to be visible in Bundles resource
470
+ - Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
471
+
472
+ **Oauth**
473
+ - Modified token endpoint response
474
+ - Added refresh_token and scope as optional parameter to token endpoint
475
+ - Add new APIs for vendor authorize and token endpoints
476
+
477
+ **Trusthub**
478
+ - Add update inquiry endpoint in compliance_registration.
479
+ - Add new field in themeSetId in compliance_registration.
480
+
481
+ **Voice**
482
+ - Correct call filtering by start and end time documentation, clarifying that times are UTC.
483
+
484
+ **Twiml**
485
+ - Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
486
+ - Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
487
+
488
+
489
+ [2024-03-12] Version 6.12.1
490
+ ---------------------------
491
+ **Api**
492
+ - Correct precedence documentation for application_sid vs status_callback in message creation
493
+ - Mark MaxPrice as deprecated
494
+
495
+ **Flex**
496
+ - Making `plugins` visibility to public
497
+
498
+ **Messaging**
499
+ - Add new `errors` attribute to the Brand Registration resource.
500
+ - Mark `brand_feedback` attribute as deprecated.
501
+ - Mark `failure_reason` attribute as deprecated.
502
+ - 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`.
503
+
504
+ **Numbers**
505
+ - Correcting mount_name for porting port in fetch API
506
+
507
+ **Trusthub**
508
+ - Add new field in statusCallbackUrl in compliance_registration.
509
+ - Add new field in isvRegisteringForSelfOrTenant in compliance_registration.
510
+
511
+ **Twiml**
512
+ - Expanded description of Action parameter for Message verb
513
+
514
+
515
+ [2024-02-27] Version 6.12.0
516
+ ---------------------------
517
+ **Library - Chore**
518
+ - [PR #712](https://github.com/twilio/twilio-ruby/pull/712): cluster tests enabled. Thanks to [@sbansla](https://github.com/sbansla)!
519
+
520
+ **Api**
521
+ - remove feedback and feedback summary from call resource
522
+
523
+ **Flex**
524
+ - Adding `routing_properties` to Interactions Channels Participant
525
+
526
+ **Lookups**
527
+ - Add new `line_status` package to the lookup response
528
+ - Remove `live_activity` package from the lookup response **(breaking change)**
529
+
530
+ **Messaging**
531
+ - Add tollfree multiple rejection reasons response array
532
+
533
+ **Trusthub**
534
+ - Add ENUM for businessRegistrationAuthority in compliance_registration. **(breaking change)**
535
+ - Add new field in isIsvEmbed in compliance_registration.
536
+ - Add additional optional fields in compliance_registration for Individual business type.
537
+
538
+ **Twiml**
539
+ - Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb
540
+
541
+
542
+ [2024-02-09] Version 6.11.0
543
+ ---------------------------
544
+ **Library - Chore**
545
+ - [PR #710](https://github.com/twilio/twilio-ruby/pull/710): remove live media endpoint. Thanks to [@califlower](https://github.com/califlower)!
546
+ - [PR #708](https://github.com/twilio/twilio-ruby/pull/708): removing oauth and autopilot references. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
547
+
548
+ **Api**
549
+ - Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
550
+ - Update documentation to reflect RiskCheck GA
551
+ - Added optional parameter `CallToken` for create participant api
552
+
553
+ **Events**
554
+ - Marked as GA
555
+
556
+ **Flex**
557
+ - Adding `flex_instance_sid` to Flex Configuration
558
+ - Adding `provisioning_status` for Email Manager
559
+ - Adding `offline_config` to Flex Configuration
560
+
561
+ **Insights**
562
+ - add flag to restrict access to unapid customers
563
+ - decommission voice-qualitystats-endpoint role
564
+
565
+ **Intelligence**
566
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
567
+
568
+ **Lookups**
569
+ - Remove `carrier` field from `sms_pumping_risk` and leave `carrier_risk_category` **(breaking change)**
570
+ - Remove carrier information from call forwarding package **(breaking change)**
571
+
572
+ **Messaging**
573
+ - Add update instance endpoints to us_app_to_person api
574
+ - Add tollfree edit_allowed and edit_reason fields
575
+ - Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
576
+ - Add DELETE support to Tollfree Verification resource
577
+
578
+ **Numbers**
579
+ - Add Get Port In request api
580
+
581
+ **Push**
582
+ - Migrated to new Push API V4 with Resilient Notification Delivery.
583
+
584
+ **Serverless**
585
+ - Add node18 as a valid Build runtime
586
+
587
+ **Taskrouter**
588
+ - Add `jitter_buffer_size` param in update reservation
589
+ - Add container attribute to task_queue_bulk_real_time_statistics endpoint
590
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
591
+
592
+ **Trusthub**
593
+ - Add optional field NotificationEmail to the POST /v1/ComplianceInquiries/Customers/Initialize API
594
+ - Add additional optional fields in compliance_tollfree_inquiry.json
595
+ - Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
596
+ - Add new optional field notification_email to compliance_tollfree_inquiry.json
597
+
598
+ **Verify**
599
+ - `Tags` property added again to Public Docs **(breaking change)**
600
+ - Remove `Tags` from Public Docs **(breaking change)**
601
+ - Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
602
+ - Add `Tags` optional parameter on Verification creation.
603
+ - Update Verify TOTP maturity to GA.
604
+
605
+
606
+ [2024-01-25] Version 6.10.0
607
+ ---------------------------
608
+ **Oauth**
609
+ - updated openid discovery endpoint uri **(breaking change)**
610
+ - Added device code authorization endpoint
611
+ - added oauth JWKS endpoint
612
+ - Get userinfo resource
613
+ - OpenID discovery resource
614
+ - Add new API for token endpoint
615
+
616
+
617
+ [2024-01-14] Version 6.9.1
618
+ --------------------------
619
+ **Library - Chore**
620
+ - [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)!
621
+
622
+ **Library - Fix**
623
+ - [PR #693](https://github.com/twilio/twilio-ruby/pull/693): fixed query param not going for delete. Thanks to [@manisha1997](https://github.com/manisha1997)!
624
+
625
+ **Push**
626
+ - Migrated to new Push API V4 with Resilient Notification Delivery.
627
+
628
+
629
+ [2023-12-14] Version 6.9.0
630
+ --------------------------
631
+ **Api**
632
+ - Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
633
+
634
+ **Events**
635
+ - Marked as GA
636
+
637
+ **Insights**
638
+ - decommission voice-qualitystats-endpoint role
639
+
640
+ **Numbers**
641
+ - Add Get Port In request api
642
+
643
+ **Taskrouter**
644
+ - Add `jitter_buffer_size` param in update reservation
645
+
646
+ **Trusthub**
647
+ - Add additional optional fields in compliance_tollfree_inquiry.json
648
+
649
+ **Verify**
650
+ - Remove `Tags` from Public Docs **(breaking change)**
651
+
652
+
653
+ [2023-12-01] Version 6.8.3
654
+ --------------------------
655
+ **Verify**
656
+ - Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
657
+
658
+
659
+ [2023-11-17] Version 6.8.2
660
+ --------------------------
661
+ **Library - Chore**
662
+ - [PR #687](https://github.com/twilio/twilio-ruby/pull/687): remove more oauth refrences. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
663
+
664
+ **Api**
665
+ - Update documentation to reflect RiskCheck GA
666
+
667
+ **Messaging**
668
+ - Add tollfree edit_allowed and edit_reason fields
669
+ - Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
670
+
671
+ **Taskrouter**
672
+ - Add container attribute to task_queue_bulk_real_time_statistics endpoint
673
+
674
+ **Trusthub**
675
+ - Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
676
+ - Add new optional field notification_email to compliance_tollfree_inquiry.json
677
+
678
+ **Verify**
679
+ - Add `Tags` optional parameter on Verification creation.
680
+
681
+
682
+ [2023-11-06] Version 6.8.1
683
+ --------------------------
684
+ **Flex**
685
+ - Adding `provisioning_status` for Email Manager
686
+
687
+ **Intelligence**
688
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
689
+
690
+ **Messaging**
691
+ - Add DELETE support to Tollfree Verification resource
692
+
693
+ **Serverless**
694
+ - Add node18 as a valid Build runtime
695
+
696
+ **Verify**
697
+ - Update Verify TOTP maturity to GA.
698
+
699
+
700
+ [2023-10-19] Version 6.8.0
701
+ --------------------------
702
+ **Library - Chore**
703
+ - [PR #682](https://github.com/twilio/twilio-ruby/pull/682): Removing Test Related To Deprecated Endpoint - OAuth. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
704
+
705
+ **Library - Fix**
706
+ - [PR #680](https://github.com/twilio/twilio-ruby/pull/680): update validate ssl method with new endpoint. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
707
+
708
+ **Accounts**
709
+ - Updated Safelist metadata to correct the docs.
710
+ - Add Global SafeList API changes
711
+
712
+ **Api**
713
+ - Added optional parameter `CallToken` for create participant api
714
+
715
+ **Flex**
716
+ - Adding `offline_config` to Flex Configuration
717
+
718
+ **Intelligence**
719
+ - Deleted `redacted` parameter from fetching transcript in v2 **(breaking change)**
720
+
721
+ **Lookups**
722
+ - Add new `phone_number_quality_score` package to the lookup response
723
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
724
+
725
+ **Messaging**
726
+ - Update US App To Person documentation with current `message_samples` requirements
727
+
728
+ **Taskrouter**
729
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
730
+ - Add `virtual_start_time` property to tasks
731
+ - Updating `task_queue_data` format from `map` to `array` in the response of bulk get endpoint of TaskQueue Real Time Statistics API **(breaking change)**
732
+
733
+
734
+ [2023-10-05] Version 6.7.1
735
+ --------------------------
736
+ **Library - Chore**
737
+ - [PR #678](https://github.com/twilio/twilio-ruby/pull/678): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
738
+
739
+ **Lookups**
740
+ - Add test api support for Lookup v2
741
+
742
+
743
+ [2023-09-21] Version 6.7.0
744
+ --------------------------
745
+ **Conversations**
746
+ - Enable conversation email bindings, email address configurations and email message subjects
747
+
748
+ **Flex**
749
+ - Adding `console_errors_included` to Flex Configuration field `debugger_integrations`
750
+ - Introducing new channel status as `inactive` in modify channel endpoint for leave functionality **(breaking change)**
751
+ - Adding `citrix_voice_vdi` to Flex Configuration
752
+
753
+ **Taskrouter**
754
+ - Add Update Queues, Workers, Workflow Real Time Statistics API to flex-rt-data-api-v2 endpoint
755
+ - Add Update Workspace Real Time Statistics API to flex-rt-data-api-v2 endpoint
756
+
757
+
758
+ [2023-09-07] Version 6.6.0
759
+ --------------------------
760
+ **Api**
761
+ - Make message tagging parameters public **(breaking change)**
762
+
763
+ **Flex**
764
+ - Adding `agent_conv_end_methods` to Flex Configuration
765
+
766
+ **Messaging**
767
+ - Mark Mesasging Services fallback_to_long_code feature obsolete
768
+
769
+ **Numbers**
770
+ - Add Create Port In request api
771
+ - Renaming sid for bulk_hosting_sid and remove account_sid response field in numbers/v2/BulkHostedNumberOrders **(breaking change)**
772
+
773
+ **Pricing**
774
+ - gate resources behind a beta_feature
775
+
776
+
777
+ [2023-08-24] Version 6.5.0
778
+ --------------------------
779
+ **Api**
780
+ - Add new property `RiskCheck` for SMS pumping protection feature only (public beta to be available soon): Include this parameter with a value of `disable` to skip any kind of risk check on the respective message request
781
+
782
+ **Flex**
783
+ - Changing `sid<UO>` path param to `sid<UT>` in interaction channel participant update endpoint **(breaking change)**
784
+
785
+ **Messaging**
786
+ - Add Channel Sender api
787
+ - Fixing country code docs and removing Zipwhip references
788
+
789
+ **Numbers**
790
+ - Request status changed in numbers/v2/BulkHostedNumberOrders **(breaking change)**
791
+ - Add bulk hosting orders API under version `/v2
792
+
793
+
794
+ [2023-08-10] Version 6.4.0
795
+ --------------------------
796
+ **Library - Fix**
797
+ - [PR #673](https://github.com/twilio/twilio-ruby/pull/673): remove ruby version. Thanks to [@kridai](https://github.com/kridai)!
798
+ - [PR #672](https://github.com/twilio/twilio-ruby/pull/672): revert setting ruby version. Thanks to [@kridai](https://github.com/kridai)!
799
+ - [PR #671](https://github.com/twilio/twilio-ruby/pull/671): fix the headers issue. Thanks to [@kridai](https://github.com/kridai)!
800
+
801
+ **Insights**
802
+ - Normalize annotations parameters in list summary api to be prefixed
803
+
804
+ **Numbers**
805
+ - Change Bulk_hosted_sid from BHR to BH prefix in HNO and dependent under version `/v2` API's. **(breaking change)**
806
+ - Added parameter target_account_sid to portability and account_sid to response body
807
+
808
+ **Verify**
809
+ - Remove beta feature flag to list attempts API.
810
+ - Remove beta feature flag to verifications summary attempts API.
811
+
812
+
813
+ [2023-07-27] Version 6.3.1
814
+ --------------------------
815
+ **Api**
816
+ - Added `voice-intelligence`, `voice-intelligence-transcription` and `voice-intelligence-operators` to `usage_record` API.
817
+ - Added `tts-google` to `usage_record` API.
818
+
819
+ **Lookups**
820
+ - Add new `disposable_phone_number_risk` package to the lookup response
821
+
822
+ **Verify**
823
+ - Documentation of list attempts API was improved by correcting `date_created_after` and `date_created_before` expected date format.
824
+ - Documentation was improved by correcting `date_created_after` and `date_created_before` expected date format parameter on attempts summary API.
825
+ - Documentation was improved by adding `WHATSAPP` as optional valid parameter on attempts summary API.
826
+
827
+ **Twiml**
828
+ - Added support for he-il inside of ssm_lang.json that was missing
829
+ - Added support for he-il language in say.json that was missing
830
+ - Add `statusCallback` and `statusCallbackMethod` attributes to `<Siprec>`.
831
+
832
+
833
+ [2023-07-13] Version 6.3.0
834
+ --------------------------
835
+ **Library - Chore**
836
+ - [PR #668](https://github.com/twilio/twilio-ruby/pull/668): remove cacert. Thanks to [@sbansla](https://github.com/sbansla)!
837
+
838
+ **Flex**
839
+ - Adding `interaction_context_sid` as optional parameter in Interactions API
840
+
841
+ **Messaging**
842
+ - Making visiblity public for tollfree_verification API
843
+
844
+ **Numbers**
845
+ - Remove Sms capability property from HNO creation under version `/v2` of HNO API. **(breaking change)**
846
+ - Update required properties in LOA creation under version `/v2` of Authorization document API. **(breaking change)**
847
+
848
+ **Taskrouter**
849
+ - Add api to fetch task queue statistics for multiple TaskQueues
850
+
851
+ **Verify**
852
+ - Add `RiskCheck` optional parameter on Verification creation.
853
+
854
+ **Twiml**
855
+ - Add Google Voices and languages
856
+
857
+
858
+ [2023-06-28] Version 6.2.0
859
+ --------------------------
860
+ **Library - Fix**
861
+ - [PR #665](https://github.com/twilio/twilio-ruby/pull/665): #663 local jump error due to lack of block passing for recording list. Thanks to [@JYorston](https://github.com/JYorston)!
862
+
863
+ **Lookups**
864
+ - Add `reassigned_number` package to the lookup response
865
+
866
+ **Numbers**
867
+ - Add hosted_number_order under version `/v2`.
868
+ - Update properties in Porting and Bulk Porting APIs. **(breaking change)**
869
+ - Added bulk Portability API under version `/v1`.
870
+ - Added Portability API under version `/v1`.
871
+
872
+
873
+ [2023-06-15] Version 6.1.0
874
+ --------------------------
875
+ **Api**
876
+ - Added `content_sid` as conditional parameter
877
+ - Removed `content_sid` as optional field **(breaking change)**
878
+
879
+ **Insights**
880
+ - Added `annotation` to list summary output
881
+
882
+
883
+ [2023-06-01] Version 6.0.2
884
+ --------------------------
885
+ **Api**
886
+ - Add `Trim` to create Conference Participant API
887
+
888
+ **Intelligence**
889
+ - First public beta release for Voice Intelligence APIs with client libraries
890
+
891
+ **Messaging**
892
+ - Add new `errors` attribute to us_app_to_person resource. This attribute will provide additional information about campaign registration errors.
893
+
894
+
895
+ [2023-05-18] Version 6.0.1
896
+ --------------------------
897
+ **Library - Fix**
898
+ - [PR #654](https://github.com/twilio/twilio-ruby/pull/654): match only against the end of a file path. Thanks to [@pat](https://github.com/pat)!
899
+
900
+ **Conversations**
901
+ - Added `AddressCountry` parameter to Address Configuration endpoint, to support regional short code addresses
902
+ - Added query parameters `start_date`, `end_date` and `state` in list Conversations resource for filtering
903
+
904
+ **Insights**
905
+ - Added annotations parameters to list summary api
906
+
907
+ **Messaging**
908
+ - Add GET domainByMessagingService endpoint to linkShortening service
909
+ - Add `disable_https` to link shortening domain_config properties
910
+
911
+ **Numbers**
912
+ - Add bulk_eligibility api under version `/v1`.
913
+
914
+
915
+ [2023-05-04] Version 6.0.0
916
+ --------------------------
917
+ **Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2023-05-03-5xx-to-6xx) for detailed migration notes.
918
+
919
+ **Library - Feature**
920
+ - [PR #651](https://github.com/twilio/twilio-ruby/pull/651): Merge branch '6.x.x-rc' to main. Thanks to [@shrutiburman](https://github.com/shrutiburman)! **(breaking change)**
921
+
922
+ **Conversations**
923
+ - Remove `start_date`, `end_date` and `state` query parameters from list operation on Conversations resource **(breaking change)**
924
+
925
+ **Twiml**
926
+ - Add support for new Amazon Polly voices (Q1 2023) for `Say` verb
927
+
928
+
929
+ [2023-04-19] Version 5.77.0
930
+ ---------------------------
931
+ **Library - Docs**
932
+ - [PR #645](https://github.com/twilio/twilio-ruby/pull/645): consolidate. Thanks to [@stern-shawn](https://github.com/stern-shawn)!
933
+
934
+ **Messaging**
935
+ - Remove `messaging_service_sids` and `messaging_service_sid_action` from domain config endpoint **(breaking change)**
936
+ - Add error_code and rejection_reason properties to tollfree verification API response
937
+
938
+ **Numbers**
939
+ - Added the new Eligibility API under version `/v1`.
940
+
941
+
942
+ [2023-04-05] Version 5.76.0
943
+ ---------------------------
944
+ **Conversations**
945
+ - Expose query parameters `start_date`, `end_date` and `state` in list operation on Conversations resource for sorting and filtering
946
+
947
+ **Insights**
948
+ - Added answered by filter in Call Summaries
949
+
950
+ **Lookups**
951
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
952
+
953
+ **Messaging**
954
+ - Add support for `SOLE_PROPRIETOR` brand type and `SOLE_PROPRIETOR` campaign use case.
955
+ - New Sole Proprietor Brands should be created with `SOLE_PROPRIETOR` brand type. Brand registration requests with `STARTER` brand type will be rejected.
956
+ - New Sole Proprietor Campaigns should be created with `SOLE_PROPRIETOR` campaign use case. Campaign registration requests with `STARTER` campaign use case will be rejected.
957
+ - Add Brand Registrations OTP API
958
+
959
+
960
+ [2023-03-22] Version 5.75.0
961
+ ---------------------------
962
+ **Library - Chore**
963
+ - [PR #630](https://github.com/twilio/twilio-ruby/pull/630): Accommodate jwt's minor and patch updates. Thanks to [@sato11](https://github.com/sato11)!
964
+
965
+ **Api**
966
+ - Revert Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources
967
+ - Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources **(breaking change)**
968
+
969
+ **Messaging**
970
+ - Add `linkshortening_messaging_service` resource
971
+ - Add new endpoint for GetDomainConfigByMessagingServiceSid
972
+ - Remove `validated` parameter and add `cert_in_validation` parameter to Link Shortening API **(breaking change)**
973
+
974
+
975
+ [2023-03-09] Version 5.74.5
976
+ ---------------------------
977
+ **Api**
978
+ - Add new categories for whatsapp template
979
+
980
+ **Lookups**
981
+ - Remove `validation_results` from the `default_output_properties`
982
+
983
+ **Supersim**
984
+ - Add ESimProfile's `matching_id` and `activation_code` parameters to libraries
985
+
986
+
987
+ [2023-02-22] Version 5.74.4
988
+ ---------------------------
989
+ **Api**
990
+ - Remove `scheduled_for` property from message resource
991
+ - Add `scheduled_for` property to message resource
992
+
993
+
994
+ [2023-02-08] Version 5.74.3
995
+ ---------------------------
996
+ **Lookups**
997
+ - Add `disposable_phone_number_risk` package to the lookup response
998
+ - Add `sms_pumping_risk` package to the lookup response
999
+
1000
+
1001
+ [2023-01-25] Version 5.74.2
1002
+ ---------------------------
1003
+ **Api**
1004
+ - Add `public_application_connect_enabled` param to Application resource
1005
+
1006
+ **Messaging**
1007
+ - Add new tollfree verification API property (ExternalReferenceId)]
1008
+
1009
+ **Verify**
1010
+ - Add `device_ip` parameter and channel `auto` for sna/sms orchestration
1011
+
1012
+ **Twiml**
1013
+ - Add support for `<Application>` noun and `<ApplicationSid>` noun, nested `<Parameter>` to `<Hangup>` and `<Leave>` verb
1014
+
1015
+
1016
+ [2023-01-11] Version 5.74.1
1017
+ ---------------------------
1018
+ **Library - Chore**
1019
+ - [PR #626](https://github.com/twilio/twilio-ruby/pull/626): Bump jwt version max version to 2.6. Thanks to [@MarcPer](https://github.com/MarcPer)!
1020
+
1021
+ **Conversations**
1022
+ - Add support for creating Multi-Channel Rich Content Messages
1023
+
1024
+ **Lookups**
1025
+ - Changed the no data message for match postal code from `no_data` to `data_not_available` in identity match package
1026
+
1027
+ **Messaging**
1028
+ - Add update/edit tollfree verification API
1029
+
1030
+
1031
+ [2022-12-14] Version 5.74.0
1032
+ ---------------------------
1033
+ **Api**
1034
+ - Add `street_secondary` param to address create and update
1035
+ - Make `method` optional for user defined message subscription **(breaking change)**
1036
+
1037
+ **Flex**
1038
+ - Flex Conversations is now Generally Available
1039
+ - Adding the ie1 mapping for authorization api, updating service base uri and base url response attribute **(breaking change)**
1040
+ - Change web channels to GA and library visibility to public
1041
+ - Changing the uri for authorization api from using Accounts to Insights **(breaking change)**
1042
+
1043
+ **Media**
1044
+ - Gate Twilio Live endpoints behind beta_feature for EOS
1045
+
1046
+ **Messaging**
1047
+ - Mark `MessageFlow` as a required field for Campaign Creation **(breaking change)**
1048
+
1049
+ **Oauth**
1050
+ - updated openid discovery endpoint uri **(breaking change)**
1051
+ - Added device code authorization endpoint
1052
+
1053
+ **Supersim**
1054
+ - Allow filtering the SettingsUpdates resource by `status`
1055
+
1056
+ **Twiml**
1057
+ - Add new Polly Neural voices
1058
+ - Add tr-TR, ar-AE, yue-CN, fi-FI languages to SSML `<lang>` element.
1059
+ - Add x-amazon-jyutping, x-amazon-pinyin, x-amazon-pron-kana, x-amazon-yomigana alphabets to SSML `<phoneme>` element.
1060
+ - Rename `character` value for SSML `<say-as>` `interpret-as` attribute to `characters`. **(breaking change)**
1061
+ - Rename `role` attribute to `format` in SSML `<say-as>` element. **(breaking change)**
1062
+
1063
+
1064
+ [2022-11-30] Version 5.73.4
1065
+ ---------------------------
1066
+ **Flex**
1067
+ - Adding new `assessments` api in version `v1`
1068
+
1069
+ **Lookups**
1070
+ - Add `identity_match` package to the lookup response
1071
+
1072
+ **Messaging**
1073
+ - Added `validated` parameter to Link Shortening API
1074
+
1075
+ **Serverless**
1076
+ - Add node16 as a valid Build runtime
1077
+ - Add ie1 and au1 as supported regions for all endpoints.
1078
+
1079
+
1080
+ [2022-11-16] Version 5.73.3
1081
+ ---------------------------
1082
+ **Library - Chore**
1083
+ - [PR #621](https://github.com/twilio/twilio-ruby/pull/621): upgrade GitHub Actions dependencies. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1084
+
1085
+ **Api**
1086
+ - Set the Content resource to have public visibility as Preview
1087
+
1088
+ **Flex**
1089
+ - Adding new parameter `base_url` to 'gooddata' response in version `v1`
1090
+
1091
+ **Insights**
1092
+ - Added `answered_by` field in List Call Summary
1093
+ - Added `answered_by` field in call summary
1094
+
1095
+
1096
+ [2022-11-10] Version 5.73.2
1097
+ ---------------------------
1098
+ **Flex**
1099
+ - Adding two new authorization API 'user_roles' and 'gooddata' in version `v1`
1100
+
1101
+ **Messaging**
1102
+ - Add new Campaign properties (MessageFlow, OptInMessage, OptInKeywords, OptOutMessage, OptOutKeywords, HelpMessage, HelpKeywords)
1103
+
1104
+ **Twiml**
1105
+ - Add new speech models to `Gather`.
1106
+
1107
+
1108
+ [2022-10-31] Version 5.73.1
1109
+ ---------------------------
1110
+ **Api**
1111
+ - Added `contentSid` and `contentVariables` to Message resource with public visibility as Beta
1112
+ - Add `UserDefinedMessageSubscription` and `UserDefinedMessage` resource
1113
+
1114
+ **Proxy**
1115
+ - Remove FailOnParticipantConflict param from Proxy Session create and update and Proxy Participant create
1116
+
1117
+ **Supersim**
1118
+ - Update SettingsUpdates resource to remove PackageSid
1119
+
1120
+ **Taskrouter**
1121
+ - Add `Ordering` query parameter to Workers and TaskQueues for sorting by
1122
+ - Add `worker_sid` query param for list reservations endpoint
1123
+
1124
+ **Twiml**
1125
+ - Add `url` and `method` attributes to `<Conversation>`
1126
+
1127
+
1128
+ [2022-10-19] Version 5.73.0
1129
+ ---------------------------
1130
+ **Library - Feature**
1131
+ - [PR #619](https://github.com/twilio/twilio-ruby/pull/619): check numeric properties for nil before converting. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1132
+
1133
+ **Api**
1134
+ - Make link shortening parameters public **(breaking change)**
1135
+
1136
+ **Oauth**
1137
+ - added oauth JWKS endpoint
1138
+ - Get userinfo resource
1139
+ - OpenID discovery resource
1140
+ - Add new API for token endpoint
1141
+
1142
+ **Supersim**
1143
+ - Add SettingsUpdates resource
1144
+
1145
+ **Verify**
1146
+ - Update Verify Push endpoints to `ga` maturity
1147
+ - Verify BYOT add Channels property to the Get Templates response
1148
+
1149
+ **Twiml**
1150
+ - Add `requireMatchingInputs` attribute and `input-matching-failed` errorType to `<Prompt>`
1151
+
1152
+
1153
+ [2022-10-05] Version 5.72.1
1154
+ ---------------------------
1155
+ **Api**
1156
+ - Added `virtual-agent` to `usage_record` API.
1157
+ - Add AMD attributes to participant create request
1158
+
1159
+ **Twiml**
1160
+ - Add AMD attributes to `Number` and `Sip`
1161
+
1162
+
1163
+ [2022-09-07] Version 5.72.0
1164
+ ---------------------------
1165
+ **Flex**
1166
+ - Removed redundant `close` status from Flex Interactions flow **(breaking change)**
1167
+ - Adding `debugger_integration` and `flex_ui_status_report` to Flex Configuration
1168
+
1169
+ **Messaging**
1170
+ - Add create, list and get tollfree verification API
1171
+
1172
+ **Verify**
1173
+ - Verify SafeList API endpoints added.
1174
+
1175
+ **Video**
1176
+ - Add `Anonymize` API
1177
+
1178
+ **Twiml**
1179
+ - Update `event` value `call-in-progress` to `call-answered`
1180
+
1181
+
1182
+ [2022-08-24] Version 5.71.0
1183
+ ---------------------------
1184
+ **Library - Test**
1185
+ - [PR #615](https://github.com/twilio/twilio-ruby/pull/615): add test-docker rule. Thanks to [@beebzz](https://github.com/beebzz)!
1186
+
1187
+ **Api**
1188
+ - Remove `beta feature` from scheduling params and remove optimize parameters. **(breaking change)**
1189
+
1190
+ **Routes**
1191
+ - Remove Duplicate Create Method - Update Method will work even if Inbound Processing Region is currently empty/404. **(breaking change)**
1192
+
1193
+ **Twiml**
1194
+ - Add new Polly Neural voices
1195
+ - Add new languages to SSML `<lang>`.
1196
+
1197
+
1198
+ [2022-08-10] Version 5.70.1
1199
+ ---------------------------
1200
+ **Library - Fix**
1201
+ - [PR #614](https://github.com/twilio/twilio-ruby/pull/614): Make RequestValidator#validate fail if URL has no query params. Thanks to [@haffla](https://github.com/haffla)!
1202
+
1203
+ **Routes**
1204
+ - Inbound Proccessing Region API - Public GA
1205
+
1206
+ **Supersim**
1207
+ - Allow updating `DataLimit` on a Fleet
1208
+
1209
+
1210
+ [2022-07-21] Version 5.70.0
1211
+ ---------------------------
1212
+ **Flex**
1213
+ - Add `status`, `error_code`, and `error_message` fields to Interaction `Channel`
1214
+ - Adding `messenger` and `gbm` as supported channels for Interactions API
1215
+
1216
+ **Messaging**
1217
+ - Update alpha_sender docs with new valid characters
1218
+
1219
+ **Verify**
1220
+ - Reorder Verification Check parameters so `code` stays as the first parameter **(breaking change)**
1221
+ - Rollback List Attempts API V2 back to pilot stage.
1222
+
1223
+
1224
+ [2022-07-13] Version 5.69.0
1225
+ ---------------------------
1226
+ **Library - Fix**
1227
+ - [PR #612](https://github.com/twilio/twilio-ruby/pull/612): useragent regrex unit test for RC branch. Thanks to [@claudiachua](https://github.com/claudiachua)!
1228
+
1229
+ **Library - Test**
1230
+ - [PR #610](https://github.com/twilio/twilio-ruby/pull/610): Adding misc as PR type. Thanks to [@rakatyal](https://github.com/rakatyal)!
1231
+
1232
+ **Conversations**
1233
+ - Allowed to use `identity` as part of Participant's resource **(breaking change)**
1234
+
1235
+ **Lookups**
1236
+ - Remove `enhanced_line_type` from the lookup response **(breaking change)**
1237
+
1238
+ **Supersim**
1239
+ - Add support for `sim_ip_addresses` resource to helper libraries
1240
+
1241
+ **Verify**
1242
+ - Changed summary param `service_sid` to `verify_service_sid` to be consistent with list attempts API **(breaking change)**
1243
+ - Make `code` optional on Verification check to support `sna` attempts. **(breaking change)**
1244
+
1245
+
1246
+ [2022-06-29] Version 5.68.0
1247
+ ---------------------------
1248
+ **Api**
1249
+ - Added `amazon-polly` to `usage_record` API.
1250
+
1251
+ **Insights**
1252
+ - Added `annotation` field in call summary
1253
+ - Added new endpoint to fetch/create/update Call Annotations
1254
+
1255
+ **Verify**
1256
+ - Remove `api.verify.totp` beta flag and set maturity to `beta` for Verify TOTP properties and parameters. **(breaking change)**
1257
+ - Changed summary param `verify_service_sid` to `service_sid` to be consistent with list attempts API **(breaking change)**
1258
+
1259
+ **Twiml**
1260
+ - Add `maxQueueSize` to `Enqueue`
1261
+
1262
+
1263
+ [2022-06-15] Version 5.67.3
1264
+ ---------------------------
1265
+ **Lookups**
1266
+ - Adding support for Lookup V2 API
1267
+
1268
+ **Studio**
1269
+ - Corrected PII labels to be 30 days and added context to be PII
1270
+
1271
+ **Twiml**
1272
+ - Add `statusCallbackMethod` attribute, nested `<Config` and `<Parameter>` elements to `<VirtualAgent>` noun.
1273
+ - Add support for new Amazon Polly voices (Q2 2022) for `Say` verb
1274
+ - Add support for `<Conversation>` noun
1275
+
1276
+
1277
+ [2022-06-01] Version 5.67.2
1278
+ ---------------------------
1279
+ **Library - Chore**
1280
+ - [PR #608](https://github.com/twilio/twilio-ruby/pull/608): use Docker 'rc' tag for release candidate images. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1281
+
1282
+
1283
+ [2022-05-18] Version 5.67.1
1284
+ ---------------------------
1285
+ **Api**
1286
+ - Add property `media_url` to the recording resources
1287
+
1288
+ **Verify**
1289
+ - Include `silent` as a channel type in the verifications API.
1290
+
1291
+
1292
+ [2022-05-04] Version 5.67.0
1293
+ ---------------------------
1294
+ **Library - Fix**
1295
+ - [PR #607](https://github.com/twilio/twilio-ruby/pull/607): Retrieval of OS Info with Ruby Config for User Agent string. Thanks to [@claudiachua](https://github.com/claudiachua)!
1296
+ - [PR #606](https://github.com/twilio/twilio-ruby/pull/606): Only require twilio_webhook_authentication if Rack version > 2. Thanks to [@jasonnoble](https://github.com/jasonnoble)!
1297
+ - [PR #582](https://github.com/twilio/twilio-ruby/pull/582): avoid JSON::ParserError for all server errors. Thanks to [@dan-jensen](https://github.com/dan-jensen)!
1298
+
1299
+ **Library - Feature**
1300
+ - [PR #591](https://github.com/twilio/twilio-ruby/pull/591): Add Faraday 2.0 support. Thanks to [@tconst](https://github.com/tconst)!
1301
+
1302
+ **Conversations**
1303
+ - Expose query parameter `type` in list operation on Address Configurations resource
1304
+
1305
+ **Supersim**
1306
+ - Add `data_total_billed` and `billed_units` fields to Super SIM UsageRecords API response.
1307
+ - Change ESimProfiles `Eid` parameter to optional to enable Activation Code download method support **(breaking change)**
1308
+
1309
+ **Verify**
1310
+ - Deprecate `push.include_date` parameter in create and update service.
1311
+
1312
+
1313
+ [2022-04-20] Version 5.66.2
1314
+ ---------------------------
1315
+ **Library - Chore**
1316
+ - [PR #604](https://github.com/twilio/twilio-ruby/pull/604): update the user agent string for twilio-ruby. Thanks to [@claudiachua](https://github.com/claudiachua)!
1317
+
1318
+
1319
+ [2022-04-06] Version 5.66.1
1320
+ ---------------------------
1321
+ **Api**
1322
+ - Updated `provider_sid` visibility to private
1323
+
1324
+ **Verify**
1325
+ - Verify List Attempts API summary endpoint added.
1326
+ - Update PII documentation for `AccessTokens` `factor_friendly_name` property.
1327
+
1328
+ **Voice**
1329
+ - make annotation parameter from /Calls API private
1330
+
1331
+
1332
+ [2022-03-23] Version 5.66.0
1333
+ ---------------------------
1334
+ **Api**
1335
+ - Change `stream` url parameter to non optional
1336
+ - Add `verify-totp` and `verify-whatsapp-conversations-business-initiated` categories to `usage_record` API
1337
+
1338
+ **Chat**
1339
+ - Added v3 Channel update endpoint to support Public to Private channel migration
1340
+
1341
+ **Flex**
1342
+ - Private Beta release of the Interactions API to support the upcoming release of Flex Conversations at the end of Q1 2022.
1343
+ - Adding `channel_configs` object to Flex Configuration
1344
+
1345
+ **Media**
1346
+ - Add max_duration param to PlayerStreamer
1347
+
1348
+ **Supersim**
1349
+ - Remove Commands resource, use SmsCommands resource instead **(breaking change)**
1350
+
1351
+ **Taskrouter**
1352
+ - Add limits to `split_by_wait_time` for Cumulative Statistics Endpoint
1353
+
1354
+ **Video**
1355
+ - Change recording `status_callback_method` type from `enum` to `http_method` **(breaking change)**
1356
+ - Add `status_callback` and `status_callback_method` to composition
1357
+ - Add `status_callback` and `status_callback_method` to recording
1358
+
1359
+
1360
+ [2022-03-09] Version 5.65.1
1361
+ ---------------------------
1362
+ **Library - Fix**
1363
+ - [PR #602](https://github.com/twilio/twilio-ruby/pull/602): don't load webhook authentication if Rack not present. Thanks to [@philnash](https://github.com/philnash)!
1364
+
1365
+ **Library - Chore**
1366
+ - [PR #599](https://github.com/twilio/twilio-ruby/pull/599): push Datadog Release Metric upon deploy success. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1367
+
1368
+ **Api**
1369
+ - Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings
1370
+
1371
+ **Chat**
1372
+ - Add `X-Twilio-Wehook-Enabled` header to `delete` method in UserChannel resource
1373
+
1374
+ **Numbers**
1375
+ - Expose `failure_reason` in the Supporting Documents resources
1376
+
1377
+ **Verify**
1378
+ - Add optional `metadata` parameter to "verify challenge" endpoint, so the SDK/App can attach relevant information from the device when responding to challenges.
1379
+ - remove beta feature flag to list atempt api operations.
1380
+ - Add `ttl` and `date_created` properties to `AccessTokens`.
1381
+
1382
+
1383
+ [2022-02-23] Version 5.65.0
1384
+ ---------------------------
1385
+ **Api**
1386
+ - Add `uri` to `stream` resource
1387
+ - Add A2P Registration Fee category (`a2p-registration-fee`) to usage records
1388
+ - Detected a bug and removed optional boolean include_soft_deleted parameter to retrieve soft deleted recordings. **(breaking change)**
1389
+ - Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings.
1390
+
1391
+ **Numbers**
1392
+ - Unrevert valid_until and sort filter params added to List Bundles resource
1393
+ - Revert valid_until and sort filter params added to List Bundles resource
1394
+ - Update sorting params added to List Bundles resource in the previous release
1395
+
1396
+ **Preview**
1397
+ - Moved `web_channels` from preview to beta under `flex-api` **(breaking change)**
1398
+
1399
+ **Taskrouter**
1400
+ - Add `ETag` as Response Header to List of Task, Reservation & Worker
1401
+
1402
+ **Verify**
1403
+ - Remove outdated documentation commentary to contact sales. Product is already in public beta.
1404
+ - Add optional `metadata` to factors.
1405
+
1406
+ **Twiml**
1407
+ - Add new Polly Neural voices
1408
+
1409
+
1410
+ [2022-02-09] Version 5.64.0
1411
+ ---------------------------
1412
+ **Library - Chore**
1413
+ - [PR #594](https://github.com/twilio/twilio-ruby/pull/594): upgrade supported language versions. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1414
+
1415
+ **Api**
1416
+ - Add `stream` resource
1417
+
1418
+ **Conversations**
1419
+ - Fixed DELETE request to accept "sid_like" params in Address Configuration resources **(breaking change)**
1420
+ - Expose Address Configuration resource for `sms` and `whatsapp`
1421
+
1422
+ **Fax**
1423
+ - Removed deprecated Programmable Fax Create and Update methods **(breaking change)**
1424
+
1425
+ **Insights**
1426
+ - Rename `call_state` to `call_status` and remove `whisper` in conference participant summary **(breaking change)**
1427
+
1428
+ **Numbers**
1429
+ - Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource
1430
+
1431
+ **Supersim**
1432
+ - Fix typo in Fleet resource docs
1433
+ - Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
1434
+ - Add support for setting and reading `ip_commands_url` and `ip_commands_method` on Fleets resource for helper libraries
1435
+ - Changed `sim` property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs
1436
+
1437
+ **Verify**
1438
+ - Update list attempts API to include new filters and response fields.
1439
+
1440
+
1441
+ [2022-01-26] Version 5.63.1
1442
+ ---------------------------
1443
+ **Library - Fix**
1444
+ - [PR #590](https://github.com/twilio/twilio-ruby/pull/590): Validate signatures in Rack middleware for non-form-data payloads. Thanks to [@gabrielg](https://github.com/gabrielg)!
1445
+
1446
+ **Library - Chore**
1447
+ - [PR #589](https://github.com/twilio/twilio-ruby/pull/589): Add sonarcloud analysis. Thanks to [@BrimmingDev](https://github.com/BrimmingDev)!
1448
+ - [PR #588](https://github.com/twilio/twilio-ruby/pull/588): support for rubocop linting on ruby-head. Thanks to [@Hunga1](https://github.com/Hunga1)!
1449
+
1450
+ **Insights**
1451
+ - Added new endpoint to fetch Conference Participant Summary
1452
+ - Added new endpoint to fetch Conference Summary
1453
+
1454
+ **Messaging**
1455
+ - Add government_entity parameter to brand apis
1456
+
1457
+ **Verify**
1458
+ - Add Access Token fetch endpoint to retrieve a previously created token.
1459
+ - Add Access Token payload to the Access Token creation endpoint, including a unique Sid, so it's addressable while it's TTL is valid.
1460
+
1461
+
1462
+ [2022-01-12] Version 5.63.0
1463
+ ---------------------------
1464
+ **Library - Feature**
1465
+ - [PR #586](https://github.com/twilio/twilio-ruby/pull/586): add GitHub release step during deploy. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1466
+
1467
+ **Library - Chore**
1468
+ - [PR #584](https://github.com/twilio/twilio-ruby/pull/584): run yard in bundle context. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1469
+ - [PR #583](https://github.com/twilio/twilio-ruby/pull/583): remove githook dependency from make install. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
1470
+
1471
+ **Api**
1472
+ - Make fixed time scheduling parameters public **(breaking change)**
1473
+
1474
+ **Messaging**
1475
+ - Add update brand registration API
1476
+
1477
+ **Numbers**
1478
+ - Add API endpoint for List Bundle Copies resource
1479
+
1480
+ **Video**
1481
+ - Enable external storage for all customers
1482
+
1483
+
1484
+ [2021-12-15] Version 5.62.0
1485
+ ---------------------------
1486
+ **Library - Feature**
1487
+ - [PR #581](https://github.com/twilio/twilio-ruby/pull/581): run tests before deploying. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1488
+
1489
+ **Api**
1490
+ - Add optional boolean send_as_mms parameter to the create action of Message resource **(breaking change)**
1491
+ - Change team ownership for `call` delete
1492
+
1493
+ **Conversations**
1494
+ - Change wording for `Service Webhook Configuration` resource fields
1495
+
1496
+ **Insights**
1497
+ - Added new APIs for updating and getting voice insights flags by accountSid.
1498
+
1499
+ **Media**
1500
+ - Add max_duration param to MediaProcessor
1501
+
1502
+ **Video**
1503
+ - Add `EmptyRoomTimeout` and `UnusedRoomTimeout` properties to a room; add corresponding parameters to room creation
1504
+
1505
+ **Voice**
1506
+ - Add endpoint to delete archived Calls
1507
+
1508
+
1509
+ [2021-12-01] Version 5.61.2
1510
+ ---------------------------
1511
+ **Library - Chore**
1512
+ - [PR #579](https://github.com/twilio/twilio-ruby/pull/579): make ruby-head test optional. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1513
+
1514
+ **Conversations**
1515
+ - Add `Service Webhook Configuration` resource
1516
+
1517
+ **Flex**
1518
+ - Adding `flex_insights_drilldown` and `flex_url` objects to Flex Configuration
1519
+
1520
+ **Messaging**
1521
+ - Update us_app_to_person endpoints to remove beta feature flag based access
1522
+
1523
+ **Supersim**
1524
+ - Add IP Commands resource
1525
+
1526
+ **Verify**
1527
+ - Add optional `factor_friendly_name` parameter to the create access token endpoint.
1528
+
1529
+ **Video**
1530
+ - Add maxParticipantDuration param to Rooms
1531
+
1532
+ **Twiml**
1533
+ - Unrevert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
1534
+ - Revert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
1535
+
1536
+
1537
+ [2021-11-17] Version 5.61.1
1538
+ ---------------------------
1539
+ **Library - Chore**
1540
+ - [PR #578](https://github.com/twilio/twilio-ruby/pull/578): remove yardoc files. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1541
+
1542
+ **Library - Fix**
1543
+ - [PR #576](https://github.com/twilio/twilio-ruby/pull/576): git log retrieval issues. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
1544
+
1545
+ **Frontline**
1546
+ - Added `is_available` to User's resource
1547
+
1548
+ **Messaging**
1549
+ - Added GET vetting API
1550
+
1551
+ **Verify**
1552
+ - Add `WHATSAPP` to the attempts API.
1553
+ - Allow to update `config.notification_platform` from `none` to `apn` or `fcm` and viceversa for Verify Push
1554
+ - Add `none` as a valid `config.notification_platform` value for Verify Push
1555
+
1556
+ **Twiml**
1557
+ - Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
1558
+
1559
+
1560
+ [2021-11-03] Version 5.61.0
1561
+ ---------------------------
1562
+ **Library - Chore**
1563
+ - [PR #575](https://github.com/twilio/twilio-ruby/pull/575): migrate from TravisCI to GitHub Actions. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1564
+
1565
+ **Api**
1566
+ - Updated `media_url` property to be treated as PII
1567
+
1568
+ **Messaging**
1569
+ - Added a new enum for brand registration status named DELETED **(breaking change)**
1570
+ - Add a new K12_EDUCATION use case in us_app_to_person_usecase api transaction
1571
+ - Added a new enum for brand registration status named IN_REVIEW
1572
+
1573
+ **Serverless**
1574
+ - Add node14 as a valid Build runtime
1575
+
1576
+ **Verify**
1577
+ - Fix typos in Verify Push Factor documentation for the `config.notification_token` parameter.
1578
+ - Added `TemplateCustomSubstitutions` on verification creation
1579
+ - Make `TemplateSid` parameter public for Verification resource and `DefaultTemplateSid` parameter public for Service resource. **(breaking change)**
1580
+
1581
+
1582
+ [2021-10-18] Version 5.60.0
1583
+ ---------------------------
1584
+ **Library - Feature**
1585
+ - [PR #574](https://github.com/twilio/twilio-ruby/pull/574): Add PlaybackGrant. Thanks to [@sarahcstringer](https://github.com/sarahcstringer)!
1586
+
1587
+ **Api**
1588
+ - Corrected enum values for `emergency_address_status` values in `/IncomingPhoneNumbers` response. **(breaking change)**
1589
+ - Clarify `emergency_address_status` values in `/IncomingPhoneNumbers` response.
1590
+
1591
+ **Messaging**
1592
+ - Add PUT and List brand vettings api
1593
+ - Removes beta feature flag based visibility for us_app_to_person_registered and usecase field.Updates test cases to add POLITICAL usecase. **(breaking change)**
1594
+ - Add brand_feedback as optional field to BrandRegistrations
1595
+
1596
+ **Video**
1597
+ - Add `AudioOnly` to create room
1598
+
1599
+
1600
+ [2021-10-06] Version 5.59.0
1601
+ ---------------------------
1602
+ **Library - Fix**
1603
+ - [PR #571](https://github.com/twilio/twilio-ruby/pull/571): fix travis build for ruby 3.0. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
1604
+
1605
+ **Api**
1606
+ - Add `emergency_address_status` attribute to `/IncomingPhoneNumbers` response.
1607
+ - Add `siprec` resource
1608
+
1609
+ **Conversations**
1610
+ - Added attachment parameters in configuration for `NewMessage` type of push notifications
1611
+
1612
+ **Flex**
1613
+ - Adding `flex_insights_hr` object to Flex Configuration
1614
+
1615
+ **Numbers**
1616
+ - Add API endpoint for Bundle ReplaceItems resource
1617
+ - Add API endpoint for Bundle Copies resource
1618
+
1619
+ **Serverless**
1620
+ - Add domain_base field to Service response
1621
+
1622
+ **Taskrouter**
1623
+ - Add `If-Match` Header based on ETag for Worker Delete **(breaking change)**
1624
+ - Add `If-Match` Header based on Etag for Reservation Update
1625
+ - Add `If-Match` Header based on ETag for Worker Update
1626
+ - Add `If-Match` Header based on ETag for Worker Delete
1627
+ - Add `ETag` as Response Header to Worker
1628
+
1629
+ **Trunking**
1630
+ - Added `transfer_caller_id` property on Trunks.
1631
+
1632
+ **Verify**
1633
+ - Document new pilot `whatsapp` channel.
1634
+
1635
+
1636
+ [2021-09-22] Version 5.58.3
1637
+ ---------------------------
1638
+ **Events**
1639
+ - Add segment sink
1640
+
1641
+ **Messaging**
1642
+ - Add post_approval_required attribute in GET us_app_to_person_usecase api response
1643
+ - Add Identity Status, Russell 3000, Tax Exempt Status and Should Skip SecVet fields for Brand Registrations
1644
+ - Add Should Skip Secondary Vetting optional flag parameter to create Brand API
1645
+
1646
+
1647
+ [2021-09-08] Version 5.58.2
1648
+ ---------------------------
1649
+ **Library - Fix**
1650
+ - [PR #568](https://github.com/twilio/twilio-ruby/pull/568): deprecation warning on Faraday. Thanks to [@ngouy](https://github.com/ngouy)!
1651
+
1652
+ **Api**
1653
+ - Revert adding `siprec` resource
1654
+ - Add `siprec` resource
1655
+
1656
+ **Messaging**
1657
+ - Add 'mock' as an optional field to brand_registration api
1658
+ - Add 'mock' as an optional field to us_app_to_person api
1659
+ - Adds more Use Cases in us_app_to_person_usecase api transaction and updates us_app_to_person_usecase docs
1660
+
1661
+ **Verify**
1662
+ - Verify List Templates API endpoint added.
1663
+
1664
+
1665
+ [2021-08-25] Version 5.58.1
1666
+ ---------------------------
1667
+ **Api**
1668
+ - Add Programmabled Voice SIP Refer call transfers (`calls-transfers`) to usage records
1669
+ - Add Flex Voice Usage category (`flex-usage`) to usage records
1670
+
1671
+ **Conversations**
1672
+ - Add `Order` query parameter to Message resource read operation
1673
+
1674
+ **Insights**
1675
+ - Added `partial` to enum processing_state_request
1676
+ - Added abnormal session filter in Call Summaries
1677
+
1678
+ **Messaging**
1679
+ - Add brand_registration_sid as an optional query param for us_app_to_person_usecase api
1680
+
1681
+ **Pricing**
1682
+ - add trunking_numbers resource (v2)
1683
+ - add trunking_country resource (v2)
1684
+
1685
+ **Verify**
1686
+ - Changed to private beta the `TemplateSid` optional parameter on Verification creation.
1687
+ - Added the optional parameter `Order` to the list Challenges endpoint to define the list order.
1688
+
1689
+
1690
+ [2021-08-11] Version 5.58.0
1691
+ ---------------------------
1692
+ **Library - Chore**
1693
+ - [PR #566](https://github.com/twilio/twilio-ruby/pull/566): integrate sonarcloud. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
1694
+
1695
+ **Library - Docs**
1696
+ - [PR #565](https://github.com/twilio/twilio-ruby/pull/565): update mms example to use media_url. Thanks to [@cnorm35](https://github.com/cnorm35)!
1697
+
1698
+ **Api**
1699
+ - Corrected the `price`, `call_sid_to_coach`, and `uri` data types for Conference, Participant, and Recording **(breaking change)**
1700
+ - Made documentation for property `time_limit` in the call api public. **(breaking change)**
1701
+ - Added `domain_sid` in sip_credential_list_mapping and sip_ip_access_control_list_mapping APIs **(breaking change)**
1702
+
1703
+ **Insights**
1704
+ - Added new endpoint to fetch Call Summaries
1705
+
1706
+ **Messaging**
1707
+ - Add brand_type field to a2p brand_registration api
1708
+ - Revert brand registration api update to add brand_type field
1709
+ - Add brand_type field to a2p brand_registration api
1710
+
1711
+ **Taskrouter**
1712
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to all TaskRouter endpoints
1713
+
1714
+ **Verify**
1715
+ - Add `TemplateSid` optional parameter on Verification creation.
1716
+ - Include `whatsapp` as a channel type in the verifications API.
1717
+
1718
+
1719
+ [2021-07-28] Version 5.57.1
1720
+ ---------------------------
1721
+ **Conversations**
1722
+ - Expose ParticipantConversations resource
1723
+
1724
+ **Taskrouter**
1725
+ - Adding `links` to the activity resource
1726
+
1727
+ **Verify**
1728
+ - Added a `Version` to Verify Factors `Webhooks` to add new fields without breaking old Webhooks.
1729
+
1730
+
1731
+ [2021-07-14] Version 5.57.0
1732
+ ---------------------------
1733
+ **Conversations**
1734
+ - Changed `last_read_message_index` and `unread_messages_count` type in User Conversation's resource **(breaking change)**
1735
+ - Expose UserConversations resource
1736
+
1737
+ **Messaging**
1738
+ - Add brand_score field to brand registration responses
1739
+
1740
+
1741
+ [2021-06-30] Version 5.56.0
1742
+ ---------------------------
1743
+ **Library - Feature**
1744
+ - [PR #559](https://github.com/twilio/twilio-ruby/pull/559): Add `Twilio::HTTP::Client#configure_connection`. Thanks to [@darwinShopify](https://github.com/darwinShopify)!
1745
+ - [PR #558](https://github.com/twilio/twilio-ruby/pull/558): Autoload Twilio::REST and Twilio::HTTP. Thanks to [@gmcgibbon](https://github.com/gmcgibbon)!
1746
+
1747
+ **Conversations**
1748
+ - Read-only Conversation Email Binding property `binding`
1749
+
1750
+ **Supersim**
1751
+ - Add Billing Period resource for the Super Sim Pilot
1752
+ - Add List endpoint to Billing Period resource for Super Sim Pilot
1753
+ - Add Fetch endpoint to Billing Period resource for Super Sim Pilot
1754
+
1755
+ **Taskrouter**
1756
+ - Update `transcribe` & `transcription_configuration` form params in Reservation update endpoint to have private visibility **(breaking change)**
1757
+ - Add `transcribe` & `transcription_configuration` form params to Reservation update endpoint
1758
+
1759
+ **Twiml**
1760
+ - Add `modify` event to `statusCallbackEvent` for `<Conference>`.
1761
+
1762
+
1763
+ [2021-06-16] Version 5.55.0
1764
+ ---------------------------
1765
+ **Api**
1766
+ - Update `status` enum for Messages to include 'canceled'
1767
+ - Update `update_status` enum for Messages to include 'canceled'
1768
+
1769
+ **Trusthub**
1770
+ - Corrected the sid for policy sid in customer_profile_evaluation.json and trust_product_evaluation.json **(breaking change)**
1771
+
1772
+
1773
+ [2021-06-02] Version 5.54.1
1774
+ ---------------------------
1775
+ **Events**
1776
+ - join Sinks and Subscriptions service
1777
+
1778
+ **Verify**
1779
+ - Improved the documentation of `challenge` adding the maximum and minimum expected lengths of some fields.
1780
+ - Improve documentation regarding `notification` by updating the documentation of the field `ttl`.
1781
+
1782
+
1783
+ [2021-05-19] Version 5.54.0
1784
+ ---------------------------
1785
+ **Events**
1786
+ - add query param to return types filtered by Schema Id
1787
+ - Add query param to return sinks filtered by status
1788
+ - Add query param to return sinks used/not used by a subscription
1789
+
1790
+ **Messaging**
1791
+ - Add fetch and delete instance endpoints to us_app_to_person api **(breaking change)**
1792
+ - Remove delete list endpoint from us_app_to_person api **(breaking change)**
1793
+ - Update read list endpoint to return a list of us_app_to_person compliance objects **(breaking change)**
1794
+ - Add `sid` field to Preregistered US App To Person response
1795
+
1796
+ **Supersim**
1797
+ - Mark `unique_name` in Sim, Fleet, NAP resources as not PII
1798
+
1799
+ **Video**
1800
+ - [Composer] GA maturity level
1801
+
1802
+
1803
+ [2021-05-05] Version 5.53.0
1804
+ ---------------------------
1805
+ **Library - Fix**
1806
+ - [PR #554](https://github.com/twilio/twilio-ruby/pull/554): JSON parser error on timeout response. Thanks to [@Maychell](https://github.com/Maychell)!
1807
+
1808
+ **Api**
1809
+ - Corrected the data types for feedback summary fields **(breaking change)**
1810
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1811
+
1812
+ **Bulkexports**
1813
+ - promoting API maturity to GA
1814
+
1815
+ **Events**
1816
+ - Add endpoint to update description in sink
1817
+ - Remove beta-feature account flag
1818
+
1819
+ **Messaging**
1820
+ - Update `status` field in us_app_to_person api to `campaign_status` **(breaking change)**
1821
+
1822
+ **Verify**
1823
+ - Improve documentation regarding `push` factor and include extra information about `totp` factor.
1824
+
1825
+
1826
+ [2021-04-21] Version 5.52.0
1827
+ ---------------------------
1828
+ **Api**
1829
+ - Revert Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1830
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1831
+
1832
+ **Bulkexports**
1833
+ - moving enum to doc root for auto generating documentation
1834
+ - adding status enum and default output properties
1835
+
1836
+ **Events**
1837
+ - Change schema_versions prop and key to versions **(breaking change)**
1838
+
1839
+ **Messaging**
1840
+ - Add `use_inbound_webhook_on_number` field in Service API for fetch, create, update, read
1841
+
1842
+ **Taskrouter**
1843
+ - Add `If-Match` Header based on ETag for Task Delete
1844
+
1845
+ **Verify**
1846
+ - Add `AuthPayload` parameter to support verifying a `Challenge` upon creation. This is only supported for `totp` factors.
1847
+ - Add support to resend the notifications of a `Challenge`. This is only supported for `push` factors.
1848
+
1849
+ **Twiml**
1850
+ - Add Polly Neural voices.
1851
+
1852
+
1853
+ [2021-04-07] Version 5.51.0
1854
+ ---------------------------
1855
+ **Library - Chore**
1856
+ - [PR #551](https://github.com/twilio/twilio-ruby/pull/551): omit spec/ from .gem file. Thanks to [@mroach](https://github.com/mroach)!
1857
+
1858
+ **Api**
1859
+ - Added `announcement` event to conference status callback events
1860
+ - Removed optional property `time_limit` in the call create request. **(breaking change)**
1861
+
1862
+ **Messaging**
1863
+ - Add rate_limits field to Messaging Services US App To Person API
1864
+ - Add usecase field in Service API for fetch, create, update, read
1865
+ - Add us app to person api and us app to person usecase api as dependents in service
1866
+ - Add us_app_to_person_registered field in service api for fetch, read, create, update
1867
+ - Add us app to person api
1868
+ - Add us app to person usecase api
1869
+ - Add A2P external campaign api
1870
+ - Add Usecases API
1871
+
1872
+ **Supersim**
1873
+ - Add Create endpoint to Sims resource
1874
+
1875
+ **Verify**
1876
+ - The `Binding` field is now returned when creating a `Factor`. This value won't be returned for other endpoints.
1877
+
1878
+ **Video**
1879
+ - [Rooms] max_concurrent_published_tracks has got GA maturity
1880
+
1881
+ **Twiml**
1882
+ - Add `announcement` event to `statusCallbackEvent` for `<Conference>`.
1883
+
1884
+
1885
+ [2021-03-24] Version 5.50.0
1886
+ ---------------------------
1887
+ **Api**
1888
+ - Added optional parameter `CallToken` for create calls api
1889
+ - Add optional property `time_limit` in the call create request.
1890
+
1891
+ **Bulkexports**
1892
+ - adding two new fields with job api queue_position and estimated_completion_time
1893
+
1894
+ **Events**
1895
+ - Add new endpoints to manage subscribed_events in subscriptions
1896
+
1897
+ **Numbers**
1898
+ - Remove feature flags for RegulatoryCompliance endpoints
1899
+
1900
+ **Supersim**
1901
+ - Add SmsCommands resource
1902
+ - Add fields `SmsCommandsUrl`, `SmsCommandsMethod` and `SmsCommandsEnabled` to a Fleet resource
1903
+
1904
+ **Taskrouter**
1905
+ - Add `If-Match` Header based on ETag for Task Update
1906
+ - Add `ETag` as Response Headers to Tasks and Reservations
1907
+
1908
+ **Video**
1909
+ - Recording rule beta flag **(breaking change)**
1910
+ - [Rooms] Add RecordingRules param to Rooms
1911
+
1912
+
1913
+ [2021-03-15] Version 5.49.0
1914
+ ---------------------------
1915
+ **Library - Fix**
1916
+ - [PR #550](https://github.com/twilio/twilio-ruby/pull/550): regenerating with the path parameter fix. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
1917
+
1918
+ **Events**
1919
+ - Set maturity to beta
1920
+
1921
+ **Messaging**
1922
+ - Adjust A2P brand registration status enum **(breaking change)**
1923
+
1924
+ **Studio**
1925
+ - Remove internal safeguards for Studio V2 API usage now that it's GA
1926
+
1927
+ **Verify**
1928
+ - Add support for creating and verifying totp factors. Support for totp factors is behind the `api.verify.totp` beta feature.
1929
+
1930
+ **Twiml**
1931
+ - Add support for `<VirtualAgent>` noun
1932
+
1933
+
1934
+ [2021-02-24] Version 5.48.0
1935
+ ---------------------------
1936
+ **Events**
1937
+ - Update description of types in the create sink resource
1938
+
1939
+ **Messaging**
1940
+ - Add WA template header and footer
1941
+ - Remove A2P campaign and use cases API **(breaking change)**
1942
+ - Add number_registration_status field to read and fetch campaign responses
1943
+
1944
+ **Trusthub**
1945
+ - Make all resources public
1946
+
1947
+ **Verify**
1948
+ - Verify List Attempts API endpoints added.
1949
+
1950
+
1951
+ [2021-02-10] Version 5.47.0
1952
+ ---------------------------
1953
+ **Library - Fix**
1954
+ - [PR #548](https://github.com/twilio/twilio-ruby/pull/548): shortcut syntax for new non-GA versions. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1955
+
1956
+ **Api**
1957
+ - Revert change that conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1958
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1959
+
1960
+ **Events**
1961
+ - Documentation should state that no fields are PII
1962
+
1963
+ **Flex**
1964
+ - Adding `notifications` and `markdown` to Flex Configuration
1965
+
1966
+ **Messaging**
1967
+ - Add A2P use cases API
1968
+ - Add Brand Registrations API
1969
+ - Add Campaigns API
1970
+
1971
+ **Serverless**
1972
+ - Add runtime field to Build response and as an optional parameter to the Build create endpoint.
1973
+ - Add @twilio/runtime-handler dependency to Build response example.
1974
+
1975
+ **Sync**
1976
+ - Remove If-Match header for Document **(breaking change)**
1977
+
1978
+ **Twiml**
1979
+ - Add `refer_url` and `refer_method` to `Dial`.
1980
+
1981
+
1982
+ [2021-01-27] Version 5.46.1
1983
+ ---------------------------
1984
+ **Library - Docs**
1985
+ - [PR #547](https://github.com/twilio/twilio-ruby/pull/547): Document how to use an API Key. Thanks to [@davetron5000](https://github.com/davetron5000)!
1986
+
1987
+ **Studio**
1988
+ - Studio V2 API is now GA
1989
+
1990
+ **Supersim**
1991
+ - Allow updating `CommandsUrl` and `CommandsMethod` on a Fleet
1992
+
1993
+ **Twiml**
1994
+ - Add `status_callback` and `status_callback_method` to `Stream`.
1995
+
1996
+
1997
+ [2021-01-13] Version 5.46.0
1998
+ ---------------------------
1999
+ **Library - Docs**
2000
+ - [PR #546](https://github.com/twilio/twilio-ruby/pull/546): Fixing docs for list parameter types. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
2001
+
2002
+ **Library - Fix**
2003
+ - [PR #545](https://github.com/twilio/twilio-ruby/pull/545): Adds Ruby 3.0 to Travis. Fixes test. Thanks to [@philnash](https://github.com/philnash)!
2004
+
2005
+ **Api**
2006
+ - Add 'Electric Imp v1 Usage' to usage categories
2007
+
2008
+ **Conversations**
2009
+ - Changed `last_read_message_index` type in Participant's resource **(breaking change)**
2010
+
2011
+ **Insights**
2012
+ - Added `created_time` to call summary.
2013
+
2014
+ **Sync**
2015
+ - Remove HideExpired query parameter for filtering Sync Documents with expired **(breaking change)**
2016
+
2017
+ **Video**
2018
+ - [Rooms] Expose maxConcurrentPublishedTracks property in Room resource
2019
+
2020
+
2021
+ [2020-12-16] Version 5.45.1
2022
+ ---------------------------
2023
+ **Api**
2024
+ - Updated `call_event` default_output_properties to request and response.
2025
+
2026
+ **Conversations**
2027
+ - Added `last_read_message_index` and `last_read_timestamp` to Participant's resource update operation
2028
+ - Added `is_notifiable` and `is_online` to User's resource
2029
+ - Added `reachability_enabled` parameters to update method for Conversation Service Configuration resource
2030
+
2031
+ **Messaging**
2032
+ - Added WA template quick reply, URL, and phone number buttons
2033
+
2034
+ **Twiml**
2035
+ - Add `sequential` to `Dial`.
2036
+
2037
+
2038
+ [2020-12-08] Version 5.45.0
2039
+ ---------------------------
2040
+ **Api**
2041
+ - Added optional `RecordingTrack` parameter for create calls, create participants, and create call recordings
2042
+ - Removed deprecated Programmable Chat usage record categories **(breaking change)**
2043
+
2044
+ **Twiml**
2045
+ - Add `recordingTrack` to `Dial`.
2046
+
2047
+
2048
+ [2020-12-02] Version 5.44.0
2049
+ ---------------------------
2050
+ **Api**
2051
+ - Remove `RecordingTrack` parameter for create calls, create participants, and create call recordings **(breaking change)**
2052
+ - Added `RecordingTrack` parameter for create calls and create call recordings
2053
+ - Add optional property `recording_track` in the participant create request
2054
+
2055
+ **Lookups**
2056
+ - Changed `caller_name` and `carrier` properties type to object **(breaking change)**
2057
+
2058
+ **Trunking**
2059
+ - Added dual channel recording options for Trunks.
2060
+
2061
+ **Twiml**
2062
+ - Add `jitterBufferSize` and `participantLabel` to `Conference`.
2063
+
2064
+
2065
+ [2020-11-18] Version 5.43.0
2066
+ ---------------------------
2067
+ **Library - Feature**
2068
+ - [PR #538](https://github.com/twilio/twilio-ruby/pull/538): adding http logging for ruby. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
2069
+
2070
+ **Api**
2071
+ - Add new call events resource - GET /2010-04-01/Accounts/{account_sid}/Calls/{call_sid}/Events.json
2072
+
2073
+ **Conversations**
2074
+ - Fixed default response property issue for Service Notifications Configuration
2075
+
2076
+ **Insights**
2077
+ - Removing call_sid from participant summary. **(breaking change)**
2078
+
2079
+ **Serverless**
2080
+ - Allow Service unique name to be used in path (in place of SID) in Service update request
2081
+
2082
+ **Sync**
2083
+ - Added HideExpired query parameter for filtering Sync Documents with expired
2084
+
2085
+ **Verify**
2086
+ - Challenge `Details` and `HiddenDetails` properties are now marked as `PII`
2087
+ - Challenge `expiration_date` attribute updated to set a default value of five (5) minutes and to allow max dates of one (1) hour after creation.
2088
+ - Entity `identity` attribute updated to allow values between 8 and 64 characters.
2089
+ - Verify Service frinedly_name attribute updated from 64 max lenght to 30 characters.
2090
+
2091
+
2092
+ [2020-11-05] Version 5.42.0
2093
+ ---------------------------
2094
+ **Library - Feature**
2095
+ - [PR #537](https://github.com/twilio/twilio-ruby/pull/537): Add region to AccessToken. Thanks to [@ryan-rowland](https://github.com/ryan-rowland)!
2096
+
2097
+ **Api**
2098
+ - Added `verify-push` to `usage_record` API
2099
+
2100
+ **Bulkexports**
2101
+ - When creating a custom export the StartDay, EndDay, and FriendlyName fields were required but this was not reflected in the API documentation. The API itself failed the request without these fields. **(breaking change)**
2102
+ - Added property descriptions for Custom Export create method
2103
+ - Clarified WebhookUrl and WebhookMethod must be provided together for Custom Export
2104
+
2105
+ **Insights**
2106
+ - Added video room and participant summary apis.
2107
+
2108
+ **Ip_messaging**
2109
+ - Create separate definition for ip-messaging
2110
+ - Restore v2 endpoints for ip-messaging
2111
+
2112
+ **Verify**
2113
+ - Verify Push madurity were updated from `preview` to `beta`
2114
+ - `twilio_sandbox_mode` header was removed from Verify Push resources **(breaking change)**
2115
+
2116
+ **Video**
2117
+ - [Rooms] Add Recording Rules API
2118
+
2119
+
2120
+ [2020-10-14] Version 5.41.0
2121
+ ---------------------------
2122
+ **Ai**
2123
+ - Add `Annotation Project` and `Annotation Task` endpoints
2124
+ - Add `Primitives` endpoints
2125
+ - Add `meta.total` to the search endpoint
2126
+
2127
+ **Conversations**
2128
+ - Mutable Conversation Unique Names
2129
+
2130
+ **Insights**
2131
+ - Added `trust` to summary.
2132
+
2133
+ **Preview**
2134
+ - Simplified `Channels` resource. The path is now `/BrandedChannels/branded_channel_sid/Channels` **(breaking change)**
2135
+
2136
+ **Verify**
2137
+ - Changed parameters (`config` and `binding`) to use dot notation instead of JSON string (e.i. Before: `binding={"alg":"ES256", "public_key": "xxx..."}`, Now: `Binding.Alg="ES256"`, `Binding.PublicKey="xxx..."`). **(breaking change)**
2138
+ - Changed parameters (`details` and `hidden_details`) to use dot notation instead of JSON string (e.i. Before: `details={"message":"Test message", "fields": "[{\"label\": \"Action 1\", \"value\":\"value 1\"}]"}`, Now: `details.Message="Test message"`, `Details.Fields=["{\"label\": \"Action 1\", \"value\":\"value 1\"}"]`). **(breaking change)**
2139
+ - Removed `notify_service_sid` from `push` service configuration object. Add `Push.IncludeDate`, `Push.ApnCredentialSid` and `Push.FcmCredentialSid` service configuration parameters. **(breaking change)**
2140
+
2141
+
2142
+ [2020-09-28] Version 5.40.4
2143
+ ---------------------------
2144
+ **Library - Docs**
2145
+ - [PR #535](https://github.com/twilio/twilio-ruby/pull/535): convert markdown links to RDoc formatted links. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
2146
+
2147
+ **Api**
2148
+ - Add optional property `call_reason` in the participant create request
2149
+ - Make sip-domain-service endpoints available in stage-au1 and prod-au1
2150
+
2151
+ **Messaging**
2152
+ - Removed beta feature gate from WhatsApp Templates API
2153
+
2154
+ **Serverless**
2155
+ - Add Build Status endpoint
2156
+
2157
+ **Video**
2158
+ - [Rooms] Add new room type "go" for WebRTC Go
2159
+
2160
+
2161
+ [2020-09-21] Version 5.40.3
2162
+ ---------------------------
2163
+ **Library - Fix**
2164
+ - [PR #534](https://github.com/twilio/twilio-ruby/pull/534): allow API redirect responses. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2165
+
2166
+ **Accounts**
2167
+ - Add Auth Token rotation API
2168
+
2169
+ **Conversations**
2170
+ - Change resource path for Webhook Configuration
2171
+
2172
+ **Events**
2173
+ - Schemas API get all Schemas names and versions
2174
+
2175
+
2176
+ [2020-09-16] Version 5.40.2
2177
+ ---------------------------
2178
+ **Library - Fix**
2179
+ - [PR #530](https://github.com/twilio/twilio-ruby/pull/530): drop the page limit calculation. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2180
+
2181
+ **Conversations**
2182
+ - Expose Configuration and Service Configuration resources
2183
+ - Add Unique Name support for Conversations
2184
+ - Add Services Push Notification resource
2185
+ - Add Service scoped Conversation resources
2186
+ - Support Identity in Users resource endpoint
2187
+
2188
+ **Messaging**
2189
+ - GA Deactivation List API
2190
+ - Add domain cert API's(fetch, update, create) for link tracker
2191
+
2192
+ **Numbers**
2193
+ - Add API endpoint for Supporting Document deletion
2194
+
2195
+ **Proxy**
2196
+ - Updated usage of FailOnParticipantConflict param to apply only to accounts with ProxyAllowParticipantConflict account flag
2197
+
2198
+ **Supersim**
2199
+ - Add `AccountSid` parameter to Sim resource update request
2200
+ - Add `ready` status as an available status for a Sim resource
2201
+
2202
+
2203
+ [2020-09-02] Version 5.40.1
2204
+ ---------------------------
2205
+ **Library - Chore**
2206
+ - [PR #529](https://github.com/twilio/twilio-ruby/pull/529): sort files for deterministic require order. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2207
+
2208
+ **Ai**
2209
+ - Initial release
2210
+
2211
+ **Bulkexports**
2212
+ - removing public beta feature flag from BulkExports Jobs API
2213
+
2214
+ **Messaging**
2215
+ - Add Deactivation List API
2216
+ - Added page token parameter for fetch in WhatsApp Templates API
2217
+
2218
+ **Numbers**
2219
+ - Add API endpoint for End User deletion
2220
+
2221
+ **Routes**
2222
+ - Add Resource Route Configurations API
2223
+ - Add Route Configurations API
2224
+ - Initial Release
2225
+
2226
+ **Trunking**
2227
+ - Added `transfer_mode` property on Trunks.
2228
+
2229
+
2230
+ [2020-08-19] Version 5.40.0
2231
+ ---------------------------
2232
+ **Library - Chore**
2233
+ - [PR #526](https://github.com/twilio/twilio-ruby/pull/526): update GitHub branch references to use HEAD. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2234
+
2235
+ **Conversations**
2236
+ - Allow Identity addition to Participants
2237
+
2238
+ **Events**
2239
+ - Sinks API Get all Sinks
2240
+
2241
+ **Proxy**
2242
+ - Clarified usage of FailOnParticipantConflict param as experimental
2243
+ - Add FailOnParticipantConflict param to Proxy Session create and Proxy Participant create
2244
+
2245
+ **Supersim**
2246
+ - Add fleet, network, and isoCountryCode to the UsageRecords resource
2247
+ - Change sort order of UsageRecords from ascending to descending with respect to start time field, records are now returned newest to oldest
2248
+
2249
+ **Wireless**
2250
+ - Removed `Start` and `End` parameters from the Data Sessions list endpoint. **(breaking change)**
2251
+
2252
+
2253
+ [2020-08-05] Version 5.39.3
2254
+ ---------------------------
2255
+ **Messaging**
2256
+ - Add rejection reason support to WhatsApp API
2257
+ - Removed status parameter for create and update in WhatsApp Templates API
2258
+
2259
+ **Proxy**
2260
+ - Add FailOnParticipantConflict param to Proxy Session update
2261
+
2262
+ **Verify**
2263
+ - Add `CustomFriendlyName` optional parameter on Verification creation.
2264
+ - Changes in `Challenge` resource to update documentation of both `details` and `hidden_details` properties.
2265
+
2266
+
2267
+ [2020-07-22] Version 5.39.2
2268
+ ---------------------------
2269
+ **Api**
2270
+ - Add optional Click Tracking and Scheduling parameters to Create action of Message resource
2271
+
2272
+ **Supersim**
2273
+ - Add callback_url and callback_method parameters to Sim resource update request
2274
+
2275
+
2276
+ [2020-07-10] Version 5.39.1
2277
+ ---------------------------
2278
+ **Library - Fix**
2279
+ - [PR #520](https://github.com/twilio/twilio-ruby/pull/520): use ruby keyword arguments for all action methods. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2280
+
2281
+
2282
+ [2020-07-08] Version 5.39.0
2283
+ ---------------------------
2284
+ **Library - Feature**
2285
+ - [PR #516](https://github.com/twilio/twilio-ruby/pull/516): add custom header support. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2286
+
2287
+ **Library - Chore**
2288
+ - [PR #515](https://github.com/twilio/twilio-ruby/pull/515): regenerate library after generator refactor. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2289
+
2290
+ **Conversations**
2291
+ - Allow Address updates for Participants
2292
+ - Message delivery receipts
2293
+
2294
+ **Events**
2295
+ - Add account_sid to subscription and subscribed_events resources
2296
+
2297
+ **Flex**
2298
+ - Changed `wfm_integrations` Flex Configuration key to private **(breaking change)**
2299
+
2300
+ **Messaging**
2301
+ - Add error states to WhatsApp Sender status with failed reason **(breaking change)**
2302
+ - Delete WhatsApp Template API
2303
+ - Update WhatsApp Template API
2304
+ - Add WhatsApp Template Get Api (fetch and read)
2305
+
2306
+ **Numbers**
2307
+ - Add `valid_until` in the Bundles resource
2308
+ - Add API for Bundle deletion
2309
+
2310
+ **Verify**
2311
+ - Removed support for `sms`, `totp` and `app-push` factor types in Verify push **(breaking change)**
2312
+
2313
+
2314
+ [2020-06-24] Version 5.38.0
2315
+ ---------------------------
2316
+ **Api**
2317
+ - Added optional `JitterBufferSize` parameter for creating conference participant
2318
+ - Added optional `label` property for conference participants
2319
+ - Added optional parameter `caller_id` for creating conference participant endpoint.
2320
+
2321
+ **Autopilot**
2322
+ - Remove Export resource from Autopilot Assistant
2323
+
2324
+ **Conversations**
2325
+ - Expose Conversation timers
2326
+
2327
+ **Monitor**
2328
+ - Update start/end date filter params to support date-or-time format **(breaking change)**
2329
+
2330
+ **Numbers**
2331
+ - Add `provisionally-approved` as a Supporting Document status
2332
+
2333
+ **Preview**
2334
+ - Removed `Authy` resources. **(breaking change)**
2335
+
2336
+ **Supersim**
2337
+ - Add ready state to the allowed transitions in the sim update call behind the feature flag supersim.ready-state.v1
2338
+
2339
+ **Verify**
2340
+ - Webhook resources added to Verify services and put behind the `api.verify.push` beta feature
2341
+
2342
+ **Twiml**
2343
+ - Add more supported locales for the `Gather` verb.
2344
+
2345
+
2346
+ [2020-06-10] Version 5.37.0
2347
+ ---------------------------
2348
+ **Library - Docs**
2349
+ - [PR #514](https://github.com/twilio/twilio-ruby/pull/514): link to handling exceptions. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2350
+ - [PR #513](https://github.com/twilio/twilio-ruby/pull/513): link to custom HTTP client instructions. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2351
+
2352
+ **Api**
2353
+ - Added `pstnconnectivity` to `usage_record` API
2354
+
2355
+ **Autopilot**
2356
+ - Add dialogue_sid param to Query list resource
2357
+
2358
+ **Notify**
2359
+ - delivery_callback_url and delivery_callback_enabled added
2360
+
2361
+ **Numbers**
2362
+ - Add `provisionally-approved` as a Bundle status
2363
+
2364
+ **Preview**
2365
+ - `BrandsInformation` endpoint now returns a single `BrandsInformation`
2366
+ - Deleted phone number required field in the brand phone number endpoint from `kyc-api`
2367
+ - Removed insights `preview API` from API Definitions **(breaking change)**
2368
+ - Added `BrandsInformation` endpoint to query brands information stored in KYC
2369
+
2370
+ **Supersim**
2371
+ - Require a Network Access Profile when creating a Fleet **(breaking change)**
2372
+
2373
+
2374
+ [2020-05-27] Version 5.36.0
2375
+ ---------------------------
2376
+ **Api**
2377
+ - Added `reason_conference_ended` and `call_sid_ending_conference` to Conference read/fetch/update
2378
+ - Fixed some examples to use the correct "TK" SID prefix for Trunk resources.
2379
+
2380
+ **Authy**
2381
+ - Renamed `twilio_authy_sandbox_mode` headers to `twilio_sandbox_mode` **(breaking change)**
2382
+ - Renamed `Twilio-Authy-*` headers to `Twilio-Veriry-*` **(breaking change)**
2383
+
2384
+ **Flex**
2385
+ - Adding `flex_service_instance_sid` to Flex Configuration
2386
+
2387
+ **Preview**
2388
+ - Removed insights preview API from API Definitions **(breaking change)**
2389
+ - Added `Channels` endpoint to brand a phone number for BrandedCalls
2390
+
2391
+ **Serverless**
2392
+ - Add Build Sid to Log results
2393
+
2394
+ **Supersim**
2395
+ - Add Network Access Profile resource Networks subresource
2396
+ - Allow specifying a Data Limit on Fleets
2397
+
2398
+ **Trunking**
2399
+ - Fixed some examples to use the correct "TK" SID prefix for Trunk resources.
2400
+
2401
+
2402
+ [2020-05-20] Version 5.35.0
2403
+ ---------------------------
2404
+ **Library - Feature**
2405
+ - [PR #512](https://github.com/twilio/twilio-ruby/pull/512): add regional and edge support. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2406
+
2407
+
2408
+ [2020-05-13] Version 5.34.1
2409
+ ---------------------------
2410
+ **Api**
2411
+ - Add optional `emergency_caller_sid` parameter to SIP Domain
2412
+ - Updated `call_reason` optional property to be treated as PII
2413
+ - Added optional BYOC Trunk Sid property to Sip Domain API resource
2414
+
2415
+ **Autopilot**
2416
+ - Add Restore resource to Autopilot Assistant
2417
+
2418
+ **Contacts**
2419
+ - Added contacts Create API definition
2420
+
2421
+ **Events**
2422
+ - Subscriptions API initial release
2423
+
2424
+ **Numbers**
2425
+ - Add Evaluations API
2426
+
2427
+ **Supersim**
2428
+ - Allow filtering the Fleets resource by Network Access Profile
2429
+ - Allow assigning a Network Access Profile when creating and updating a Fleet
2430
+ - Add Network Access Profiles resource
2431
+
2432
+ **Verify**
2433
+ - Add `CustomCode` optional parameter on Verification creation.
2434
+ - Add delete action on Service resource.
2435
+
2436
+ **Voice**
2437
+ - Added endpoints for BYOC trunks, SIP connection policies and source IP mappings
2438
+
2439
+
2440
+ [2020-04-29] Version 5.34.0
2441
+ ---------------------------
2442
+ **Library - Feature**
2443
+ - [PR #511](https://github.com/twilio/twilio-ruby/pull/511): add details to error object. Thanks to [@ashish-s](https://github.com/ashish-s)!
2444
+
2445
+ **Preview**
2446
+ - Added `Dispatch` version to `preview`
2447
+
2448
+ **Studio**
2449
+ - Reroute Create Execution for V2 to the V2 downstream
2450
+
2451
+ **Supersim**
2452
+ - Add Networks resource
2453
+
2454
+
2455
+ [2020-04-15] Version 5.33.1
2456
+ ---------------------------
2457
+ **Library - Fix**
2458
+ - [PR #506](https://github.com/twilio/twilio-ruby/pull/506): loosen the faraday version requirement. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2459
+
2460
+ **Library - Chore**
2461
+ - [PR #508](https://github.com/twilio/twilio-ruby/pull/508): Refer to https:// homepage in gemspec. Thanks to [@olleolleolle](https://github.com/olleolleolle)!
2462
+ - [PR #507](https://github.com/twilio/twilio-ruby/pull/507): Travis: Drop unused "sudo: false" directive. Thanks to [@olleolleolle](https://github.com/olleolleolle)!
2463
+ - [PR #498](https://github.com/twilio/twilio-ruby/pull/498): autoload TwiML to save memory on load. Thanks to [@philnash](https://github.com/philnash)!
2464
+ - [PR #499](https://github.com/twilio/twilio-ruby/pull/499): autoload JWT classes. Thanks to [@philnash](https://github.com/philnash)!
2465
+ - [PR #505](https://github.com/twilio/twilio-ruby/pull/505): remove S3 URLs from test data. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2466
+
2467
+ **Api**
2468
+ - Updated description for property `call_reason` in the call create request
2469
+
2470
+ **Contacts**
2471
+ - Added Read, Delete All, and Delete by SID docs
2472
+ - Initial Release
2473
+
2474
+ **Studio**
2475
+ - Rename `flow_valid` to `flow_validate`
2476
+ - Removed `errors` and `warnings` from flows error response and added new property named `details`
2477
+ - Add Update Execution endpoints to v1 and v2 to end execution via API
2478
+ - Add new `warnings` attribute v2 flow POST api
2479
+
2480
+ **Twiml**
2481
+ - Add enhanced attribute to use with `speech_model` for the `Gather` verb
2482
+
2483
+
2484
+ [2020-04-01] Version 5.33.0
2485
+ ---------------------------
2486
+ **Library - Chore**
2487
+ - [PR #502](https://github.com/twilio/twilio-ruby/pull/502): Fix a typo in JWT::TaskRouterUtils. Thanks to [@rywall](https://github.com/rywall)!
2488
+
2489
+ **Api**
2490
+ - Add optional 'secure' parameter to SIP Domain
2491
+
2492
+ **Authy**
2493
+ - Added an endpoint to list the challenges of a factor
2494
+ - Added optional parameter `Push` when updating a service to send the service level push factor configuration
2495
+
2496
+ **Bulkexports**
2497
+ - exposing bulk exports (vault/slapchop) API as public beta API
2498
+
2499
+ **Flex**
2500
+ - Adding `queue_stats_configuration` and `wfm_integrations` to Flex Configuration
2501
+
2502
+ **Serverless**
2503
+ - Add Function Version Content endpoint
2504
+ - Allow build_sid to be optional for deployment requests
2505
+
2506
+ **Supersim**
2507
+ - Remove `deactivated` status for Super SIM which is replaced by `inactive` **(breaking change)**
2508
+
2509
+
2510
+ [2020-03-18] Version 5.32.0
2511
+ ---------------------------
2512
+ **Api**
2513
+ - Add optional `emergency_calling_enabled` parameter to SIP Domain
2514
+ - Add optional property `call_reason` in the call create request
2515
+
2516
+ **Authy**
2517
+ - Added `friendly_name` and `config` as optional params to Factor update
2518
+ - Added `config` param to Factor creation **(breaking change)**
2519
+
2520
+ **Preview**
2521
+ - Renamed `SuccessRate` endpoint to `ImpressionsRate` for Branded Calls (fka. Verified by Twilio) **(breaking change)**
2522
+
2523
+
2524
+ [2020-03-04] Version 5.31.6
2525
+ ---------------------------
2526
+ **Library - Chore**
2527
+ - [PR #497](https://github.com/twilio/twilio-ruby/pull/497): clean up and upgrade dev dependencies. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2528
+
2529
+ **Authy**
2530
+ - Added the `configuration` property to services to return the service level configurations
2531
+ - Added optional parameter `Push` when creating a service to send the service level push factor configuration
2532
+ - Remove FactorStrength support for Factors and Challenges **(breaking change)**
2533
+
2534
+ **Messaging**
2535
+ - Correct the alpha sender capabilities property type **(breaking change)**
2536
+
2537
+ **Preview**
2538
+ - Removed `/Devices` register Branded Calls endpoint, as per iOS sample app deprecation **(breaking change)**
2539
+ - Removed `Twilio-Sandbox-Mode` request header from the Branded Calls endpoints, as not officially supported **(breaking change)**
2540
+ - Removed `Verify` version from `preview` subdomain in favor to `verify` subdomain. **(breaking change)**
2541
+
2542
+ **Serverless**
2543
+ - Add UI-Editable field to Services
2544
+
2545
+ **Supersim**
2546
+ - Add `inactive` status for Super SIM which is an alias for `deactivated`
2547
+
2548
+ **Taskrouter**
2549
+ - Adding value range to `priority` in task endpoint
2550
+
2551
+ **Verify**
2552
+ - Fix `SendCodeAttempts` type. It's an array of objects instead of a unique object. **(breaking change)**
2553
+
2554
+
2555
+ [2020-02-19] Version 5.31.5
2556
+ ---------------------------
2557
+ **Library - Chore**
2558
+ - [PR #495](https://github.com/twilio/twilio-ruby/pull/495): bump the rubocop version. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2559
+
2560
+ **Api**
2561
+ - Make call create parameters `async_amd`, `async_amd_status_callback`, and `async_amd_status_callback_method` public
2562
+ - Add `trunk_sid` as an optional field to Call resource fetch/read responses
2563
+ - Add property `queue_time` to successful response of create, fetch, and update requests for Call
2564
+ - Add optional parameter `byoc` to conference participant create.
2565
+
2566
+ **Authy**
2567
+ - Added support for challenges associated to push factors
2568
+
2569
+ **Flex**
2570
+ - Adding `ui_dependencies` to Flex Configuration
2571
+
2572
+ **Messaging**
2573
+ - Deprecate Session API **(breaking change)**
2574
+
2575
+ **Numbers**
2576
+ - Add Regulations API
2577
+
2578
+ **Studio**
2579
+ - Add Execution and Step endpoints to v2 API
2580
+ - Add webhook_url to Flow response and add new /TestUsers endpoint to v2 API
2581
+
2582
+ **Taskrouter**
2583
+ - Adding `longest_relative_task_age_in_queue` and `longest_relative_task_sid_in_queue` to TaskQueue Real Time Statistics API.
2584
+ - Add `wait_duration_in_queue_until_accepted` aggregations to TaskQueues Cumulative Statistics endpoint
2585
+ - Add TaskQueueEnteredDate property to Tasks.
2586
+
2587
+ **Video**
2588
+ - [Composer] Clarification for the composition hooks creation documentation: one source is mandatory, either the `audio_sources` or the `video_layout`, but one of them has to be provided
2589
+ - [Composer] `audio_sources` type on the composer HTTP POST command, changed from `sid[]` to `string[]` **(breaking change)**
2590
+ - [Composer] Clarification for the composition creation documentation: one source is mandatory, either the `audio_sources` or the `video_layout`, but one of them has to be provided
2591
+
2592
+
2593
+ [2020-02-05] Version 5.31.4
2594
+ ---------------------------
2595
+ **Api**
2596
+ - Making content retention and address retention public
2597
+ - Update `status` enum for Messages to include 'partially_delivered'
2598
+
2599
+ **Authy**
2600
+ - Added support for push factors
2601
+
2602
+ **Autopilot**
2603
+ - Add one new property in Query i.e dialogue_sid
2604
+
2605
+ **Verify**
2606
+ - Add `SendCodeAttempts` to create verification response.
2607
+
2608
+ **Video**
2609
+ - Clarification in composition creation documentation: one source is mandatory, either `audio_sources` or `video_layout`, but on of them has to be provided
2610
+
2611
+ **Twiml**
2612
+ - Add Polly Neural voices.
2613
+
2614
+
2615
+ [2020-01-22] Version 5.31.3
2616
+ ---------------------------
2617
+ **Library - Docs**
2618
+ - [PR #492](https://github.com/twilio/twilio-ruby/pull/492): baseline all the templated markdown docs. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2619
+
2620
+ **Library - Chore**
2621
+ - [PR #490](https://github.com/twilio/twilio-ruby/pull/490): add support for Ruby 2.7. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2622
+
2623
+ **Api**
2624
+ - Add payments public APIs
2625
+ - Add optional parameter `byoc` to call create request.
2626
+
2627
+ **Flex**
2628
+ - Updating a Flex Flow `creation_on_message` parameter documentation
2629
+
2630
+ **Preview**
2631
+ -
2632
+ - Removed Verify v2 from preview in favor of its own namespace as GA **(breaking change)**
2633
+
2634
+ **Studio**
2635
+ - Flow definition type update from string to object
2636
+
2637
+ **Verify**
2638
+ - Add `AppHash` parameter when creating a Verification.
2639
+ - Add `DoNotShareWarningEnabled` parameter to the Service resource.
2640
+
2641
+ **Twiml**
2642
+ - Add `track` attribute to siprec noun.
2643
+ - Add attribute `byoc` to `<Number>`
2644
+
2645
+
2646
+ [2020-01-08] Version 5.31.2
2647
+ ---------------------------
2648
+ **Library - Chore**
2649
+ - [PR #491](https://github.com/twilio/twilio-ruby/pull/491): upgrade rubocop to 0.79.0. Thanks to [@juampi](https://github.com/juampi)!
2650
+ - [PR #489](https://github.com/twilio/twilio-ruby/pull/489): upgrade faraday to 1.0.0. Thanks to [@juampi](https://github.com/juampi)!
2651
+
2652
+ **Numbers**
2653
+ - Add Regulatory Compliance CRUD APIs
2654
+
2655
+ **Studio**
2656
+ - Add parameter validation for Studio v2 Flows API
2657
+
2658
+ **Twiml**
2659
+ - Add support for `speech_model` to `Gather` verb
2660
+
2661
+
2662
+ [2019-12-18] Version 5.31.1
2663
+ ---------------------------
2664
+ **Library - Chore**
2665
+ - [PR #488](https://github.com/twilio/twilio-ruby/pull/488): upgrade rubocop to 0.77.0. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2666
+
2667
+ **Preview**
2668
+ - Add `/Insights/SuccessRate` endpoint for Businesses Branded Calls (Verified by Twilio)
2669
+
2670
+ **Studio**
2671
+ - StudioV2 API in beta
2672
+
2673
+ **Verify**
2674
+ - Add `MailerSid` property to Verify Service resource.
2675
+
2676
+ **Wireless**
2677
+ - Added `data_limit_strategy` to Rate Plan resource.
2678
+
2679
+
2680
+ [2019-12-12] Version 5.31.0
2681
+ ---------------------------
2682
+ **Api**
2683
+ - Make `twiml` conditional for create. One of `url`, `twiml`, or `application_sid` is now required.
2684
+ - Add `bundle_sid` parameter to /IncomingPhoneNumbers API
2685
+ - Removed discard / obfuscate parameters from ContentRetention, AddressRetention **(breaking change)**
2686
+
2687
+ **Chat**
2688
+ - Added `last_consumed_message_index` and `last_consumption_timestamp` parameters in update method for UserChannel resource **(breaking change)**
2689
+
2690
+ **Conversations**
2691
+ - Add Participant SID to Message properties
2692
+
2693
+ **Messaging**
2694
+ - Fix incorrectly typed capabilities property for ShortCodes. **(breaking change)**
2695
+
2696
+
2697
+ [2019-12-04] Version 5.30.0
2698
+ ---------------------------
2699
+ **Library**
2700
+ - [PR #485](https://github.com/twilio/twilio-ruby/pull/485): docs: add supported language versions to README. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2701
+ - [PR #445](https://github.com/twilio/twilio-ruby/pull/445): fix: handle building the HTTP client proxy URI without authentication. Thanks to [@laka3000](https://github.com/laka3000)!
2702
+
2703
+ **Api**
2704
+ - Add optional `twiml` parameter for call create
2705
+
2706
+ **Chat**
2707
+ - Added `delete` method in UserChannel resource
2708
+
2709
+ **Conversations**
2710
+ - Allow Messaging Service update
2711
+
2712
+ **Taskrouter**
2713
+ - Support ReEvaluateTasks parameter on Workflow update
2714
+
2715
+ **Twiml**
2716
+ - Remove unsupported `mixed_track` value from `<Stream>` **(breaking change)**
2717
+ - Add missing fax `<Receive>` optional attributes
2718
+
2719
+
2720
+ [2019-11-13] Version 5.29.1
2721
+ ---------------------------
2722
+ **Api**
2723
+ - Make `persistent_action` parameter public
2724
+ - Add `twiml` optional private parameter for call create
2725
+
2726
+ **Autopilot**
2727
+ - Add Export resource to Autopilot Assistant.
2728
+
2729
+ **Flex**
2730
+ - Added Integration.RetryCount attribute to Flex Flow
2731
+ - Updating a Flex Flow `channel_type` options documentation
2732
+
2733
+ **Insights**
2734
+ - Added edges to events and metrics
2735
+ - Added new endpoint definitions for Events and Metrics
2736
+
2737
+ **Messaging**
2738
+ - **create** support for sender registration
2739
+ - **fetch** support for fetching a sender
2740
+ - **update** support for sender verification
2741
+
2742
+ **Supersim**
2743
+ - Add `Direction` filter parameter to list commands endpoint
2744
+ - Allow filtering commands list by Sim Unique Name
2745
+ - Add `Iccid` filter parameter to list sims endpoint
2746
+
2747
+ **Twiml**
2748
+ - Add support for `<Refer>` verb
2749
+
2750
+
2751
+ [2019-10-30] Version 5.29.0
2752
+ ---------------------------
2753
+ **Library**
2754
+ - [PR #481](https://github.com/twilio/twilio-ruby/pull/481): added request validation for urls with and without ports. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2755
+ - [PR #480](https://github.com/twilio/twilio-ruby/pull/480): Update resources after sorting. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2756
+ - [PR #479](https://github.com/twilio/twilio-ruby/pull/479): Auto-deploy via Travis CI upon tagged commit to main. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2757
+
2758
+ **Api**
2759
+ - Add new usage categories to the public api `sms-messages-carrierfees` and `mms-messages-carrierfees`
2760
+
2761
+ **Conversations**
2762
+ - Add ProjectedAddress to Conversations Participant resource
2763
+
2764
+ **Preview**
2765
+ - Implemented different `Sid` for Current Calls (Verified by Twilio), instead of relying in `Call.Sid` from Voice API team **(breaking change)**
2766
+
2767
+ **Supersim**
2768
+ - Add List endpoint to Commands resource for Super Sim Pilot
2769
+ - Add UsageRecords resource for the Super Sim Pilot
2770
+ - Add List endpoint to UsageRecords resource for the Super Sim Pilot
2771
+ - Allow assigning a Sim to a Fleet by Fleet SID or Unique Name for Super SIM Pilot
2772
+ - Add Update endpoint to Fleets resource for Super Sim Pilot
2773
+ - Add Fetch endpoint to Commands resource for Super Sim Pilot
2774
+ - Allow filtering the Sims resource List endpoint by Fleet
2775
+ - Add List endpoint to Fleets resource for Super Sim Pilot
2776
+
2777
+ **Wireless**
2778
+ - Added `account_sid` to Sim update parameters.
2779
+
2780
+ **Twiml**
2781
+ - Add new locales and voices for `Say` from Polly
2782
+
2783
+
2784
+ [2019-10-16] Version 5.28.0
2785
+ ---------------------------
2786
+ **Library**
2787
+ - [PR #476](https://github.com/twilio/twilio-ruby/pull/476): Update a few property types in the lookups and trunking responses. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2788
+ - [PR #477](https://github.com/twilio/twilio-ruby/pull/477): Update instance property ordering. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2789
+ - [PR #475](https://github.com/twilio/twilio-ruby/pull/475): Update the call price to be optional for deserializing. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2790
+ - [PR #474](https://github.com/twilio/twilio-ruby/pull/474): breaking: Correct video composition date types. Thanks to [@childish-sambino](https://github.com/childish-sambino)! **(breaking change)**
2791
+
2792
+ **Api**
2793
+ - Add new property `attempt` to sms_messages
2794
+ - Fixed a typo in the documentation for Feedback outcome enum **(breaking change)**
2795
+ - Update the call price to be optional for deserializing **(breaking change)**
2796
+
2797
+ **Flex**
2798
+ - Added `JanitorEnabled` attribute to Flex Flow
2799
+ - Change `features_enabled` Flex Configuration key to private **(breaking change)**
2800
+
2801
+ **Supersim**
2802
+ - Add Fetch endpoint to Fleets resource for Super Sim Pilot
2803
+ - Allow assigning a Sim to a Fleet for Super Sim Pilot
2804
+ - Add Create endpoint to Fleets resource for Super Sim Pilot
2805
+
2806
+ **Twiml**
2807
+ - Update `<Conference>` rename "whisper" attribute to "coach" **(breaking change)**
2808
+
2809
+
2810
+ [2019-10-02] Version 5.27.1
2811
+ ---------------------------
2812
+ **Library**
2813
+ - [PR #473](https://github.com/twilio/twilio-ruby/pull/473): Wrap any Faraday error as a TwilioError. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2814
+ - [PR #472](https://github.com/twilio/twilio-ruby/pull/472): Fix the Dockerfile to use the latest Ruby 2.4 and ignore the Gem lock file. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2815
+
2816
+ **Conversations**
2817
+ - Add media to Conversations Message resource
2818
+
2819
+ **Supersim**
2820
+ - Add List endpoint to Sims resource for Super Sim Pilot
2821
+
2822
+
2823
+ [2019-09-18] Version 5.27.0
2824
+ ----------------------------
2825
+ **Library**
2826
+ - [PR #470](https://github.com/twilio/twilio-ruby/pull/470): breaking: Catch and wrap Faraday client errors. Thanks to [@childish-sambino](https://github.com/childish-sambino)! **(breaking change)**
2827
+ - [PR #471](https://github.com/twilio/twilio-ruby/pull/471): Drop support for Ruby < 2.4 and add 2.6. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2828
+ - [PR #468](https://github.com/twilio/twilio-ruby/pull/468): Add URI encoding for phone numbers. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2829
+ - [PR #469](https://github.com/twilio/twilio-ruby/pull/469): Add TwiML FaxResponse require to top-level file. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2830
+ - [PR #450](https://github.com/twilio/twilio-ruby/pull/450): Update encode64 to strict_encode64 in RequestValidator#build_signature_for. Thanks to [@kitallis](https://github.com/kitallis)!
2831
+ - [PR #467](https://github.com/twilio/twilio-ruby/pull/467): Add a global configuration for the HTTP client. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2832
+ - [PR #466](https://github.com/twilio/twilio-ruby/pull/466): Use the 'base_url' instead of the 'host' for HTTP client URL. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2833
+
2834
+ **Numbers**
2835
+ - Add v2 of the Identites API
2836
+
2837
+ **Preview**
2838
+ - Changed authentication method for SDK Trusted Comms endpoints: `/CPS`, `/CurrentCall`, and `/Devices`. Please use `Authorization: Bearer <xCNAM JWT>` **(breaking change)**
2839
+
2840
+ **Voice**
2841
+ - Add Recordings endpoints
2842
+
2843
+
2844
+ [2019-09-04] Version 5.26.0
2845
+ ----------------------------
2846
+ **Library**
2847
+ - [PR #463](https://github.com/twilio/twilio-ruby/pull/463): Reduce line length to satisfy rubocop constraints. Thanks to [@igracia](https://github.com/igracia)!
2848
+ - [PR #399](https://github.com/twilio/twilio-ruby/pull/399): breaking: Added proxy protocol to HTTP Client constructor. Thanks to [@po5i](https://github.com/po5i)! **(breaking change)**
2849
+ - [PR #462](https://github.com/twilio/twilio-ruby/pull/462): Correct 'delete' method doc to indicate 'false' when resource not deleted. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2850
+ - [PR #441](https://github.com/twilio/twilio-ruby/pull/441): Link to actual documentation. Thanks to [@alexford](https://github.com/alexford)!
2851
+
2852
+ **Api**
2853
+ - Pass Twiml in call update request
2854
+
2855
+ **Conversations**
2856
+ - Add attributes to Conversations resources
2857
+
2858
+ **Flex**
2859
+ - Adding `features_enabled` and `serverless_service_sids` to Flex Configuration
2860
+
2861
+ **Messaging**
2862
+ - Message API required params updated **(breaking change)**
2863
+
2864
+ **Preview**
2865
+ - Added support for the optional `CallSid` to `/BrandedCalls` endpoint
2866
+
2867
+
2868
+ [2019-08-21] Version 5.25.4
2869
+ ----------------------------
2870
+ **Library**
2871
+ - [PR #460](https://github.com/twilio/twilio-ruby/pull/460): Update the IP messaging domain name to be 'chat'. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2872
+ - [PR #458](https://github.com/twilio/twilio-ruby/pull/458): Update TwiML docs for naming overrides. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2873
+
2874
+ **Conversations**
2875
+ - Add Chat Conversation SID to conversation default output properties
2876
+
2877
+ **Flex**
2878
+ - Adding `outbound_call_flows` object to Flex Configuration
2879
+ - Adding read and fetch to channels API
2880
+
2881
+ **Supersim**
2882
+ - Add Sims and Commands resources for the Super Sim Pilot
2883
+
2884
+ **Sync**
2885
+ - Added configuration option for enabling webhooks from REST.
2886
+
2887
+ **Wireless**
2888
+ - Added `usage_notification_method` and `usage_notification_url` properties to `rate_plan`.
2889
+
2890
+ **Twiml**
2891
+ - Add support for `ach-debit` transactions in `Pay` verb
2892
+
2893
+
2894
+ [2019-08-05] Version 5.25.3
2895
+ ----------------------------
2896
+ **Preview**
2897
+ - Added support for the header `Twilio-Sandbox-Mode` to mock all Voice dependencies
2898
+
2899
+ **Twiml**
2900
+ - Add support for `<Siprec>` noun
2901
+ - Add support for `<Stream>` noun
2902
+ - Create verbs `<Start>` and `<Stop>`
2903
+
2904
+
2905
+ [2019-07-24] Version 5.25.2
2906
+ ----------------------------
2907
+ **Insights**
2908
+ - Added `properties` to summary.
2909
+
2910
+ **Preview**
2911
+ - Added endpoint to brand a call without initiating it, so it can be initiated manually by the Customer
2912
+
2913
+ **Twiml**
2914
+ - Update `<Conference>` recording events **(breaking change)**
2915
+
2916
+
2917
+ [2019-07-10] Version 5.25.1
2918
+ ----------------------------
2919
+ **Api**
2920
+ - Make `friendly_name` optional for applications create
2921
+ - Add new property `as_of` date to Usage Record API calls
2922
+
2923
+ **Wireless**
2924
+ - Added Usage Records resource.
2925
+
2926
+
2927
+ [2019-06-26] Version 5.25.0
2928
+ ----------------------------
2929
+ **Autopilot**
2930
+ - Adds two new properties in Assistant i.e needs_model_build and development_stage
2931
+
2932
+ **Preview**
2933
+ - Changed phone numbers from _URL|Path_ to `X-XCNAM-Sensitive` headers **(breaking change)**
2934
+
2935
+ **Verify**
2936
+ - Add `MessagingConfiguration` resource to verify service
2937
+
2938
+
2939
+ [2019-06-12] Version 5.24.0
2940
+ ----------------------------
2941
+ **Autopilot**
2942
+ - Add Webhooks resource to Autopilot Assistant.
2943
+
2944
+ **Flex**
2945
+ - Added missing 'custom' type to Flex Flow
2946
+ - Adding `integrations` to Flex Configuration
2947
+
2948
+ **Insights**
2949
+ - Added attributes to summary.
2950
+
2951
+ **Messaging**
2952
+ - Message API Create updated with conditional params **(breaking change)**
2953
+
2954
+ **Proxy**
2955
+ - Document that Proxy will return a maximum of 100 records for read/list endpoints **(breaking change)**
2956
+ - Remove non-updatable property parameters for Session update (mode, participants) **(breaking change)**
2957
+
2958
+ **Sync**
2959
+ - Added reachability debouncing configuration options.
2960
+
2961
+ **Verify**
2962
+ - Add `RateLimits` and `Buckets` resources to Verify Services
2963
+ - Add `RateLimits` optional parameter on `Verification` creation.
2964
+
2965
+ **Twiml**
2966
+ - Fix `<Room>` participantIdentity casing
2967
+
2968
+
2969
+ [2019-05-29] Version 5.23.1
2970
+ ----------------------------
2971
+ **Verify**
2972
+ - Add `approved` to status enum
2973
+
2974
+
2975
+ [2019-05-15] Version 5.23.0
2976
+ ----------------------------
2977
+ **Api**
2978
+ - Make `method` optional for queue members update
2979
+
2980
+ **Chat**
2981
+ - Removed `webhook.*.format` update parameters in Service resource from public library visibility in v1 **(breaking change)**
2982
+
2983
+ **Insights**
2984
+ - Added client metrics as sdk_edge to summary.
2985
+ - Added optional query param processing_state.
2986
+
2987
+ **Numbers**
2988
+ - Add addtional metadata fields on a Document
2989
+ - Add status callback fields and parameters
2990
+
2991
+ **Taskrouter**
2992
+ - Added `channel_optimized_routing` attribute to task-channel endpoint
2993
+
2994
+ **Video**
2995
+ - [Rooms] Add Video Subscription API
2996
+
2997
+ **Wireless**
2998
+ - Added `imei` to Data Session resource.
2999
+ - Remove `imeisv` from Data Session resource. **(breaking change)**
3000
+
3001
+
3002
+ [2019-05-01] Version 5.22.3
3003
+ ----------------------------
3004
+ **Serverless**
3005
+ - Documentation
3006
+
3007
+ **Wireless**
3008
+ - Added `imeisv` to Data Session resource.
3009
+
3010
+
3011
+ [2019-04-24] Version 5.22.2
3012
+ ----------------------------
3013
+ **Api**
3014
+ - Add `verified` property to Addresses
3015
+
3016
+ **Numbers**
3017
+ - Add API for Identites and documents
3018
+
3019
+ **Proxy**
3020
+ - Add in use count on number instance
3021
+
3022
+
3023
+ [2019-04-12] Version 5.22.1
3024
+ ----------------------------
3025
+ **Flex**
3026
+ - Adding PluginService to Flex Configuration
3027
+
3028
+ **Numbers**
3029
+ - Add API for Proof of Addresses
3030
+
3031
+ **Proxy**
3032
+ - Clarify documentation for Service and Session fetch
3033
+
3034
+ **Serverless**
3035
+ - Serverless scaffolding
3036
+
3037
+
3038
+ [2019-03-28] Version 5.22.0
3039
+ ----------------------------
3040
+ **Api**
3041
+ - Remove optional `if_machine` call create parameter from helper libraries **(breaking change)**
3042
+ - Changed `call_sid` path parameter type on QueueMember fetch and update requests **(breaking change)**
3043
+
3044
+ **Voice**
3045
+ - changed file names to dialing_permissions prefix **(breaking change)**
3046
+
3047
+ **Wireless**
3048
+ - Added `ResetStatus` property to Sim resource to allow resetting connectivity via the API.
3049
+
3050
+
3051
+ [2019-03-15] Version 5.21.2
3052
+ ----------------------------
3053
+ **Library**
3054
+ - PR #444: Add Help Center and Support Ticket links to the README. Thanks to @childish-sambino!
3055
+
3056
+ **Api**
3057
+ - Add `machine_detection_speech_threshold`, `machine_detection_speech_end_threshold`, `machine_detection_silence_timeout` optional params to Call create request
3058
+
3059
+ **Flex**
3060
+ - Adding Flex Channel Orchestration
3061
+ - Adding Flex Flow
3062
+
3063
+
3064
+ [2019-03-06] Version 5.21.1
3065
+ ----------------------------
3066
+ **Twiml**
3067
+ - Add `de1` to `<Conference>` regions
3068
+
3069
+
3070
+ [2019-03-01] Version 5.21.0
3071
+ ----------------------------
3072
+ **Api**
3073
+ - Make conference participant preview parameters public
3074
+
3075
+ **Authy**
3076
+ - Added support for FactorType and FactorStrength for Factors and Challenges
3077
+
3078
+ **Iam**
3079
+ - First public release
3080
+
3081
+ **Verify**
3082
+ - Add endpoint to update/cancel a Verification **(breaking change)**
3083
+
3084
+ **Video**
3085
+ - [Composer] Make RoomSid mandatory **(breaking change)**
3086
+ - [Composer] Add `enqueued` state to Composition
3087
+
3088
+ **Twiml**
3089
+ - Update message body to not be required for TwiML `Dial` noun.
3090
+
3091
+
3092
+ [2019-02-15] Version 5.20.1
3093
+ ----------------------------
3094
+ **Library**
3095
+ - PR #438: Add a Ruby inspect method to Context classes. Thanks to @childish-sambino!
3096
+
3097
+ **Api**
3098
+ - Add `force_opt_in` optional param to Messages create request
3099
+ - Add agent conference category to usage records
3100
+
3101
+ **Flex**
3102
+ - First public release
3103
+
3104
+ **Taskrouter**
3105
+ - Adding `reject_pending_reservations` to worker update endpoint
3106
+ - Added `event_date_ms` and `worker_time_in_previous_activity_ms` to Events API response
3107
+ - Add ability to filter events by TaskChannel
3108
+
3109
+ **Verify**
3110
+ - Add `EnablePsd2` optional parameter for PSD2 on Service resource creation or update.
3111
+ - Add `Amount`, `Payee` optional parameters for PSD2.
3112
+
3113
+
3114
+ [2019-02-04] Version 5.20.0
3115
+ ----------------------------
3116
+ **Library**
3117
+ - PR #437: Switch body validator to use hex instead of base64. Thanks to @cjcodes!
3118
+
3119
+ **Video**
3120
+ - [Recordings] Add media type filter to list operation
3121
+ - [Composer] Filter Composition Hook resources by FriendlyName
3122
+
3123
+ **Twiml**
3124
+ - Update `language` enum for `Gather` to fix language code for Filipino (Philippines) and include additional supported languages **(breaking change)**
3125
+
3126
+
3127
+ [2019-01-11] Version 5.19.0
3128
+ ----------------------------
3129
+ **Library**
3130
+ - PR #436: Remove jruby-openssl requirement. Thanks to @philnash!
3131
+
3132
+ **Chat**
3133
+ - Mark Member attributes as PII
3134
+
3135
+ **Insights**
3136
+ - Initial revision.
3137
+
3138
+ **Proxy**
3139
+ - Remove unsupported query parameters **(breaking change)**
3140
+ - Remove invalid session statuses in doc
3141
+
3142
+ **Verify**
3143
+ - Add `lookup` information in the response when creating a new verification (depends on the LookupEnabled flag being enabled at the service level)
3144
+ - Add `VerificationSid` optional parameter on Verification check.
3145
+
3146
+
3147
+ [2018-12-17] Version 5.18.0
3148
+ ----------------------------
3149
+ **Authy**
3150
+ - Reverted the change to `FactorType` and `FormType`, avoiding conflicts with Helper Libraries reserved words (`type`) **(breaking change)**
3151
+
3152
+ **Proxy**
3153
+ - Remove incorrect parameter for Session List
3154
+
3155
+ **Studio**
3156
+ - Support date created filtering on list of executions
3157
+
3158
+ **Taskrouter**
3159
+ - Adding ability to Create, Modify and Delete Task Channels.
3160
+
3161
+ **Verify**
3162
+ - Add `SkipSmsToLandlines`, `TtsName`, `DtmfInputRequired` optional parameters on Service resource creation or update.
3163
+
3164
+ **Wireless**
3165
+ - Added delete action on Command resource.
3166
+ - Added delete action on Sim resource.
3167
+
3168
+ **Twiml**
3169
+ - Change `currency` from enum to string for `Pay` **(breaking change)**
3170
+
3171
+
3172
+ [2018-11-30] Version 5.17.0
3173
+ ----------------------------
3174
+ **Api**
3175
+ - Add `interactive_data` optional param to Messages create request
3176
+
3177
+ **Authy**
3178
+ - Required authentication for `/v1/Forms/{type}` endpoint **(breaking change)**
3179
+ - Removed `Challenge.reason` to `Challenge.responded_reason`
3180
+ - Removed `verification_sid` from Challenge responses
3181
+ - Removed `config` param from the Factor creation
3182
+ - Replaced all occurrences of `FactorType` and `FormType` in favor of a unified `Type` **(breaking change)**
3183
+
3184
+ **Chat**
3185
+ - Add Member attributes
3186
+
3187
+ **Preview**
3188
+ - Removed `Authy` version from `preview` subdomain in favor to `authy` subdomain. **(breaking change)**
3189
+
3190
+ **Verify**
3191
+ - Add `CustomCode` optional parameter on Verication creation.
3192
+
3193
+
3194
+ [2018-11-16] Version 5.16.0
3195
+ ----------------------------
3196
+ **Messaging**
3197
+ - Session API
3198
+
3199
+ **Twiml**
3200
+ - Change `master-card` to `mastercard` as `cardType` for `Pay` and `Prompt`, remove attribute `credential_sid` from `Pay` **(breaking change)**
3201
+
3202
+
3203
+ [2018-10-29] Version 5.15.2
3204
+ ----------------------------
3205
+ **Api**
3206
+ - Add new Balance resource:
3207
+ - url: '/v1/Accounts/{account sid}/Balance'
3208
+ - supported methods: GET
3209
+ - returns the balance of the account
3210
+
3211
+ **Proxy**
3212
+ - Add chat_instance_sid to Service
3213
+
3214
+ **Verify**
3215
+ - Add `Locale` optional parameter on Verification creation.
3216
+
3217
+
3218
+ [2018-10-15] Version 5.15.1
3219
+ ----------------------------
3220
+ **Api**
3221
+ - Add <Pay> Verb Transactions category to usage records
3222
+
3223
+ **Twiml**
3224
+ - Add support for `Pay` verb
3225
+
3226
+
3227
+ [2018-10-15] Version 5.15.0
3228
+ ----------------------------
3229
+ **Library**
3230
+ - PR #428: Fix custom param tests. Thanks to @ryan-rowland!
3231
+
3232
+ **Api**
3233
+ - Add `coaching` and `call_sid_to_coach` to participant properties, create and update requests.
3234
+
3235
+ **Authy**
3236
+ - Set public library visibility, and added PII stanza
3237
+ - Dropped support for `FactorType` param given new Factor prefixes **(breaking change)**
3238
+ - Supported `DELETE` actions for Authy resources
3239
+ - Move Authy Services resources to `authy` subdomain
3240
+
3241
+ **Autopilot**
3242
+ - Introduce `autopilot` subdomain with all resources from `preview.understand`
3243
+
3244
+ **Preview**
3245
+ - Renamed Understand intent to task **(breaking change)**
3246
+ - Deprecated Authy endpoints from `preview` to `authy` subdomain
3247
+
3248
+ **Taskrouter**
3249
+ - Allow TaskQueue ReservationActivitySid and AssignmentActivitySid to not be configured for MultiTask Workspaces
3250
+
3251
+ **Verify**
3252
+ - Add `LookupEnabled` optional parameter on Service resource creation or update.
3253
+ - Add `SendDigits` optional parameter on Verification creation.
3254
+ - Add delete action on Service resourse.
3255
+
3256
+ **Twiml**
3257
+ - Add custom parameters to TwiML `Client` noun and renamed the optional `name` field to `identity`. This is a breaking change in Ruby, and applications will need to transition from `dial.client ''` and `dial.client 'alice'` formats to `dial.client` and `dial.client(identity: alice)` formats. **(breaking change)**
3258
+
3259
+
3260
+ [2018-10-04] Version 5.14.1
3261
+ ----------------------------
3262
+ **Twiml**
3263
+ - Add `debug` to `Gather`
3264
+ - Add `participantIdentity` to `Room`
3265
+
3266
+
3267
+ [2018-09-28] Version 5.14.0
3268
+ ----------------------------
3269
+ **Api**
3270
+ - Set `call_sid_to_coach` parameter in participant to be `preview`
3271
+
3272
+ **Preview**
3273
+ - Renamed response headers for Challenge and Factors Signatures
3274
+ - Supported `totp` in Authy preview endpoints
3275
+ - Allowed `latest` in Authy Challenges endpoints
3276
+
3277
+ **Video**
3278
+ - [Composer] Add Composition Hook resources
3279
+
3280
+ **Voice**
3281
+ - changed path param name from parent_iso_code to iso_code for highrisk_special_prefixes api **(breaking change)**
3282
+ - added geo permissions public api
3283
+
3284
+
3285
+ [2018-09-20] Version 5.13.0
3286
+ ----------------------------
3287
+ **Preview**
3288
+ - Add `Form` resource to Authy preview given a `form_type`
3289
+ - Add Authy initial api-definitions in the 4 main resources: Services, Entities, Factors, Challenges
3290
+
3291
+ **Pricing**
3292
+ - add voice_numbers resource (v2)
3293
+
3294
+ **Verify**
3295
+ - Move from preview to beta **(breaking change)**
3296
+
3297
+
3298
+ [2018-08-31] Version 5.12.4
3299
+ ----------------------------
3300
+ **Library**
3301
+ - PR #427: VCORE-3651 Add support for *for* attribute in twiml element. Thanks to @nmahure!
3302
+
3303
+ **Api**
3304
+ - Add `call_sid_to_coach` parameter to participant create request
3305
+ - Add `voice_receive_mode` param to IncomingPhoneNumbers create
3306
+
3307
+ **Video**
3308
+ - [Recordings] Expose `offset` property in resource
3309
+
3310
+
3311
+ [2018-08-23] Version 5.12.3
3312
+ ----------------------------
3313
+ **Chat**
3314
+ - Add User Channel instance resource
3315
+
3316
+
3317
+ [2018-08-17] Version 5.12.2
3318
+ ----------------------------
3319
+ **Api**
3320
+ - Add Proxy Active Sessions category to usage records
3321
+
3322
+ **Preview**
3323
+ - Add `Actions` endpoints and remove `ResponseUrl` from assistants on the Understand api
3324
+
3325
+ **Pricing**
3326
+ - add voice_country resource (v2)
3327
+
3328
+
3329
+ [2018-08-09] Version 5.12.1
3330
+ ----------------------------
3331
+ **Library**
3332
+ - PR #426: Add a test showing how to emit "interpret-as". Thanks to @ekarson!
3333
+
3334
+ **Studio**
3335
+ - Studio is now GA
3336
+
3337
+
3338
+ [2018-08-03] Version 5.12.0
3339
+ ----------------------------
3340
+ **Library**
3341
+ - PR #420: Tag and push Docker latest image when deploying with TravisCI. Thanks to @jonatasbaldin!
3342
+
3343
+ **Chat**
3344
+ - Make message From field updatable
3345
+ - Add REST API webhooks
3346
+
3347
+ **Notify**
3348
+ - Removing deprecated `segments`, `users`, `segment_memberships`, `user_bindings` classes from helper libraries. **(breaking change)**
3349
+
3350
+ **Preview**
3351
+ - Add new Intent Statistics endpoint
3352
+ - Remove `ttl` from Assistants
3353
+
3354
+ **Twiml**
3355
+ - Add `Connect` and `Room` for Programmable Video Rooms
3356
+
3357
+
3358
+ [2018-07-26] Version 5.11.2
3359
+ ----------------------------
3360
+ **Library**
3361
+ - PR #424: Fix Say example in README.md. Thanks to @HuipengRen!
3362
+
3363
+ **Api**
3364
+ - Add support for sip domains to map credential lists for registrations
3365
+
3366
+ **Preview**
3367
+ - Remove `ttl` from Assistants
3368
+
3369
+ **Proxy**
3370
+ - Enable setting a proxy number as reserved
3371
+
3372
+ **Twiml**
3373
+ - Add support for SSML lang tag on Say verb
3374
+
3375
+
3376
+ [2018-07-17] Version 5.11.1
3377
+ ----------------------------
3378
+ **Library**
3379
+ - PR #422: Add attribute overrides from generated code. Thanks to @cjcodes!
3380
+
3381
+ **Video**
3382
+ - Add `group-small` room type
3383
+
3384
+
3385
+ [2018-07-16] Version 5.11.0
3386
+ ----------------------------
3387
+ **Library**
3388
+ - PR #421: Fix TwiML Say verb spec. Thanks to @HuipengRen!
3389
+ - PR #419: Add a request body validator. Thanks to @cjcodes!
3390
+ - PR #418: Remove support for ruby 2.0 and 2.1, adds 2.5. Thanks to @cjcodes!
3391
+
3392
+ **Twiml**
3393
+ - Add support for SSML on Say verb, the message body is changed to be optional **(breaking change)**
3394
+
3395
+
4
3396
  [2018-07-11] Version 5.10.7
5
3397
  ----------------------------
6
3398
  **Api**