twilio-ruby 5.31.1 → 7.3.0

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