twilio-ruby 5.23.0 → 7.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1067) hide show
  1. checksums.yaml +5 -5
  2. data/.dockerignore +1 -0
  3. data/.github/workflows/pr-lint.yml +21 -0
  4. data/.github/workflows/test-and-deploy.yml +139 -0
  5. data/.gitignore +11 -1
  6. data/.rubocop.yml +22 -6
  7. data/.rubocop_todo.yml +147 -73
  8. data/CHANGES.md +2681 -0
  9. data/CODE_OF_CONDUCT.md +73 -0
  10. data/CONTRIBUTING.md +14 -10
  11. data/Dockerfile +2 -2
  12. data/Gemfile +3 -8
  13. data/ISSUE_TEMPLATE.md +17 -13
  14. data/{LICENSE.md → LICENSE} +2 -2
  15. data/Makefile +22 -24
  16. data/PULL_REQUEST_TEMPLATE.md +30 -3
  17. data/README.md +211 -54
  18. data/Rakefile +0 -54
  19. data/UPGRADE.md +21 -0
  20. data/VERSIONS.md +9 -10
  21. data/advanced-examples/custom-http-client.md +170 -0
  22. data/cluster_spec.rb +77 -0
  23. data/examples/examples.rb +1 -1
  24. data/githooks/pre-commit +0 -0
  25. data/lib/rack/twilio_webhook_authentication.rb +25 -1
  26. data/lib/twilio-ruby/base/client_base.rb +124 -0
  27. data/lib/twilio-ruby/framework/request.rb +8 -1
  28. data/lib/twilio-ruby/framework/{domain.rb → rest/domain.rb} +1 -1
  29. data/lib/twilio-ruby/framework/{error.rb → rest/error.rb} +3 -15
  30. data/lib/twilio-ruby/framework/{version.rb → rest/version.rb} +7 -11
  31. data/lib/twilio-ruby/http/http_client.rb +44 -17
  32. data/lib/twilio-ruby/http.rb +5 -0
  33. data/lib/twilio-ruby/jwt/access_token.rb +20 -61
  34. data/lib/twilio-ruby/jwt/jwt.rb +6 -0
  35. data/lib/twilio-ruby/jwt/task_router.rb +2 -2
  36. data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +209 -0
  37. data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +381 -350
  38. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +381 -350
  39. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +123 -115
  40. data/lib/twilio-ruby/rest/accounts/v1/safelist.rb +176 -0
  41. data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +227 -0
  42. data/lib/twilio-ruby/rest/accounts/v1.rb +52 -29
  43. data/lib/twilio-ruby/rest/accounts.rb +10 -28
  44. data/lib/twilio-ruby/rest/accounts_base.rb +38 -0
  45. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +372 -368
  46. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +561 -532
  47. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +625 -602
  48. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +317 -329
  49. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +395 -0
  50. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +395 -0
  51. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +395 -0
  52. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +395 -0
  53. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +395 -0
  54. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +395 -0
  55. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +395 -0
  56. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +435 -0
  57. data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +140 -125
  58. data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +210 -0
  59. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +404 -439
  60. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +327 -0
  61. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +504 -516
  62. data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +877 -0
  63. data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +877 -0
  64. data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +901 -0
  65. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +166 -0
  66. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +244 -0
  67. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +956 -851
  68. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +669 -674
  69. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +459 -471
  70. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +495 -492
  71. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +434 -420
  72. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +324 -361
  73. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +404 -432
  74. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +540 -500
  75. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +540 -499
  76. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +540 -499
  77. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +851 -884
  78. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +343 -315
  79. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +171 -172
  80. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +346 -359
  81. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +625 -619
  82. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +161 -144
  83. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +161 -144
  84. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +404 -422
  85. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +376 -371
  86. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +346 -349
  87. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +436 -415
  88. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +364 -389
  89. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +374 -394
  90. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +370 -381
  91. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +513 -492
  92. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +423 -421
  93. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +343 -319
  94. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +385 -386
  95. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +409 -391
  96. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +353 -0
  97. 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
  98. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +141 -0
  99. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +353 -0
  100. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +127 -0
  101. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +96 -104
  102. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +347 -353
  103. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +347 -352
  104. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +659 -587
  105. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +422 -439
  106. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +409 -392
  107. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +143 -151
  108. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +175 -160
  109. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +370 -359
  110. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +316 -335
  111. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +316 -335
  112. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +316 -335
  113. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +316 -335
  114. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +316 -335
  115. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +316 -335
  116. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +316 -335
  117. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +316 -335
  118. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +383 -412
  119. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +495 -501
  120. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +114 -105
  121. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +176 -167
  122. data/lib/twilio-ruby/rest/api/v2010/account.rb +987 -961
  123. data/lib/twilio-ruby/rest/api/v2010.rb +127 -148
  124. data/lib/twilio-ruby/rest/api.rb +27 -36
  125. data/lib/twilio-ruby/rest/api_base.rb +38 -0
  126. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +309 -0
  127. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +308 -0
  128. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +283 -0
  129. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +257 -0
  130. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +258 -0
  131. data/lib/twilio-ruby/rest/bulkexports/v1.rb +64 -0
  132. data/lib/twilio-ruby/rest/bulkexports.rb +25 -0
  133. data/lib/twilio-ruby/rest/bulkexports_base.rb +38 -0
  134. data/lib/twilio-ruby/rest/chat/v1/credential.rb +429 -421
  135. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +382 -405
  136. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +432 -458
  137. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +448 -455
  138. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +544 -533
  139. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +406 -385
  140. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +246 -242
  141. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +475 -458
  142. data/lib/twilio-ruby/rest/chat/v1/service.rb +871 -912
  143. data/lib/twilio-ruby/rest/chat/v1.rb +58 -54
  144. data/lib/twilio-ruby/rest/chat/v2/credential.rb +429 -421
  145. data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +377 -381
  146. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +382 -398
  147. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +493 -531
  148. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +520 -535
  149. data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +450 -483
  150. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +613 -604
  151. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +406 -385
  152. data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +370 -392
  153. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +413 -385
  154. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +517 -492
  155. data/lib/twilio-ruby/rest/chat/v2/service.rb +774 -798
  156. data/lib/twilio-ruby/rest/chat/v2.rb +58 -54
  157. data/lib/twilio-ruby/rest/chat/v3/channel.rb +299 -0
  158. data/lib/twilio-ruby/rest/chat/v3.rb +71 -0
  159. data/lib/twilio-ruby/rest/chat.rb +10 -38
  160. data/lib/twilio-ruby/rest/chat_base.rb +48 -0
  161. data/lib/twilio-ruby/rest/client.rb +329 -460
  162. data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +185 -0
  163. data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +209 -0
  164. data/lib/twilio-ruby/rest/content/v1/content.rb +788 -0
  165. data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +252 -0
  166. data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +266 -0
  167. data/lib/twilio-ruby/rest/content/v1.rb +61 -0
  168. data/lib/twilio-ruby/rest/content/v2/content.rb +316 -0
  169. data/lib/twilio-ruby/rest/content/v2/content_and_approvals.rb +309 -0
  170. data/lib/twilio-ruby/rest/content/v2.rb +46 -0
  171. data/lib/twilio-ruby/rest/content.rb +15 -0
  172. data/lib/twilio-ruby/rest/content_base.rb +43 -0
  173. data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +491 -0
  174. data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +286 -0
  175. data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +292 -0
  176. data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +348 -0
  177. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +550 -0
  178. data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +511 -0
  179. data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +441 -0
  180. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +636 -0
  181. data/lib/twilio-ruby/rest/conversations/v1/credential.rb +444 -0
  182. data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +313 -0
  183. data/lib/twilio-ruby/rest/conversations/v1/role.rb +403 -0
  184. data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +376 -0
  185. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +339 -0
  186. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +285 -0
  187. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +319 -0
  188. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +359 -0
  189. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +563 -0
  190. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +524 -0
  191. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +454 -0
  192. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +645 -0
  193. data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +318 -0
  194. data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +412 -0
  195. data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +464 -0
  196. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +497 -0
  197. data/lib/twilio-ruby/rest/conversations/v1/service.rb +493 -0
  198. data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +459 -0
  199. data/lib/twilio-ruby/rest/conversations/v1/user.rb +488 -0
  200. data/lib/twilio-ruby/rest/conversations/v1.rb +136 -0
  201. data/lib/twilio-ruby/rest/conversations.rb +79 -0
  202. data/lib/twilio-ruby/rest/conversations_base.rb +38 -0
  203. data/lib/twilio-ruby/rest/events/v1/event_type.rb +329 -0
  204. data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +302 -0
  205. data/lib/twilio-ruby/rest/events/v1/schema.rb +238 -0
  206. data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +132 -0
  207. data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +139 -0
  208. data/lib/twilio-ruby/rest/events/v1/sink.rb +453 -0
  209. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +381 -0
  210. data/lib/twilio-ruby/rest/events/v1/subscription.rb +435 -0
  211. data/lib/twilio-ruby/rest/events/v1.rb +94 -0
  212. data/lib/twilio-ruby/rest/events.rb +43 -0
  213. data/lib/twilio-ruby/rest/events_base.rb +38 -0
  214. data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +449 -0
  215. data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +382 -0
  216. data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +548 -415
  217. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +573 -506
  218. data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +329 -0
  219. data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +229 -0
  220. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +445 -0
  221. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +360 -0
  222. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +445 -0
  223. data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +362 -0
  224. data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +217 -0
  225. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +157 -0
  226. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +143 -0
  227. data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +196 -0
  228. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +254 -0
  229. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +354 -0
  230. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +411 -0
  231. data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +272 -0
  232. data/lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb +397 -0
  233. data/lib/twilio-ruby/rest/flex_api/v1/plugin.rb +446 -0
  234. data/lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb +247 -0
  235. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration/configured_plugin.rb +393 -0
  236. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration.rb +386 -0
  237. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration_archive.rb +233 -0
  238. data/lib/twilio-ruby/rest/flex_api/v1/plugin_release.rb +332 -0
  239. data/lib/twilio-ruby/rest/flex_api/v1/plugin_version_archive.rb +256 -0
  240. data/lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb +188 -0
  241. data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +397 -0
  242. data/lib/twilio-ruby/rest/flex_api/v1.rb +314 -44
  243. data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +290 -0
  244. data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +151 -0
  245. data/lib/twilio-ruby/rest/flex_api/v2.rb +77 -0
  246. data/lib/twilio-ruby/rest/flex_api.rb +49 -28
  247. data/lib/twilio-ruby/rest/flex_api_base.rb +43 -0
  248. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +278 -0
  249. data/lib/twilio-ruby/rest/frontline_api/v1.rb +49 -0
  250. data/lib/twilio-ruby/rest/frontline_api.rb +15 -0
  251. data/lib/twilio-ruby/rest/frontline_api_base.rb +38 -0
  252. data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +322 -0
  253. data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +353 -0
  254. data/lib/twilio-ruby/rest/insights/v1/call/event.rb +277 -0
  255. data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +269 -0
  256. data/lib/twilio-ruby/rest/insights/v1/call.rb +271 -0
  257. data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +494 -0
  258. data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +491 -0
  259. data/lib/twilio-ruby/rest/insights/v1/conference.rb +508 -0
  260. data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +386 -0
  261. data/lib/twilio-ruby/rest/insights/v1/room.rb +501 -0
  262. data/lib/twilio-ruby/rest/insights/v1/setting.rb +259 -0
  263. data/lib/twilio-ruby/rest/insights/v1.rb +85 -37
  264. data/lib/twilio-ruby/rest/insights.rb +29 -29
  265. data/lib/twilio-ruby/rest/insights_base.rb +38 -0
  266. data/lib/twilio-ruby/rest/intelligence/v2/custom_operator.rb +447 -0
  267. data/lib/twilio-ruby/rest/intelligence/v2/operator.rb +356 -0
  268. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachment.rb +217 -0
  269. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachments.rb +197 -0
  270. data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +358 -0
  271. data/lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb +356 -0
  272. data/lib/twilio-ruby/rest/intelligence/v2/service.rb +517 -0
  273. data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +227 -0
  274. data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +389 -0
  275. data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +249 -0
  276. data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +525 -0
  277. data/lib/twilio-ruby/rest/intelligence/v2.rb +176 -0
  278. data/lib/twilio-ruby/rest/intelligence.rb +6 -0
  279. data/lib/twilio-ruby/rest/intelligence_base.rb +38 -0
  280. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +429 -421
  281. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +382 -405
  282. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +432 -458
  283. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +448 -455
  284. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +544 -533
  285. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +406 -385
  286. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +246 -242
  287. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +475 -458
  288. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +871 -912
  289. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +58 -54
  290. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +429 -421
  291. data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +377 -381
  292. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +382 -398
  293. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +493 -531
  294. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +520 -535
  295. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +450 -483
  296. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +613 -604
  297. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +406 -385
  298. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +370 -392
  299. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +405 -385
  300. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +517 -492
  301. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +774 -798
  302. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +58 -54
  303. data/lib/twilio-ruby/rest/ip_messaging.rb +9 -49
  304. data/lib/twilio-ruby/rest/ip_messaging_base.rb +43 -0
  305. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +247 -244
  306. data/lib/twilio-ruby/rest/lookups/v1.rb +43 -39
  307. data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +384 -0
  308. data/lib/twilio-ruby/rest/lookups/v2.rb +49 -0
  309. data/lib/twilio-ruby/rest/lookups.rb +3 -35
  310. data/lib/twilio-ruby/rest/lookups_base.rb +43 -0
  311. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on/available_add_on_extension.rb +309 -0
  312. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on.rb +336 -0
  313. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.rb +352 -0
  314. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +170 -0
  315. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on.rb +465 -0
  316. data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +284 -0
  317. data/lib/twilio-ruby/rest/marketplace/v1.rb +79 -0
  318. data/lib/twilio-ruby/rest/marketplace.rb +6 -0
  319. data/lib/twilio-ruby/rest/marketplace_base.rb +38 -0
  320. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +139 -0
  321. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +368 -0
  322. data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +509 -0
  323. data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +192 -0
  324. data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +285 -0
  325. data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +292 -0
  326. data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +239 -0
  327. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +164 -0
  328. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +217 -0
  329. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb +197 -0
  330. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +357 -345
  331. data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +330 -0
  332. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +364 -349
  333. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +364 -352
  334. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +620 -0
  335. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +138 -0
  336. data/lib/twilio-ruby/rest/messaging/v1/service.rb +775 -627
  337. data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +803 -0
  338. data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +126 -0
  339. data/lib/twilio-ruby/rest/messaging/v1.rb +188 -60
  340. data/lib/twilio-ruby/rest/messaging.rb +47 -34
  341. data/lib/twilio-ruby/rest/messaging_base.rb +38 -0
  342. data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +365 -0
  343. data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +358 -0
  344. data/lib/twilio-ruby/rest/microvisor/v1/app/app_manifest.rb +209 -0
  345. data/lib/twilio-ruby/rest/microvisor/v1/app.rb +352 -0
  346. data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +381 -0
  347. data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +374 -0
  348. data/lib/twilio-ruby/rest/microvisor/v1/device.rb +430 -0
  349. data/lib/twilio-ruby/rest/microvisor/v1.rb +94 -0
  350. data/lib/twilio-ruby/rest/microvisor.rb +24 -0
  351. data/lib/twilio-ruby/rest/microvisor_base.rb +38 -0
  352. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +402 -416
  353. data/lib/twilio-ruby/rest/monitor/v1/event.rb +385 -402
  354. data/lib/twilio-ruby/rest/monitor/v1.rb +58 -52
  355. data/lib/twilio-ruby/rest/monitor.rb +7 -36
  356. data/lib/twilio-ruby/rest/monitor_base.rb +38 -0
  357. data/lib/twilio-ruby/rest/notify/v1/credential.rb +429 -420
  358. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +443 -465
  359. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +317 -358
  360. data/lib/twilio-ruby/rest/notify/v1/service.rb +634 -611
  361. data/lib/twilio-ruby/rest/notify/v1.rb +58 -54
  362. data/lib/twilio-ruby/rest/notify.rb +3 -34
  363. data/lib/twilio-ruby/rest/notify_base.rb +38 -0
  364. data/lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb +241 -0
  365. data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +128 -0
  366. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +294 -0
  367. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +315 -0
  368. data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +250 -0
  369. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +149 -0
  370. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +168 -0
  371. data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +177 -0
  372. data/lib/twilio-ruby/rest/numbers/v1/webhook.rb +161 -0
  373. data/lib/twilio-ruby/rest/numbers/v1.rb +155 -0
  374. data/lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb +344 -0
  375. data/lib/twilio-ruby/rest/numbers/v2/authorization_document.rb +408 -0
  376. data/lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb +266 -0
  377. data/lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb +507 -0
  378. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +288 -0
  379. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +340 -0
  380. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +351 -0
  381. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +204 -0
  382. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +617 -0
  383. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +407 -0
  384. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +300 -0
  385. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +349 -0
  386. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +428 -0
  387. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +300 -0
  388. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +186 -0
  389. data/lib/twilio-ruby/rest/numbers/v2.rb +85 -0
  390. data/lib/twilio-ruby/rest/numbers.rb +12 -0
  391. data/lib/twilio-ruby/rest/numbers_base.rb +43 -0
  392. data/lib/twilio-ruby/rest/oauth/v1/authorize.rb +144 -0
  393. data/lib/twilio-ruby/rest/oauth/v1/token.rb +182 -0
  394. data/lib/twilio-ruby/rest/oauth/v1.rb +46 -0
  395. data/lib/twilio-ruby/rest/oauth.rb +6 -0
  396. data/lib/twilio-ruby/rest/oauth_base.rb +38 -0
  397. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +418 -393
  398. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +402 -376
  399. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +457 -436
  400. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +415 -387
  401. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +502 -477
  402. data/lib/twilio-ruby/rest/preview/deployed_devices.rb +43 -38
  403. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +372 -396
  404. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +452 -459
  405. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +618 -643
  406. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +58 -54
  407. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +303 -304
  408. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +327 -320
  409. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +346 -340
  410. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +437 -419
  411. data/lib/twilio-ruby/rest/preview/marketplace.rb +58 -54
  412. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +384 -387
  413. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +449 -414
  414. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +440 -418
  415. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +384 -387
  416. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +425 -412
  417. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +443 -415
  418. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +384 -387
  419. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +425 -412
  420. data/lib/twilio-ruby/rest/preview/sync/service.rb +503 -470
  421. data/lib/twilio-ruby/rest/preview/sync.rb +43 -37
  422. data/lib/twilio-ruby/rest/preview/wireless/command.rb +391 -378
  423. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +456 -416
  424. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +236 -212
  425. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +578 -536
  426. data/lib/twilio-ruby/rest/preview/wireless.rb +73 -67
  427. data/lib/twilio-ruby/rest/preview.rb +23 -145
  428. data/lib/twilio-ruby/rest/preview_base.rb +58 -0
  429. data/lib/twilio-ruby/rest/preview_iam.rb +6 -0
  430. data/lib/twilio-ruby/rest/preview_iam_base.rb +33 -0
  431. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +301 -284
  432. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +109 -120
  433. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +294 -277
  434. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +109 -120
  435. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +301 -284
  436. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +224 -204
  437. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +123 -136
  438. data/lib/twilio-ruby/rest/pricing/v1.rb +46 -43
  439. data/lib/twilio-ruby/rest/pricing/v2/country.rb +302 -0
  440. data/lib/twilio-ruby/rest/pricing/v2/number.rb +243 -0
  441. data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +301 -284
  442. data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +242 -225
  443. data/lib/twilio-ruby/rest/pricing/v2/voice.rb +123 -139
  444. data/lib/twilio-ruby/rest/pricing/v2.rb +64 -29
  445. data/lib/twilio-ruby/rest/pricing.rb +22 -38
  446. data/lib/twilio-ruby/rest/pricing_base.rb +43 -0
  447. data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +427 -419
  448. data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +412 -427
  449. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +434 -463
  450. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +427 -456
  451. data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +530 -540
  452. data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +407 -388
  453. data/lib/twilio-ruby/rest/proxy/v1/service.rb +567 -614
  454. data/lib/twilio-ruby/rest/proxy/v1.rb +43 -38
  455. data/lib/twilio-ruby/rest/proxy.rb +2 -34
  456. data/lib/twilio-ruby/rest/proxy_base.rb +38 -0
  457. data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +273 -0
  458. data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +273 -0
  459. data/lib/twilio-ruby/rest/routes/v2/trunk.rb +273 -0
  460. data/lib/twilio-ruby/rest/routes/v2.rb +79 -0
  461. data/lib/twilio-ruby/rest/routes.rb +32 -0
  462. data/lib/twilio-ruby/rest/routes_base.rb +38 -0
  463. data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +317 -365
  464. data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +420 -384
  465. data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +220 -0
  466. data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +413 -348
  467. data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +340 -355
  468. data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +373 -0
  469. data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +411 -400
  470. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +462 -417
  471. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +231 -0
  472. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +344 -365
  473. data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +420 -384
  474. data/lib/twilio-ruby/rest/serverless/v1/service.rb +531 -472
  475. data/lib/twilio-ruby/rest/serverless/v1.rb +43 -38
  476. data/lib/twilio-ruby/rest/serverless.rb +4 -35
  477. data/lib/twilio-ruby/rest/serverless_base.rb +38 -0
  478. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +210 -206
  479. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +225 -227
  480. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +365 -364
  481. data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +430 -407
  482. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +210 -206
  483. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +225 -227
  484. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +365 -369
  485. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +478 -434
  486. data/lib/twilio-ruby/rest/studio/v1/flow.rb +386 -364
  487. data/lib/twilio-ruby/rest/studio/v1.rb +43 -37
  488. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +220 -0
  489. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +231 -0
  490. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +375 -0
  491. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +477 -0
  492. data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +351 -0
  493. data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +237 -0
  494. data/lib/twilio-ruby/rest/studio/v2/flow.rb +538 -0
  495. data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +142 -0
  496. data/lib/twilio-ruby/rest/studio/v2.rb +55 -0
  497. data/lib/twilio-ruby/rest/studio.rb +11 -35
  498. data/lib/twilio-ruby/rest/studio_base.rb +43 -0
  499. data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +406 -0
  500. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +487 -0
  501. data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +411 -0
  502. data/lib/twilio-ruby/rest/supersim/v1/network.rb +313 -0
  503. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +349 -0
  504. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +395 -0
  505. data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +257 -0
  506. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +250 -0
  507. data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +208 -0
  508. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +475 -0
  509. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +371 -0
  510. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +314 -0
  511. data/lib/twilio-ruby/rest/supersim/v1.rb +151 -0
  512. data/lib/twilio-ruby/rest/supersim.rb +88 -0
  513. data/lib/twilio-ruby/rest/supersim_base.rb +38 -0
  514. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +384 -388
  515. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +465 -435
  516. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +474 -478
  517. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +384 -388
  518. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +480 -459
  519. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +477 -486
  520. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +384 -388
  521. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +480 -459
  522. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +143 -142
  523. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +429 -418
  524. data/lib/twilio-ruby/rest/sync/v1/service.rb +585 -521
  525. data/lib/twilio-ruby/rest/sync/v1.rb +43 -37
  526. data/lib/twilio-ruby/rest/sync.rb +4 -35
  527. data/lib/twilio-ruby/rest/sync_base.rb +38 -0
  528. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +415 -397
  529. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +446 -458
  530. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +710 -646
  531. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +660 -628
  532. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +419 -394
  533. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_bulk_real_time_statistics.rb +164 -0
  534. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +363 -363
  535. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +283 -260
  536. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +234 -241
  537. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +241 -268
  538. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +584 -577
  539. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +692 -592
  540. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +395 -399
  541. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +239 -238
  542. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +285 -269
  543. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +219 -193
  544. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +255 -239
  545. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +631 -621
  546. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +363 -370
  547. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +249 -240
  548. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +234 -241
  549. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +533 -517
  550. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +357 -357
  551. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +236 -212
  552. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +245 -237
  553. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +730 -726
  554. data/lib/twilio-ruby/rest/taskrouter/v1.rb +43 -37
  555. data/lib/twilio-ruby/rest/taskrouter.rb +4 -35
  556. data/lib/twilio-ruby/rest/taskrouter_base.rb +38 -0
  557. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +350 -334
  558. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +350 -331
  559. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +450 -437
  560. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +483 -465
  561. data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +236 -0
  562. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +633 -637
  563. data/lib/twilio-ruby/rest/trunking/v1.rb +43 -38
  564. data/lib/twilio-ruby/rest/trunking.rb +2 -34
  565. data/lib/twilio-ruby/rest/trunking_base.rb +38 -0
  566. data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +240 -0
  567. data/lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb +357 -0
  568. data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +220 -0
  569. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +371 -0
  570. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +355 -0
  571. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +345 -0
  572. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +551 -0
  573. data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +402 -0
  574. data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +295 -0
  575. data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +288 -0
  576. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +416 -0
  577. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +295 -0
  578. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +371 -0
  579. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +355 -0
  580. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +345 -0
  581. data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +551 -0
  582. data/lib/twilio-ruby/rest/trusthub/v1.rb +175 -0
  583. data/lib/twilio-ruby/rest/trusthub.rb +74 -0
  584. data/lib/twilio-ruby/rest/trusthub_base.rb +38 -0
  585. data/lib/twilio-ruby/rest/verify/v2/form.rb +204 -0
  586. data/lib/twilio-ruby/rest/verify/v2/safelist.rb +236 -0
  587. data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +284 -0
  588. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +201 -0
  589. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +515 -0
  590. data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +465 -0
  591. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +272 -0
  592. data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +436 -0
  593. data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +395 -0
  594. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +421 -0
  595. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +436 -0
  596. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +388 -345
  597. data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +222 -207
  598. data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +463 -0
  599. data/lib/twilio-ruby/rest/verify/v2/service.rb +817 -500
  600. data/lib/twilio-ruby/rest/verify/v2/template.rb +230 -0
  601. data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +385 -0
  602. data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +250 -0
  603. data/lib/twilio-ruby/rest/verify/v2.rb +100 -38
  604. data/lib/twilio-ruby/rest/verify.rb +36 -25
  605. data/lib/twilio-ruby/rest/verify_base.rb +38 -0
  606. data/lib/twilio-ruby/rest/video/v1/composition.rb +485 -511
  607. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +535 -635
  608. data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +287 -278
  609. data/lib/twilio-ruby/rest/video/v1/recording.rb +432 -416
  610. data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +287 -278
  611. data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +262 -0
  612. data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +334 -0
  613. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +186 -0
  614. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +341 -0
  615. data/lib/twilio-ruby/rest/video/v1/room/participant.rb +503 -0
  616. data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +175 -0
  617. data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +428 -0
  618. data/lib/twilio-ruby/rest/video/v1/room.rb +614 -520
  619. data/lib/twilio-ruby/rest/video/v1.rb +100 -99
  620. data/lib/twilio-ruby/rest/video.rb +19 -46
  621. data/lib/twilio-ruby/rest/video_base.rb +38 -0
  622. data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +169 -0
  623. data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +520 -0
  624. data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +456 -0
  625. data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +410 -0
  626. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +139 -127
  627. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +197 -186
  628. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +377 -404
  629. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +221 -201
  630. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +124 -124
  631. data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +396 -0
  632. data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +379 -0
  633. data/lib/twilio-ruby/rest/voice/v1.rb +131 -29
  634. data/lib/twilio-ruby/rest/voice.rb +41 -24
  635. data/lib/twilio-ruby/rest/voice_base.rb +38 -0
  636. data/lib/twilio-ruby/rest/wireless/v1/command.rb +416 -417
  637. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +473 -446
  638. data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +300 -295
  639. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +241 -240
  640. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +642 -650
  641. data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +235 -0
  642. data/lib/twilio-ruby/rest/wireless/v1.rb +79 -69
  643. data/lib/twilio-ruby/rest/wireless.rb +11 -34
  644. data/lib/twilio-ruby/rest/wireless_base.rb +38 -0
  645. data/lib/twilio-ruby/rest.rb +14 -0
  646. data/lib/twilio-ruby/security/request_validator.rb +62 -9
  647. data/lib/twilio-ruby/twiml/fax_response.rb +6 -3
  648. data/lib/twilio-ruby/twiml/messaging_response.rb +2 -2
  649. data/lib/twilio-ruby/twiml/twiml.rb +4 -0
  650. data/lib/twilio-ruby/twiml/voice_response.rb +1243 -181
  651. data/lib/twilio-ruby/util/configuration.rb +22 -5
  652. data/lib/twilio-ruby/version.rb +1 -1
  653. data/lib/twilio-ruby.rb +9 -25
  654. data/sonar-project.properties +13 -0
  655. data/twilio-ruby.gemspec +14 -8
  656. metadata +432 -754
  657. data/.travis.yml +0 -26
  658. data/conf/cacert.pem +0 -3376
  659. data/lib/twilio-ruby/framework/twilio_response.rb +0 -19
  660. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +0 -493
  661. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +0 -493
  662. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +0 -493
  663. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +0 -493
  664. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +0 -493
  665. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +0 -493
  666. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +0 -493
  667. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +0 -472
  668. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +0 -317
  669. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +0 -325
  670. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +0 -361
  671. 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
  672. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +0 -163
  673. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +0 -361
  674. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +0 -137
  675. data/lib/twilio-ruby/rest/authy/v1/form.rb +0 -197
  676. data/lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb +0 -412
  677. data/lib/twilio-ruby/rest/authy/v1/service/entity/factor.rb +0 -486
  678. data/lib/twilio-ruby/rest/authy/v1/service/entity.rb +0 -379
  679. data/lib/twilio-ruby/rest/authy/v1/service.rb +0 -385
  680. data/lib/twilio-ruby/rest/authy/v1.rb +0 -59
  681. data/lib/twilio-ruby/rest/authy.rb +0 -55
  682. data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +0 -230
  683. data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +0 -220
  684. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +0 -408
  685. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +0 -435
  686. data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +0 -409
  687. data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +0 -463
  688. data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +0 -228
  689. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +0 -399
  690. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +0 -466
  691. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +0 -265
  692. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +0 -243
  693. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +0 -524
  694. data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +0 -621
  695. data/lib/twilio-ruby/rest/autopilot/v1.rb +0 -44
  696. data/lib/twilio-ruby/rest/autopilot.rb +0 -47
  697. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -322
  698. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -548
  699. data/lib/twilio-ruby/rest/fax/v1.rb +0 -44
  700. data/lib/twilio-ruby/rest/fax.rb +0 -47
  701. data/lib/twilio-ruby/rest/insights/v1/summary.rb +0 -302
  702. data/lib/twilio-ruby/rest/messaging/v1/session/message.rb +0 -441
  703. data/lib/twilio-ruby/rest/messaging/v1/session/participant.rb +0 -465
  704. data/lib/twilio-ruby/rest/messaging/v1/session/webhook.rb +0 -448
  705. data/lib/twilio-ruby/rest/messaging/v1/session.rb +0 -509
  706. data/lib/twilio-ruby/rest/messaging/v1/webhook.rb +0 -305
  707. data/lib/twilio-ruby/rest/preview/acc_security/service/verification.rb +0 -185
  708. data/lib/twilio-ruby/rest/preview/acc_security/service/verification_check.rb +0 -182
  709. data/lib/twilio-ruby/rest/preview/acc_security/service.rb +0 -395
  710. data/lib/twilio-ruby/rest/preview/acc_security.rb +0 -43
  711. data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -211
  712. data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -210
  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/current_call.rb +0 -217
  716. data/lib/twilio-ruby/rest/preview/trusted_comms/device.rb +0 -146
  717. data/lib/twilio-ruby/rest/preview/trusted_comms/phone_call.rb +0 -169
  718. data/lib/twilio-ruby/rest/preview/trusted_comms.rb +0 -49
  719. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +0 -222
  720. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +0 -222
  721. data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +0 -212
  722. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +0 -399
  723. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +0 -424
  724. data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +0 -397
  725. data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +0 -454
  726. data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +0 -222
  727. data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +0 -386
  728. data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +0 -445
  729. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +0 -251
  730. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +0 -231
  731. data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +0 -512
  732. data/lib/twilio-ruby/rest/preview/understand/assistant.rb +0 -646
  733. data/lib/twilio-ruby/rest/preview/understand.rb +0 -44
  734. data/lib/twilio-ruby/rest/trunking/v1/trunk/terminating_sip_domain.rb +0 -418
  735. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -402
  736. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +0 -340
  737. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +0 -191
  738. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +0 -347
  739. data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +0 -496
  740. data/spec/framework/request_spec.rb +0 -36
  741. data/spec/framework/serialize_spec.rb +0 -80
  742. data/spec/holodeck/holodeck.rb +0 -61
  743. data/spec/holodeck/hologram.rb +0 -4
  744. data/spec/http/http_client_spec.rb +0 -122
  745. data/spec/integration/accounts/v1/credential/aws_spec.rb +0 -226
  746. data/spec/integration/accounts/v1/credential/public_key_spec.rb +0 -226
  747. data/spec/integration/accounts/v1/credential_spec.rb +0 -12
  748. data/spec/integration/api/v2010/account/address/dependent_phone_number_spec.rb +0 -107
  749. data/spec/integration/api/v2010/account/address_spec.rb +0 -273
  750. data/spec/integration/api/v2010/account/application_spec.rb +0 -280
  751. data/spec/integration/api/v2010/account/authorized_connect_app_spec.rb +0 -139
  752. data/spec/integration/api/v2010/account/available_phone_number/local_spec.rb +0 -103
  753. data/spec/integration/api/v2010/account/available_phone_number/machine_to_machine_spec.rb +0 -103
  754. data/spec/integration/api/v2010/account/available_phone_number/mobile_spec.rb +0 -102
  755. data/spec/integration/api/v2010/account/available_phone_number/national_spec.rb +0 -103
  756. data/spec/integration/api/v2010/account/available_phone_number/shared_cost_spec.rb +0 -103
  757. data/spec/integration/api/v2010/account/available_phone_number/toll_free_spec.rb +0 -102
  758. data/spec/integration/api/v2010/account/available_phone_number/voip_spec.rb +0 -103
  759. data/spec/integration/api/v2010/account/available_phone_number_spec.rb +0 -130
  760. data/spec/integration/api/v2010/account/balance_spec.rb +0 -45
  761. data/spec/integration/api/v2010/account/call/feedback_spec.rb +0 -139
  762. data/spec/integration/api/v2010/account/call/feedback_summary_spec.rb +0 -151
  763. data/spec/integration/api/v2010/account/call/notification_spec.rb +0 -181
  764. data/spec/integration/api/v2010/account/call/recording_spec.rb +0 -287
  765. data/spec/integration/api/v2010/account/call_spec.rb +0 -361
  766. data/spec/integration/api/v2010/account/conference/participant_spec.rb +0 -350
  767. data/spec/integration/api/v2010/account/conference/recording_spec.rb +0 -237
  768. data/spec/integration/api/v2010/account/conference_spec.rb +0 -263
  769. data/spec/integration/api/v2010/account/connect_app_spec.rb +0 -201
  770. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -137
  771. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
  772. data/spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb +0 -185
  773. data/spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb +0 -185
  774. data/spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb +0 -185
  775. data/spec/integration/api/v2010/account/incoming_phone_number_spec.rb +0 -341
  776. data/spec/integration/api/v2010/account/key_spec.rb +0 -180
  777. data/spec/integration/api/v2010/account/message/feedback_spec.rb +0 -50
  778. data/spec/integration/api/v2010/account/message/media_spec.rb +0 -164
  779. data/spec/integration/api/v2010/account/message_spec.rb +0 -290
  780. data/spec/integration/api/v2010/account/new_key_spec.rb +0 -47
  781. data/spec/integration/api/v2010/account/new_signing_key_spec.rb +0 -47
  782. data/spec/integration/api/v2010/account/notification_spec.rb +0 -174
  783. data/spec/integration/api/v2010/account/outgoing_caller_id_spec.rb +0 -195
  784. data/spec/integration/api/v2010/account/queue/member_spec.rb +0 -210
  785. data/spec/integration/api/v2010/account/queue_spec.rb +0 -248
  786. data/spec/integration/api/v2010/account/recording/add_on_result/payload_spec.rb +0 -177
  787. data/spec/integration/api/v2010/account/recording/add_on_result_spec.rb +0 -168
  788. data/spec/integration/api/v2010/account/recording/transcription_spec.rb +0 -176
  789. data/spec/integration/api/v2010/account/recording_spec.rb +0 -187
  790. data/spec/integration/api/v2010/account/short_code_spec.rb +0 -182
  791. data/spec/integration/api/v2010/account/signing_key_spec.rb +0 -180
  792. data/spec/integration/api/v2010/account/sip/credential_list/credential_spec.rb +0 -256
  793. data/spec/integration/api/v2010/account/sip/credential_list_spec.rb +0 -244
  794. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping_spec.rb +0 -220
  795. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping_spec.rb +0 -220
  796. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_calls_mapping_spec.rb +0 -12
  797. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping_spec.rb +0 -220
  798. data/spec/integration/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping_spec.rb +0 -12
  799. data/spec/integration/api/v2010/account/sip/domain/auth_types_spec.rb +0 -12
  800. data/spec/integration/api/v2010/account/sip/domain/credential_list_mapping_spec.rb +0 -210
  801. data/spec/integration/api/v2010/account/sip/domain/ip_access_control_list_mapping_spec.rb +0 -220
  802. data/spec/integration/api/v2010/account/sip/domain_spec.rb +0 -295
  803. data/spec/integration/api/v2010/account/sip/ip_access_control_list/ip_address_spec.rb +0 -258
  804. data/spec/integration/api/v2010/account/sip/ip_access_control_list_spec.rb +0 -254
  805. data/spec/integration/api/v2010/account/sip_spec.rb +0 -12
  806. data/spec/integration/api/v2010/account/token_spec.rb +0 -58
  807. data/spec/integration/api/v2010/account/transcription_spec.rb +0 -169
  808. data/spec/integration/api/v2010/account/usage/record/all_time_spec.rb +0 -113
  809. data/spec/integration/api/v2010/account/usage/record/daily_spec.rb +0 -113
  810. data/spec/integration/api/v2010/account/usage/record/last_month_spec.rb +0 -113
  811. data/spec/integration/api/v2010/account/usage/record/monthly_spec.rb +0 -113
  812. data/spec/integration/api/v2010/account/usage/record/this_month_spec.rb +0 -113
  813. data/spec/integration/api/v2010/account/usage/record/today_spec.rb +0 -113
  814. data/spec/integration/api/v2010/account/usage/record/yearly_spec.rb +0 -113
  815. data/spec/integration/api/v2010/account/usage/record/yesterday_spec.rb +0 -113
  816. data/spec/integration/api/v2010/account/usage/record_spec.rb +0 -110
  817. data/spec/integration/api/v2010/account/usage/trigger_spec.rb +0 -285
  818. data/spec/integration/api/v2010/account/usage_spec.rb +0 -12
  819. data/spec/integration/api/v2010/account/validation_request_spec.rb +0 -48
  820. data/spec/integration/api/v2010/account_spec.rb +0 -275
  821. data/spec/integration/authy/v1/form_spec.rb +0 -48
  822. data/spec/integration/authy/v1/service/entity/factor/challenge_spec.rb +0 -267
  823. data/spec/integration/authy/v1/service/entity/factor_spec.rb +0 -273
  824. data/spec/integration/authy/v1/service/entity_spec.rb +0 -201
  825. data/spec/integration/authy/v1/service_spec.rb +0 -227
  826. data/spec/integration/autopilot/v1/assistant/defaults_spec.rb +0 -81
  827. data/spec/integration/autopilot/v1/assistant/dialogue_spec.rb +0 -47
  828. data/spec/integration/autopilot/v1/assistant/field_type/field_value_spec.rb +0 -210
  829. data/spec/integration/autopilot/v1/assistant/field_type_spec.rb +0 -246
  830. data/spec/integration/autopilot/v1/assistant/model_build_spec.rb +0 -241
  831. data/spec/integration/autopilot/v1/assistant/query_spec.rb +0 -306
  832. data/spec/integration/autopilot/v1/assistant/style_sheet_spec.rb +0 -81
  833. data/spec/integration/autopilot/v1/assistant/task/field_spec.rb +0 -207
  834. data/spec/integration/autopilot/v1/assistant/task/sample_spec.rb +0 -253
  835. data/spec/integration/autopilot/v1/assistant/task/task_actions_spec.rb +0 -87
  836. data/spec/integration/autopilot/v1/assistant/task/task_statistics_spec.rb +0 -50
  837. data/spec/integration/autopilot/v1/assistant/task_spec.rb +0 -262
  838. data/spec/integration/autopilot/v1/assistant_spec.rb +0 -270
  839. data/spec/integration/chat/v1/credential_spec.rb +0 -223
  840. data/spec/integration/chat/v1/service/channel/invite_spec.rb +0 -210
  841. data/spec/integration/chat/v1/service/channel/member_spec.rb +0 -284
  842. data/spec/integration/chat/v1/service/channel/message_spec.rb +0 -294
  843. data/spec/integration/chat/v1/service/channel_spec.rb +0 -277
  844. data/spec/integration/chat/v1/service/role_spec.rb +0 -263
  845. data/spec/integration/chat/v1/service/user/user_channel_spec.rb +0 -94
  846. data/spec/integration/chat/v1/service/user_spec.rb +0 -266
  847. data/spec/integration/chat/v1/service_spec.rb +0 -299
  848. data/spec/integration/chat/v2/credential_spec.rb +0 -223
  849. data/spec/integration/chat/v2/service/binding_spec.rb +0 -177
  850. data/spec/integration/chat/v2/service/channel/invite_spec.rb +0 -210
  851. data/spec/integration/chat/v2/service/channel/member_spec.rb +0 -261
  852. data/spec/integration/chat/v2/service/channel/message_spec.rb +0 -405
  853. data/spec/integration/chat/v2/service/channel/webhook_spec.rb +0 -307
  854. data/spec/integration/chat/v2/service/channel_spec.rb +0 -281
  855. data/spec/integration/chat/v2/service/role_spec.rb +0 -263
  856. data/spec/integration/chat/v2/service/user/user_binding_spec.rb +0 -180
  857. data/spec/integration/chat/v2/service/user/user_channel_spec.rb +0 -192
  858. data/spec/integration/chat/v2/service/user_spec.rb +0 -270
  859. data/spec/integration/chat/v2/service_spec.rb +0 -354
  860. data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -128
  861. data/spec/integration/fax/v1/fax_spec.rb +0 -271
  862. data/spec/integration/flex_api/v1/configuration_spec.rb +0 -365
  863. data/spec/integration/flex_api/v1/flex_flow_spec.rb +0 -255
  864. data/spec/integration/insights/v1/summary_spec.rb +0 -61
  865. data/spec/integration/ip_messaging/v1/credential_spec.rb +0 -223
  866. data/spec/integration/ip_messaging/v1/service/channel/invite_spec.rb +0 -210
  867. data/spec/integration/ip_messaging/v1/service/channel/member_spec.rb +0 -284
  868. data/spec/integration/ip_messaging/v1/service/channel/message_spec.rb +0 -294
  869. data/spec/integration/ip_messaging/v1/service/channel_spec.rb +0 -277
  870. data/spec/integration/ip_messaging/v1/service/role_spec.rb +0 -263
  871. data/spec/integration/ip_messaging/v1/service/user/user_channel_spec.rb +0 -94
  872. data/spec/integration/ip_messaging/v1/service/user_spec.rb +0 -266
  873. data/spec/integration/ip_messaging/v1/service_spec.rb +0 -299
  874. data/spec/integration/ip_messaging/v2/credential_spec.rb +0 -223
  875. data/spec/integration/ip_messaging/v2/service/binding_spec.rb +0 -177
  876. data/spec/integration/ip_messaging/v2/service/channel/invite_spec.rb +0 -210
  877. data/spec/integration/ip_messaging/v2/service/channel/member_spec.rb +0 -261
  878. data/spec/integration/ip_messaging/v2/service/channel/message_spec.rb +0 -405
  879. data/spec/integration/ip_messaging/v2/service/channel/webhook_spec.rb +0 -307
  880. data/spec/integration/ip_messaging/v2/service/channel_spec.rb +0 -281
  881. data/spec/integration/ip_messaging/v2/service/role_spec.rb +0 -263
  882. data/spec/integration/ip_messaging/v2/service/user/user_binding_spec.rb +0 -180
  883. data/spec/integration/ip_messaging/v2/service/user/user_channel_spec.rb +0 -192
  884. data/spec/integration/ip_messaging/v2/service/user_spec.rb +0 -270
  885. data/spec/integration/ip_messaging/v2/service_spec.rb +0 -354
  886. data/spec/integration/lookups/v1/phone_number_spec.rb +0 -332
  887. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
  888. data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
  889. data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
  890. data/spec/integration/messaging/v1/service_spec.rb +0 -271
  891. data/spec/integration/messaging/v1/session/message_spec.rb +0 -238
  892. data/spec/integration/messaging/v1/session/participant_spec.rb +0 -256
  893. data/spec/integration/messaging/v1/session/webhook_spec.rb +0 -300
  894. data/spec/integration/messaging/v1/session_spec.rb +0 -227
  895. data/spec/integration/messaging/v1/webhook_spec.rb +0 -94
  896. data/spec/integration/monitor/v1/alert_spec.rb +0 -163
  897. data/spec/integration/monitor/v1/event_spec.rb +0 -150
  898. data/spec/integration/notify/v1/credential_spec.rb +0 -223
  899. data/spec/integration/notify/v1/service/binding_spec.rb +0 -225
  900. data/spec/integration/notify/v1/service/notification_spec.rb +0 -99
  901. data/spec/integration/notify/v1/service_spec.rb +0 -286
  902. data/spec/integration/preview/acc_security/service/verification_check_spec.rb +0 -52
  903. data/spec/integration/preview/acc_security/service/verification_spec.rb +0 -52
  904. data/spec/integration/preview/acc_security/service_spec.rb +0 -185
  905. data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -58
  906. data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
  907. data/spec/integration/preview/bulk_exports/export_spec.rb +0 -45
  908. data/spec/integration/preview/deployed_devices/fleet/certificate_spec.rb +0 -238
  909. data/spec/integration/preview/deployed_devices/fleet/deployment_spec.rb +0 -233
  910. data/spec/integration/preview/deployed_devices/fleet/device_spec.rb +0 -249
  911. data/spec/integration/preview/deployed_devices/fleet/key_spec.rb +0 -237
  912. data/spec/integration/preview/deployed_devices/fleet_spec.rb +0 -246
  913. data/spec/integration/preview/hosted_numbers/authorization_document/dependent_hosted_number_order_spec.rb +0 -111
  914. data/spec/integration/preview/hosted_numbers/authorization_document_spec.rb +0 -227
  915. data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -393
  916. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -123
  917. data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -144
  918. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
  919. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -254
  920. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -204
  921. data/spec/integration/preview/sync/service/document_spec.rb +0 -254
  922. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -254
  923. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -204
  924. data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -209
  925. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -254
  926. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -204
  927. data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -209
  928. data/spec/integration/preview/sync/service_spec.rb +0 -246
  929. data/spec/integration/preview/trusted_comms/current_call_spec.rb +0 -46
  930. data/spec/integration/preview/trusted_comms/device_spec.rb +0 -45
  931. data/spec/integration/preview/trusted_comms/phone_call_spec.rb +0 -48
  932. data/spec/integration/preview/understand/assistant/assistant_fallback_actions_spec.rb +0 -81
  933. data/spec/integration/preview/understand/assistant/assistant_initiation_actions_spec.rb +0 -81
  934. data/spec/integration/preview/understand/assistant/dialogue_spec.rb +0 -47
  935. data/spec/integration/preview/understand/assistant/field_type/field_value_spec.rb +0 -210
  936. data/spec/integration/preview/understand/assistant/field_type_spec.rb +0 -246
  937. data/spec/integration/preview/understand/assistant/model_build_spec.rb +0 -241
  938. data/spec/integration/preview/understand/assistant/query_spec.rb +0 -306
  939. data/spec/integration/preview/understand/assistant/style_sheet_spec.rb +0 -81
  940. data/spec/integration/preview/understand/assistant/task/field_spec.rb +0 -207
  941. data/spec/integration/preview/understand/assistant/task/sample_spec.rb +0 -253
  942. data/spec/integration/preview/understand/assistant/task/task_actions_spec.rb +0 -87
  943. data/spec/integration/preview/understand/assistant/task/task_statistics_spec.rb +0 -50
  944. data/spec/integration/preview/understand/assistant/task_spec.rb +0 -262
  945. data/spec/integration/preview/understand/assistant_spec.rb +0 -274
  946. data/spec/integration/preview/wireless/command_spec.rb +0 -169
  947. data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -262
  948. data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -51
  949. data/spec/integration/preview/wireless/sim_spec.rb +0 -210
  950. data/spec/integration/pricing/v1/messaging/country_spec.rb +0 -139
  951. data/spec/integration/pricing/v1/messaging_spec.rb +0 -12
  952. data/spec/integration/pricing/v1/phone_number/country_spec.rb +0 -130
  953. data/spec/integration/pricing/v1/phone_number_spec.rb +0 -12
  954. data/spec/integration/pricing/v1/voice/country_spec.rb +0 -140
  955. data/spec/integration/pricing/v1/voice/number_spec.rb +0 -56
  956. data/spec/integration/pricing/v1/voice_spec.rb +0 -12
  957. data/spec/integration/pricing/v2/voice/country_spec.rb +0 -181
  958. data/spec/integration/pricing/v2/voice/number_spec.rb +0 -62
  959. data/spec/integration/pricing/v2/voice_spec.rb +0 -12
  960. data/spec/integration/proxy/v1/service/phone_number_spec.rb +0 -236
  961. data/spec/integration/proxy/v1/service/session/interaction_spec.rb +0 -136
  962. data/spec/integration/proxy/v1/service/session/participant/message_interaction_spec.rb +0 -166
  963. data/spec/integration/proxy/v1/service/session/participant_spec.rb +0 -243
  964. data/spec/integration/proxy/v1/service/session_spec.rb +0 -230
  965. data/spec/integration/proxy/v1/service/short_code_spec.rb +0 -229
  966. data/spec/integration/proxy/v1/service_spec.rb +0 -218
  967. data/spec/integration/serverless/v1/service/asset/asset_version_spec.rb +0 -144
  968. data/spec/integration/serverless/v1/service/asset_spec.rb +0 -177
  969. data/spec/integration/serverless/v1/service/build_spec.rb +0 -184
  970. data/spec/integration/serverless/v1/service/environment/deployment_spec.rb +0 -137
  971. data/spec/integration/serverless/v1/service/environment/variable_spec.rb +0 -181
  972. data/spec/integration/serverless/v1/service/environment_spec.rb +0 -143
  973. data/spec/integration/serverless/v1/service/function/function_version_spec.rb +0 -144
  974. data/spec/integration/serverless/v1/service/function_spec.rb +0 -177
  975. data/spec/integration/serverless/v1/service_spec.rb +0 -180
  976. data/spec/integration/studio/v1/flow/engagement/engagement_context_spec.rb +0 -51
  977. data/spec/integration/studio/v1/flow/engagement/step/step_context_spec.rb +0 -54
  978. data/spec/integration/studio/v1/flow/engagement/step_spec.rb +0 -101
  979. data/spec/integration/studio/v1/flow/engagement_spec.rb +0 -171
  980. data/spec/integration/studio/v1/flow/execution/execution_context_spec.rb +0 -51
  981. data/spec/integration/studio/v1/flow/execution/execution_step/execution_step_context_spec.rb +0 -54
  982. data/spec/integration/studio/v1/flow/execution/execution_step_spec.rb +0 -101
  983. data/spec/integration/studio/v1/flow/execution_spec.rb +0 -171
  984. data/spec/integration/studio/v1/flow_spec.rb +0 -117
  985. data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -204
  986. data/spec/integration/sync/v1/service/document_spec.rb +0 -257
  987. data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -257
  988. data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -204
  989. data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -257
  990. data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
  991. data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -204
  992. data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -257
  993. data/spec/integration/sync/v1/service/sync_stream/stream_message_spec.rb +0 -47
  994. data/spec/integration/sync/v1/service/sync_stream_spec.rb +0 -249
  995. data/spec/integration/sync/v1/service_spec.rb +0 -254
  996. data/spec/integration/taskrouter/v1/workspace/activity_spec.rb +0 -236
  997. data/spec/integration/taskrouter/v1/workspace/event_spec.rb +0 -165
  998. data/spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb +0 -225
  999. data/spec/integration/taskrouter/v1/workspace/task_channel_spec.rb +0 -316
  1000. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics_spec.rb +0 -96
  1001. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics_spec.rb +0 -82
  1002. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queue_statistics_spec.rb +0 -108
  1003. data/spec/integration/taskrouter/v1/workspace/task_queue/task_queues_statistics_spec.rb +0 -146
  1004. data/spec/integration/taskrouter/v1/workspace/task_queue_spec.rb +0 -294
  1005. data/spec/integration/taskrouter/v1/workspace/task_spec.rb +0 -326
  1006. data/spec/integration/taskrouter/v1/workspace/worker/reservation_spec.rb +0 -194
  1007. data/spec/integration/taskrouter/v1/workspace/worker/worker_channel_spec.rb +0 -188
  1008. data/spec/integration/taskrouter/v1/workspace/worker/worker_statistics_spec.rb +0 -92
  1009. data/spec/integration/taskrouter/v1/workspace/worker/workers_cumulative_statistics_spec.rb +0 -89
  1010. data/spec/integration/taskrouter/v1/workspace/worker/workers_real_time_statistics_spec.rb +0 -70
  1011. data/spec/integration/taskrouter/v1/workspace/worker/workers_statistics_spec.rb +0 -116
  1012. data/spec/integration/taskrouter/v1/workspace/worker_spec.rb +0 -294
  1013. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics_spec.rb +0 -97
  1014. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_real_time_statistics_spec.rb +0 -58
  1015. data/spec/integration/taskrouter/v1/workspace/workflow/workflow_statistics_spec.rb +0 -71
  1016. data/spec/integration/taskrouter/v1/workspace/workflow_spec.rb +0 -272
  1017. data/spec/integration/taskrouter/v1/workspace/workspace_cumulative_statistics_spec.rb +0 -94
  1018. data/spec/integration/taskrouter/v1/workspace/workspace_real_time_statistics_spec.rb +0 -73
  1019. data/spec/integration/taskrouter/v1/workspace/workspace_statistics_spec.rb +0 -105
  1020. data/spec/integration/taskrouter/v1/workspace_spec.rb +0 -295
  1021. data/spec/integration/trunking/v1/trunk/credential_list_spec.rb +0 -192
  1022. data/spec/integration/trunking/v1/trunk/ip_access_control_list_spec.rb +0 -192
  1023. data/spec/integration/trunking/v1/trunk/origination_url_spec.rb +0 -252
  1024. data/spec/integration/trunking/v1/trunk/phone_number_spec.rb +0 -267
  1025. data/spec/integration/trunking/v1/trunk/terminating_sip_domain_spec.rb +0 -231
  1026. data/spec/integration/trunking/v1/trunk_spec.rb +0 -368
  1027. data/spec/integration/verify/v2/service/verification_check_spec.rb +0 -54
  1028. data/spec/integration/verify/v2/service/verification_spec.rb +0 -169
  1029. data/spec/integration/verify/v2/service_spec.rb +0 -231
  1030. data/spec/integration/video/v1/composition_hook_spec.rb +0 -410
  1031. data/spec/integration/video/v1/composition_settings_spec.rb +0 -86
  1032. data/spec/integration/video/v1/composition_spec.rb +0 -350
  1033. data/spec/integration/video/v1/recording_settings_spec.rb +0 -86
  1034. data/spec/integration/video/v1/recording_spec.rb +0 -179
  1035. data/spec/integration/video/v1/room/recording_spec.rb +0 -188
  1036. data/spec/integration/video/v1/room/room_participant/room_participant_published_track_spec.rb +0 -96
  1037. data/spec/integration/video/v1/room/room_participant/room_participant_subscribe_rule_spec.rb +0 -92
  1038. data/spec/integration/video/v1/room/room_participant/room_participant_subscribed_track_spec.rb +0 -97
  1039. data/spec/integration/video/v1/room/room_participant_spec.rb +0 -190
  1040. data/spec/integration/video/v1/room_spec.rb +0 -257
  1041. data/spec/integration/voice/v1/dialing_permissions/bulk_country_update_spec.rb +0 -45
  1042. data/spec/integration/voice/v1/dialing_permissions/country/highrisk_special_prefix_spec.rb +0 -61
  1043. data/spec/integration/voice/v1/dialing_permissions/country_spec.rb +0 -112
  1044. data/spec/integration/voice/v1/dialing_permissions/settings_spec.rb +0 -77
  1045. data/spec/integration/voice/v1/dialing_permissions_spec.rb +0 -12
  1046. data/spec/integration/wireless/v1/command_spec.rb +0 -289
  1047. data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -270
  1048. data/spec/integration/wireless/v1/sim/data_session_spec.rb +0 -89
  1049. data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -67
  1050. data/spec/integration/wireless/v1/sim_spec.rb +0 -245
  1051. data/spec/jwt/access_token_spec.rb +0 -151
  1052. data/spec/jwt/client_capability_spec.rb +0 -104
  1053. data/spec/jwt/task_router_spec.rb +0 -172
  1054. data/spec/rack/twilio_webhook_authentication_spec.rb +0 -106
  1055. data/spec/rest/client_spec.rb +0 -61
  1056. data/spec/security/request_validator_spec.rb +0 -84
  1057. data/spec/spec_helper.rb +0 -38
  1058. data/spec/support/fakeweb.rb +0 -2
  1059. data/spec/twilio_spec.rb +0 -15
  1060. data/spec/twiml/messaging_response_spec.rb +0 -235
  1061. data/spec/twiml/voice_response_spec.rb +0 -847
  1062. data/spec/util/configuration_spec.rb +0 -15
  1063. data/spec/util/url_encode_spec.rb +0 -12
  1064. /data/lib/twilio-ruby/framework/{helper.rb → rest/helper.rb} +0 -0
  1065. /data/lib/twilio-ruby/framework/{obsolete_client.rb → rest/obsolete_client.rb} +0 -0
  1066. /data/lib/twilio-ruby/framework/{page.rb → rest/page.rb} +0 -0
  1067. /data/lib/twilio-ruby/framework/{resource.rb → rest/resource.rb} +0 -0
data/CHANGES.md CHANGED
@@ -1,6 +1,2687 @@
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
+
2372
+ [2019-12-18] Version 5.31.1
2373
+ ---------------------------
2374
+ **Library - Chore**
2375
+ - [PR #488](https://github.com/twilio/twilio-ruby/pull/488): upgrade rubocop to 0.77.0. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2376
+
2377
+ **Preview**
2378
+ - Add `/Insights/SuccessRate` endpoint for Businesses Branded Calls (Verified by Twilio)
2379
+
2380
+ **Studio**
2381
+ - StudioV2 API in beta
2382
+
2383
+ **Verify**
2384
+ - Add `MailerSid` property to Verify Service resource.
2385
+
2386
+ **Wireless**
2387
+ - Added `data_limit_strategy` to Rate Plan resource.
2388
+
2389
+
2390
+ [2019-12-12] Version 5.31.0
2391
+ ---------------------------
2392
+ **Api**
2393
+ - Make `twiml` conditional for create. One of `url`, `twiml`, or `application_sid` is now required.
2394
+ - Add `bundle_sid` parameter to /IncomingPhoneNumbers API
2395
+ - Removed discard / obfuscate parameters from ContentRetention, AddressRetention **(breaking change)**
2396
+
2397
+ **Chat**
2398
+ - Added `last_consumed_message_index` and `last_consumption_timestamp` parameters in update method for UserChannel resource **(breaking change)**
2399
+
2400
+ **Conversations**
2401
+ - Add Participant SID to Message properties
2402
+
2403
+ **Messaging**
2404
+ - Fix incorrectly typed capabilities property for ShortCodes. **(breaking change)**
2405
+
2406
+
2407
+ [2019-12-04] Version 5.30.0
2408
+ ---------------------------
2409
+ **Library**
2410
+ - [PR #485](https://github.com/twilio/twilio-ruby/pull/485): docs: add supported language versions to README. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2411
+ - [PR #445](https://github.com/twilio/twilio-ruby/pull/445): fix: handle building the HTTP client proxy URI without authentication. Thanks to [@laka3000](https://github.com/laka3000)!
2412
+
2413
+ **Api**
2414
+ - Add optional `twiml` parameter for call create
2415
+
2416
+ **Chat**
2417
+ - Added `delete` method in UserChannel resource
2418
+
2419
+ **Conversations**
2420
+ - Allow Messaging Service update
2421
+
2422
+ **Taskrouter**
2423
+ - Support ReEvaluateTasks parameter on Workflow update
2424
+
2425
+ **Twiml**
2426
+ - Remove unsupported `mixed_track` value from `<Stream>` **(breaking change)**
2427
+ - Add missing fax `<Receive>` optional attributes
2428
+
2429
+
2430
+ [2019-11-13] Version 5.29.1
2431
+ ---------------------------
2432
+ **Api**
2433
+ - Make `persistent_action` parameter public
2434
+ - Add `twiml` optional private parameter for call create
2435
+
2436
+ **Autopilot**
2437
+ - Add Export resource to Autopilot Assistant.
2438
+
2439
+ **Flex**
2440
+ - Added Integration.RetryCount attribute to Flex Flow
2441
+ - Updating a Flex Flow `channel_type` options documentation
2442
+
2443
+ **Insights**
2444
+ - Added edges to events and metrics
2445
+ - Added new endpoint definitions for Events and Metrics
2446
+
2447
+ **Messaging**
2448
+ - **create** support for sender registration
2449
+ - **fetch** support for fetching a sender
2450
+ - **update** support for sender verification
2451
+
2452
+ **Supersim**
2453
+ - Add `Direction` filter parameter to list commands endpoint
2454
+ - Allow filtering commands list by Sim Unique Name
2455
+ - Add `Iccid` filter parameter to list sims endpoint
2456
+
2457
+ **Twiml**
2458
+ - Add support for `<Refer>` verb
2459
+
2460
+
2461
+ [2019-10-30] Version 5.29.0
2462
+ ---------------------------
2463
+ **Library**
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)!
2465
+ - [PR #480](https://github.com/twilio/twilio-ruby/pull/480): Update resources after sorting. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
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)!
2467
+
2468
+ **Api**
2469
+ - Add new usage categories to the public api `sms-messages-carrierfees` and `mms-messages-carrierfees`
2470
+
2471
+ **Conversations**
2472
+ - Add ProjectedAddress to Conversations Participant resource
2473
+
2474
+ **Preview**
2475
+ - Implemented different `Sid` for Current Calls (Verified by Twilio), instead of relying in `Call.Sid` from Voice API team **(breaking change)**
2476
+
2477
+ **Supersim**
2478
+ - Add List endpoint to Commands resource for Super Sim Pilot
2479
+ - Add UsageRecords resource for the Super Sim Pilot
2480
+ - Add List endpoint to UsageRecords resource for the Super Sim Pilot
2481
+ - Allow assigning a Sim to a Fleet by Fleet SID or Unique Name for Super SIM Pilot
2482
+ - Add Update endpoint to Fleets resource for Super Sim Pilot
2483
+ - Add Fetch endpoint to Commands resource for Super Sim Pilot
2484
+ - Allow filtering the Sims resource List endpoint by Fleet
2485
+ - Add List endpoint to Fleets resource for Super Sim Pilot
2486
+
2487
+ **Wireless**
2488
+ - Added `account_sid` to Sim update parameters.
2489
+
2490
+ **Twiml**
2491
+ - Add new locales and voices for `Say` from Polly
2492
+
2493
+
2494
+ [2019-10-16] Version 5.28.0
2495
+ ---------------------------
2496
+ **Library**
2497
+ - [PR #476](https://github.com/twilio/twilio-ruby/pull/476): Update a few property types in the lookups and trunking responses. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2498
+ - [PR #477](https://github.com/twilio/twilio-ruby/pull/477): Update instance property ordering. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2499
+ - [PR #475](https://github.com/twilio/twilio-ruby/pull/475): Update the call price to be optional for deserializing. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2500
+ - [PR #474](https://github.com/twilio/twilio-ruby/pull/474): breaking: Correct video composition date types. Thanks to [@childish-sambino](https://github.com/childish-sambino)! **(breaking change)**
2501
+
2502
+ **Api**
2503
+ - Add new property `attempt` to sms_messages
2504
+ - Fixed a typo in the documentation for Feedback outcome enum **(breaking change)**
2505
+ - Update the call price to be optional for deserializing **(breaking change)**
2506
+
2507
+ **Flex**
2508
+ - Added `JanitorEnabled` attribute to Flex Flow
2509
+ - Change `features_enabled` Flex Configuration key to private **(breaking change)**
2510
+
2511
+ **Supersim**
2512
+ - Add Fetch endpoint to Fleets resource for Super Sim Pilot
2513
+ - Allow assigning a Sim to a Fleet for Super Sim Pilot
2514
+ - Add Create endpoint to Fleets resource for Super Sim Pilot
2515
+
2516
+ **Twiml**
2517
+ - Update `<Conference>` rename "whisper" attribute to "coach" **(breaking change)**
2518
+
2519
+
2520
+ [2019-10-02] Version 5.27.1
2521
+ ---------------------------
2522
+ **Library**
2523
+ - [PR #473](https://github.com/twilio/twilio-ruby/pull/473): Wrap any Faraday error as a TwilioError. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2524
+ - [PR #472](https://github.com/twilio/twilio-ruby/pull/472): Fix the Dockerfile to use the latest Ruby 2.4 and ignore the Gem lock file. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2525
+
2526
+ **Conversations**
2527
+ - Add media to Conversations Message resource
2528
+
2529
+ **Supersim**
2530
+ - Add List endpoint to Sims resource for Super Sim Pilot
2531
+
2532
+
2533
+ [2019-09-18] Version 5.27.0
2534
+ ----------------------------
2535
+ **Library**
2536
+ - [PR #470](https://github.com/twilio/twilio-ruby/pull/470): breaking: Catch and wrap Faraday client errors. Thanks to [@childish-sambino](https://github.com/childish-sambino)! **(breaking change)**
2537
+ - [PR #471](https://github.com/twilio/twilio-ruby/pull/471): Drop support for Ruby < 2.4 and add 2.6. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2538
+ - [PR #468](https://github.com/twilio/twilio-ruby/pull/468): Add URI encoding for phone numbers. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2539
+ - [PR #469](https://github.com/twilio/twilio-ruby/pull/469): Add TwiML FaxResponse require to top-level file. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2540
+ - [PR #450](https://github.com/twilio/twilio-ruby/pull/450): Update encode64 to strict_encode64 in RequestValidator#build_signature_for. Thanks to [@kitallis](https://github.com/kitallis)!
2541
+ - [PR #467](https://github.com/twilio/twilio-ruby/pull/467): Add a global configuration for the HTTP client. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2542
+ - [PR #466](https://github.com/twilio/twilio-ruby/pull/466): Use the 'base_url' instead of the 'host' for HTTP client URL. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2543
+
2544
+ **Numbers**
2545
+ - Add v2 of the Identites API
2546
+
2547
+ **Preview**
2548
+ - Changed authentication method for SDK Trusted Comms endpoints: `/CPS`, `/CurrentCall`, and `/Devices`. Please use `Authorization: Bearer <xCNAM JWT>` **(breaking change)**
2549
+
2550
+ **Voice**
2551
+ - Add Recordings endpoints
2552
+
2553
+
2554
+ [2019-09-04] Version 5.26.0
2555
+ ----------------------------
2556
+ **Library**
2557
+ - [PR #463](https://github.com/twilio/twilio-ruby/pull/463): Reduce line length to satisfy rubocop constraints. Thanks to [@igracia](https://github.com/igracia)!
2558
+ - [PR #399](https://github.com/twilio/twilio-ruby/pull/399): breaking: Added proxy protocol to HTTP Client constructor. Thanks to [@po5i](https://github.com/po5i)! **(breaking change)**
2559
+ - [PR #462](https://github.com/twilio/twilio-ruby/pull/462): Correct 'delete' method doc to indicate 'false' when resource not deleted. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2560
+ - [PR #441](https://github.com/twilio/twilio-ruby/pull/441): Link to actual documentation. Thanks to [@alexford](https://github.com/alexford)!
2561
+
2562
+ **Api**
2563
+ - Pass Twiml in call update request
2564
+
2565
+ **Conversations**
2566
+ - Add attributes to Conversations resources
2567
+
2568
+ **Flex**
2569
+ - Adding `features_enabled` and `serverless_service_sids` to Flex Configuration
2570
+
2571
+ **Messaging**
2572
+ - Message API required params updated **(breaking change)**
2573
+
2574
+ **Preview**
2575
+ - Added support for the optional `CallSid` to `/BrandedCalls` endpoint
2576
+
2577
+
2578
+ [2019-08-21] Version 5.25.4
2579
+ ----------------------------
2580
+ **Library**
2581
+ - [PR #460](https://github.com/twilio/twilio-ruby/pull/460): Update the IP messaging domain name to be 'chat'. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2582
+ - [PR #458](https://github.com/twilio/twilio-ruby/pull/458): Update TwiML docs for naming overrides. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
2583
+
2584
+ **Conversations**
2585
+ - Add Chat Conversation SID to conversation default output properties
2586
+
2587
+ **Flex**
2588
+ - Adding `outbound_call_flows` object to Flex Configuration
2589
+ - Adding read and fetch to channels API
2590
+
2591
+ **Supersim**
2592
+ - Add Sims and Commands resources for the Super Sim Pilot
2593
+
2594
+ **Sync**
2595
+ - Added configuration option for enabling webhooks from REST.
2596
+
2597
+ **Wireless**
2598
+ - Added `usage_notification_method` and `usage_notification_url` properties to `rate_plan`.
2599
+
2600
+ **Twiml**
2601
+ - Add support for `ach-debit` transactions in `Pay` verb
2602
+
2603
+
2604
+ [2019-08-05] Version 5.25.3
2605
+ ----------------------------
2606
+ **Preview**
2607
+ - Added support for the header `Twilio-Sandbox-Mode` to mock all Voice dependencies
2608
+
2609
+ **Twiml**
2610
+ - Add support for `<Siprec>` noun
2611
+ - Add support for `<Stream>` noun
2612
+ - Create verbs `<Start>` and `<Stop>`
2613
+
2614
+
2615
+ [2019-07-24] Version 5.25.2
2616
+ ----------------------------
2617
+ **Insights**
2618
+ - Added `properties` to summary.
2619
+
2620
+ **Preview**
2621
+ - Added endpoint to brand a call without initiating it, so it can be initiated manually by the Customer
2622
+
2623
+ **Twiml**
2624
+ - Update `<Conference>` recording events **(breaking change)**
2625
+
2626
+
2627
+ [2019-07-10] Version 5.25.1
2628
+ ----------------------------
2629
+ **Api**
2630
+ - Make `friendly_name` optional for applications create
2631
+ - Add new property `as_of` date to Usage Record API calls
2632
+
2633
+ **Wireless**
2634
+ - Added Usage Records resource.
2635
+
2636
+
2637
+ [2019-06-26] Version 5.25.0
2638
+ ----------------------------
2639
+ **Autopilot**
2640
+ - Adds two new properties in Assistant i.e needs_model_build and development_stage
2641
+
2642
+ **Preview**
2643
+ - Changed phone numbers from _URL|Path_ to `X-XCNAM-Sensitive` headers **(breaking change)**
2644
+
2645
+ **Verify**
2646
+ - Add `MessagingConfiguration` resource to verify service
2647
+
2648
+
2649
+ [2019-06-12] Version 5.24.0
2650
+ ----------------------------
2651
+ **Autopilot**
2652
+ - Add Webhooks resource to Autopilot Assistant.
2653
+
2654
+ **Flex**
2655
+ - Added missing 'custom' type to Flex Flow
2656
+ - Adding `integrations` to Flex Configuration
2657
+
2658
+ **Insights**
2659
+ - Added attributes to summary.
2660
+
2661
+ **Messaging**
2662
+ - Message API Create updated with conditional params **(breaking change)**
2663
+
2664
+ **Proxy**
2665
+ - Document that Proxy will return a maximum of 100 records for read/list endpoints **(breaking change)**
2666
+ - Remove non-updatable property parameters for Session update (mode, participants) **(breaking change)**
2667
+
2668
+ **Sync**
2669
+ - Added reachability debouncing configuration options.
2670
+
2671
+ **Verify**
2672
+ - Add `RateLimits` and `Buckets` resources to Verify Services
2673
+ - Add `RateLimits` optional parameter on `Verification` creation.
2674
+
2675
+ **Twiml**
2676
+ - Fix `<Room>` participantIdentity casing
2677
+
2678
+
2679
+ [2019-05-29] Version 5.23.1
2680
+ ----------------------------
2681
+ **Verify**
2682
+ - Add `approved` to status enum
2683
+
2684
+
4
2685
  [2019-05-15] Version 5.23.0
5
2686
  ----------------------------
6
2687
  **Api**