twilio-ruby 5.31.1 → 7.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1097) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/pr-lint.yml +21 -0
  3. data/.github/workflows/test-and-deploy.yml +139 -0
  4. data/.gitignore +8 -1
  5. data/.rubocop.yml +20 -2
  6. data/.rubocop_todo.yml +90 -58
  7. data/CHANGES.md +2369 -1
  8. data/CODE_OF_CONDUCT.md +73 -0
  9. data/CONTRIBUTING.md +13 -11
  10. data/Gemfile +3 -8
  11. data/ISSUE_TEMPLATE.md +17 -13
  12. data/{LICENSE.md → LICENSE} +2 -2
  13. data/Makefile +22 -24
  14. data/PULL_REQUEST_TEMPLATE.md +31 -0
  15. data/README.md +174 -20
  16. data/Rakefile +0 -54
  17. data/UPGRADE.md +21 -0
  18. data/advanced-examples/custom-http-client.md +170 -0
  19. data/cluster_spec.rb +77 -0
  20. data/examples/examples.rb +1 -1
  21. data/githooks/pre-commit +0 -0
  22. data/lib/rack/twilio_webhook_authentication.rb +25 -1
  23. data/lib/twilio-ruby/base/client_base.rb +124 -0
  24. data/lib/twilio-ruby/framework/request.rb +8 -1
  25. data/lib/twilio-ruby/framework/{error.rb → rest/error.rb} +3 -15
  26. data/lib/twilio-ruby/framework/{version.rb → rest/version.rb} +7 -11
  27. data/lib/twilio-ruby/http/http_client.rb +33 -9
  28. data/lib/twilio-ruby/http.rb +5 -0
  29. data/lib/twilio-ruby/jwt/access_token.rb +20 -61
  30. data/lib/twilio-ruby/jwt/jwt.rb +6 -0
  31. data/lib/twilio-ruby/jwt/task_router.rb +2 -2
  32. data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +209 -0
  33. data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +380 -349
  34. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +380 -349
  35. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +122 -114
  36. data/lib/twilio-ruby/rest/accounts/v1/safelist.rb +176 -0
  37. data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +227 -0
  38. data/lib/twilio-ruby/rest/accounts/v1.rb +51 -28
  39. data/lib/twilio-ruby/rest/accounts.rb +10 -28
  40. data/lib/twilio-ruby/rest/accounts_base.rb +38 -0
  41. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +371 -367
  42. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +560 -531
  43. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +624 -601
  44. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +316 -328
  45. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +395 -0
  46. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +395 -0
  47. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +395 -0
  48. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +395 -0
  49. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +395 -0
  50. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +395 -0
  51. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +395 -0
  52. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +435 -0
  53. data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +139 -124
  54. data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +210 -0
  55. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +403 -439
  56. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +327 -0
  57. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +503 -516
  58. data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +877 -0
  59. data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +877 -0
  60. data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +901 -0
  61. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +166 -0
  62. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +244 -0
  63. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +955 -858
  64. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +668 -676
  65. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +458 -470
  66. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +494 -491
  67. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +433 -419
  68. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +323 -360
  69. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +403 -431
  70. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +539 -540
  71. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +539 -539
  72. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +539 -539
  73. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +850 -899
  74. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +342 -314
  75. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +170 -169
  76. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +345 -358
  77. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +624 -613
  78. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +160 -143
  79. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +160 -143
  80. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +403 -407
  81. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +375 -370
  82. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +345 -350
  83. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +435 -407
  84. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +363 -388
  85. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +373 -393
  86. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +369 -380
  87. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +512 -494
  88. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +422 -420
  89. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +342 -318
  90. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +384 -385
  91. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +408 -390
  92. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +353 -0
  93. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_ip_access_control_list_mapping.rb +353 -0
  94. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +141 -0
  95. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +353 -0
  96. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +127 -0
  97. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +95 -103
  98. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +346 -352
  99. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +346 -351
  100. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +658 -586
  101. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +421 -438
  102. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +408 -391
  103. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +142 -150
  104. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +174 -159
  105. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +369 -358
  106. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +315 -341
  107. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +315 -341
  108. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +315 -341
  109. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +315 -341
  110. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +315 -341
  111. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +315 -341
  112. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +315 -341
  113. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +315 -341
  114. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +382 -418
  115. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +494 -500
  116. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +113 -104
  117. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +175 -166
  118. data/lib/twilio-ruby/rest/api/v2010/account.rb +986 -960
  119. data/lib/twilio-ruby/rest/api/v2010.rb +126 -147
  120. data/lib/twilio-ruby/rest/api.rb +27 -36
  121. data/lib/twilio-ruby/rest/api_base.rb +38 -0
  122. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +309 -0
  123. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +308 -0
  124. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +283 -0
  125. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +257 -0
  126. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +258 -0
  127. data/lib/twilio-ruby/rest/bulkexports/v1.rb +64 -0
  128. data/lib/twilio-ruby/rest/bulkexports.rb +25 -0
  129. data/lib/twilio-ruby/rest/bulkexports_base.rb +38 -0
  130. data/lib/twilio-ruby/rest/chat/v1/credential.rb +428 -420
  131. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +381 -404
  132. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +431 -457
  133. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +447 -454
  134. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +543 -532
  135. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +405 -384
  136. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +245 -241
  137. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +474 -457
  138. data/lib/twilio-ruby/rest/chat/v1/service.rb +870 -911
  139. data/lib/twilio-ruby/rest/chat/v1.rb +57 -53
  140. data/lib/twilio-ruby/rest/chat/v2/credential.rb +428 -418
  141. data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +376 -378
  142. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +381 -399
  143. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +492 -529
  144. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +519 -535
  145. data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +449 -481
  146. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +612 -607
  147. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +405 -386
  148. data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +369 -389
  149. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +412 -425
  150. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +516 -495
  151. data/lib/twilio-ruby/rest/chat/v2/service.rb +773 -795
  152. data/lib/twilio-ruby/rest/chat/v2.rb +57 -51
  153. data/lib/twilio-ruby/rest/chat/v3/channel.rb +299 -0
  154. data/lib/twilio-ruby/rest/chat/v3.rb +71 -0
  155. data/lib/twilio-ruby/rest/chat.rb +10 -38
  156. data/lib/twilio-ruby/rest/chat_base.rb +48 -0
  157. data/lib/twilio-ruby/rest/client.rb +329 -467
  158. data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +185 -0
  159. data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +209 -0
  160. data/lib/twilio-ruby/rest/content/v1/content.rb +788 -0
  161. data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +252 -0
  162. data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +266 -0
  163. data/lib/twilio-ruby/rest/content/v1.rb +61 -0
  164. data/lib/twilio-ruby/rest/content/v2/content.rb +316 -0
  165. data/lib/twilio-ruby/rest/content/v2/content_and_approvals.rb +309 -0
  166. data/lib/twilio-ruby/rest/content/v2.rb +46 -0
  167. data/lib/twilio-ruby/rest/content.rb +15 -0
  168. data/lib/twilio-ruby/rest/content_base.rb +43 -0
  169. data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +491 -0
  170. data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +286 -0
  171. data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +292 -0
  172. data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +348 -0
  173. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +543 -449
  174. data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +504 -424
  175. data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +434 -425
  176. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +626 -495
  177. data/lib/twilio-ruby/rest/conversations/v1/credential.rb +444 -0
  178. data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +313 -0
  179. data/lib/twilio-ruby/rest/conversations/v1/role.rb +403 -0
  180. data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +376 -0
  181. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +339 -0
  182. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +285 -0
  183. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +319 -0
  184. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +359 -0
  185. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +563 -0
  186. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +524 -0
  187. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +454 -0
  188. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +645 -0
  189. data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +318 -0
  190. data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +412 -0
  191. data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +464 -0
  192. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +497 -0
  193. data/lib/twilio-ruby/rest/conversations/v1/service.rb +493 -0
  194. data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +459 -0
  195. data/lib/twilio-ruby/rest/conversations/v1/user.rb +488 -0
  196. data/lib/twilio-ruby/rest/conversations/v1.rb +129 -44
  197. data/lib/twilio-ruby/rest/conversations.rb +54 -28
  198. data/lib/twilio-ruby/rest/conversations_base.rb +38 -0
  199. data/lib/twilio-ruby/rest/events/v1/event_type.rb +329 -0
  200. data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +302 -0
  201. data/lib/twilio-ruby/rest/events/v1/schema.rb +238 -0
  202. data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +132 -0
  203. data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +139 -0
  204. data/lib/twilio-ruby/rest/events/v1/sink.rb +453 -0
  205. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +381 -0
  206. data/lib/twilio-ruby/rest/events/v1/subscription.rb +435 -0
  207. data/lib/twilio-ruby/rest/events/v1.rb +94 -0
  208. data/lib/twilio-ruby/rest/events.rb +43 -0
  209. data/lib/twilio-ruby/rest/events_base.rb +38 -0
  210. data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +449 -0
  211. data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +372 -342
  212. data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +547 -437
  213. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +572 -539
  214. data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +329 -0
  215. data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +229 -0
  216. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +445 -0
  217. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +360 -0
  218. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +445 -0
  219. data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +362 -0
  220. data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +217 -0
  221. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +157 -0
  222. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +143 -0
  223. data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +196 -0
  224. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +254 -0
  225. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +354 -0
  226. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +411 -0
  227. data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +272 -0
  228. data/lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb +397 -0
  229. data/lib/twilio-ruby/rest/flex_api/v1/plugin.rb +446 -0
  230. data/lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb +247 -0
  231. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration/configured_plugin.rb +393 -0
  232. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration.rb +386 -0
  233. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration_archive.rb +233 -0
  234. data/lib/twilio-ruby/rest/flex_api/v1/plugin_release.rb +332 -0
  235. data/lib/twilio-ruby/rest/flex_api/v1/plugin_version_archive.rb +256 -0
  236. data/lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb +188 -0
  237. data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +387 -348
  238. data/lib/twilio-ruby/rest/flex_api/v1.rb +313 -73
  239. data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +290 -0
  240. data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +151 -0
  241. data/lib/twilio-ruby/rest/flex_api/v2.rb +77 -0
  242. data/lib/twilio-ruby/rest/flex_api.rb +34 -32
  243. data/lib/twilio-ruby/rest/flex_api_base.rb +43 -0
  244. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +278 -0
  245. data/lib/twilio-ruby/rest/frontline_api/v1.rb +49 -0
  246. data/lib/twilio-ruby/rest/frontline_api.rb +15 -0
  247. data/lib/twilio-ruby/rest/frontline_api_base.rb +38 -0
  248. data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +322 -0
  249. data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +353 -0
  250. data/lib/twilio-ruby/rest/insights/v1/call/event.rb +250 -237
  251. data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +242 -227
  252. data/lib/twilio-ruby/rest/insights/v1/call.rb +263 -234
  253. data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +494 -0
  254. data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +491 -0
  255. data/lib/twilio-ruby/rest/insights/v1/conference.rb +508 -0
  256. data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +386 -0
  257. data/lib/twilio-ruby/rest/insights/v1/room.rb +501 -0
  258. data/lib/twilio-ruby/rest/insights/v1/setting.rb +259 -0
  259. data/lib/twilio-ruby/rest/insights/v1.rb +84 -36
  260. data/lib/twilio-ruby/rest/insights.rb +28 -28
  261. data/lib/twilio-ruby/rest/insights_base.rb +38 -0
  262. data/lib/twilio-ruby/rest/intelligence/v2/custom_operator.rb +447 -0
  263. data/lib/twilio-ruby/rest/intelligence/v2/operator.rb +356 -0
  264. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachment.rb +217 -0
  265. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachments.rb +197 -0
  266. data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +358 -0
  267. data/lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb +356 -0
  268. data/lib/twilio-ruby/rest/intelligence/v2/service.rb +517 -0
  269. data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +227 -0
  270. data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +389 -0
  271. data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +249 -0
  272. data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +525 -0
  273. data/lib/twilio-ruby/rest/intelligence/v2.rb +176 -0
  274. data/lib/twilio-ruby/rest/intelligence.rb +6 -0
  275. data/lib/twilio-ruby/rest/intelligence_base.rb +38 -0
  276. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +428 -420
  277. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +381 -404
  278. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +431 -457
  279. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +447 -454
  280. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +543 -532
  281. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +405 -384
  282. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +245 -241
  283. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +474 -457
  284. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +870 -911
  285. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +57 -53
  286. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +428 -418
  287. data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +376 -378
  288. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +381 -399
  289. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +492 -529
  290. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +519 -535
  291. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +449 -481
  292. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +612 -607
  293. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +405 -386
  294. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +369 -389
  295. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +404 -425
  296. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +516 -495
  297. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +773 -795
  298. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +57 -51
  299. data/lib/twilio-ruby/rest/ip_messaging.rb +9 -49
  300. data/lib/twilio-ruby/rest/ip_messaging_base.rb +43 -0
  301. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +246 -243
  302. data/lib/twilio-ruby/rest/lookups/v1.rb +42 -38
  303. data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +384 -0
  304. data/lib/twilio-ruby/rest/lookups/v2.rb +49 -0
  305. data/lib/twilio-ruby/rest/lookups.rb +3 -35
  306. data/lib/twilio-ruby/rest/lookups_base.rb +43 -0
  307. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on/available_add_on_extension.rb +309 -0
  308. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on.rb +336 -0
  309. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.rb +352 -0
  310. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +170 -0
  311. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on.rb +465 -0
  312. data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +284 -0
  313. data/lib/twilio-ruby/rest/marketplace/v1.rb +79 -0
  314. data/lib/twilio-ruby/rest/marketplace.rb +6 -0
  315. data/lib/twilio-ruby/rest/marketplace_base.rb +38 -0
  316. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +139 -0
  317. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +368 -0
  318. data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +509 -0
  319. data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +192 -0
  320. data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +285 -0
  321. data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +292 -0
  322. data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +239 -0
  323. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +164 -0
  324. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +217 -0
  325. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb +197 -0
  326. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +356 -348
  327. data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +330 -0
  328. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +363 -354
  329. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +363 -349
  330. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +620 -0
  331. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +138 -0
  332. data/lib/twilio-ruby/rest/messaging/v1/service.rb +774 -659
  333. data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +803 -0
  334. data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +126 -0
  335. data/lib/twilio-ruby/rest/messaging/v1.rb +187 -58
  336. data/lib/twilio-ruby/rest/messaging.rb +48 -36
  337. data/lib/twilio-ruby/rest/messaging_base.rb +38 -0
  338. data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +365 -0
  339. data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +358 -0
  340. data/lib/twilio-ruby/rest/microvisor/v1/app/app_manifest.rb +209 -0
  341. data/lib/twilio-ruby/rest/microvisor/v1/app.rb +352 -0
  342. data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +381 -0
  343. data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +374 -0
  344. data/lib/twilio-ruby/rest/microvisor/v1/device.rb +430 -0
  345. data/lib/twilio-ruby/rest/microvisor/v1.rb +94 -0
  346. data/lib/twilio-ruby/rest/microvisor.rb +24 -0
  347. data/lib/twilio-ruby/rest/microvisor_base.rb +38 -0
  348. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +401 -403
  349. data/lib/twilio-ruby/rest/monitor/v1/event.rb +384 -398
  350. data/lib/twilio-ruby/rest/monitor/v1.rb +57 -51
  351. data/lib/twilio-ruby/rest/monitor.rb +3 -34
  352. data/lib/twilio-ruby/rest/monitor_base.rb +38 -0
  353. data/lib/twilio-ruby/rest/notify/v1/credential.rb +428 -419
  354. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +442 -464
  355. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +316 -359
  356. data/lib/twilio-ruby/rest/notify/v1/service.rb +633 -620
  357. data/lib/twilio-ruby/rest/notify/v1.rb +57 -53
  358. data/lib/twilio-ruby/rest/notify.rb +3 -34
  359. data/lib/twilio-ruby/rest/notify_base.rb +38 -0
  360. data/lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb +241 -0
  361. data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +128 -0
  362. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +294 -0
  363. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +315 -0
  364. data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +250 -0
  365. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +149 -0
  366. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +168 -0
  367. data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +177 -0
  368. data/lib/twilio-ruby/rest/numbers/v1/webhook.rb +161 -0
  369. data/lib/twilio-ruby/rest/numbers/v1.rb +155 -0
  370. data/lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb +344 -0
  371. data/lib/twilio-ruby/rest/numbers/v2/authorization_document.rb +408 -0
  372. data/lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb +266 -0
  373. data/lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb +507 -0
  374. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +288 -0
  375. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +340 -0
  376. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +351 -0
  377. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +204 -0
  378. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +617 -0
  379. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +407 -0
  380. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +300 -0
  381. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +349 -0
  382. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +428 -0
  383. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +300 -0
  384. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +186 -0
  385. data/lib/twilio-ruby/rest/numbers/v2.rb +85 -0
  386. data/lib/twilio-ruby/rest/numbers.rb +12 -0
  387. data/lib/twilio-ruby/rest/numbers_base.rb +43 -0
  388. data/lib/twilio-ruby/rest/oauth/v1/authorize.rb +144 -0
  389. data/lib/twilio-ruby/rest/oauth/v1/token.rb +182 -0
  390. data/lib/twilio-ruby/rest/oauth/v1.rb +46 -0
  391. data/lib/twilio-ruby/rest/oauth.rb +6 -0
  392. data/lib/twilio-ruby/rest/oauth_base.rb +38 -0
  393. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +417 -392
  394. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +401 -375
  395. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +456 -435
  396. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +414 -386
  397. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +501 -476
  398. data/lib/twilio-ruby/rest/preview/deployed_devices.rb +42 -37
  399. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +371 -395
  400. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +451 -458
  401. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +617 -642
  402. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +57 -53
  403. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +302 -306
  404. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +326 -317
  405. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +345 -342
  406. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +436 -415
  407. data/lib/twilio-ruby/rest/preview/marketplace.rb +57 -51
  408. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +383 -386
  409. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +448 -413
  410. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +439 -417
  411. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +383 -386
  412. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +424 -411
  413. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +442 -414
  414. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +383 -386
  415. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +424 -411
  416. data/lib/twilio-ruby/rest/preview/sync/service.rb +502 -469
  417. data/lib/twilio-ruby/rest/preview/sync.rb +42 -36
  418. data/lib/twilio-ruby/rest/preview/wireless/command.rb +390 -377
  419. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +455 -415
  420. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +235 -211
  421. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +577 -535
  422. data/lib/twilio-ruby/rest/preview/wireless.rb +72 -66
  423. data/lib/twilio-ruby/rest/preview.rb +11 -155
  424. data/lib/twilio-ruby/rest/preview_base.rb +58 -0
  425. data/lib/twilio-ruby/rest/preview_iam.rb +6 -0
  426. data/lib/twilio-ruby/rest/preview_iam_base.rb +33 -0
  427. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +300 -283
  428. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +108 -119
  429. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +293 -276
  430. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +108 -119
  431. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +300 -283
  432. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +223 -203
  433. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +122 -135
  434. data/lib/twilio-ruby/rest/pricing/v1.rb +45 -42
  435. data/lib/twilio-ruby/rest/pricing/v2/country.rb +302 -0
  436. data/lib/twilio-ruby/rest/pricing/v2/number.rb +243 -0
  437. data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +300 -283
  438. data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +241 -224
  439. data/lib/twilio-ruby/rest/pricing/v2/voice.rb +122 -138
  440. data/lib/twilio-ruby/rest/pricing/v2.rb +63 -28
  441. data/lib/twilio-ruby/rest/pricing.rb +22 -38
  442. data/lib/twilio-ruby/rest/pricing_base.rb +43 -0
  443. data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +426 -418
  444. data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +411 -426
  445. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +433 -462
  446. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +426 -455
  447. data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +529 -523
  448. data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +406 -387
  449. data/lib/twilio-ruby/rest/proxy/v1/service.rb +566 -613
  450. data/lib/twilio-ruby/rest/proxy/v1.rb +42 -37
  451. data/lib/twilio-ruby/rest/proxy.rb +2 -34
  452. data/lib/twilio-ruby/rest/proxy_base.rb +38 -0
  453. data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +273 -0
  454. data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +273 -0
  455. data/lib/twilio-ruby/rest/routes/v2/trunk.rb +273 -0
  456. data/lib/twilio-ruby/rest/routes/v2.rb +79 -0
  457. data/lib/twilio-ruby/rest/routes.rb +32 -0
  458. data/lib/twilio-ruby/rest/routes_base.rb +38 -0
  459. data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +316 -331
  460. data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +419 -397
  461. data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +220 -0
  462. data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +412 -362
  463. data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +339 -351
  464. data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +362 -359
  465. data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +410 -413
  466. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +461 -462
  467. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +231 -0
  468. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +343 -331
  469. data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +419 -397
  470. data/lib/twilio-ruby/rest/serverless/v1/service.rb +530 -484
  471. data/lib/twilio-ruby/rest/serverless/v1.rb +42 -36
  472. data/lib/twilio-ruby/rest/serverless.rb +2 -34
  473. data/lib/twilio-ruby/rest/serverless_base.rb +38 -0
  474. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +209 -205
  475. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +224 -224
  476. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +364 -363
  477. data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +429 -407
  478. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +209 -206
  479. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +224 -227
  480. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +364 -369
  481. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +477 -440
  482. data/lib/twilio-ruby/rest/studio/v1/flow.rb +385 -363
  483. data/lib/twilio-ruby/rest/studio/v1.rb +42 -36
  484. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +220 -0
  485. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +231 -0
  486. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +375 -0
  487. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +477 -0
  488. data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +351 -0
  489. data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +237 -0
  490. data/lib/twilio-ruby/rest/studio/v2/flow.rb +538 -0
  491. data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +142 -0
  492. data/lib/twilio-ruby/rest/studio/v2.rb +55 -0
  493. data/lib/twilio-ruby/rest/studio.rb +9 -34
  494. data/lib/twilio-ruby/rest/studio_base.rb +43 -0
  495. data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +406 -0
  496. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +487 -0
  497. data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +411 -0
  498. data/lib/twilio-ruby/rest/supersim/v1/network.rb +313 -0
  499. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +349 -0
  500. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +395 -0
  501. data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +257 -0
  502. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +250 -0
  503. data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +208 -0
  504. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +475 -0
  505. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +371 -0
  506. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +314 -0
  507. data/lib/twilio-ruby/rest/supersim/v1.rb +151 -0
  508. data/lib/twilio-ruby/rest/supersim.rb +88 -0
  509. data/lib/twilio-ruby/rest/supersim_base.rb +38 -0
  510. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +383 -391
  511. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +464 -450
  512. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +473 -501
  513. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +383 -390
  514. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +479 -474
  515. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +476 -508
  516. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +383 -388
  517. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +479 -473
  518. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +142 -143
  519. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +428 -431
  520. data/lib/twilio-ruby/rest/sync/v1/service.rb +584 -592
  521. data/lib/twilio-ruby/rest/sync/v1.rb +42 -36
  522. data/lib/twilio-ruby/rest/sync.rb +2 -34
  523. data/lib/twilio-ruby/rest/sync_base.rb +38 -0
  524. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +414 -404
  525. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +445 -466
  526. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +709 -740
  527. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +659 -643
  528. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +418 -399
  529. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_bulk_real_time_statistics.rb +164 -0
  530. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +362 -362
  531. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +282 -265
  532. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +233 -240
  533. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +240 -260
  534. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +583 -583
  535. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +691 -736
  536. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +394 -400
  537. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +238 -243
  538. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +284 -269
  539. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +218 -197
  540. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +254 -238
  541. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +630 -639
  542. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +362 -377
  543. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +230 -227
  544. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +233 -248
  545. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +532 -527
  546. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +356 -358
  547. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +235 -211
  548. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +244 -238
  549. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +729 -732
  550. data/lib/twilio-ruby/rest/taskrouter/v1.rb +42 -36
  551. data/lib/twilio-ruby/rest/taskrouter.rb +2 -34
  552. data/lib/twilio-ruby/rest/taskrouter_base.rb +38 -0
  553. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +349 -333
  554. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +349 -329
  555. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +449 -436
  556. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +482 -463
  557. data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +236 -0
  558. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +632 -642
  559. data/lib/twilio-ruby/rest/trunking/v1.rb +42 -37
  560. data/lib/twilio-ruby/rest/trunking.rb +2 -34
  561. data/lib/twilio-ruby/rest/trunking_base.rb +38 -0
  562. data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +240 -0
  563. data/lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb +357 -0
  564. data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +220 -0
  565. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +371 -0
  566. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +355 -0
  567. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +345 -0
  568. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +551 -0
  569. data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +402 -0
  570. data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +295 -0
  571. data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +288 -0
  572. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +416 -0
  573. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +295 -0
  574. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +371 -0
  575. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +355 -0
  576. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +345 -0
  577. data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +551 -0
  578. data/lib/twilio-ruby/rest/trusthub/v1.rb +175 -0
  579. data/lib/twilio-ruby/rest/trusthub.rb +74 -0
  580. data/lib/twilio-ruby/rest/trusthub_base.rb +38 -0
  581. data/lib/twilio-ruby/rest/verify/v2/form.rb +204 -0
  582. data/lib/twilio-ruby/rest/verify/v2/safelist.rb +236 -0
  583. data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +284 -0
  584. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +201 -0
  585. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +515 -0
  586. data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +465 -0
  587. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +272 -0
  588. data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +436 -0
  589. data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +388 -380
  590. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +410 -405
  591. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +429 -401
  592. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +387 -346
  593. data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +221 -204
  594. data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +463 -0
  595. data/lib/twilio-ruby/rest/verify/v2/service.rb +816 -546
  596. data/lib/twilio-ruby/rest/verify/v2/template.rb +230 -0
  597. data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +385 -0
  598. data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +250 -0
  599. data/lib/twilio-ruby/rest/verify/v2.rb +99 -37
  600. data/lib/twilio-ruby/rest/verify.rb +36 -25
  601. data/lib/twilio-ruby/rest/verify_base.rb +38 -0
  602. data/lib/twilio-ruby/rest/video/v1/composition.rb +484 -501
  603. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +534 -663
  604. data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +286 -277
  605. data/lib/twilio-ruby/rest/video/v1/recording.rb +431 -413
  606. data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +286 -277
  607. data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +262 -0
  608. data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +334 -0
  609. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +186 -0
  610. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +341 -0
  611. data/lib/twilio-ruby/rest/video/v1/room/participant.rb +503 -0
  612. data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +175 -0
  613. data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +428 -0
  614. data/lib/twilio-ruby/rest/video/v1/room.rb +613 -534
  615. data/lib/twilio-ruby/rest/video/v1.rb +99 -95
  616. data/lib/twilio-ruby/rest/video.rb +7 -34
  617. data/lib/twilio-ruby/rest/video_base.rb +38 -0
  618. data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +169 -0
  619. data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +520 -0
  620. data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +456 -0
  621. data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +410 -0
  622. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +138 -126
  623. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +196 -185
  624. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +376 -405
  625. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +220 -200
  626. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +123 -124
  627. data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +396 -0
  628. data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +379 -0
  629. data/lib/twilio-ruby/rest/voice/v1.rb +130 -28
  630. data/lib/twilio-ruby/rest/voice.rb +41 -24
  631. data/lib/twilio-ruby/rest/voice_base.rb +38 -0
  632. data/lib/twilio-ruby/rest/wireless/v1/command.rb +415 -419
  633. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +472 -452
  634. data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +299 -300
  635. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +240 -245
  636. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +641 -669
  637. data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +227 -223
  638. data/lib/twilio-ruby/rest/wireless/v1.rb +78 -73
  639. data/lib/twilio-ruby/rest/wireless.rb +5 -34
  640. data/lib/twilio-ruby/rest/wireless_base.rb +38 -0
  641. data/lib/twilio-ruby/rest.rb +14 -0
  642. data/lib/twilio-ruby/security/request_validator.rb +1 -1
  643. data/lib/twilio-ruby/twiml/messaging_response.rb +1 -1
  644. data/lib/twilio-ruby/twiml/twiml.rb +4 -0
  645. data/lib/twilio-ruby/twiml/voice_response.rb +989 -131
  646. data/lib/twilio-ruby/util/configuration.rb +13 -1
  647. data/lib/twilio-ruby/version.rb +1 -1
  648. data/lib/twilio-ruby.rb +8 -26
  649. data/sonar-project.properties +13 -0
  650. data/twilio-ruby.gemspec +14 -8
  651. metadata +416 -812
  652. data/.travis.yml +0 -35
  653. data/conf/cacert.pem +0 -3376
  654. data/lib/twilio-ruby/framework/twilio_response.rb +0 -19
  655. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +0 -493
  656. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +0 -493
  657. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +0 -493
  658. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +0 -493
  659. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +0 -493
  660. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +0 -493
  661. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +0 -493
  662. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +0 -472
  663. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +0 -317
  664. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +0 -325
  665. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +0 -361
  666. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +0 -361
  667. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +0 -163
  668. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +0 -361
  669. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +0 -137
  670. data/lib/twilio-ruby/rest/authy/v1/form.rb +0 -197
  671. data/lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb +0 -412
  672. data/lib/twilio-ruby/rest/authy/v1/service/entity/factor.rb +0 -486
  673. data/lib/twilio-ruby/rest/authy/v1/service/entity.rb +0 -379
  674. data/lib/twilio-ruby/rest/authy/v1/service.rb +0 -385
  675. data/lib/twilio-ruby/rest/authy/v1.rb +0 -59
  676. data/lib/twilio-ruby/rest/authy.rb +0 -55
  677. data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +0 -230
  678. data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +0 -220
  679. data/lib/twilio-ruby/rest/autopilot/v1/assistant/export_assistant.rb +0 -222
  680. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +0 -408
  681. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +0 -435
  682. data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +0 -409
  683. data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +0 -463
  684. data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +0 -228
  685. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +0 -399
  686. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +0 -466
  687. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +0 -265
  688. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +0 -243
  689. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +0 -524
  690. data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +0 -437
  691. data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +0 -683
  692. data/lib/twilio-ruby/rest/autopilot/v1.rb +0 -44
  693. data/lib/twilio-ruby/rest/autopilot.rb +0 -47
  694. data/lib/twilio-ruby/rest/conversations/v1/webhook.rb +0 -272
  695. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -322
  696. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -552
  697. data/lib/twilio-ruby/rest/fax/v1.rb +0 -44
  698. data/lib/twilio-ruby/rest/fax.rb +0 -47
  699. data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +0 -305
  700. data/lib/twilio-ruby/rest/messaging/v1/session/message.rb +0 -439
  701. data/lib/twilio-ruby/rest/messaging/v1/session/participant.rb +0 -458
  702. data/lib/twilio-ruby/rest/messaging/v1/session/webhook.rb +0 -444
  703. data/lib/twilio-ruby/rest/messaging/v1/session.rb +0 -513
  704. data/lib/twilio-ruby/rest/messaging/v1/webhook.rb +0 -299
  705. data/lib/twilio-ruby/rest/preview/acc_security/service/verification.rb +0 -185
  706. data/lib/twilio-ruby/rest/preview/acc_security/service/verification_check.rb +0 -182
  707. data/lib/twilio-ruby/rest/preview/acc_security/service.rb +0 -395
  708. data/lib/twilio-ruby/rest/preview/acc_security.rb +0 -43
  709. data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -211
  710. data/lib/twilio-ruby/rest/preview/bulk_exports/export/export_custom_job.rb +0 -298
  711. data/lib/twilio-ruby/rest/preview/bulk_exports/export/job.rb +0 -232
  712. data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -248
  713. data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -234
  714. data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -58
  715. data/lib/twilio-ruby/rest/preview/trusted_comms/branded_call.rb +0 -248
  716. data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights/success_rate.rb +0 -264
  717. data/lib/twilio-ruby/rest/preview/trusted_comms/business/insights.rb +0 -111
  718. data/lib/twilio-ruby/rest/preview/trusted_comms/business.rb +0 -219
  719. data/lib/twilio-ruby/rest/preview/trusted_comms/cps.rb +0 -186
  720. data/lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb +0 -263
  721. data/lib/twilio-ruby/rest/preview/trusted_comms/device.rb +0 -146
  722. data/lib/twilio-ruby/rest/preview/trusted_comms/phone_call.rb +0 -347
  723. data/lib/twilio-ruby/rest/preview/trusted_comms.rb +0 -79
  724. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +0 -222
  725. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +0 -222
  726. data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +0 -212
  727. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +0 -399
  728. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +0 -424
  729. data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +0 -397
  730. data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +0 -454
  731. data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +0 -222
  732. data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +0 -386
  733. data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +0 -445
  734. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +0 -251
  735. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +0 -231
  736. data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +0 -512
  737. data/lib/twilio-ruby/rest/preview/understand/assistant.rb +0 -646
  738. data/lib/twilio-ruby/rest/preview/understand.rb +0 -44
  739. data/lib/twilio-ruby/rest/trunking/v1/trunk/terminating_sip_domain.rb +0 -418
  740. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -414
  741. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +0 -343
  742. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +0 -191
  743. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +0 -348
  744. data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +0 -495
  745. data/spec/framework/request_spec.rb +0 -36
  746. data/spec/framework/serialize_spec.rb +0 -80
  747. data/spec/holodeck/holodeck.rb +0 -61
  748. data/spec/holodeck/hologram.rb +0 -4
  749. data/spec/http/http_client_spec.rb +0 -122
  750. data/spec/integration/accounts/v1/credential/aws_spec.rb +0 -226
  751. data/spec/integration/accounts/v1/credential/public_key_spec.rb +0 -226
  752. data/spec/integration/accounts/v1/credential_spec.rb +0 -12
  753. data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +0 -107
  754. data/spec/integration/api/v2010/account/address_spec.rb +0 -273
  755. data/spec/integration/api/v2010/account/application_spec.rb +0 -279
  756. data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +0 -139
  757. data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +0 -103
  758. data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +0 -103
  759. data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +0 -102
  760. data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +0 -103
  761. data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +0 -103
  762. data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +0 -102
  763. data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +0 -103
  764. data/spec/integration/api/v2010/account/available_phone_number_spec.rb +0 -130
  765. data/spec/integration/api/v2010/account/balance_spec.rb +0 -45
  766. data/spec/integration/api/v2010/account/call/feedback_spec.rb +0 -139
  767. data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +0 -151
  768. data/spec/integration/api/v2010/account/call/notification_spec.rb +0 -181
  769. data/spec/integration/api/v2010/account/call/recording_spec.rb +0 -287
  770. data/spec/integration/api/v2010/account/call_spec.rb +0 -624
  771. data/spec/integration/api/v2010/account/conference/participant_spec.rb +0 -477
  772. data/spec/integration/api/v2010/account/conference/recording_spec.rb +0 -237
  773. data/spec/integration/api/v2010/account/conference_spec.rb +0 -433
  774. data/spec/integration/api/v2010/account/connect_app_spec.rb +0 -201
  775. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -137
  776. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
  777. data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +0 -191
  778. data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +0 -191
  779. data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +0 -191
  780. data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +0 -345
  781. data/spec/integration/api/v2010/account/key_spec.rb +0 -180
  782. data/spec/integration/api/v2010/account/message/feedback_spec.rb +0 -50
  783. data/spec/integration/api/v2010/account/message/media_spec.rb +0 -164
  784. data/spec/integration/api/v2010/account/message_spec.rb +0 -473
  785. data/spec/integration/api/v2010/account/new_key_spec.rb +0 -47
  786. data/spec/integration/api/v2010/account/new_signing_key_spec.rb +0 -47
  787. data/spec/integration/api/v2010/account/notification_spec.rb +0 -140
  788. data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +0 -195
  789. data/spec/integration/api/v2010/account/queue/member_spec.rb +0 -210
  790. data/spec/integration/api/v2010/account/queue_spec.rb +0 -248
  791. data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +0 -177
  792. data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +0 -168
  793. data/spec/integration/api/v2010/account/recording/transcription_spec.rb +0 -176
  794. data/spec/integration/api/v2010/account/recording_spec.rb +0 -187
  795. data/spec/integration/api/v2010/account/short_code_spec.rb +0 -182
  796. data/spec/integration/api/v2010/account/signing_key_spec.rb +0 -180
  797. data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +0 -256
  798. data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +0 -244
  799. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb +0 -220
  800. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb +0 -220
  801. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping_spec.rb +0 -12
  802. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping_spec.rb +0 -220
  803. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping_spec.rb +0 -12
  804. data/spec/integration/api/v2010/account/sip/domain/auth_types_spec.rb +0 -12
  805. data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +0 -210
  806. data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +0 -220
  807. data/spec/integration/api/v2010/account/sip/domain_spec.rb +0 -295
  808. data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +0 -258
  809. data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +0 -254
  810. data/spec/integration/api/v2010/account/sip_spec.rb +0 -12
  811. data/spec/integration/api/v2010/account/token_spec.rb +0 -60
  812. data/spec/integration/api/v2010/account/transcription_spec.rb +0 -169
  813. data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +0 -114
  814. data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +0 -114
  815. data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +0 -114
  816. data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +0 -114
  817. data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +0 -114
  818. data/spec/integration/api/v2010/account/usage/record/today_spec.rb +0 -114
  819. data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +0 -114
  820. data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +0 -114
  821. data/spec/integration/api/v2010/account/usage/record_spec.rb +0 -111
  822. data/spec/integration/api/v2010/account/usage/trigger_spec.rb +0 -285
  823. data/spec/integration/api/v2010/account/usage_spec.rb +0 -12
  824. data/spec/integration/api/v2010/account/validation_request_spec.rb +0 -48
  825. data/spec/integration/api/v2010/account_spec.rb +0 -286
  826. data/spec/integration/authy/v1/form_spec.rb +0 -48
  827. data/spec/integration/authy/v1/service/entity/factor/challenge_spec.rb +0 -267
  828. data/spec/integration/authy/v1/service/entity/factor_spec.rb +0 -273
  829. data/spec/integration/authy/v1/service/entity_spec.rb +0 -201
  830. data/spec/integration/authy/v1/service_spec.rb +0 -227
  831. data/spec/integration/autopilot/v1/assistant/defaults_spec.rb +0 -81
  832. data/spec/integration/autopilot/v1/assistant/dialogue_spec.rb +0 -47
  833. data/spec/integration/autopilot/v1/assistant/export_assistant_spec.rb +0 -49
  834. data/spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb +0 -210
  835. data/spec/integration/autopilot/v1/assistant/field_type_spec.rb +0 -246
  836. data/spec/integration/autopilot/v1/assistant/model_build_spec.rb +0 -241
  837. data/spec/integration/autopilot/v1/assistant/query_spec.rb +0 -290
  838. data/spec/integration/autopilot/v1/assistant/style_sheet_spec.rb +0 -81
  839. data/spec/integration/autopilot/v1/assistant/task/field_spec.rb +0 -207
  840. data/spec/integration/autopilot/v1/assistant/task/sample_spec.rb +0 -253
  841. data/spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb +0 -87
  842. data/spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb +0 -50
  843. data/spec/integration/autopilot/v1/assistant/task_spec.rb +0 -262
  844. data/spec/integration/autopilot/v1/assistant/webhook_spec.rb +0 -246
  845. data/spec/integration/autopilot/v1/assistant_spec.rb +0 -286
  846. data/spec/integration/chat/v1/credential_spec.rb +0 -223
  847. data/spec/integration/chat/v1/service/channel/invite_spec.rb +0 -210
  848. data/spec/integration/chat/v1/service/channel/member_spec.rb +0 -284
  849. data/spec/integration/chat/v1/service/channel/message_spec.rb +0 -294
  850. data/spec/integration/chat/v1/service/channel_spec.rb +0 -277
  851. data/spec/integration/chat/v1/service/role_spec.rb +0 -263
  852. data/spec/integration/chat/v1/service/user/user_channel_spec.rb +0 -94
  853. data/spec/integration/chat/v1/service/user_spec.rb +0 -266
  854. data/spec/integration/chat/v1/service_spec.rb +0 -299
  855. data/spec/integration/chat/v2/credential_spec.rb +0 -223
  856. data/spec/integration/chat/v2/service/binding_spec.rb +0 -177
  857. data/spec/integration/chat/v2/service/channel/invite_spec.rb +0 -210
  858. data/spec/integration/chat/v2/service/channel/member_spec.rb +0 -261
  859. data/spec/integration/chat/v2/service/channel/message_spec.rb +0 -405
  860. data/spec/integration/chat/v2/service/channel/webhook_spec.rb +0 -307
  861. data/spec/integration/chat/v2/service/channel_spec.rb +0 -281
  862. data/spec/integration/chat/v2/service/role_spec.rb +0 -263
  863. data/spec/integration/chat/v2/service/user/user_binding_spec.rb +0 -180
  864. data/spec/integration/chat/v2/service/user/user_channel_spec.rb +0 -251
  865. data/spec/integration/chat/v2/service/user_spec.rb +0 -270
  866. data/spec/integration/chat/v2/service_spec.rb +0 -354
  867. data/spec/integration/conversations/v1/conversation/message_spec.rb +0 -293
  868. data/spec/integration/conversations/v1/conversation/participant_spec.rb +0 -290
  869. data/spec/integration/conversations/v1/conversation/webhook_spec.rb +0 -286
  870. data/spec/integration/conversations/v1/conversation_spec.rb +0 -222
  871. data/spec/integration/conversations/v1/webhook_spec.rb +0 -88
  872. data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -128
  873. data/spec/integration/fax/v1/fax_spec.rb +0 -271
  874. data/spec/integration/flex_api/v1/channel_spec.rb +0 -191
  875. data/spec/integration/flex_api/v1/configuration_spec.rb +0 -449
  876. data/spec/integration/flex_api/v1/flex_flow_spec.rb +0 -263
  877. data/spec/integration/flex_api/v1/web_channel_spec.rb +0 -220
  878. data/spec/integration/insights/v1/call/event_spec.rb +0 -167
  879. data/spec/integration/insights/v1/call/metric_spec.rb +0 -155
  880. data/spec/integration/insights/v1/call/summary_spec.rb +0 -63
  881. data/spec/integration/insights/v1/call_spec.rb +0 -47
  882. data/spec/integration/ip_messaging/v1/credential_spec.rb +0 -223
  883. data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +0 -210
  884. data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +0 -284
  885. data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +0 -294
  886. data/spec/integration/ip_messaging/v1/service/channel_spec.rb +0 -277
  887. data/spec/integration/ip_messaging/v1/service/role_spec.rb +0 -263
  888. data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +0 -94
  889. data/spec/integration/ip_messaging/v1/service/user_spec.rb +0 -266
  890. data/spec/integration/ip_messaging/v1/service_spec.rb +0 -299
  891. data/spec/integration/ip_messaging/v2/credential_spec.rb +0 -223
  892. data/spec/integration/ip_messaging/v2/service/binding_spec.rb +0 -177
  893. data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +0 -210
  894. data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +0 -261
  895. data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +0 -405
  896. data/spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb +0 -307
  897. data/spec/integration/ip_messaging/v2/service/channel_spec.rb +0 -281
  898. data/spec/integration/ip_messaging/v2/service/role_spec.rb +0 -263
  899. data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +0 -180
  900. data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +0 -251
  901. data/spec/integration/ip_messaging/v2/service/user_spec.rb +0 -270
  902. data/spec/integration/ip_messaging/v2/service_spec.rb +0 -354
  903. data/spec/integration/lookups/v1/phone_number_spec.rb +0 -337
  904. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
  905. data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
  906. data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -179
  907. data/spec/integration/messaging/v1/service_spec.rb +0 -271
  908. data/spec/integration/messaging/v1/session/message_spec.rb +0 -238
  909. data/spec/integration/messaging/v1/session/participant_spec.rb +0 -256
  910. data/spec/integration/messaging/v1/session/webhook_spec.rb +0 -300
  911. data/spec/integration/messaging/v1/session_spec.rb +0 -227
  912. data/spec/integration/messaging/v1/webhook_spec.rb +0 -94
  913. data/spec/integration/monitor/v1/alert_spec.rb +0 -140
  914. data/spec/integration/monitor/v1/event_spec.rb +0 -150
  915. data/spec/integration/notify/v1/credential_spec.rb +0 -223
  916. data/spec/integration/notify/v1/service/binding_spec.rb +0 -225
  917. data/spec/integration/notify/v1/service/notification_spec.rb +0 -99
  918. data/spec/integration/notify/v1/service_spec.rb +0 -294
  919. data/spec/integration/preview/acc_security/service/verification_check_spec.rb +0 -52
  920. data/spec/integration/preview/acc_security/service/verification_spec.rb +0 -52
  921. data/spec/integration/preview/acc_security/service_spec.rb +0 -185
  922. data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -58
  923. data/spec/integration/preview/bulk_exports/export/export_custom_job_spec.rb +0 -129
  924. data/spec/integration/preview/bulk_exports/export/job_spec.rb +0 -77
  925. data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
  926. data/spec/integration/preview/bulk_exports/export_spec.rb +0 -45
  927. data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +0 -238
  928. data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +0 -233
  929. data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +0 -249
  930. data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +0 -237
  931. data/spec/integration/preview/deployed_devices/fleet_spec.rb +0 -246
  932. data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +0 -111
  933. data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +0 -227
  934. data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -393
  935. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -123
  936. data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -144
  937. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
  938. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -254
  939. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -204
  940. data/spec/integration/preview/sync/service/document_spec.rb +0 -254
  941. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -254
  942. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -204
  943. data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -209
  944. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -254
  945. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -204
  946. data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -209
  947. data/spec/integration/preview/sync/service_spec.rb +0 -246
  948. data/spec/integration/preview/trusted_comms/branded_call_spec.rb +0 -59
  949. data/spec/integration/preview/trusted_comms/business/insights/success_rate_spec.rb +0 -58
  950. data/spec/integration/preview/trusted_comms/business/insights_spec.rb +0 -12
  951. data/spec/integration/preview/trusted_comms/business_spec.rb +0 -46
  952. data/spec/integration/preview/trusted_comms/cps_spec.rb +0 -43
  953. data/spec/integration/preview/trusted_comms/current_call_spec.rb +0 -54
  954. data/spec/integration/preview/trusted_comms/device_spec.rb +0 -45
  955. data/spec/integration/preview/trusted_comms/phone_call_spec.rb +0 -59
  956. data/spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb +0 -81
  957. data/spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb +0 -81
  958. data/spec/integration/preview/understand/assistant/dialogue_spec.rb +0 -47
  959. data/spec/integration/preview/understand/assistant/field_type/field_value_spec.rb +0 -210
  960. data/spec/integration/preview/understand/assistant/field_type_spec.rb +0 -246
  961. data/spec/integration/preview/understand/assistant/model_build_spec.rb +0 -241
  962. data/spec/integration/preview/understand/assistant/query_spec.rb +0 -306
  963. data/spec/integration/preview/understand/assistant/style_sheet_spec.rb +0 -81
  964. data/spec/integration/preview/understand/assistant/task/field_spec.rb +0 -207
  965. data/spec/integration/preview/understand/assistant/task/sample_spec.rb +0 -253
  966. data/spec/integration/preview/understand/assistant/task/task_actions_spec.rb +0 -87
  967. data/spec/integration/preview/understand/assistant/task/task_statistics_spec.rb +0 -50
  968. data/spec/integration/preview/understand/assistant/task_spec.rb +0 -262
  969. data/spec/integration/preview/understand/assistant_spec.rb +0 -274
  970. data/spec/integration/preview/wireless/command_spec.rb +0 -169
  971. data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -262
  972. data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -51
  973. data/spec/integration/preview/wireless/sim_spec.rb +0 -210
  974. data/spec/integration/pricing/v1/messaging/country_spec.rb +0 -139
  975. data/spec/integration/pricing/v1/messaging_spec.rb +0 -12
  976. data/spec/integration/pricing/v1/phone_number/country_spec.rb +0 -130
  977. data/spec/integration/pricing/v1/phone_number_spec.rb +0 -12
  978. data/spec/integration/pricing/v1/voice/country_spec.rb +0 -140
  979. data/spec/integration/pricing/v1/voice/number_spec.rb +0 -56
  980. data/spec/integration/pricing/v1/voice_spec.rb +0 -12
  981. data/spec/integration/pricing/v2/voice/country_spec.rb +0 -181
  982. data/spec/integration/pricing/v2/voice/number_spec.rb +0 -62
  983. data/spec/integration/pricing/v2/voice_spec.rb +0 -12
  984. data/spec/integration/proxy/v1/service/phone_number_spec.rb +0 -236
  985. data/spec/integration/proxy/v1/service/session/interaction_spec.rb +0 -136
  986. data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +0 -166
  987. data/spec/integration/proxy/v1/service/session/participant_spec.rb +0 -243
  988. data/spec/integration/proxy/v1/service/session_spec.rb +0 -230
  989. data/spec/integration/proxy/v1/service/short_code_spec.rb +0 -229
  990. data/spec/integration/proxy/v1/service_spec.rb +0 -218
  991. data/spec/integration/serverless/v1/service/asset/asset_version_spec.rb +0 -95
  992. data/spec/integration/serverless/v1/service/asset_spec.rb +0 -205
  993. data/spec/integration/serverless/v1/service/build_spec.rb +0 -212
  994. data/spec/integration/serverless/v1/service/environment/deployment_spec.rb +0 -137
  995. data/spec/integration/serverless/v1/service/environment/log_spec.rb +0 -98
  996. data/spec/integration/serverless/v1/service/environment/variable_spec.rb +0 -211
  997. data/spec/integration/serverless/v1/service/environment_spec.rb +0 -173
  998. data/spec/integration/serverless/v1/service/function/function_version_spec.rb +0 -95
  999. data/spec/integration/serverless/v1/service/function_spec.rb +0 -205
  1000. data/spec/integration/serverless/v1/service_spec.rb +0 -206
  1001. data/spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb +0 -51
  1002. data/spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb +0 -54
  1003. data/spec/integration/studio/v1/flow/engagement/step_spec.rb +0 -101
  1004. data/spec/integration/studio/v1/flow/engagement_spec.rb +0 -171
  1005. data/spec/integration/studio/v1/flow/execution/execution_context_spec.rb +0 -51
  1006. data/spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb +0 -54
  1007. data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +0 -101
  1008. data/spec/integration/studio/v1/flow/execution_spec.rb +0 -171
  1009. data/spec/integration/studio/v1/flow_spec.rb +0 -117
  1010. data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -204
  1011. data/spec/integration/sync/v1/service/document_spec.rb +0 -257
  1012. data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -257
  1013. data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -204
  1014. data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -257
  1015. data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
  1016. data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -204
  1017. data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -257
  1018. data/spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb +0 -47
  1019. data/spec/integration/sync/v1/service/sync_stream_spec.rb +0 -249
  1020. data/spec/integration/sync/v1/service_spec.rb +0 -266
  1021. data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +0 -236
  1022. data/spec/integration/taskrouter/v1/workspace/event_spec.rb +0 -165
  1023. data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +0 -225
  1024. data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +0 -316
  1025. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +0 -96
  1026. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +0 -82
  1027. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +0 -108
  1028. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +0 -146
  1029. data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +0 -294
  1030. data/spec/integration/taskrouter/v1/workspace/task_spec.rb +0 -326
  1031. data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +0 -194
  1032. data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +0 -188
  1033. data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +0 -92
  1034. data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +0 -89
  1035. data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +0 -70
  1036. data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +0 -116
  1037. data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +0 -294
  1038. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +0 -97
  1039. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +0 -58
  1040. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +0 -71
  1041. data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +0 -270
  1042. data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +0 -94
  1043. data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +0 -73
  1044. data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +0 -105
  1045. data/spec/integration/taskrouter/v1/workspace_spec.rb +0 -295
  1046. data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +0 -192
  1047. data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +0 -192
  1048. data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +0 -252
  1049. data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +0 -267
  1050. data/spec/integration/trunking/v1/trunk/terminating_sip_domain_spec.rb +0 -231
  1051. data/spec/integration/trunking/v1/trunk_spec.rb +0 -368
  1052. data/spec/integration/verify/v2/service/messaging_configuration_spec.rb +0 -231
  1053. data/spec/integration/verify/v2/service/rate_limit/bucket_spec.rb +0 -249
  1054. data/spec/integration/verify/v2/service/rate_limit_spec.rb +0 -221
  1055. data/spec/integration/verify/v2/service/verification_check_spec.rb +0 -54
  1056. data/spec/integration/verify/v2/service/verification_spec.rb +0 -277
  1057. data/spec/integration/verify/v2/service_spec.rb +0 -243
  1058. data/spec/integration/video/v1/composition_hook_spec.rb +0 -410
  1059. data/spec/integration/video/v1/composition_settings_spec.rb +0 -86
  1060. data/spec/integration/video/v1/composition_spec.rb +0 -350
  1061. data/spec/integration/video/v1/recording_settings_spec.rb +0 -86
  1062. data/spec/integration/video/v1/recording_spec.rb +0 -179
  1063. data/spec/integration/video/v1/room/recording_spec.rb +0 -188
  1064. data/spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb +0 -96
  1065. data/spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb +0 -105
  1066. data/spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb +0 -97
  1067. data/spec/integration/video/v1/room/room_participant_spec.rb +0 -190
  1068. data/spec/integration/video/v1/room_spec.rb +0 -257
  1069. data/spec/integration/voice/v1/dialing_permissions/bulk_country_update_spec.rb +0 -45
  1070. data/spec/integration/voice/v1/dialing_permissions/country/highrisk_special_prefix_spec.rb +0 -61
  1071. data/spec/integration/voice/v1/dialing_permissions/country_spec.rb +0 -112
  1072. data/spec/integration/voice/v1/dialing_permissions/settings_spec.rb +0 -77
  1073. data/spec/integration/voice/v1/dialing_permissions_spec.rb +0 -12
  1074. data/spec/integration/wireless/v1/command_spec.rb +0 -289
  1075. data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -282
  1076. data/spec/integration/wireless/v1/sim/data_session_spec.rb +0 -89
  1077. data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -115
  1078. data/spec/integration/wireless/v1/sim_spec.rb +0 -329
  1079. data/spec/integration/wireless/v1/usage_record_spec.rb +0 -111
  1080. data/spec/jwt/access_token_spec.rb +0 -151
  1081. data/spec/jwt/client_capability_spec.rb +0 -104
  1082. data/spec/jwt/task_router_spec.rb +0 -172
  1083. data/spec/rack/twilio_webhook_authentication_spec.rb +0 -106
  1084. data/spec/rest/client_spec.rb +0 -83
  1085. data/spec/security/request_validator_spec.rb +0 -125
  1086. data/spec/spec_helper.rb +0 -38
  1087. data/spec/support/fakeweb.rb +0 -2
  1088. data/spec/twilio_spec.rb +0 -17
  1089. data/spec/twiml/messaging_response_spec.rb +0 -235
  1090. data/spec/twiml/voice_response_spec.rb +0 -847
  1091. data/spec/util/configuration_spec.rb +0 -21
  1092. data/spec/util/url_encode_spec.rb +0 -12
  1093. /data/lib/twilio-ruby/framework/{domain.rb → rest/domain.rb} +0 -0
  1094. /data/lib/twilio-ruby/framework/{helper.rb → rest/helper.rb} +0 -0
  1095. /data/lib/twilio-ruby/framework/{obsolete_client.rb → rest/obsolete_client.rb} +0 -0
  1096. /data/lib/twilio-ruby/framework/{page.rb → rest/page.rb} +0 -0
  1097. /data/lib/twilio-ruby/framework/{resource.rb → rest/resource.rb} +0 -0
data/CHANGES.md CHANGED
@@ -1,6 +1,2374 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2024-07-02] Version 7.2.3
5
+ --------------------------
6
+ **Rubygems**
7
+ - Add docs link to gemspec
8
+
9
+ [2024-07-02] Version 7.2.2
10
+ --------------------------
11
+ **Intelligence**
12
+ - Deprecate account flag api.twilio-intelligence.v2
13
+
14
+
15
+ [2024-06-27] Version 7.2.1
16
+ --------------------------
17
+ **Api**
18
+ - Add `transcription` resource
19
+ - Add beta feature request managed cert
20
+
21
+ **Flex**
22
+ - Changed mount name for flex_team v2 api
23
+
24
+ **Intelligence**
25
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
26
+
27
+ **Numbers**
28
+ - Added include_constraints query parameter to the Regulations API
29
+
30
+ **Twiml**
31
+ - Add support for `<Transcription>` noun
32
+
33
+
34
+ [2024-06-18] Version 7.2.0
35
+ --------------------------
36
+ **Library - Chore**
37
+ - [PR #723](https://github.com/twilio/twilio-ruby/pull/723): adding contentType in post and put. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
38
+
39
+ **Events**
40
+ - Add `status` and `documentation_url` to Event Types
41
+
42
+ **Lookups**
43
+ - Removed unused `fraud` lookups in V1 only to facilitate rest proxy migration
44
+
45
+ **Numbers**
46
+ - Add date_created field to the Get Port In Request API
47
+ - Rename the `status_last_time_updated_timestamp` field to `last_updated` in the Get Port In Phone Number API **(breaking change)**
48
+ - Add Rejection reason and rejection reason code to the Get Port In Phone Number API
49
+ - Remove the carrier information from the Portability API
50
+
51
+ **Proxy**
52
+ - Change property `type` from enum to ienum
53
+
54
+ **Trusthub**
55
+ - Add skipMessagingUseCase field in compliance_tollfree_inquiry.
56
+
57
+
58
+ [2024-06-06] Version 7.1.1
59
+ --------------------------
60
+ **Library - Chore**
61
+ - [PR #721](https://github.com/twilio/twilio-ruby/pull/721): adding rexml to Gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
62
+
63
+ **Api**
64
+ - Mark MaxPrice as obsolete
65
+
66
+ **Lookups**
67
+ - Update examples for `phone_number_quality_score`
68
+
69
+ **Messaging**
70
+ - List tollfree verifications on parent account and all sub-accounts
71
+
72
+
73
+ [2024-05-24] Version 7.1.0
74
+ --------------------------
75
+ **Library - Chore**
76
+ - [PR #720](https://github.com/twilio/twilio-ruby/pull/720): removing preview_messaging reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
77
+
78
+ **Api**
79
+ - Add ie1 as supported region for UserDefinedMessage and UserDefinedMessageSubscription.
80
+
81
+ **Flex**
82
+ - Adding validated field to `plugin_versions`
83
+ - Corrected the data type for `runtime_domain`, `call_recording_webhook_url`, `crm_callback_url`, `crm_fallback_url`, `flex_url` in Flex Configuration
84
+ - Making `routing` optional in Create Interactions endpoint
85
+
86
+ **Intelligence**
87
+ - Expose operator authoring apis to public visibility
88
+ - Deleted `language_code` parameter from updating service in v2 **(breaking change)**
89
+ - Add read_only_attached_operator_sids to v2 services
90
+
91
+ **Numbers**
92
+ - Add API endpoint for GET Porting Webhook Configurations By Account SID
93
+ - Remove bulk portability api under version `/v1`. **(breaking change)**
94
+ - Removed porting_port_in_fetch.json files and move the content into porting_port_in.json files
95
+ - Add API endpoint to deleting Webhook Configurations
96
+ - Add Get Phone Number by Port in request SID and Phone Number SID api
97
+ - Add Create Porting webhook configuration API
98
+ - Added bundle_sid and losing_carrier_information fields to Create PortInRequest api to support Japan porting
99
+
100
+ **Taskrouter**
101
+ - Add back `routing_target` property to tasks
102
+ - Add back `ignore_capacity` property to tasks
103
+ - Removing `routing_target` property to tasks due to revert
104
+ - Removing `ignore_capacity` property to tasks due to revert
105
+ - Add `routing_target` property to tasks
106
+ - Add `ignore_capacity` property to tasks
107
+
108
+ **Trusthub**
109
+ - Add new field errors to bundle as part of public API response in customer_profile.json and trust_product.json **(breaking change)**
110
+ - Add themeSetId field in compliance_tollfree_inquiry.
111
+
112
+ **Verify**
113
+ - Update `friendly_name` description on service docs
114
+
115
+
116
+ [2024-04-18] Version 7.0.2
117
+ --------------------------
118
+ **Flex**
119
+ - Add header `ui_version` to `web_channels` API
120
+
121
+ **Messaging**
122
+ - Redeploy after failed pipeline
123
+
124
+ **Numbers**
125
+ - Add Delete Port In request phone number api and Add Delete Port In request api
126
+
127
+
128
+ [2024-04-04] Version 7.0.1
129
+ --------------------------
130
+ **Api**
131
+ - Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
132
+
133
+ **Flex**
134
+ - Remove optional parameter from `plugins` and it to `plugin_versions`
135
+
136
+ **Lookups**
137
+ - Add new `pre_fill` package to the lookup response
138
+
139
+ **Messaging**
140
+ - Cleanup api.messaging.next-gen from Messaging Services endpoints
141
+ - Readd Sending-Window after fixing test failure
142
+
143
+ **Verify**
144
+ - Add `whatsapp.msg_service_sid` and `whatsapp.from` parameters to create, update, get and list of services endpoints
145
+
146
+ **Voice**
147
+ - Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
148
+
149
+ **Twiml**
150
+ - Add new `token_type` value `payment-method` for `Pay` verb
151
+
152
+
153
+ [2024-04-01] Version 7.0.0
154
+ --------------------------
155
+ **Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2024-01-19-6xx-to-7xx) for detailed migration notes.
156
+
157
+ **Library - Feature**
158
+ - [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)**
159
+
160
+ **Library - Chore**
161
+ - [PR #715](https://github.com/twilio/twilio-ruby/pull/715): remove media endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
162
+
163
+ **Api**
164
+ - Add property `queue_time` to conference participant resource
165
+ - Update RiskCheck documentation
166
+ - Correct call filtering by start and end time documentation, clarifying that times are UTC.
167
+
168
+ **Flex**
169
+ - Adding optional parameter to `plugins`
170
+
171
+ **Media**
172
+ - Remove API: MediaProcessor
173
+
174
+ **Messaging**
175
+ - Remove Sending-Window due to test failure
176
+ - Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
177
+
178
+ **Numbers**
179
+ - Correct valid_until_date field to be visible in Bundles resource
180
+ - Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
181
+
182
+ **Oauth**
183
+ - Modified token endpoint response
184
+ - Added refresh_token and scope as optional parameter to token endpoint
185
+ - Add new APIs for vendor authorize and token endpoints
186
+
187
+ **Trusthub**
188
+ - Add update inquiry endpoint in compliance_registration.
189
+ - Add new field in themeSetId in compliance_registration.
190
+
191
+ **Voice**
192
+ - Correct call filtering by start and end time documentation, clarifying that times are UTC.
193
+
194
+ **Twiml**
195
+ - Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
196
+ - Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
197
+
198
+
199
+ [2024-03-12] Version 6.12.1
200
+ ---------------------------
201
+ **Api**
202
+ - Correct precedence documentation for application_sid vs status_callback in message creation
203
+ - Mark MaxPrice as deprecated
204
+
205
+ **Flex**
206
+ - Making `plugins` visibility to public
207
+
208
+ **Messaging**
209
+ - Add new `errors` attribute to the Brand Registration resource.
210
+ - Mark `brand_feedback` attribute as deprecated.
211
+ - Mark `failure_reason` attribute as deprecated.
212
+ - 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`.
213
+
214
+ **Numbers**
215
+ - Correcting mount_name for porting port in fetch API
216
+
217
+ **Trusthub**
218
+ - Add new field in statusCallbackUrl in compliance_registration.
219
+ - Add new field in isvRegisteringForSelfOrTenant in compliance_registration.
220
+
221
+ **Twiml**
222
+ - Expanded description of Action parameter for Message verb
223
+
224
+
225
+ [2024-02-27] Version 6.12.0
226
+ ---------------------------
227
+ **Library - Chore**
228
+ - [PR #712](https://github.com/twilio/twilio-ruby/pull/712): cluster tests enabled. Thanks to [@sbansla](https://github.com/sbansla)!
229
+
230
+ **Api**
231
+ - remove feedback and feedback summary from call resource
232
+
233
+ **Flex**
234
+ - Adding `routing_properties` to Interactions Channels Participant
235
+
236
+ **Lookups**
237
+ - Add new `line_status` package to the lookup response
238
+ - Remove `live_activity` package from the lookup response **(breaking change)**
239
+
240
+ **Messaging**
241
+ - Add tollfree multiple rejection reasons response array
242
+
243
+ **Trusthub**
244
+ - Add ENUM for businessRegistrationAuthority in compliance_registration. **(breaking change)**
245
+ - Add new field in isIsvEmbed in compliance_registration.
246
+ - Add additional optional fields in compliance_registration for Individual business type.
247
+
248
+ **Twiml**
249
+ - Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb
250
+
251
+
252
+ [2024-02-09] Version 6.11.0
253
+ ---------------------------
254
+ **Library - Chore**
255
+ - [PR #710](https://github.com/twilio/twilio-ruby/pull/710): remove live media endpoint. Thanks to [@califlower](https://github.com/califlower)!
256
+ - [PR #708](https://github.com/twilio/twilio-ruby/pull/708): removing oauth and autopilot references. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
257
+
258
+ **Api**
259
+ - Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
260
+ - Update documentation to reflect RiskCheck GA
261
+ - Added optional parameter `CallToken` for create participant api
262
+
263
+ **Events**
264
+ - Marked as GA
265
+
266
+ **Flex**
267
+ - Adding `flex_instance_sid` to Flex Configuration
268
+ - Adding `provisioning_status` for Email Manager
269
+ - Adding `offline_config` to Flex Configuration
270
+
271
+ **Insights**
272
+ - add flag to restrict access to unapid customers
273
+ - decommission voice-qualitystats-endpoint role
274
+
275
+ **Intelligence**
276
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
277
+
278
+ **Lookups**
279
+ - Remove `carrier` field from `sms_pumping_risk` and leave `carrier_risk_category` **(breaking change)**
280
+ - Remove carrier information from call forwarding package **(breaking change)**
281
+
282
+ **Messaging**
283
+ - Add update instance endpoints to us_app_to_person api
284
+ - Add tollfree edit_allowed and edit_reason fields
285
+ - Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
286
+ - Add DELETE support to Tollfree Verification resource
287
+
288
+ **Numbers**
289
+ - Add Get Port In request api
290
+
291
+ **Push**
292
+ - Migrated to new Push API V4 with Resilient Notification Delivery.
293
+
294
+ **Serverless**
295
+ - Add node18 as a valid Build runtime
296
+
297
+ **Taskrouter**
298
+ - Add `jitter_buffer_size` param in update reservation
299
+ - Add container attribute to task_queue_bulk_real_time_statistics endpoint
300
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
301
+
302
+ **Trusthub**
303
+ - Add optional field NotificationEmail to the POST /v1/ComplianceInquiries/Customers/Initialize API
304
+ - Add additional optional fields in compliance_tollfree_inquiry.json
305
+ - Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
306
+ - Add new optional field notification_email to compliance_tollfree_inquiry.json
307
+
308
+ **Verify**
309
+ - `Tags` property added again to Public Docs **(breaking change)**
310
+ - Remove `Tags` from Public Docs **(breaking change)**
311
+ - Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
312
+ - Add `Tags` optional parameter on Verification creation.
313
+ - Update Verify TOTP maturity to GA.
314
+
315
+
316
+ [2024-01-25] Version 6.10.0
317
+ ---------------------------
318
+ **Oauth**
319
+ - updated openid discovery endpoint uri **(breaking change)**
320
+ - Added device code authorization endpoint
321
+ - added oauth JWKS endpoint
322
+ - Get userinfo resource
323
+ - OpenID discovery resource
324
+ - Add new API for token endpoint
325
+
326
+
327
+ [2024-01-14] Version 6.9.1
328
+ --------------------------
329
+ **Library - Chore**
330
+ - [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)!
331
+
332
+ **Library - Fix**
333
+ - [PR #693](https://github.com/twilio/twilio-ruby/pull/693): fixed query param not going for delete. Thanks to [@manisha1997](https://github.com/manisha1997)!
334
+
335
+ **Push**
336
+ - Migrated to new Push API V4 with Resilient Notification Delivery.
337
+
338
+
339
+ [2023-12-14] Version 6.9.0
340
+ --------------------------
341
+ **Api**
342
+ - Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
343
+
344
+ **Events**
345
+ - Marked as GA
346
+
347
+ **Insights**
348
+ - decommission voice-qualitystats-endpoint role
349
+
350
+ **Numbers**
351
+ - Add Get Port In request api
352
+
353
+ **Taskrouter**
354
+ - Add `jitter_buffer_size` param in update reservation
355
+
356
+ **Trusthub**
357
+ - Add additional optional fields in compliance_tollfree_inquiry.json
358
+
359
+ **Verify**
360
+ - Remove `Tags` from Public Docs **(breaking change)**
361
+
362
+
363
+ [2023-12-01] Version 6.8.3
364
+ --------------------------
365
+ **Verify**
366
+ - Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
367
+
368
+
369
+ [2023-11-17] Version 6.8.2
370
+ --------------------------
371
+ **Library - Chore**
372
+ - [PR #687](https://github.com/twilio/twilio-ruby/pull/687): remove more oauth refrences. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
373
+
374
+ **Api**
375
+ - Update documentation to reflect RiskCheck GA
376
+
377
+ **Messaging**
378
+ - Add tollfree edit_allowed and edit_reason fields
379
+ - Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
380
+
381
+ **Taskrouter**
382
+ - Add container attribute to task_queue_bulk_real_time_statistics endpoint
383
+
384
+ **Trusthub**
385
+ - Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
386
+ - Add new optional field notification_email to compliance_tollfree_inquiry.json
387
+
388
+ **Verify**
389
+ - Add `Tags` optional parameter on Verification creation.
390
+
391
+
392
+ [2023-11-06] Version 6.8.1
393
+ --------------------------
394
+ **Flex**
395
+ - Adding `provisioning_status` for Email Manager
396
+
397
+ **Intelligence**
398
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
399
+
400
+ **Messaging**
401
+ - Add DELETE support to Tollfree Verification resource
402
+
403
+ **Serverless**
404
+ - Add node18 as a valid Build runtime
405
+
406
+ **Verify**
407
+ - Update Verify TOTP maturity to GA.
408
+
409
+
410
+ [2023-10-19] Version 6.8.0
411
+ --------------------------
412
+ **Library - Chore**
413
+ - [PR #682](https://github.com/twilio/twilio-ruby/pull/682): Removing Test Related To Deprecated Endpoint - OAuth. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
414
+
415
+ **Library - Fix**
416
+ - [PR #680](https://github.com/twilio/twilio-ruby/pull/680): update validate ssl method with new endpoint. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
417
+
418
+ **Accounts**
419
+ - Updated Safelist metadata to correct the docs.
420
+ - Add Global SafeList API changes
421
+
422
+ **Api**
423
+ - Added optional parameter `CallToken` for create participant api
424
+
425
+ **Flex**
426
+ - Adding `offline_config` to Flex Configuration
427
+
428
+ **Intelligence**
429
+ - Deleted `redacted` parameter from fetching transcript in v2 **(breaking change)**
430
+
431
+ **Lookups**
432
+ - Add new `phone_number_quality_score` package to the lookup response
433
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
434
+
435
+ **Messaging**
436
+ - Update US App To Person documentation with current `message_samples` requirements
437
+
438
+ **Taskrouter**
439
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
440
+ - Add `virtual_start_time` property to tasks
441
+ - Updating `task_queue_data` format from `map` to `array` in the response of bulk get endpoint of TaskQueue Real Time Statistics API **(breaking change)**
442
+
443
+
444
+ [2023-10-05] Version 6.7.1
445
+ --------------------------
446
+ **Library - Chore**
447
+ - [PR #678](https://github.com/twilio/twilio-ruby/pull/678): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
448
+
449
+ **Lookups**
450
+ - Add test api support for Lookup v2
451
+
452
+
453
+ [2023-09-21] Version 6.7.0
454
+ --------------------------
455
+ **Conversations**
456
+ - Enable conversation email bindings, email address configurations and email message subjects
457
+
458
+ **Flex**
459
+ - Adding `console_errors_included` to Flex Configuration field `debugger_integrations`
460
+ - Introducing new channel status as `inactive` in modify channel endpoint for leave functionality **(breaking change)**
461
+ - Adding `citrix_voice_vdi` to Flex Configuration
462
+
463
+ **Taskrouter**
464
+ - Add Update Queues, Workers, Workflow Real Time Statistics API to flex-rt-data-api-v2 endpoint
465
+ - Add Update Workspace Real Time Statistics API to flex-rt-data-api-v2 endpoint
466
+
467
+
468
+ [2023-09-07] Version 6.6.0
469
+ --------------------------
470
+ **Api**
471
+ - Make message tagging parameters public **(breaking change)**
472
+
473
+ **Flex**
474
+ - Adding `agent_conv_end_methods` to Flex Configuration
475
+
476
+ **Messaging**
477
+ - Mark Mesasging Services fallback_to_long_code feature obsolete
478
+
479
+ **Numbers**
480
+ - Add Create Port In request api
481
+ - Renaming sid for bulk_hosting_sid and remove account_sid response field in numbers/v2/BulkHostedNumberOrders **(breaking change)**
482
+
483
+ **Pricing**
484
+ - gate resources behind a beta_feature
485
+
486
+
487
+ [2023-08-24] Version 6.5.0
488
+ --------------------------
489
+ **Api**
490
+ - 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
491
+
492
+ **Flex**
493
+ - Changing `sid<UO>` path param to `sid<UT>` in interaction channel participant update endpoint **(breaking change)**
494
+
495
+ **Messaging**
496
+ - Add Channel Sender api
497
+ - Fixing country code docs and removing Zipwhip references
498
+
499
+ **Numbers**
500
+ - Request status changed in numbers/v2/BulkHostedNumberOrders **(breaking change)**
501
+ - Add bulk hosting orders API under version `/v2
502
+
503
+
504
+ [2023-08-10] Version 6.4.0
505
+ --------------------------
506
+ **Library - Fix**
507
+ - [PR #673](https://github.com/twilio/twilio-ruby/pull/673): remove ruby version. Thanks to [@kridai](https://github.com/kridai)!
508
+ - [PR #672](https://github.com/twilio/twilio-ruby/pull/672): revert setting ruby version. Thanks to [@kridai](https://github.com/kridai)!
509
+ - [PR #671](https://github.com/twilio/twilio-ruby/pull/671): fix the headers issue. Thanks to [@kridai](https://github.com/kridai)!
510
+
511
+ **Insights**
512
+ - Normalize annotations parameters in list summary api to be prefixed
513
+
514
+ **Numbers**
515
+ - Change Bulk_hosted_sid from BHR to BH prefix in HNO and dependent under version `/v2` API's. **(breaking change)**
516
+ - Added parameter target_account_sid to portability and account_sid to response body
517
+
518
+ **Verify**
519
+ - Remove beta feature flag to list attempts API.
520
+ - Remove beta feature flag to verifications summary attempts API.
521
+
522
+
523
+ [2023-07-27] Version 6.3.1
524
+ --------------------------
525
+ **Api**
526
+ - Added `voice-intelligence`, `voice-intelligence-transcription` and `voice-intelligence-operators` to `usage_record` API.
527
+ - Added `tts-google` to `usage_record` API.
528
+
529
+ **Lookups**
530
+ - Add new `disposable_phone_number_risk` package to the lookup response
531
+
532
+ **Verify**
533
+ - Documentation of list attempts API was improved by correcting `date_created_after` and `date_created_before` expected date format.
534
+ - Documentation was improved by correcting `date_created_after` and `date_created_before` expected date format parameter on attempts summary API.
535
+ - Documentation was improved by adding `WHATSAPP` as optional valid parameter on attempts summary API.
536
+
537
+ **Twiml**
538
+ - Added support for he-il inside of ssm_lang.json that was missing
539
+ - Added support for he-il language in say.json that was missing
540
+ - Add `statusCallback` and `statusCallbackMethod` attributes to `<Siprec>`.
541
+
542
+
543
+ [2023-07-13] Version 6.3.0
544
+ --------------------------
545
+ **Library - Chore**
546
+ - [PR #668](https://github.com/twilio/twilio-ruby/pull/668): remove cacert. Thanks to [@sbansla](https://github.com/sbansla)!
547
+
548
+ **Flex**
549
+ - Adding `interaction_context_sid` as optional parameter in Interactions API
550
+
551
+ **Messaging**
552
+ - Making visiblity public for tollfree_verification API
553
+
554
+ **Numbers**
555
+ - Remove Sms capability property from HNO creation under version `/v2` of HNO API. **(breaking change)**
556
+ - Update required properties in LOA creation under version `/v2` of Authorization document API. **(breaking change)**
557
+
558
+ **Taskrouter**
559
+ - Add api to fetch task queue statistics for multiple TaskQueues
560
+
561
+ **Verify**
562
+ - Add `RiskCheck` optional parameter on Verification creation.
563
+
564
+ **Twiml**
565
+ - Add Google Voices and languages
566
+
567
+
568
+ [2023-06-28] Version 6.2.0
569
+ --------------------------
570
+ **Library - Fix**
571
+ - [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)!
572
+
573
+ **Lookups**
574
+ - Add `reassigned_number` package to the lookup response
575
+
576
+ **Numbers**
577
+ - Add hosted_number_order under version `/v2`.
578
+ - Update properties in Porting and Bulk Porting APIs. **(breaking change)**
579
+ - Added bulk Portability API under version `/v1`.
580
+ - Added Portability API under version `/v1`.
581
+
582
+
583
+ [2023-06-15] Version 6.1.0
584
+ --------------------------
585
+ **Api**
586
+ - Added `content_sid` as conditional parameter
587
+ - Removed `content_sid` as optional field **(breaking change)**
588
+
589
+ **Insights**
590
+ - Added `annotation` to list summary output
591
+
592
+
593
+ [2023-06-01] Version 6.0.2
594
+ --------------------------
595
+ **Api**
596
+ - Add `Trim` to create Conference Participant API
597
+
598
+ **Intelligence**
599
+ - First public beta release for Voice Intelligence APIs with client libraries
600
+
601
+ **Messaging**
602
+ - Add new `errors` attribute to us_app_to_person resource. This attribute will provide additional information about campaign registration errors.
603
+
604
+
605
+ [2023-05-18] Version 6.0.1
606
+ --------------------------
607
+ **Library - Fix**
608
+ - [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)!
609
+
610
+ **Conversations**
611
+ - Added `AddressCountry` parameter to Address Configuration endpoint, to support regional short code addresses
612
+ - Added query parameters `start_date`, `end_date` and `state` in list Conversations resource for filtering
613
+
614
+ **Insights**
615
+ - Added annotations parameters to list summary api
616
+
617
+ **Messaging**
618
+ - Add GET domainByMessagingService endpoint to linkShortening service
619
+ - Add `disable_https` to link shortening domain_config properties
620
+
621
+ **Numbers**
622
+ - Add bulk_eligibility api under version `/v1`.
623
+
624
+
625
+ [2023-05-04] Version 6.0.0
626
+ --------------------------
627
+ **Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2023-05-03-5xx-to-6xx) for detailed migration notes.
628
+
629
+ **Library - Feature**
630
+ - [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)**
631
+
632
+ **Conversations**
633
+ - Remove `start_date`, `end_date` and `state` query parameters from list operation on Conversations resource **(breaking change)**
634
+
635
+ **Twiml**
636
+ - Add support for new Amazon Polly voices (Q1 2023) for `Say` verb
637
+
638
+
639
+ [2023-04-19] Version 5.77.0
640
+ ---------------------------
641
+ **Library - Docs**
642
+ - [PR #645](https://github.com/twilio/twilio-ruby/pull/645): consolidate. Thanks to [@stern-shawn](https://github.com/stern-shawn)!
643
+
644
+ **Messaging**
645
+ - Remove `messaging_service_sids` and `messaging_service_sid_action` from domain config endpoint **(breaking change)**
646
+ - Add error_code and rejection_reason properties to tollfree verification API response
647
+
648
+ **Numbers**
649
+ - Added the new Eligibility API under version `/v1`.
650
+
651
+
652
+ [2023-04-05] Version 5.76.0
653
+ ---------------------------
654
+ **Conversations**
655
+ - Expose query parameters `start_date`, `end_date` and `state` in list operation on Conversations resource for sorting and filtering
656
+
657
+ **Insights**
658
+ - Added answered by filter in Call Summaries
659
+
660
+ **Lookups**
661
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
662
+
663
+ **Messaging**
664
+ - Add support for `SOLE_PROPRIETOR` brand type and `SOLE_PROPRIETOR` campaign use case.
665
+ - New Sole Proprietor Brands should be created with `SOLE_PROPRIETOR` brand type. Brand registration requests with `STARTER` brand type will be rejected.
666
+ - New Sole Proprietor Campaigns should be created with `SOLE_PROPRIETOR` campaign use case. Campaign registration requests with `STARTER` campaign use case will be rejected.
667
+ - Add Brand Registrations OTP API
668
+
669
+
670
+ [2023-03-22] Version 5.75.0
671
+ ---------------------------
672
+ **Library - Chore**
673
+ - [PR #630](https://github.com/twilio/twilio-ruby/pull/630): Accommodate jwt's minor and patch updates. Thanks to [@sato11](https://github.com/sato11)!
674
+
675
+ **Api**
676
+ - Revert Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources
677
+ - Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources **(breaking change)**
678
+
679
+ **Messaging**
680
+ - Add `linkshortening_messaging_service` resource
681
+ - Add new endpoint for GetDomainConfigByMessagingServiceSid
682
+ - Remove `validated` parameter and add `cert_in_validation` parameter to Link Shortening API **(breaking change)**
683
+
684
+
685
+ [2023-03-09] Version 5.74.5
686
+ ---------------------------
687
+ **Api**
688
+ - Add new categories for whatsapp template
689
+
690
+ **Lookups**
691
+ - Remove `validation_results` from the `default_output_properties`
692
+
693
+ **Supersim**
694
+ - Add ESimProfile's `matching_id` and `activation_code` parameters to libraries
695
+
696
+
697
+ [2023-02-22] Version 5.74.4
698
+ ---------------------------
699
+ **Api**
700
+ - Remove `scheduled_for` property from message resource
701
+ - Add `scheduled_for` property to message resource
702
+
703
+
704
+ [2023-02-08] Version 5.74.3
705
+ ---------------------------
706
+ **Lookups**
707
+ - Add `disposable_phone_number_risk` package to the lookup response
708
+ - Add `sms_pumping_risk` package to the lookup response
709
+
710
+
711
+ [2023-01-25] Version 5.74.2
712
+ ---------------------------
713
+ **Api**
714
+ - Add `public_application_connect_enabled` param to Application resource
715
+
716
+ **Messaging**
717
+ - Add new tollfree verification API property (ExternalReferenceId)]
718
+
719
+ **Verify**
720
+ - Add `device_ip` parameter and channel `auto` for sna/sms orchestration
721
+
722
+ **Twiml**
723
+ - Add support for `<Application>` noun and `<ApplicationSid>` noun, nested `<Parameter>` to `<Hangup>` and `<Leave>` verb
724
+
725
+
726
+ [2023-01-11] Version 5.74.1
727
+ ---------------------------
728
+ **Library - Chore**
729
+ - [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)!
730
+
731
+ **Conversations**
732
+ - Add support for creating Multi-Channel Rich Content Messages
733
+
734
+ **Lookups**
735
+ - Changed the no data message for match postal code from `no_data` to `data_not_available` in identity match package
736
+
737
+ **Messaging**
738
+ - Add update/edit tollfree verification API
739
+
740
+
741
+ [2022-12-14] Version 5.74.0
742
+ ---------------------------
743
+ **Api**
744
+ - Add `street_secondary` param to address create and update
745
+ - Make `method` optional for user defined message subscription **(breaking change)**
746
+
747
+ **Flex**
748
+ - Flex Conversations is now Generally Available
749
+ - Adding the ie1 mapping for authorization api, updating service base uri and base url response attribute **(breaking change)**
750
+ - Change web channels to GA and library visibility to public
751
+ - Changing the uri for authorization api from using Accounts to Insights **(breaking change)**
752
+
753
+ **Media**
754
+ - Gate Twilio Live endpoints behind beta_feature for EOS
755
+
756
+ **Messaging**
757
+ - Mark `MessageFlow` as a required field for Campaign Creation **(breaking change)**
758
+
759
+ **Oauth**
760
+ - updated openid discovery endpoint uri **(breaking change)**
761
+ - Added device code authorization endpoint
762
+
763
+ **Supersim**
764
+ - Allow filtering the SettingsUpdates resource by `status`
765
+
766
+ **Twiml**
767
+ - Add new Polly Neural voices
768
+ - Add tr-TR, ar-AE, yue-CN, fi-FI languages to SSML `<lang>` element.
769
+ - Add x-amazon-jyutping, x-amazon-pinyin, x-amazon-pron-kana, x-amazon-yomigana alphabets to SSML `<phoneme>` element.
770
+ - Rename `character` value for SSML `<say-as>` `interpret-as` attribute to `characters`. **(breaking change)**
771
+ - Rename `role` attribute to `format` in SSML `<say-as>` element. **(breaking change)**
772
+
773
+
774
+ [2022-11-30] Version 5.73.4
775
+ ---------------------------
776
+ **Flex**
777
+ - Adding new `assessments` api in version `v1`
778
+
779
+ **Lookups**
780
+ - Add `identity_match` package to the lookup response
781
+
782
+ **Messaging**
783
+ - Added `validated` parameter to Link Shortening API
784
+
785
+ **Serverless**
786
+ - Add node16 as a valid Build runtime
787
+ - Add ie1 and au1 as supported regions for all endpoints.
788
+
789
+
790
+ [2022-11-16] Version 5.73.3
791
+ ---------------------------
792
+ **Library - Chore**
793
+ - [PR #621](https://github.com/twilio/twilio-ruby/pull/621): upgrade GitHub Actions dependencies. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
794
+
795
+ **Api**
796
+ - Set the Content resource to have public visibility as Preview
797
+
798
+ **Flex**
799
+ - Adding new parameter `base_url` to 'gooddata' response in version `v1`
800
+
801
+ **Insights**
802
+ - Added `answered_by` field in List Call Summary
803
+ - Added `answered_by` field in call summary
804
+
805
+
806
+ [2022-11-10] Version 5.73.2
807
+ ---------------------------
808
+ **Flex**
809
+ - Adding two new authorization API 'user_roles' and 'gooddata' in version `v1`
810
+
811
+ **Messaging**
812
+ - Add new Campaign properties (MessageFlow, OptInMessage, OptInKeywords, OptOutMessage, OptOutKeywords, HelpMessage, HelpKeywords)
813
+
814
+ **Twiml**
815
+ - Add new speech models to `Gather`.
816
+
817
+
818
+ [2022-10-31] Version 5.73.1
819
+ ---------------------------
820
+ **Api**
821
+ - Added `contentSid` and `contentVariables` to Message resource with public visibility as Beta
822
+ - Add `UserDefinedMessageSubscription` and `UserDefinedMessage` resource
823
+
824
+ **Proxy**
825
+ - Remove FailOnParticipantConflict param from Proxy Session create and update and Proxy Participant create
826
+
827
+ **Supersim**
828
+ - Update SettingsUpdates resource to remove PackageSid
829
+
830
+ **Taskrouter**
831
+ - Add `Ordering` query parameter to Workers and TaskQueues for sorting by
832
+ - Add `worker_sid` query param for list reservations endpoint
833
+
834
+ **Twiml**
835
+ - Add `url` and `method` attributes to `<Conversation>`
836
+
837
+
838
+ [2022-10-19] Version 5.73.0
839
+ ---------------------------
840
+ **Library - Feature**
841
+ - [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)!
842
+
843
+ **Api**
844
+ - Make link shortening parameters public **(breaking change)**
845
+
846
+ **Oauth**
847
+ - added oauth JWKS endpoint
848
+ - Get userinfo resource
849
+ - OpenID discovery resource
850
+ - Add new API for token endpoint
851
+
852
+ **Supersim**
853
+ - Add SettingsUpdates resource
854
+
855
+ **Verify**
856
+ - Update Verify Push endpoints to `ga` maturity
857
+ - Verify BYOT add Channels property to the Get Templates response
858
+
859
+ **Twiml**
860
+ - Add `requireMatchingInputs` attribute and `input-matching-failed` errorType to `<Prompt>`
861
+
862
+
863
+ [2022-10-05] Version 5.72.1
864
+ ---------------------------
865
+ **Api**
866
+ - Added `virtual-agent` to `usage_record` API.
867
+ - Add AMD attributes to participant create request
868
+
869
+ **Twiml**
870
+ - Add AMD attributes to `Number` and `Sip`
871
+
872
+
873
+ [2022-09-07] Version 5.72.0
874
+ ---------------------------
875
+ **Flex**
876
+ - Removed redundant `close` status from Flex Interactions flow **(breaking change)**
877
+ - Adding `debugger_integration` and `flex_ui_status_report` to Flex Configuration
878
+
879
+ **Messaging**
880
+ - Add create, list and get tollfree verification API
881
+
882
+ **Verify**
883
+ - Verify SafeList API endpoints added.
884
+
885
+ **Video**
886
+ - Add `Anonymize` API
887
+
888
+ **Twiml**
889
+ - Update `event` value `call-in-progress` to `call-answered`
890
+
891
+
892
+ [2022-08-24] Version 5.71.0
893
+ ---------------------------
894
+ **Library - Test**
895
+ - [PR #615](https://github.com/twilio/twilio-ruby/pull/615): add test-docker rule. Thanks to [@beebzz](https://github.com/beebzz)!
896
+
897
+ **Api**
898
+ - Remove `beta feature` from scheduling params and remove optimize parameters. **(breaking change)**
899
+
900
+ **Routes**
901
+ - Remove Duplicate Create Method - Update Method will work even if Inbound Processing Region is currently empty/404. **(breaking change)**
902
+
903
+ **Twiml**
904
+ - Add new Polly Neural voices
905
+ - Add new languages to SSML `<lang>`.
906
+
907
+
908
+ [2022-08-10] Version 5.70.1
909
+ ---------------------------
910
+ **Library - Fix**
911
+ - [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)!
912
+
913
+ **Routes**
914
+ - Inbound Proccessing Region API - Public GA
915
+
916
+ **Supersim**
917
+ - Allow updating `DataLimit` on a Fleet
918
+
919
+
920
+ [2022-07-21] Version 5.70.0
921
+ ---------------------------
922
+ **Flex**
923
+ - Add `status`, `error_code`, and `error_message` fields to Interaction `Channel`
924
+ - Adding `messenger` and `gbm` as supported channels for Interactions API
925
+
926
+ **Messaging**
927
+ - Update alpha_sender docs with new valid characters
928
+
929
+ **Verify**
930
+ - Reorder Verification Check parameters so `code` stays as the first parameter **(breaking change)**
931
+ - Rollback List Attempts API V2 back to pilot stage.
932
+
933
+
934
+ [2022-07-13] Version 5.69.0
935
+ ---------------------------
936
+ **Library - Fix**
937
+ - [PR #612](https://github.com/twilio/twilio-ruby/pull/612): useragent regrex unit test for RC branch. Thanks to [@claudiachua](https://github.com/claudiachua)!
938
+
939
+ **Library - Test**
940
+ - [PR #610](https://github.com/twilio/twilio-ruby/pull/610): Adding misc as PR type. Thanks to [@rakatyal](https://github.com/rakatyal)!
941
+
942
+ **Conversations**
943
+ - Allowed to use `identity` as part of Participant's resource **(breaking change)**
944
+
945
+ **Lookups**
946
+ - Remove `enhanced_line_type` from the lookup response **(breaking change)**
947
+
948
+ **Supersim**
949
+ - Add support for `sim_ip_addresses` resource to helper libraries
950
+
951
+ **Verify**
952
+ - Changed summary param `service_sid` to `verify_service_sid` to be consistent with list attempts API **(breaking change)**
953
+ - Make `code` optional on Verification check to support `sna` attempts. **(breaking change)**
954
+
955
+
956
+ [2022-06-29] Version 5.68.0
957
+ ---------------------------
958
+ **Api**
959
+ - Added `amazon-polly` to `usage_record` API.
960
+
961
+ **Insights**
962
+ - Added `annotation` field in call summary
963
+ - Added new endpoint to fetch/create/update Call Annotations
964
+
965
+ **Verify**
966
+ - Remove `api.verify.totp` beta flag and set maturity to `beta` for Verify TOTP properties and parameters. **(breaking change)**
967
+ - Changed summary param `verify_service_sid` to `service_sid` to be consistent with list attempts API **(breaking change)**
968
+
969
+ **Twiml**
970
+ - Add `maxQueueSize` to `Enqueue`
971
+
972
+
973
+ [2022-06-15] Version 5.67.3
974
+ ---------------------------
975
+ **Lookups**
976
+ - Adding support for Lookup V2 API
977
+
978
+ **Studio**
979
+ - Corrected PII labels to be 30 days and added context to be PII
980
+
981
+ **Twiml**
982
+ - Add `statusCallbackMethod` attribute, nested `<Config` and `<Parameter>` elements to `<VirtualAgent>` noun.
983
+ - Add support for new Amazon Polly voices (Q2 2022) for `Say` verb
984
+ - Add support for `<Conversation>` noun
985
+
986
+
987
+ [2022-06-01] Version 5.67.2
988
+ ---------------------------
989
+ **Library - Chore**
990
+ - [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)!
991
+
992
+
993
+ [2022-05-18] Version 5.67.1
994
+ ---------------------------
995
+ **Api**
996
+ - Add property `media_url` to the recording resources
997
+
998
+ **Verify**
999
+ - Include `silent` as a channel type in the verifications API.
1000
+
1001
+
1002
+ [2022-05-04] Version 5.67.0
1003
+ ---------------------------
1004
+ **Library - Fix**
1005
+ - [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)!
1006
+ - [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)!
1007
+ - [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)!
1008
+
1009
+ **Library - Feature**
1010
+ - [PR #591](https://github.com/twilio/twilio-ruby/pull/591): Add Faraday 2.0 support. Thanks to [@tconst](https://github.com/tconst)!
1011
+
1012
+ **Conversations**
1013
+ - Expose query parameter `type` in list operation on Address Configurations resource
1014
+
1015
+ **Supersim**
1016
+ - Add `data_total_billed` and `billed_units` fields to Super SIM UsageRecords API response.
1017
+ - Change ESimProfiles `Eid` parameter to optional to enable Activation Code download method support **(breaking change)**
1018
+
1019
+ **Verify**
1020
+ - Deprecate `push.include_date` parameter in create and update service.
1021
+
1022
+
1023
+ [2022-04-20] Version 5.66.2
1024
+ ---------------------------
1025
+ **Library - Chore**
1026
+ - [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)!
1027
+
1028
+
1029
+ [2022-04-06] Version 5.66.1
1030
+ ---------------------------
1031
+ **Api**
1032
+ - Updated `provider_sid` visibility to private
1033
+
1034
+ **Verify**
1035
+ - Verify List Attempts API summary endpoint added.
1036
+ - Update PII documentation for `AccessTokens` `factor_friendly_name` property.
1037
+
1038
+ **Voice**
1039
+ - make annotation parameter from /Calls API private
1040
+
1041
+
1042
+ [2022-03-23] Version 5.66.0
1043
+ ---------------------------
1044
+ **Api**
1045
+ - Change `stream` url parameter to non optional
1046
+ - Add `verify-totp` and `verify-whatsapp-conversations-business-initiated` categories to `usage_record` API
1047
+
1048
+ **Chat**
1049
+ - Added v3 Channel update endpoint to support Public to Private channel migration
1050
+
1051
+ **Flex**
1052
+ - Private Beta release of the Interactions API to support the upcoming release of Flex Conversations at the end of Q1 2022.
1053
+ - Adding `channel_configs` object to Flex Configuration
1054
+
1055
+ **Media**
1056
+ - Add max_duration param to PlayerStreamer
1057
+
1058
+ **Supersim**
1059
+ - Remove Commands resource, use SmsCommands resource instead **(breaking change)**
1060
+
1061
+ **Taskrouter**
1062
+ - Add limits to `split_by_wait_time` for Cumulative Statistics Endpoint
1063
+
1064
+ **Video**
1065
+ - Change recording `status_callback_method` type from `enum` to `http_method` **(breaking change)**
1066
+ - Add `status_callback` and `status_callback_method` to composition
1067
+ - Add `status_callback` and `status_callback_method` to recording
1068
+
1069
+
1070
+ [2022-03-09] Version 5.65.1
1071
+ ---------------------------
1072
+ **Library - Fix**
1073
+ - [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)!
1074
+
1075
+ **Library - Chore**
1076
+ - [PR #599](https://github.com/twilio/twilio-ruby/pull/599): push Datadog Release Metric upon deploy success. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1077
+
1078
+ **Api**
1079
+ - Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings
1080
+
1081
+ **Chat**
1082
+ - Add `X-Twilio-Wehook-Enabled` header to `delete` method in UserChannel resource
1083
+
1084
+ **Numbers**
1085
+ - Expose `failure_reason` in the Supporting Documents resources
1086
+
1087
+ **Verify**
1088
+ - Add optional `metadata` parameter to "verify challenge" endpoint, so the SDK/App can attach relevant information from the device when responding to challenges.
1089
+ - remove beta feature flag to list atempt api operations.
1090
+ - Add `ttl` and `date_created` properties to `AccessTokens`.
1091
+
1092
+
1093
+ [2022-02-23] Version 5.65.0
1094
+ ---------------------------
1095
+ **Api**
1096
+ - Add `uri` to `stream` resource
1097
+ - Add A2P Registration Fee category (`a2p-registration-fee`) to usage records
1098
+ - Detected a bug and removed optional boolean include_soft_deleted parameter to retrieve soft deleted recordings. **(breaking change)**
1099
+ - Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings.
1100
+
1101
+ **Numbers**
1102
+ - Unrevert valid_until and sort filter params added to List Bundles resource
1103
+ - Revert valid_until and sort filter params added to List Bundles resource
1104
+ - Update sorting params added to List Bundles resource in the previous release
1105
+
1106
+ **Preview**
1107
+ - Moved `web_channels` from preview to beta under `flex-api` **(breaking change)**
1108
+
1109
+ **Taskrouter**
1110
+ - Add `ETag` as Response Header to List of Task, Reservation & Worker
1111
+
1112
+ **Verify**
1113
+ - Remove outdated documentation commentary to contact sales. Product is already in public beta.
1114
+ - Add optional `metadata` to factors.
1115
+
1116
+ **Twiml**
1117
+ - Add new Polly Neural voices
1118
+
1119
+
1120
+ [2022-02-09] Version 5.64.0
1121
+ ---------------------------
1122
+ **Library - Chore**
1123
+ - [PR #594](https://github.com/twilio/twilio-ruby/pull/594): upgrade supported language versions. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1124
+
1125
+ **Api**
1126
+ - Add `stream` resource
1127
+
1128
+ **Conversations**
1129
+ - Fixed DELETE request to accept "sid_like" params in Address Configuration resources **(breaking change)**
1130
+ - Expose Address Configuration resource for `sms` and `whatsapp`
1131
+
1132
+ **Fax**
1133
+ - Removed deprecated Programmable Fax Create and Update methods **(breaking change)**
1134
+
1135
+ **Insights**
1136
+ - Rename `call_state` to `call_status` and remove `whisper` in conference participant summary **(breaking change)**
1137
+
1138
+ **Numbers**
1139
+ - Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource
1140
+
1141
+ **Supersim**
1142
+ - Fix typo in Fleet resource docs
1143
+ - Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
1144
+ - Add support for setting and reading `ip_commands_url` and `ip_commands_method` on Fleets resource for helper libraries
1145
+ - Changed `sim` property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs
1146
+
1147
+ **Verify**
1148
+ - Update list attempts API to include new filters and response fields.
1149
+
1150
+
1151
+ [2022-01-26] Version 5.63.1
1152
+ ---------------------------
1153
+ **Library - Fix**
1154
+ - [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)!
1155
+
1156
+ **Library - Chore**
1157
+ - [PR #589](https://github.com/twilio/twilio-ruby/pull/589): Add sonarcloud analysis. Thanks to [@BrimmingDev](https://github.com/BrimmingDev)!
1158
+ - [PR #588](https://github.com/twilio/twilio-ruby/pull/588): support for rubocop linting on ruby-head. Thanks to [@Hunga1](https://github.com/Hunga1)!
1159
+
1160
+ **Insights**
1161
+ - Added new endpoint to fetch Conference Participant Summary
1162
+ - Added new endpoint to fetch Conference Summary
1163
+
1164
+ **Messaging**
1165
+ - Add government_entity parameter to brand apis
1166
+
1167
+ **Verify**
1168
+ - Add Access Token fetch endpoint to retrieve a previously created token.
1169
+ - Add Access Token payload to the Access Token creation endpoint, including a unique Sid, so it's addressable while it's TTL is valid.
1170
+
1171
+
1172
+ [2022-01-12] Version 5.63.0
1173
+ ---------------------------
1174
+ **Library - Feature**
1175
+ - [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)!
1176
+
1177
+ **Library - Chore**
1178
+ - [PR #584](https://github.com/twilio/twilio-ruby/pull/584): run yard in bundle context. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1179
+ - [PR #583](https://github.com/twilio/twilio-ruby/pull/583): remove githook dependency from make install. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
1180
+
1181
+ **Api**
1182
+ - Make fixed time scheduling parameters public **(breaking change)**
1183
+
1184
+ **Messaging**
1185
+ - Add update brand registration API
1186
+
1187
+ **Numbers**
1188
+ - Add API endpoint for List Bundle Copies resource
1189
+
1190
+ **Video**
1191
+ - Enable external storage for all customers
1192
+
1193
+
1194
+ [2021-12-15] Version 5.62.0
1195
+ ---------------------------
1196
+ **Library - Feature**
1197
+ - [PR #581](https://github.com/twilio/twilio-ruby/pull/581): run tests before deploying. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1198
+
1199
+ **Api**
1200
+ - Add optional boolean send_as_mms parameter to the create action of Message resource **(breaking change)**
1201
+ - Change team ownership for `call` delete
1202
+
1203
+ **Conversations**
1204
+ - Change wording for `Service Webhook Configuration` resource fields
1205
+
1206
+ **Insights**
1207
+ - Added new APIs for updating and getting voice insights flags by accountSid.
1208
+
1209
+ **Media**
1210
+ - Add max_duration param to MediaProcessor
1211
+
1212
+ **Video**
1213
+ - Add `EmptyRoomTimeout` and `UnusedRoomTimeout` properties to a room; add corresponding parameters to room creation
1214
+
1215
+ **Voice**
1216
+ - Add endpoint to delete archived Calls
1217
+
1218
+
1219
+ [2021-12-01] Version 5.61.2
1220
+ ---------------------------
1221
+ **Library - Chore**
1222
+ - [PR #579](https://github.com/twilio/twilio-ruby/pull/579): make ruby-head test optional. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1223
+
1224
+ **Conversations**
1225
+ - Add `Service Webhook Configuration` resource
1226
+
1227
+ **Flex**
1228
+ - Adding `flex_insights_drilldown` and `flex_url` objects to Flex Configuration
1229
+
1230
+ **Messaging**
1231
+ - Update us_app_to_person endpoints to remove beta feature flag based access
1232
+
1233
+ **Supersim**
1234
+ - Add IP Commands resource
1235
+
1236
+ **Verify**
1237
+ - Add optional `factor_friendly_name` parameter to the create access token endpoint.
1238
+
1239
+ **Video**
1240
+ - Add maxParticipantDuration param to Rooms
1241
+
1242
+ **Twiml**
1243
+ - Unrevert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
1244
+ - Revert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
1245
+
1246
+
1247
+ [2021-11-17] Version 5.61.1
1248
+ ---------------------------
1249
+ **Library - Chore**
1250
+ - [PR #578](https://github.com/twilio/twilio-ruby/pull/578): remove yardoc files. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1251
+
1252
+ **Library - Fix**
1253
+ - [PR #576](https://github.com/twilio/twilio-ruby/pull/576): git log retrieval issues. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
1254
+
1255
+ **Frontline**
1256
+ - Added `is_available` to User's resource
1257
+
1258
+ **Messaging**
1259
+ - Added GET vetting API
1260
+
1261
+ **Verify**
1262
+ - Add `WHATSAPP` to the attempts API.
1263
+ - Allow to update `config.notification_platform` from `none` to `apn` or `fcm` and viceversa for Verify Push
1264
+ - Add `none` as a valid `config.notification_platform` value for Verify Push
1265
+
1266
+ **Twiml**
1267
+ - Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
1268
+
1269
+
1270
+ [2021-11-03] Version 5.61.0
1271
+ ---------------------------
1272
+ **Library - Chore**
1273
+ - [PR #575](https://github.com/twilio/twilio-ruby/pull/575): migrate from TravisCI to GitHub Actions. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1274
+
1275
+ **Api**
1276
+ - Updated `media_url` property to be treated as PII
1277
+
1278
+ **Messaging**
1279
+ - Added a new enum for brand registration status named DELETED **(breaking change)**
1280
+ - Add a new K12_EDUCATION use case in us_app_to_person_usecase api transaction
1281
+ - Added a new enum for brand registration status named IN_REVIEW
1282
+
1283
+ **Serverless**
1284
+ - Add node14 as a valid Build runtime
1285
+
1286
+ **Verify**
1287
+ - Fix typos in Verify Push Factor documentation for the `config.notification_token` parameter.
1288
+ - Added `TemplateCustomSubstitutions` on verification creation
1289
+ - Make `TemplateSid` parameter public for Verification resource and `DefaultTemplateSid` parameter public for Service resource. **(breaking change)**
1290
+
1291
+
1292
+ [2021-10-18] Version 5.60.0
1293
+ ---------------------------
1294
+ **Library - Feature**
1295
+ - [PR #574](https://github.com/twilio/twilio-ruby/pull/574): Add PlaybackGrant. Thanks to [@sarahcstringer](https://github.com/sarahcstringer)!
1296
+
1297
+ **Api**
1298
+ - Corrected enum values for `emergency_address_status` values in `/IncomingPhoneNumbers` response. **(breaking change)**
1299
+ - Clarify `emergency_address_status` values in `/IncomingPhoneNumbers` response.
1300
+
1301
+ **Messaging**
1302
+ - Add PUT and List brand vettings api
1303
+ - Removes beta feature flag based visibility for us_app_to_person_registered and usecase field.Updates test cases to add POLITICAL usecase. **(breaking change)**
1304
+ - Add brand_feedback as optional field to BrandRegistrations
1305
+
1306
+ **Video**
1307
+ - Add `AudioOnly` to create room
1308
+
1309
+
1310
+ [2021-10-06] Version 5.59.0
1311
+ ---------------------------
1312
+ **Library - Fix**
1313
+ - [PR #571](https://github.com/twilio/twilio-ruby/pull/571): fix travis build for ruby 3.0. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
1314
+
1315
+ **Api**
1316
+ - Add `emergency_address_status` attribute to `/IncomingPhoneNumbers` response.
1317
+ - Add `siprec` resource
1318
+
1319
+ **Conversations**
1320
+ - Added attachment parameters in configuration for `NewMessage` type of push notifications
1321
+
1322
+ **Flex**
1323
+ - Adding `flex_insights_hr` object to Flex Configuration
1324
+
1325
+ **Numbers**
1326
+ - Add API endpoint for Bundle ReplaceItems resource
1327
+ - Add API endpoint for Bundle Copies resource
1328
+
1329
+ **Serverless**
1330
+ - Add domain_base field to Service response
1331
+
1332
+ **Taskrouter**
1333
+ - Add `If-Match` Header based on ETag for Worker Delete **(breaking change)**
1334
+ - Add `If-Match` Header based on Etag for Reservation Update
1335
+ - Add `If-Match` Header based on ETag for Worker Update
1336
+ - Add `If-Match` Header based on ETag for Worker Delete
1337
+ - Add `ETag` as Response Header to Worker
1338
+
1339
+ **Trunking**
1340
+ - Added `transfer_caller_id` property on Trunks.
1341
+
1342
+ **Verify**
1343
+ - Document new pilot `whatsapp` channel.
1344
+
1345
+
1346
+ [2021-09-22] Version 5.58.3
1347
+ ---------------------------
1348
+ **Events**
1349
+ - Add segment sink
1350
+
1351
+ **Messaging**
1352
+ - Add post_approval_required attribute in GET us_app_to_person_usecase api response
1353
+ - Add Identity Status, Russell 3000, Tax Exempt Status and Should Skip SecVet fields for Brand Registrations
1354
+ - Add Should Skip Secondary Vetting optional flag parameter to create Brand API
1355
+
1356
+
1357
+ [2021-09-08] Version 5.58.2
1358
+ ---------------------------
1359
+ **Library - Fix**
1360
+ - [PR #568](https://github.com/twilio/twilio-ruby/pull/568): deprecation warning on Faraday. Thanks to [@ngouy](https://github.com/ngouy)!
1361
+
1362
+ **Api**
1363
+ - Revert adding `siprec` resource
1364
+ - Add `siprec` resource
1365
+
1366
+ **Messaging**
1367
+ - Add 'mock' as an optional field to brand_registration api
1368
+ - Add 'mock' as an optional field to us_app_to_person api
1369
+ - Adds more Use Cases in us_app_to_person_usecase api transaction and updates us_app_to_person_usecase docs
1370
+
1371
+ **Verify**
1372
+ - Verify List Templates API endpoint added.
1373
+
1374
+
1375
+ [2021-08-25] Version 5.58.1
1376
+ ---------------------------
1377
+ **Api**
1378
+ - Add Programmabled Voice SIP Refer call transfers (`calls-transfers`) to usage records
1379
+ - Add Flex Voice Usage category (`flex-usage`) to usage records
1380
+
1381
+ **Conversations**
1382
+ - Add `Order` query parameter to Message resource read operation
1383
+
1384
+ **Insights**
1385
+ - Added `partial` to enum processing_state_request
1386
+ - Added abnormal session filter in Call Summaries
1387
+
1388
+ **Messaging**
1389
+ - Add brand_registration_sid as an optional query param for us_app_to_person_usecase api
1390
+
1391
+ **Pricing**
1392
+ - add trunking_numbers resource (v2)
1393
+ - add trunking_country resource (v2)
1394
+
1395
+ **Verify**
1396
+ - Changed to private beta the `TemplateSid` optional parameter on Verification creation.
1397
+ - Added the optional parameter `Order` to the list Challenges endpoint to define the list order.
1398
+
1399
+
1400
+ [2021-08-11] Version 5.58.0
1401
+ ---------------------------
1402
+ **Library - Chore**
1403
+ - [PR #566](https://github.com/twilio/twilio-ruby/pull/566): integrate sonarcloud. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
1404
+
1405
+ **Library - Docs**
1406
+ - [PR #565](https://github.com/twilio/twilio-ruby/pull/565): update mms example to use media_url. Thanks to [@cnorm35](https://github.com/cnorm35)!
1407
+
1408
+ **Api**
1409
+ - Corrected the `price`, `call_sid_to_coach`, and `uri` data types for Conference, Participant, and Recording **(breaking change)**
1410
+ - Made documentation for property `time_limit` in the call api public. **(breaking change)**
1411
+ - Added `domain_sid` in sip_credential_list_mapping and sip_ip_access_control_list_mapping APIs **(breaking change)**
1412
+
1413
+ **Insights**
1414
+ - Added new endpoint to fetch Call Summaries
1415
+
1416
+ **Messaging**
1417
+ - Add brand_type field to a2p brand_registration api
1418
+ - Revert brand registration api update to add brand_type field
1419
+ - Add brand_type field to a2p brand_registration api
1420
+
1421
+ **Taskrouter**
1422
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to all TaskRouter endpoints
1423
+
1424
+ **Verify**
1425
+ - Add `TemplateSid` optional parameter on Verification creation.
1426
+ - Include `whatsapp` as a channel type in the verifications API.
1427
+
1428
+
1429
+ [2021-07-28] Version 5.57.1
1430
+ ---------------------------
1431
+ **Conversations**
1432
+ - Expose ParticipantConversations resource
1433
+
1434
+ **Taskrouter**
1435
+ - Adding `links` to the activity resource
1436
+
1437
+ **Verify**
1438
+ - Added a `Version` to Verify Factors `Webhooks` to add new fields without breaking old Webhooks.
1439
+
1440
+
1441
+ [2021-07-14] Version 5.57.0
1442
+ ---------------------------
1443
+ **Conversations**
1444
+ - Changed `last_read_message_index` and `unread_messages_count` type in User Conversation's resource **(breaking change)**
1445
+ - Expose UserConversations resource
1446
+
1447
+ **Messaging**
1448
+ - Add brand_score field to brand registration responses
1449
+
1450
+
1451
+ [2021-06-30] Version 5.56.0
1452
+ ---------------------------
1453
+ **Library - Feature**
1454
+ - [PR #559](https://github.com/twilio/twilio-ruby/pull/559): Add `Twilio::HTTP::Client#configure_connection`. Thanks to [@darwinShopify](https://github.com/darwinShopify)!
1455
+ - [PR #558](https://github.com/twilio/twilio-ruby/pull/558): Autoload Twilio::REST and Twilio::HTTP. Thanks to [@gmcgibbon](https://github.com/gmcgibbon)!
1456
+
1457
+ **Conversations**
1458
+ - Read-only Conversation Email Binding property `binding`
1459
+
1460
+ **Supersim**
1461
+ - Add Billing Period resource for the Super Sim Pilot
1462
+ - Add List endpoint to Billing Period resource for Super Sim Pilot
1463
+ - Add Fetch endpoint to Billing Period resource for Super Sim Pilot
1464
+
1465
+ **Taskrouter**
1466
+ - Update `transcribe` & `transcription_configuration` form params in Reservation update endpoint to have private visibility **(breaking change)**
1467
+ - Add `transcribe` & `transcription_configuration` form params to Reservation update endpoint
1468
+
1469
+ **Twiml**
1470
+ - Add `modify` event to `statusCallbackEvent` for `<Conference>`.
1471
+
1472
+
1473
+ [2021-06-16] Version 5.55.0
1474
+ ---------------------------
1475
+ **Api**
1476
+ - Update `status` enum for Messages to include 'canceled'
1477
+ - Update `update_status` enum for Messages to include 'canceled'
1478
+
1479
+ **Trusthub**
1480
+ - Corrected the sid for policy sid in customer_profile_evaluation.json and trust_product_evaluation.json **(breaking change)**
1481
+
1482
+
1483
+ [2021-06-02] Version 5.54.1
1484
+ ---------------------------
1485
+ **Events**
1486
+ - join Sinks and Subscriptions service
1487
+
1488
+ **Verify**
1489
+ - Improved the documentation of `challenge` adding the maximum and minimum expected lengths of some fields.
1490
+ - Improve documentation regarding `notification` by updating the documentation of the field `ttl`.
1491
+
1492
+
1493
+ [2021-05-19] Version 5.54.0
1494
+ ---------------------------
1495
+ **Events**
1496
+ - add query param to return types filtered by Schema Id
1497
+ - Add query param to return sinks filtered by status
1498
+ - Add query param to return sinks used/not used by a subscription
1499
+
1500
+ **Messaging**
1501
+ - Add fetch and delete instance endpoints to us_app_to_person api **(breaking change)**
1502
+ - Remove delete list endpoint from us_app_to_person api **(breaking change)**
1503
+ - Update read list endpoint to return a list of us_app_to_person compliance objects **(breaking change)**
1504
+ - Add `sid` field to Preregistered US App To Person response
1505
+
1506
+ **Supersim**
1507
+ - Mark `unique_name` in Sim, Fleet, NAP resources as not PII
1508
+
1509
+ **Video**
1510
+ - [Composer] GA maturity level
1511
+
1512
+
1513
+ [2021-05-05] Version 5.53.0
1514
+ ---------------------------
1515
+ **Library - Fix**
1516
+ - [PR #554](https://github.com/twilio/twilio-ruby/pull/554): JSON parser error on timeout response. Thanks to [@Maychell](https://github.com/Maychell)!
1517
+
1518
+ **Api**
1519
+ - Corrected the data types for feedback summary fields **(breaking change)**
1520
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1521
+
1522
+ **Bulkexports**
1523
+ - promoting API maturity to GA
1524
+
1525
+ **Events**
1526
+ - Add endpoint to update description in sink
1527
+ - Remove beta-feature account flag
1528
+
1529
+ **Messaging**
1530
+ - Update `status` field in us_app_to_person api to `campaign_status` **(breaking change)**
1531
+
1532
+ **Verify**
1533
+ - Improve documentation regarding `push` factor and include extra information about `totp` factor.
1534
+
1535
+
1536
+ [2021-04-21] Version 5.52.0
1537
+ ---------------------------
1538
+ **Api**
1539
+ - Revert Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1540
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1541
+
1542
+ **Bulkexports**
1543
+ - moving enum to doc root for auto generating documentation
1544
+ - adding status enum and default output properties
1545
+
1546
+ **Events**
1547
+ - Change schema_versions prop and key to versions **(breaking change)**
1548
+
1549
+ **Messaging**
1550
+ - Add `use_inbound_webhook_on_number` field in Service API for fetch, create, update, read
1551
+
1552
+ **Taskrouter**
1553
+ - Add `If-Match` Header based on ETag for Task Delete
1554
+
1555
+ **Verify**
1556
+ - Add `AuthPayload` parameter to support verifying a `Challenge` upon creation. This is only supported for `totp` factors.
1557
+ - Add support to resend the notifications of a `Challenge`. This is only supported for `push` factors.
1558
+
1559
+ **Twiml**
1560
+ - Add Polly Neural voices.
1561
+
1562
+
1563
+ [2021-04-07] Version 5.51.0
1564
+ ---------------------------
1565
+ **Library - Chore**
1566
+ - [PR #551](https://github.com/twilio/twilio-ruby/pull/551): omit spec/ from .gem file. Thanks to [@mroach](https://github.com/mroach)!
1567
+
1568
+ **Api**
1569
+ - Added `announcement` event to conference status callback events
1570
+ - Removed optional property `time_limit` in the call create request. **(breaking change)**
1571
+
1572
+ **Messaging**
1573
+ - Add rate_limits field to Messaging Services US App To Person API
1574
+ - Add usecase field in Service API for fetch, create, update, read
1575
+ - Add us app to person api and us app to person usecase api as dependents in service
1576
+ - Add us_app_to_person_registered field in service api for fetch, read, create, update
1577
+ - Add us app to person api
1578
+ - Add us app to person usecase api
1579
+ - Add A2P external campaign api
1580
+ - Add Usecases API
1581
+
1582
+ **Supersim**
1583
+ - Add Create endpoint to Sims resource
1584
+
1585
+ **Verify**
1586
+ - The `Binding` field is now returned when creating a `Factor`. This value won't be returned for other endpoints.
1587
+
1588
+ **Video**
1589
+ - [Rooms] max_concurrent_published_tracks has got GA maturity
1590
+
1591
+ **Twiml**
1592
+ - Add `announcement` event to `statusCallbackEvent` for `<Conference>`.
1593
+
1594
+
1595
+ [2021-03-24] Version 5.50.0
1596
+ ---------------------------
1597
+ **Api**
1598
+ - Added optional parameter `CallToken` for create calls api
1599
+ - Add optional property `time_limit` in the call create request.
1600
+
1601
+ **Bulkexports**
1602
+ - adding two new fields with job api queue_position and estimated_completion_time
1603
+
1604
+ **Events**
1605
+ - Add new endpoints to manage subscribed_events in subscriptions
1606
+
1607
+ **Numbers**
1608
+ - Remove feature flags for RegulatoryCompliance endpoints
1609
+
1610
+ **Supersim**
1611
+ - Add SmsCommands resource
1612
+ - Add fields `SmsCommandsUrl`, `SmsCommandsMethod` and `SmsCommandsEnabled` to a Fleet resource
1613
+
1614
+ **Taskrouter**
1615
+ - Add `If-Match` Header based on ETag for Task Update
1616
+ - Add `ETag` as Response Headers to Tasks and Reservations
1617
+
1618
+ **Video**
1619
+ - Recording rule beta flag **(breaking change)**
1620
+ - [Rooms] Add RecordingRules param to Rooms
1621
+
1622
+
1623
+ [2021-03-15] Version 5.49.0
1624
+ ---------------------------
1625
+ **Library - Fix**
1626
+ - [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)!
1627
+
1628
+ **Events**
1629
+ - Set maturity to beta
1630
+
1631
+ **Messaging**
1632
+ - Adjust A2P brand registration status enum **(breaking change)**
1633
+
1634
+ **Studio**
1635
+ - Remove internal safeguards for Studio V2 API usage now that it's GA
1636
+
1637
+ **Verify**
1638
+ - Add support for creating and verifying totp factors. Support for totp factors is behind the `api.verify.totp` beta feature.
1639
+
1640
+ **Twiml**
1641
+ - Add support for `<VirtualAgent>` noun
1642
+
1643
+
1644
+ [2021-02-24] Version 5.48.0
1645
+ ---------------------------
1646
+ **Events**
1647
+ - Update description of types in the create sink resource
1648
+
1649
+ **Messaging**
1650
+ - Add WA template header and footer
1651
+ - Remove A2P campaign and use cases API **(breaking change)**
1652
+ - Add number_registration_status field to read and fetch campaign responses
1653
+
1654
+ **Trusthub**
1655
+ - Make all resources public
1656
+
1657
+ **Verify**
1658
+ - Verify List Attempts API endpoints added.
1659
+
1660
+
1661
+ [2021-02-10] Version 5.47.0
1662
+ ---------------------------
1663
+ **Library - Fix**
1664
+ - [PR #548](https://github.com/twilio/twilio-ruby/pull/548): shortcut syntax for new non-GA versions. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1665
+
1666
+ **Api**
1667
+ - Revert change that conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1668
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
1669
+
1670
+ **Events**
1671
+ - Documentation should state that no fields are PII
1672
+
1673
+ **Flex**
1674
+ - Adding `notifications` and `markdown` to Flex Configuration
1675
+
1676
+ **Messaging**
1677
+ - Add A2P use cases API
1678
+ - Add Brand Registrations API
1679
+ - Add Campaigns API
1680
+
1681
+ **Serverless**
1682
+ - Add runtime field to Build response and as an optional parameter to the Build create endpoint.
1683
+ - Add @twilio/runtime-handler dependency to Build response example.
1684
+
1685
+ **Sync**
1686
+ - Remove If-Match header for Document **(breaking change)**
1687
+
1688
+ **Twiml**
1689
+ - Add `refer_url` and `refer_method` to `Dial`.
1690
+
1691
+
1692
+ [2021-01-27] Version 5.46.1
1693
+ ---------------------------
1694
+ **Library - Docs**
1695
+ - [PR #547](https://github.com/twilio/twilio-ruby/pull/547): Document how to use an API Key. Thanks to [@davetron5000](https://github.com/davetron5000)!
1696
+
1697
+ **Studio**
1698
+ - Studio V2 API is now GA
1699
+
1700
+ **Supersim**
1701
+ - Allow updating `CommandsUrl` and `CommandsMethod` on a Fleet
1702
+
1703
+ **Twiml**
1704
+ - Add `status_callback` and `status_callback_method` to `Stream`.
1705
+
1706
+
1707
+ [2021-01-13] Version 5.46.0
1708
+ ---------------------------
1709
+ **Library - Docs**
1710
+ - [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)!
1711
+
1712
+ **Library - Fix**
1713
+ - [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)!
1714
+
1715
+ **Api**
1716
+ - Add 'Electric Imp v1 Usage' to usage categories
1717
+
1718
+ **Conversations**
1719
+ - Changed `last_read_message_index` type in Participant's resource **(breaking change)**
1720
+
1721
+ **Insights**
1722
+ - Added `created_time` to call summary.
1723
+
1724
+ **Sync**
1725
+ - Remove HideExpired query parameter for filtering Sync Documents with expired **(breaking change)**
1726
+
1727
+ **Video**
1728
+ - [Rooms] Expose maxConcurrentPublishedTracks property in Room resource
1729
+
1730
+
1731
+ [2020-12-16] Version 5.45.1
1732
+ ---------------------------
1733
+ **Api**
1734
+ - Updated `call_event` default_output_properties to request and response.
1735
+
1736
+ **Conversations**
1737
+ - Added `last_read_message_index` and `last_read_timestamp` to Participant's resource update operation
1738
+ - Added `is_notifiable` and `is_online` to User's resource
1739
+ - Added `reachability_enabled` parameters to update method for Conversation Service Configuration resource
1740
+
1741
+ **Messaging**
1742
+ - Added WA template quick reply, URL, and phone number buttons
1743
+
1744
+ **Twiml**
1745
+ - Add `sequential` to `Dial`.
1746
+
1747
+
1748
+ [2020-12-08] Version 5.45.0
1749
+ ---------------------------
1750
+ **Api**
1751
+ - Added optional `RecordingTrack` parameter for create calls, create participants, and create call recordings
1752
+ - Removed deprecated Programmable Chat usage record categories **(breaking change)**
1753
+
1754
+ **Twiml**
1755
+ - Add `recordingTrack` to `Dial`.
1756
+
1757
+
1758
+ [2020-12-02] Version 5.44.0
1759
+ ---------------------------
1760
+ **Api**
1761
+ - Remove `RecordingTrack` parameter for create calls, create participants, and create call recordings **(breaking change)**
1762
+ - Added `RecordingTrack` parameter for create calls and create call recordings
1763
+ - Add optional property `recording_track` in the participant create request
1764
+
1765
+ **Lookups**
1766
+ - Changed `caller_name` and `carrier` properties type to object **(breaking change)**
1767
+
1768
+ **Trunking**
1769
+ - Added dual channel recording options for Trunks.
1770
+
1771
+ **Twiml**
1772
+ - Add `jitterBufferSize` and `participantLabel` to `Conference`.
1773
+
1774
+
1775
+ [2020-11-18] Version 5.43.0
1776
+ ---------------------------
1777
+ **Library - Feature**
1778
+ - [PR #538](https://github.com/twilio/twilio-ruby/pull/538): adding http logging for ruby. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
1779
+
1780
+ **Api**
1781
+ - Add new call events resource - GET /2010-04-01/Accounts/{account_sid}/Calls/{call_sid}/Events.json
1782
+
1783
+ **Conversations**
1784
+ - Fixed default response property issue for Service Notifications Configuration
1785
+
1786
+ **Insights**
1787
+ - Removing call_sid from participant summary. **(breaking change)**
1788
+
1789
+ **Serverless**
1790
+ - Allow Service unique name to be used in path (in place of SID) in Service update request
1791
+
1792
+ **Sync**
1793
+ - Added HideExpired query parameter for filtering Sync Documents with expired
1794
+
1795
+ **Verify**
1796
+ - Challenge `Details` and `HiddenDetails` properties are now marked as `PII`
1797
+ - 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.
1798
+ - Entity `identity` attribute updated to allow values between 8 and 64 characters.
1799
+ - Verify Service frinedly_name attribute updated from 64 max lenght to 30 characters.
1800
+
1801
+
1802
+ [2020-11-05] Version 5.42.0
1803
+ ---------------------------
1804
+ **Library - Feature**
1805
+ - [PR #537](https://github.com/twilio/twilio-ruby/pull/537): Add region to AccessToken. Thanks to [@ryan-rowland](https://github.com/ryan-rowland)!
1806
+
1807
+ **Api**
1808
+ - Added `verify-push` to `usage_record` API
1809
+
1810
+ **Bulkexports**
1811
+ - 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)**
1812
+ - Added property descriptions for Custom Export create method
1813
+ - Clarified WebhookUrl and WebhookMethod must be provided together for Custom Export
1814
+
1815
+ **Insights**
1816
+ - Added video room and participant summary apis.
1817
+
1818
+ **Ip_messaging**
1819
+ - Create separate definition for ip-messaging
1820
+ - Restore v2 endpoints for ip-messaging
1821
+
1822
+ **Verify**
1823
+ - Verify Push madurity were updated from `preview` to `beta`
1824
+ - `twilio_sandbox_mode` header was removed from Verify Push resources **(breaking change)**
1825
+
1826
+ **Video**
1827
+ - [Rooms] Add Recording Rules API
1828
+
1829
+
1830
+ [2020-10-14] Version 5.41.0
1831
+ ---------------------------
1832
+ **Ai**
1833
+ - Add `Annotation Project` and `Annotation Task` endpoints
1834
+ - Add `Primitives` endpoints
1835
+ - Add `meta.total` to the search endpoint
1836
+
1837
+ **Conversations**
1838
+ - Mutable Conversation Unique Names
1839
+
1840
+ **Insights**
1841
+ - Added `trust` to summary.
1842
+
1843
+ **Preview**
1844
+ - Simplified `Channels` resource. The path is now `/BrandedChannels/branded_channel_sid/Channels` **(breaking change)**
1845
+
1846
+ **Verify**
1847
+ - 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)**
1848
+ - 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)**
1849
+ - Removed `notify_service_sid` from `push` service configuration object. Add `Push.IncludeDate`, `Push.ApnCredentialSid` and `Push.FcmCredentialSid` service configuration parameters. **(breaking change)**
1850
+
1851
+
1852
+ [2020-09-28] Version 5.40.4
1853
+ ---------------------------
1854
+ **Library - Docs**
1855
+ - [PR #535](https://github.com/twilio/twilio-ruby/pull/535): convert markdown links to RDoc formatted links. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
1856
+
1857
+ **Api**
1858
+ - Add optional property `call_reason` in the participant create request
1859
+ - Make sip-domain-service endpoints available in stage-au1 and prod-au1
1860
+
1861
+ **Messaging**
1862
+ - Removed beta feature gate from WhatsApp Templates API
1863
+
1864
+ **Serverless**
1865
+ - Add Build Status endpoint
1866
+
1867
+ **Video**
1868
+ - [Rooms] Add new room type "go" for WebRTC Go
1869
+
1870
+
1871
+ [2020-09-21] Version 5.40.3
1872
+ ---------------------------
1873
+ **Library - Fix**
1874
+ - [PR #534](https://github.com/twilio/twilio-ruby/pull/534): allow API redirect responses. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1875
+
1876
+ **Accounts**
1877
+ - Add Auth Token rotation API
1878
+
1879
+ **Conversations**
1880
+ - Change resource path for Webhook Configuration
1881
+
1882
+ **Events**
1883
+ - Schemas API get all Schemas names and versions
1884
+
1885
+
1886
+ [2020-09-16] Version 5.40.2
1887
+ ---------------------------
1888
+ **Library - Fix**
1889
+ - [PR #530](https://github.com/twilio/twilio-ruby/pull/530): drop the page limit calculation. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1890
+
1891
+ **Conversations**
1892
+ - Expose Configuration and Service Configuration resources
1893
+ - Add Unique Name support for Conversations
1894
+ - Add Services Push Notification resource
1895
+ - Add Service scoped Conversation resources
1896
+ - Support Identity in Users resource endpoint
1897
+
1898
+ **Messaging**
1899
+ - GA Deactivation List API
1900
+ - Add domain cert API's(fetch, update, create) for link tracker
1901
+
1902
+ **Numbers**
1903
+ - Add API endpoint for Supporting Document deletion
1904
+
1905
+ **Proxy**
1906
+ - Updated usage of FailOnParticipantConflict param to apply only to accounts with ProxyAllowParticipantConflict account flag
1907
+
1908
+ **Supersim**
1909
+ - Add `AccountSid` parameter to Sim resource update request
1910
+ - Add `ready` status as an available status for a Sim resource
1911
+
1912
+
1913
+ [2020-09-02] Version 5.40.1
1914
+ ---------------------------
1915
+ **Library - Chore**
1916
+ - [PR #529](https://github.com/twilio/twilio-ruby/pull/529): sort files for deterministic require order. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1917
+
1918
+ **Ai**
1919
+ - Initial release
1920
+
1921
+ **Bulkexports**
1922
+ - removing public beta feature flag from BulkExports Jobs API
1923
+
1924
+ **Messaging**
1925
+ - Add Deactivation List API
1926
+ - Added page token parameter for fetch in WhatsApp Templates API
1927
+
1928
+ **Numbers**
1929
+ - Add API endpoint for End User deletion
1930
+
1931
+ **Routes**
1932
+ - Add Resource Route Configurations API
1933
+ - Add Route Configurations API
1934
+ - Initial Release
1935
+
1936
+ **Trunking**
1937
+ - Added `transfer_mode` property on Trunks.
1938
+
1939
+
1940
+ [2020-08-19] Version 5.40.0
1941
+ ---------------------------
1942
+ **Library - Chore**
1943
+ - [PR #526](https://github.com/twilio/twilio-ruby/pull/526): update GitHub branch references to use HEAD. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
1944
+
1945
+ **Conversations**
1946
+ - Allow Identity addition to Participants
1947
+
1948
+ **Events**
1949
+ - Sinks API Get all Sinks
1950
+
1951
+ **Proxy**
1952
+ - Clarified usage of FailOnParticipantConflict param as experimental
1953
+ - Add FailOnParticipantConflict param to Proxy Session create and Proxy Participant create
1954
+
1955
+ **Supersim**
1956
+ - Add fleet, network, and isoCountryCode to the UsageRecords resource
1957
+ - Change sort order of UsageRecords from ascending to descending with respect to start time field, records are now returned newest to oldest
1958
+
1959
+ **Wireless**
1960
+ - Removed `Start` and `End` parameters from the Data Sessions list endpoint. **(breaking change)**
1961
+
1962
+
1963
+ [2020-08-05] Version 5.39.3
1964
+ ---------------------------
1965
+ **Messaging**
1966
+ - Add rejection reason support to WhatsApp API
1967
+ - Removed status parameter for create and update in WhatsApp Templates API
1968
+
1969
+ **Proxy**
1970
+ - Add FailOnParticipantConflict param to Proxy Session update
1971
+
1972
+ **Verify**
1973
+ - Add `CustomFriendlyName` optional parameter on Verification creation.
1974
+ - Changes in `Challenge` resource to update documentation of both `details` and `hidden_details` properties.
1975
+
1976
+
1977
+ [2020-07-22] Version 5.39.2
1978
+ ---------------------------
1979
+ **Api**
1980
+ - Add optional Click Tracking and Scheduling parameters to Create action of Message resource
1981
+
1982
+ **Supersim**
1983
+ - Add callback_url and callback_method parameters to Sim resource update request
1984
+
1985
+
1986
+ [2020-07-10] Version 5.39.1
1987
+ ---------------------------
1988
+ **Library - Fix**
1989
+ - [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)!
1990
+
1991
+
1992
+ [2020-07-08] Version 5.39.0
1993
+ ---------------------------
1994
+ **Library - Feature**
1995
+ - [PR #516](https://github.com/twilio/twilio-ruby/pull/516): add custom header support. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1996
+
1997
+ **Library - Chore**
1998
+ - [PR #515](https://github.com/twilio/twilio-ruby/pull/515): regenerate library after generator refactor. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1999
+
2000
+ **Conversations**
2001
+ - Allow Address updates for Participants
2002
+ - Message delivery receipts
2003
+
2004
+ **Events**
2005
+ - Add account_sid to subscription and subscribed_events resources
2006
+
2007
+ **Flex**
2008
+ - Changed `wfm_integrations` Flex Configuration key to private **(breaking change)**
2009
+
2010
+ **Messaging**
2011
+ - Add error states to WhatsApp Sender status with failed reason **(breaking change)**
2012
+ - Delete WhatsApp Template API
2013
+ - Update WhatsApp Template API
2014
+ - Add WhatsApp Template Get Api (fetch and read)
2015
+
2016
+ **Numbers**
2017
+ - Add `valid_until` in the Bundles resource
2018
+ - Add API for Bundle deletion
2019
+
2020
+ **Verify**
2021
+ - Removed support for `sms`, `totp` and `app-push` factor types in Verify push **(breaking change)**
2022
+
2023
+
2024
+ [2020-06-24] Version 5.38.0
2025
+ ---------------------------
2026
+ **Api**
2027
+ - Added optional `JitterBufferSize` parameter for creating conference participant
2028
+ - Added optional `label` property for conference participants
2029
+ - Added optional parameter `caller_id` for creating conference participant endpoint.
2030
+
2031
+ **Autopilot**
2032
+ - Remove Export resource from Autopilot Assistant
2033
+
2034
+ **Conversations**
2035
+ - Expose Conversation timers
2036
+
2037
+ **Monitor**
2038
+ - Update start/end date filter params to support date-or-time format **(breaking change)**
2039
+
2040
+ **Numbers**
2041
+ - Add `provisionally-approved` as a Supporting Document status
2042
+
2043
+ **Preview**
2044
+ - Removed `Authy` resources. **(breaking change)**
2045
+
2046
+ **Supersim**
2047
+ - Add ready state to the allowed transitions in the sim update call behind the feature flag supersim.ready-state.v1
2048
+
2049
+ **Verify**
2050
+ - Webhook resources added to Verify services and put behind the `api.verify.push` beta feature
2051
+
2052
+ **Twiml**
2053
+ - Add more supported locales for the `Gather` verb.
2054
+
2055
+
2056
+ [2020-06-10] Version 5.37.0
2057
+ ---------------------------
2058
+ **Library - Docs**
2059
+ - [PR #514](https://github.com/twilio/twilio-ruby/pull/514): link to handling exceptions. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2060
+ - [PR #513](https://github.com/twilio/twilio-ruby/pull/513): link to custom HTTP client instructions. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2061
+
2062
+ **Api**
2063
+ - Added `pstnconnectivity` to `usage_record` API
2064
+
2065
+ **Autopilot**
2066
+ - Add dialogue_sid param to Query list resource
2067
+
2068
+ **Notify**
2069
+ - delivery_callback_url and delivery_callback_enabled added
2070
+
2071
+ **Numbers**
2072
+ - Add `provisionally-approved` as a Bundle status
2073
+
2074
+ **Preview**
2075
+ - `BrandsInformation` endpoint now returns a single `BrandsInformation`
2076
+ - Deleted phone number required field in the brand phone number endpoint from `kyc-api`
2077
+ - Removed insights `preview API` from API Definitions **(breaking change)**
2078
+ - Added `BrandsInformation` endpoint to query brands information stored in KYC
2079
+
2080
+ **Supersim**
2081
+ - Require a Network Access Profile when creating a Fleet **(breaking change)**
2082
+
2083
+
2084
+ [2020-05-27] Version 5.36.0
2085
+ ---------------------------
2086
+ **Api**
2087
+ - Added `reason_conference_ended` and `call_sid_ending_conference` to Conference read/fetch/update
2088
+ - Fixed some examples to use the correct "TK" SID prefix for Trunk resources.
2089
+
2090
+ **Authy**
2091
+ - Renamed `twilio_authy_sandbox_mode` headers to `twilio_sandbox_mode` **(breaking change)**
2092
+ - Renamed `Twilio-Authy-*` headers to `Twilio-Veriry-*` **(breaking change)**
2093
+
2094
+ **Flex**
2095
+ - Adding `flex_service_instance_sid` to Flex Configuration
2096
+
2097
+ **Preview**
2098
+ - Removed insights preview API from API Definitions **(breaking change)**
2099
+ - Added `Channels` endpoint to brand a phone number for BrandedCalls
2100
+
2101
+ **Serverless**
2102
+ - Add Build Sid to Log results
2103
+
2104
+ **Supersim**
2105
+ - Add Network Access Profile resource Networks subresource
2106
+ - Allow specifying a Data Limit on Fleets
2107
+
2108
+ **Trunking**
2109
+ - Fixed some examples to use the correct "TK" SID prefix for Trunk resources.
2110
+
2111
+
2112
+ [2020-05-20] Version 5.35.0
2113
+ ---------------------------
2114
+ **Library - Feature**
2115
+ - [PR #512](https://github.com/twilio/twilio-ruby/pull/512): add regional and edge support. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
2116
+
2117
+
2118
+ [2020-05-13] Version 5.34.1
2119
+ ---------------------------
2120
+ **Api**
2121
+ - Add optional `emergency_caller_sid` parameter to SIP Domain
2122
+ - Updated `call_reason` optional property to be treated as PII
2123
+ - Added optional BYOC Trunk Sid property to Sip Domain API resource
2124
+
2125
+ **Autopilot**
2126
+ - Add Restore resource to Autopilot Assistant
2127
+
2128
+ **Contacts**
2129
+ - Added contacts Create API definition
2130
+
2131
+ **Events**
2132
+ - Subscriptions API initial release
2133
+
2134
+ **Numbers**
2135
+ - Add Evaluations API
2136
+
2137
+ **Supersim**
2138
+ - Allow filtering the Fleets resource by Network Access Profile
2139
+ - Allow assigning a Network Access Profile when creating and updating a Fleet
2140
+ - Add Network Access Profiles resource
2141
+
2142
+ **Verify**
2143
+ - Add `CustomCode` optional parameter on Verification creation.
2144
+ - Add delete action on Service resource.
2145
+
2146
+ **Voice**
2147
+ - Added endpoints for BYOC trunks, SIP connection policies and source IP mappings
2148
+
2149
+
2150
+ [2020-04-29] Version 5.34.0
2151
+ ---------------------------
2152
+ **Library - Feature**
2153
+ - [PR #511](https://github.com/twilio/twilio-ruby/pull/511): add details to error object. Thanks to [@ashish-s](https://github.com/ashish-s)!
2154
+
2155
+ **Preview**
2156
+ - Added `Dispatch` version to `preview`
2157
+
2158
+ **Studio**
2159
+ - Reroute Create Execution for V2 to the V2 downstream
2160
+
2161
+ **Supersim**
2162
+ - Add Networks resource
2163
+
2164
+
2165
+ [2020-04-15] Version 5.33.1
2166
+ ---------------------------
2167
+ **Library - Fix**
2168
+ - [PR #506](https://github.com/twilio/twilio-ruby/pull/506): loosen the faraday version requirement. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2169
+
2170
+ **Library - Chore**
2171
+ - [PR #508](https://github.com/twilio/twilio-ruby/pull/508): Refer to https:// homepage in gemspec. Thanks to [@olleolleolle](https://github.com/olleolleolle)!
2172
+ - [PR #507](https://github.com/twilio/twilio-ruby/pull/507): Travis: Drop unused "sudo: false" directive. Thanks to [@olleolleolle](https://github.com/olleolleolle)!
2173
+ - [PR #498](https://github.com/twilio/twilio-ruby/pull/498): autoload TwiML to save memory on load. Thanks to [@philnash](https://github.com/philnash)!
2174
+ - [PR #499](https://github.com/twilio/twilio-ruby/pull/499): autoload JWT classes. Thanks to [@philnash](https://github.com/philnash)!
2175
+ - [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)!
2176
+
2177
+ **Api**
2178
+ - Updated description for property `call_reason` in the call create request
2179
+
2180
+ **Contacts**
2181
+ - Added Read, Delete All, and Delete by SID docs
2182
+ - Initial Release
2183
+
2184
+ **Studio**
2185
+ - Rename `flow_valid` to `flow_validate`
2186
+ - Removed `errors` and `warnings` from flows error response and added new property named `details`
2187
+ - Add Update Execution endpoints to v1 and v2 to end execution via API
2188
+ - Add new `warnings` attribute v2 flow POST api
2189
+
2190
+ **Twiml**
2191
+ - Add enhanced attribute to use with `speech_model` for the `Gather` verb
2192
+
2193
+
2194
+ [2020-04-01] Version 5.33.0
2195
+ ---------------------------
2196
+ **Library - Chore**
2197
+ - [PR #502](https://github.com/twilio/twilio-ruby/pull/502): Fix a typo in JWT::TaskRouterUtils. Thanks to [@rywall](https://github.com/rywall)!
2198
+
2199
+ **Api**
2200
+ - Add optional 'secure' parameter to SIP Domain
2201
+
2202
+ **Authy**
2203
+ - Added an endpoint to list the challenges of a factor
2204
+ - Added optional parameter `Push` when updating a service to send the service level push factor configuration
2205
+
2206
+ **Bulkexports**
2207
+ - exposing bulk exports (vault/slapchop) API as public beta API
2208
+
2209
+ **Flex**
2210
+ - Adding `queue_stats_configuration` and `wfm_integrations` to Flex Configuration
2211
+
2212
+ **Serverless**
2213
+ - Add Function Version Content endpoint
2214
+ - Allow build_sid to be optional for deployment requests
2215
+
2216
+ **Supersim**
2217
+ - Remove `deactivated` status for Super SIM which is replaced by `inactive` **(breaking change)**
2218
+
2219
+
2220
+ [2020-03-18] Version 5.32.0
2221
+ ---------------------------
2222
+ **Api**
2223
+ - Add optional `emergency_calling_enabled` parameter to SIP Domain
2224
+ - Add optional property `call_reason` in the call create request
2225
+
2226
+ **Authy**
2227
+ - Added `friendly_name` and `config` as optional params to Factor update
2228
+ - Added `config` param to Factor creation **(breaking change)**
2229
+
2230
+ **Preview**
2231
+ - Renamed `SuccessRate` endpoint to `ImpressionsRate` for Branded Calls (fka. Verified by Twilio) **(breaking change)**
2232
+
2233
+
2234
+ [2020-03-04] Version 5.31.6
2235
+ ---------------------------
2236
+ **Library - Chore**
2237
+ - [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)!
2238
+
2239
+ **Authy**
2240
+ - Added the `configuration` property to services to return the service level configurations
2241
+ - Added optional parameter `Push` when creating a service to send the service level push factor configuration
2242
+ - Remove FactorStrength support for Factors and Challenges **(breaking change)**
2243
+
2244
+ **Messaging**
2245
+ - Correct the alpha sender capabilities property type **(breaking change)**
2246
+
2247
+ **Preview**
2248
+ - Removed `/Devices` register Branded Calls endpoint, as per iOS sample app deprecation **(breaking change)**
2249
+ - Removed `Twilio-Sandbox-Mode` request header from the Branded Calls endpoints, as not officially supported **(breaking change)**
2250
+ - Removed `Verify` version from `preview` subdomain in favor to `verify` subdomain. **(breaking change)**
2251
+
2252
+ **Serverless**
2253
+ - Add UI-Editable field to Services
2254
+
2255
+ **Supersim**
2256
+ - Add `inactive` status for Super SIM which is an alias for `deactivated`
2257
+
2258
+ **Taskrouter**
2259
+ - Adding value range to `priority` in task endpoint
2260
+
2261
+ **Verify**
2262
+ - Fix `SendCodeAttempts` type. It's an array of objects instead of a unique object. **(breaking change)**
2263
+
2264
+
2265
+ [2020-02-19] Version 5.31.5
2266
+ ---------------------------
2267
+ **Library - Chore**
2268
+ - [PR #495](https://github.com/twilio/twilio-ruby/pull/495): bump the rubocop version. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2269
+
2270
+ **Api**
2271
+ - Make call create parameters `async_amd`, `async_amd_status_callback`, and `async_amd_status_callback_method` public
2272
+ - Add `trunk_sid` as an optional field to Call resource fetch/read responses
2273
+ - Add property `queue_time` to successful response of create, fetch, and update requests for Call
2274
+ - Add optional parameter `byoc` to conference participant create.
2275
+
2276
+ **Authy**
2277
+ - Added support for challenges associated to push factors
2278
+
2279
+ **Flex**
2280
+ - Adding `ui_dependencies` to Flex Configuration
2281
+
2282
+ **Messaging**
2283
+ - Deprecate Session API **(breaking change)**
2284
+
2285
+ **Numbers**
2286
+ - Add Regulations API
2287
+
2288
+ **Studio**
2289
+ - Add Execution and Step endpoints to v2 API
2290
+ - Add webhook_url to Flow response and add new /TestUsers endpoint to v2 API
2291
+
2292
+ **Taskrouter**
2293
+ - Adding `longest_relative_task_age_in_queue` and `longest_relative_task_sid_in_queue` to TaskQueue Real Time Statistics API.
2294
+ - Add `wait_duration_in_queue_until_accepted` aggregations to TaskQueues Cumulative Statistics endpoint
2295
+ - Add TaskQueueEnteredDate property to Tasks.
2296
+
2297
+ **Video**
2298
+ - [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
2299
+ - [Composer] `audio_sources` type on the composer HTTP POST command, changed from `sid[]` to `string[]` **(breaking change)**
2300
+ - [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
2301
+
2302
+
2303
+ [2020-02-05] Version 5.31.4
2304
+ ---------------------------
2305
+ **Api**
2306
+ - Making content retention and address retention public
2307
+ - Update `status` enum for Messages to include 'partially_delivered'
2308
+
2309
+ **Authy**
2310
+ - Added support for push factors
2311
+
2312
+ **Autopilot**
2313
+ - Add one new property in Query i.e dialogue_sid
2314
+
2315
+ **Verify**
2316
+ - Add `SendCodeAttempts` to create verification response.
2317
+
2318
+ **Video**
2319
+ - Clarification in composition creation documentation: one source is mandatory, either `audio_sources` or `video_layout`, but on of them has to be provided
2320
+
2321
+ **Twiml**
2322
+ - Add Polly Neural voices.
2323
+
2324
+
2325
+ [2020-01-22] Version 5.31.3
2326
+ ---------------------------
2327
+ **Library - Docs**
2328
+ - [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)!
2329
+
2330
+ **Library - Chore**
2331
+ - [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)!
2332
+
2333
+ **Api**
2334
+ - Add payments public APIs
2335
+ - Add optional parameter `byoc` to call create request.
2336
+
2337
+ **Flex**
2338
+ - Updating a Flex Flow `creation_on_message` parameter documentation
2339
+
2340
+ **Preview**
2341
+ -
2342
+ - Removed Verify v2 from preview in favor of its own namespace as GA **(breaking change)**
2343
+
2344
+ **Studio**
2345
+ - Flow definition type update from string to object
2346
+
2347
+ **Verify**
2348
+ - Add `AppHash` parameter when creating a Verification.
2349
+ - Add `DoNotShareWarningEnabled` parameter to the Service resource.
2350
+
2351
+ **Twiml**
2352
+ - Add `track` attribute to siprec noun.
2353
+ - Add attribute `byoc` to `<Number>`
2354
+
2355
+
2356
+ [2020-01-08] Version 5.31.2
2357
+ ---------------------------
2358
+ **Library - Chore**
2359
+ - [PR #491](https://github.com/twilio/twilio-ruby/pull/491): upgrade rubocop to 0.79.0. Thanks to [@juampi](https://github.com/juampi)!
2360
+ - [PR #489](https://github.com/twilio/twilio-ruby/pull/489): upgrade faraday to 1.0.0. Thanks to [@juampi](https://github.com/juampi)!
2361
+
2362
+ **Numbers**
2363
+ - Add Regulatory Compliance CRUD APIs
2364
+
2365
+ **Studio**
2366
+ - Add parameter validation for Studio v2 Flows API
2367
+
2368
+ **Twiml**
2369
+ - Add support for `speech_model` to `Gather` verb
2370
+
2371
+
4
2372
  [2019-12-18] Version 5.31.1
5
2373
  ---------------------------
6
2374
  **Library - Chore**
@@ -95,7 +2463,7 @@ twilio-ruby changelog
95
2463
  **Library**
96
2464
  - [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)!
97
2465
  - [PR #480](https://github.com/twilio/twilio-ruby/pull/480): Update resources after sorting. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
98
- - [PR #479](https://github.com/twilio/twilio-ruby/pull/479): Auto-deploy via Travis CI upon tagged commit to master. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
2466
+ - [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)!
99
2467
 
100
2468
  **Api**
101
2469
  - Add new usage categories to the public api `sms-messages-carrierfees` and `mms-messages-carrierfees`