twilio-ruby 5.19.0 → 5.74.2

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