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