twilio-ruby 3.11.5 → 5.71.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (673) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +1 -0
  3. data/.github/workflows/pr-lint.yml +15 -0
  4. data/.github/workflows/test-and-deploy.yml +129 -0
  5. data/.gitignore +12 -2
  6. data/.rubocop.yml +59 -0
  7. data/.rubocop_todo.yml +261 -0
  8. data/AUTHORS.md +21 -0
  9. data/CHANGES.md +3045 -0
  10. data/CODE_OF_CONDUCT.md +73 -0
  11. data/CONTRIBUTING.md +161 -0
  12. data/Dockerfile +9 -0
  13. data/Gemfile +2 -2
  14. data/ISSUE_TEMPLATE.md +30 -0
  15. data/LICENSE +13 -11
  16. data/Makefile +26 -5
  17. data/PULL_REQUEST_TEMPLATE.md +31 -0
  18. data/README.md +171 -90
  19. data/Rakefile +8 -10
  20. data/UPGRADE.md +30 -0
  21. data/VERSIONS.md +35 -0
  22. data/examples/examples.rb +62 -49
  23. data/examples/{print-call-log.rb → print_call_log.rb} +7 -7
  24. data/githooks/pre-commit +1 -0
  25. data/lib/rack/twilio_webhook_authentication.rb +72 -0
  26. data/lib/twilio-ruby/framework/request.rb +41 -0
  27. data/lib/twilio-ruby/framework/response.rb +18 -0
  28. data/lib/twilio-ruby/framework/rest/domain.rb +36 -0
  29. data/lib/twilio-ruby/framework/rest/error.rb +51 -0
  30. data/lib/twilio-ruby/framework/rest/helper.rb +11 -0
  31. data/lib/twilio-ruby/framework/rest/obsolete_client.rb +12 -0
  32. data/lib/twilio-ruby/framework/rest/page.rb +103 -0
  33. data/lib/twilio-ruby/framework/rest/resource.rb +23 -0
  34. data/lib/twilio-ruby/framework/rest/version.rb +153 -0
  35. data/lib/twilio-ruby/framework/serialize.rb +81 -0
  36. data/lib/twilio-ruby/framework/twilio_response.rb +19 -0
  37. data/lib/twilio-ruby/framework/values.rb +9 -0
  38. data/lib/twilio-ruby/http/http_client.rb +79 -0
  39. data/lib/twilio-ruby/http.rb +5 -0
  40. data/lib/twilio-ruby/jwt/access_token.rb +285 -0
  41. data/lib/twilio-ruby/jwt/client_capability.rb +102 -0
  42. data/lib/twilio-ruby/jwt/jwt.rb +59 -0
  43. data/lib/twilio-ruby/jwt/task_router.rb +172 -0
  44. data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +186 -0
  45. data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +339 -0
  46. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +339 -0
  47. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +122 -0
  48. data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +200 -0
  49. data/lib/twilio-ruby/rest/accounts/v1.rb +49 -0
  50. data/lib/twilio-ruby/rest/accounts.rb +50 -9
  51. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +372 -0
  52. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +521 -0
  53. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +593 -0
  54. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +327 -0
  55. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +500 -0
  56. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +500 -0
  57. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +500 -0
  58. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +500 -0
  59. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +500 -0
  60. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +500 -0
  61. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +500 -0
  62. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +464 -0
  63. data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +125 -0
  64. data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +201 -0
  65. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +301 -0
  66. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +314 -0
  67. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +428 -0
  68. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +375 -0
  69. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +522 -0
  70. data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +674 -0
  71. data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +674 -0
  72. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +998 -0
  73. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +728 -0
  74. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +469 -0
  75. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +500 -0
  76. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +414 -0
  77. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +367 -0
  78. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +431 -0
  79. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +561 -0
  80. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +560 -0
  81. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +560 -0
  82. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +910 -0
  83. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +309 -0
  84. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +173 -0
  85. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +361 -0
  86. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +632 -0
  87. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +145 -0
  88. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +145 -0
  89. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +406 -0
  90. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +365 -0
  91. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +349 -0
  92. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +397 -0
  93. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +387 -0
  94. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +398 -0
  95. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +383 -0
  96. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +520 -0
  97. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +415 -0
  98. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +313 -0
  99. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +387 -0
  100. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +386 -0
  101. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +348 -0
  102. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +348 -0
  103. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +163 -0
  104. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +348 -0
  105. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +137 -0
  106. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +135 -0
  107. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +356 -0
  108. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +355 -0
  109. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +660 -0
  110. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +432 -0
  111. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +387 -0
  112. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +157 -0
  113. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +161 -0
  114. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +357 -0
  115. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +351 -0
  116. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +351 -0
  117. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +351 -0
  118. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +351 -0
  119. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +351 -0
  120. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +351 -0
  121. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +351 -0
  122. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +351 -0
  123. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +423 -0
  124. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +495 -0
  125. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +120 -0
  126. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +168 -0
  127. data/lib/twilio-ruby/rest/api/v2010/account.rb +953 -0
  128. data/lib/twilio-ruby/rest/api/v2010.rb +154 -0
  129. data/lib/twilio-ruby/rest/api.rb +247 -0
  130. data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +220 -0
  131. data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +214 -0
  132. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +399 -0
  133. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +418 -0
  134. data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +392 -0
  135. data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +469 -0
  136. data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +218 -0
  137. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +386 -0
  138. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +456 -0
  139. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +255 -0
  140. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +237 -0
  141. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +507 -0
  142. data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +420 -0
  143. data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +650 -0
  144. data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +194 -0
  145. data/lib/twilio-ruby/rest/autopilot/v1.rb +52 -0
  146. data/lib/twilio-ruby/rest/autopilot.rb +53 -0
  147. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +286 -0
  148. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +286 -0
  149. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +255 -0
  150. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +243 -0
  151. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +226 -0
  152. data/lib/twilio-ruby/rest/bulkexports/v1.rb +62 -0
  153. data/lib/twilio-ruby/rest/bulkexports.rb +56 -0
  154. data/lib/twilio-ruby/rest/chat/v1/credential.rb +413 -0
  155. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +402 -0
  156. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +451 -0
  157. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +448 -0
  158. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +522 -0
  159. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +374 -0
  160. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +246 -0
  161. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +447 -0
  162. data/lib/twilio-ruby/rest/chat/v1/service.rb +904 -0
  163. data/lib/twilio-ruby/rest/chat/v1.rb +62 -0
  164. data/lib/twilio-ruby/rest/chat/v2/credential.rb +411 -0
  165. data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +377 -0
  166. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +397 -0
  167. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +538 -0
  168. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +544 -0
  169. data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +478 -0
  170. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +612 -0
  171. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +376 -0
  172. data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +392 -0
  173. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +430 -0
  174. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +498 -0
  175. data/lib/twilio-ruby/rest/chat/v2/service.rb +788 -0
  176. data/lib/twilio-ruby/rest/chat/v2.rb +60 -0
  177. data/lib/twilio-ruby/rest/chat/v3/channel.rb +275 -0
  178. data/lib/twilio-ruby/rest/chat/v3.rb +48 -0
  179. data/lib/twilio-ruby/rest/chat.rb +79 -0
  180. data/lib/twilio-ruby/rest/client.rb +572 -214
  181. data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +454 -0
  182. data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +254 -0
  183. data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +260 -0
  184. data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +355 -0
  185. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +502 -0
  186. data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +502 -0
  187. data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +410 -0
  188. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +562 -0
  189. data/lib/twilio-ruby/rest/conversations/v1/credential.rb +419 -0
  190. data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +312 -0
  191. data/lib/twilio-ruby/rest/conversations/v1/role.rb +366 -0
  192. data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +380 -0
  193. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +323 -0
  194. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +269 -0
  195. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +286 -0
  196. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +386 -0
  197. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +548 -0
  198. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +541 -0
  199. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +449 -0
  200. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +595 -0
  201. data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +324 -0
  202. data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +387 -0
  203. data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +466 -0
  204. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +481 -0
  205. data/lib/twilio-ruby/rest/conversations/v1/service.rb +457 -0
  206. data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +442 -0
  207. data/lib/twilio-ruby/rest/conversations/v1/user.rb +451 -0
  208. data/lib/twilio-ruby/rest/conversations/v1.rb +143 -0
  209. data/lib/twilio-ruby/rest/conversations.rb +104 -0
  210. data/lib/twilio-ruby/rest/events/v1/event_type.rb +298 -0
  211. data/lib/twilio-ruby/rest/events/v1/schema/version.rb +290 -0
  212. data/lib/twilio-ruby/rest/events/v1/schema.rb +226 -0
  213. data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +115 -0
  214. data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +119 -0
  215. data/lib/twilio-ruby/rest/events/v1/sink.rb +418 -0
  216. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +346 -0
  217. data/lib/twilio-ruby/rest/events/v1/subscription.rb +397 -0
  218. data/lib/twilio-ruby/rest/events/v1.rb +94 -0
  219. data/lib/twilio-ruby/rest/events.rb +72 -0
  220. data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +340 -0
  221. data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +490 -0
  222. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +580 -0
  223. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +236 -0
  224. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +330 -0
  225. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +405 -0
  226. data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +233 -0
  227. data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +341 -0
  228. data/lib/twilio-ruby/rest/flex_api/v1.rb +99 -0
  229. data/lib/twilio-ruby/rest/flex_api.rb +80 -0
  230. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +258 -0
  231. data/lib/twilio-ruby/rest/frontline_api/v1.rb +45 -0
  232. data/lib/twilio-ruby/rest/frontline_api.rb +47 -0
  233. data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +322 -0
  234. data/lib/twilio-ruby/rest/insights/v1/call/event.rb +262 -0
  235. data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +252 -0
  236. data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +314 -0
  237. data/lib/twilio-ruby/rest/insights/v1/call.rb +244 -0
  238. data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +434 -0
  239. data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +474 -0
  240. data/lib/twilio-ruby/rest/insights/v1/conference.rb +512 -0
  241. data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +378 -0
  242. data/lib/twilio-ruby/rest/insights/v1/room.rb +499 -0
  243. data/lib/twilio-ruby/rest/insights/v1/setting.rb +215 -0
  244. data/lib/twilio-ruby/rest/insights/v1.rb +90 -0
  245. data/lib/twilio-ruby/rest/insights.rb +74 -0
  246. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +374 -0
  247. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +370 -0
  248. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +408 -0
  249. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +420 -0
  250. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +495 -0
  251. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +354 -0
  252. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +240 -0
  253. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +425 -0
  254. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +789 -0
  255. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +60 -0
  256. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +374 -0
  257. data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +350 -0
  258. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +370 -0
  259. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +462 -0
  260. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +490 -0
  261. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +422 -0
  262. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +562 -0
  263. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +354 -0
  264. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +362 -0
  265. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +395 -0
  266. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +474 -0
  267. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +699 -0
  268. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +60 -0
  269. data/lib/twilio-ruby/rest/ip_messaging.rb +61 -0
  270. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +247 -0
  271. data/lib/twilio-ruby/rest/lookups/v1.rb +46 -0
  272. data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +261 -0
  273. data/lib/twilio-ruby/rest/lookups/v2.rb +45 -0
  274. data/lib/twilio-ruby/rest/lookups.rb +55 -0
  275. data/lib/twilio-ruby/rest/media/v1/media_processor.rb +397 -0
  276. data/lib/twilio-ruby/rest/media/v1/media_recording.rb +399 -0
  277. data/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +221 -0
  278. data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +403 -0
  279. data/lib/twilio-ruby/rest/media/v1.rb +76 -0
  280. data/lib/twilio-ruby/rest/media.rb +58 -7
  281. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +353 -0
  282. data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +453 -0
  283. data/lib/twilio-ruby/rest/messaging/v1/deactivation.rb +164 -0
  284. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +150 -0
  285. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +342 -0
  286. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +348 -0
  287. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +343 -0
  288. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +433 -0
  289. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +129 -0
  290. data/lib/twilio-ruby/rest/messaging/v1/service.rb +773 -0
  291. data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +111 -0
  292. data/lib/twilio-ruby/rest/messaging/v1.rb +81 -0
  293. data/lib/twilio-ruby/rest/messaging.rb +73 -0
  294. data/lib/twilio-ruby/rest/microvisor/v1/app.rb +305 -0
  295. data/lib/twilio-ruby/rest/microvisor/v1/device.rb +332 -0
  296. data/lib/twilio-ruby/rest/microvisor/v1.rb +60 -0
  297. data/lib/twilio-ruby/rest/microvisor.rb +54 -0
  298. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +405 -0
  299. data/lib/twilio-ruby/rest/monitor/v1/event.rb +400 -0
  300. data/lib/twilio-ruby/rest/monitor/v1.rb +60 -0
  301. data/lib/twilio-ruby/rest/monitor.rb +56 -0
  302. data/lib/twilio-ruby/rest/notify/v1/credential.rb +418 -0
  303. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +459 -0
  304. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +369 -0
  305. data/lib/twilio-ruby/rest/notify/v1/service.rb +632 -0
  306. data/lib/twilio-ruby/rest/notify/v1.rb +62 -0
  307. data/lib/twilio-ruby/rest/notify.rb +56 -0
  308. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +268 -0
  309. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +309 -0
  310. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +320 -0
  311. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +188 -0
  312. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +614 -0
  313. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +358 -0
  314. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +273 -0
  315. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +314 -0
  316. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +378 -0
  317. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +273 -0
  318. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +189 -0
  319. data/lib/twilio-ruby/rest/numbers/v2.rb +35 -0
  320. data/lib/twilio-ruby/rest/numbers.rb +44 -0
  321. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +382 -0
  322. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +365 -0
  323. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +425 -0
  324. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +376 -0
  325. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +469 -0
  326. data/lib/twilio-ruby/rest/preview/deployed_devices.rb +45 -0
  327. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +403 -0
  328. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +456 -0
  329. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +635 -0
  330. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +62 -0
  331. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +305 -0
  332. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +319 -0
  333. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +337 -0
  334. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +408 -0
  335. data/lib/twilio-ruby/rest/preview/marketplace.rb +60 -0
  336. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +385 -0
  337. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +406 -0
  338. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +418 -0
  339. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +385 -0
  340. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +405 -0
  341. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +415 -0
  342. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +385 -0
  343. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +405 -0
  344. data/lib/twilio-ruby/rest/preview/sync/service.rb +462 -0
  345. data/lib/twilio-ruby/rest/preview/sync.rb +44 -0
  346. data/lib/twilio-ruby/rest/preview/trusted_comms/branded_channel/channel.rb +165 -0
  347. data/lib/twilio-ruby/rest/preview/trusted_comms/branded_channel.rb +225 -0
  348. data/lib/twilio-ruby/rest/preview/trusted_comms/brands_information.rb +195 -0
  349. data/lib/twilio-ruby/rest/preview/trusted_comms/cps.rb +186 -0
  350. data/lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb +277 -0
  351. data/lib/twilio-ruby/rest/preview/trusted_comms.rb +65 -0
  352. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +212 -0
  353. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +212 -0
  354. data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +206 -0
  355. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +386 -0
  356. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +407 -0
  357. data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +380 -0
  358. data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +437 -0
  359. data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +212 -0
  360. data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +373 -0
  361. data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +428 -0
  362. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +241 -0
  363. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +225 -0
  364. data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +495 -0
  365. data/lib/twilio-ruby/rest/preview/understand/assistant.rb +629 -0
  366. data/lib/twilio-ruby/rest/preview/understand.rb +45 -0
  367. data/lib/twilio-ruby/rest/preview/wireless/command.rb +374 -0
  368. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +408 -0
  369. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +233 -0
  370. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +533 -0
  371. data/lib/twilio-ruby/rest/preview/wireless.rb +76 -0
  372. data/lib/twilio-ruby/rest/preview.rb +193 -0
  373. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +282 -0
  374. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +127 -0
  375. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +275 -0
  376. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +127 -0
  377. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +282 -0
  378. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +204 -0
  379. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +143 -0
  380. data/lib/twilio-ruby/rest/pricing/v1.rb +49 -0
  381. data/lib/twilio-ruby/rest/pricing/v2/country.rb +280 -0
  382. data/lib/twilio-ruby/rest/pricing/v2/number.rb +225 -0
  383. data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +282 -0
  384. data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +227 -0
  385. data/lib/twilio-ruby/rest/pricing/v2/voice.rb +146 -0
  386. data/lib/twilio-ruby/rest/pricing/v2.rb +72 -0
  387. data/lib/twilio-ruby/rest/pricing.rb +82 -0
  388. data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +410 -0
  389. data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +429 -0
  390. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +458 -0
  391. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +468 -0
  392. data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +554 -0
  393. data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +377 -0
  394. data/lib/twilio-ruby/rest/proxy/v1/service.rb +606 -0
  395. data/lib/twilio-ruby/rest/proxy/v1.rb +45 -0
  396. data/lib/twilio-ruby/rest/proxy.rb +47 -0
  397. data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +235 -0
  398. data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +231 -0
  399. data/lib/twilio-ruby/rest/routes/v2/trunk.rb +235 -0
  400. data/lib/twilio-ruby/rest/routes/v2.rb +76 -0
  401. data/lib/twilio-ruby/rest/routes.rb +62 -0
  402. data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +334 -0
  403. data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +387 -0
  404. data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +219 -0
  405. data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +391 -0
  406. data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +349 -0
  407. data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +394 -0
  408. data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +407 -0
  409. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +454 -0
  410. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +241 -0
  411. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +364 -0
  412. data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +387 -0
  413. data/lib/twilio-ruby/rest/serverless/v1/service.rb +503 -0
  414. data/lib/twilio-ruby/rest/serverless/v1.rb +44 -0
  415. data/lib/twilio-ruby/rest/serverless.rb +47 -0
  416. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +210 -0
  417. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +225 -0
  418. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +366 -0
  419. data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +401 -0
  420. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +211 -0
  421. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +228 -0
  422. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +372 -0
  423. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +456 -0
  424. data/lib/twilio-ruby/rest/studio/v1/flow.rb +365 -0
  425. data/lib/twilio-ruby/rest/studio/v1.rb +44 -0
  426. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +211 -0
  427. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +228 -0
  428. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +372 -0
  429. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +449 -0
  430. data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +327 -0
  431. data/lib/twilio-ruby/rest/studio/v2/flow/test_user.rb +199 -0
  432. data/lib/twilio-ruby/rest/studio/v2/flow.rb +482 -0
  433. data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +117 -0
  434. data/lib/twilio-ruby/rest/studio/v2.rb +51 -0
  435. data/lib/twilio-ruby/rest/studio.rb +60 -0
  436. data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +372 -0
  437. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +493 -0
  438. data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +416 -0
  439. data/lib/twilio-ruby/rest/supersim/v1/network.rb +307 -0
  440. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +339 -0
  441. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +361 -0
  442. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +231 -0
  443. data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +195 -0
  444. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +463 -0
  445. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +371 -0
  446. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +352 -0
  447. data/lib/twilio-ruby/rest/supersim/v1.rb +147 -0
  448. data/lib/twilio-ruby/rest/supersim.rb +106 -0
  449. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +382 -0
  450. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +430 -0
  451. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +501 -0
  452. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +381 -0
  453. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +452 -0
  454. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +506 -0
  455. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +379 -0
  456. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +451 -0
  457. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +139 -0
  458. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +407 -0
  459. data/lib/twilio-ruby/rest/sync/v1/service.rb +577 -0
  460. data/lib/twilio-ruby/rest/sync/v1.rb +44 -0
  461. data/lib/twilio-ruby/rest/sync.rb +47 -0
  462. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +402 -0
  463. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +471 -0
  464. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +747 -0
  465. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +668 -0
  466. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +389 -0
  467. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +381 -0
  468. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +287 -0
  469. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +265 -0
  470. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +285 -0
  471. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +573 -0
  472. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +743 -0
  473. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +399 -0
  474. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +250 -0
  475. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +277 -0
  476. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +204 -0
  477. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +245 -0
  478. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +638 -0
  479. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +387 -0
  480. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +252 -0
  481. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +273 -0
  482. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +517 -0
  483. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +363 -0
  484. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +234 -0
  485. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +241 -0
  486. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +740 -0
  487. data/lib/twilio-ruby/rest/taskrouter/v1.rb +44 -0
  488. data/lib/twilio-ruby/rest/taskrouter.rb +47 -0
  489. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +327 -0
  490. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +324 -0
  491. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +426 -0
  492. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +458 -0
  493. data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +198 -0
  494. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +640 -0
  495. data/lib/twilio-ruby/rest/trunking/v1.rb +45 -0
  496. data/lib/twilio-ruby/rest/trunking.rb +47 -0
  497. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +359 -0
  498. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +330 -0
  499. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +328 -0
  500. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +523 -0
  501. data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +356 -0
  502. data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +271 -0
  503. data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +262 -0
  504. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +369 -0
  505. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +271 -0
  506. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +359 -0
  507. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +330 -0
  508. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +328 -0
  509. data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +523 -0
  510. data/lib/twilio-ruby/rest/trusthub/v1.rb +146 -0
  511. data/lib/twilio-ruby/rest/trusthub.rb +100 -0
  512. data/lib/twilio-ruby/rest/verify/v2/form.rb +191 -0
  513. data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +269 -0
  514. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +205 -0
  515. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +551 -0
  516. data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +472 -0
  517. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +309 -0
  518. data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +429 -0
  519. data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +370 -0
  520. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +399 -0
  521. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +391 -0
  522. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +373 -0
  523. data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +212 -0
  524. data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +427 -0
  525. data/lib/twilio-ruby/rest/verify/v2/service.rb +790 -0
  526. data/lib/twilio-ruby/rest/verify/v2/template.rb +206 -0
  527. data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +397 -0
  528. data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +234 -0
  529. data/lib/twilio-ruby/rest/verify/v2.rb +92 -0
  530. data/lib/twilio-ruby/rest/verify.rb +77 -0
  531. data/lib/twilio-ruby/rest/video/v1/composition.rb +517 -0
  532. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +657 -0
  533. data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +269 -0
  534. data/lib/twilio-ruby/rest/video/v1/recording.rb +436 -0
  535. data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +269 -0
  536. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +413 -0
  537. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +335 -0
  538. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +175 -0
  539. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +340 -0
  540. data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +483 -0
  541. data/lib/twilio-ruby/rest/video/v1/room/room_recording_rule.rb +144 -0
  542. data/lib/twilio-ruby/rest/video/v1/room.rb +612 -0
  543. data/lib/twilio-ruby/rest/video/v1.rb +106 -0
  544. data/lib/twilio-ruby/rest/video.rb +86 -0
  545. data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +184 -0
  546. data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +496 -0
  547. data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +441 -0
  548. data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +362 -0
  549. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +128 -0
  550. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +190 -0
  551. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +404 -0
  552. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +197 -0
  553. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +129 -0
  554. data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +349 -0
  555. data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +329 -0
  556. data/lib/twilio-ruby/rest/voice/v1.rb +124 -0
  557. data/lib/twilio-ruby/rest/voice.rb +88 -0
  558. data/lib/twilio-ruby/rest/wireless/v1/command.rb +416 -0
  559. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +446 -0
  560. data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +291 -0
  561. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +250 -0
  562. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +657 -0
  563. data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +229 -0
  564. data/lib/twilio-ruby/rest/wireless/v1.rb +83 -0
  565. data/lib/twilio-ruby/rest/wireless.rb +71 -0
  566. data/lib/twilio-ruby/rest.rb +13 -0
  567. data/lib/twilio-ruby/security/request_validator.rb +150 -0
  568. data/lib/twilio-ruby/twiml/fax_response.rb +45 -0
  569. data/lib/twilio-ruby/twiml/messaging_response.rb +107 -0
  570. data/lib/twilio-ruby/twiml/twiml.rb +126 -0
  571. data/lib/twilio-ruby/twiml/voice_response.rb +1849 -0
  572. data/lib/twilio-ruby/util/configuration.rb +33 -0
  573. data/lib/twilio-ruby/util.rb +5 -1
  574. data/lib/twilio-ruby/version.rb +1 -1
  575. data/lib/twilio-ruby.rb +39 -50
  576. data/sonar-project.properties +13 -0
  577. data/twilio-ruby.gemspec +34 -26
  578. metadata +674 -141
  579. data/.travis.yml +0 -13
  580. data/CHANGES +0 -47
  581. data/docs/Makefile +0 -130
  582. data/docs/_themes/LICENSE +0 -45
  583. data/docs/_themes/README.rst +0 -25
  584. data/docs/_themes/flask_theme_support.py +0 -86
  585. data/docs/_themes/kr/layout.html +0 -32
  586. data/docs/_themes/kr/relations.html +0 -19
  587. data/docs/_themes/kr/static/flasky.css_t +0 -469
  588. data/docs/_themes/kr/static/small_flask.css +0 -70
  589. data/docs/_themes/kr/theme.conf +0 -7
  590. data/docs/_themes/kr_small/layout.html +0 -22
  591. data/docs/_themes/kr_small/static/flasky.css_t +0 -287
  592. data/docs/_themes/kr_small/theme.conf +0 -10
  593. data/docs/changelog.rst +0 -1
  594. data/docs/conf.py +0 -266
  595. data/docs/faq.rst +0 -42
  596. data/docs/getting-started.rst +0 -91
  597. data/docs/index.rst +0 -109
  598. data/docs/make.bat +0 -170
  599. data/docs/src/pip-delete-this-directory.txt +0 -5
  600. data/docs/usage/accounts.rst +0 -89
  601. data/docs/usage/applications.rst +0 -108
  602. data/docs/usage/basics.rst +0 -102
  603. data/docs/usage/caller-ids.rst +0 -45
  604. data/docs/usage/conferences.rst +0 -108
  605. data/docs/usage/errors.rst +0 -29
  606. data/docs/usage/messages.rst +0 -109
  607. data/docs/usage/notifications.rst +0 -70
  608. data/docs/usage/phone-calls.rst +0 -166
  609. data/docs/usage/phone-numbers.rst +0 -174
  610. data/docs/usage/queues.rst +0 -112
  611. data/docs/usage/recordings.rst +0 -96
  612. data/docs/usage/sip.rst +0 -103
  613. data/docs/usage/token-generation.rst +0 -81
  614. data/docs/usage/transcriptions.rst +0 -31
  615. data/docs/usage/twiml.rst +0 -69
  616. data/docs/usage/validation.rst +0 -71
  617. data/lib/twilio-ruby/rest/applications.rb +0 -6
  618. data/lib/twilio-ruby/rest/authorized_connect_apps.rb +0 -6
  619. data/lib/twilio-ruby/rest/available_phone_numbers/country.rb +0 -10
  620. data/lib/twilio-ruby/rest/available_phone_numbers/local.rb +0 -11
  621. data/lib/twilio-ruby/rest/available_phone_numbers/mobile.rb +0 -11
  622. data/lib/twilio-ruby/rest/available_phone_numbers/toll_free.rb +0 -11
  623. data/lib/twilio-ruby/rest/available_phone_numbers.rb +0 -13
  624. data/lib/twilio-ruby/rest/calls.rb +0 -28
  625. data/lib/twilio-ruby/rest/conferences/participants.rb +0 -23
  626. data/lib/twilio-ruby/rest/conferences.rb +0 -12
  627. data/lib/twilio-ruby/rest/connect_apps.rb +0 -6
  628. data/lib/twilio-ruby/rest/errors.rb +0 -14
  629. data/lib/twilio-ruby/rest/incoming_phone_numbers/local.rb +0 -13
  630. data/lib/twilio-ruby/rest/incoming_phone_numbers/mobile.rb +0 -13
  631. data/lib/twilio-ruby/rest/incoming_phone_numbers/toll_free.rb +0 -13
  632. data/lib/twilio-ruby/rest/incoming_phone_numbers.rb +0 -17
  633. data/lib/twilio-ruby/rest/instance_resource.rb +0 -101
  634. data/lib/twilio-ruby/rest/list_resource.rb +0 -110
  635. data/lib/twilio-ruby/rest/messages.rb +0 -17
  636. data/lib/twilio-ruby/rest/notifications.rb +0 -6
  637. data/lib/twilio-ruby/rest/outgoing_caller_ids.rb +0 -25
  638. data/lib/twilio-ruby/rest/queues/members.rb +0 -29
  639. data/lib/twilio-ruby/rest/queues.rb +0 -12
  640. data/lib/twilio-ruby/rest/recordings.rb +0 -35
  641. data/lib/twilio-ruby/rest/sandbox.rb +0 -5
  642. data/lib/twilio-ruby/rest/sip/credential_lists/credentials.rb +0 -6
  643. data/lib/twilio-ruby/rest/sip/credential_lists.rb +0 -11
  644. data/lib/twilio-ruby/rest/sip/domains/credential_list_mappings.rb +0 -6
  645. data/lib/twilio-ruby/rest/sip/domains/ip_access_control_list_mappings.rb +0 -6
  646. data/lib/twilio-ruby/rest/sip/domains.rb +0 -12
  647. data/lib/twilio-ruby/rest/sip/ip_access_control_lists/ip_addresses.rb +0 -6
  648. data/lib/twilio-ruby/rest/sip/ip_access_control_lists.rb +0 -11
  649. data/lib/twilio-ruby/rest/sip.rb +0 -12
  650. data/lib/twilio-ruby/rest/sms/messages.rb +0 -15
  651. data/lib/twilio-ruby/rest/sms/short_codes.rb +0 -8
  652. data/lib/twilio-ruby/rest/sms.rb +0 -11
  653. data/lib/twilio-ruby/rest/transcriptions.rb +0 -6
  654. data/lib/twilio-ruby/rest/usage/records.rb +0 -21
  655. data/lib/twilio-ruby/rest/usage/triggers.rb +0 -12
  656. data/lib/twilio-ruby/rest/usage.rb +0 -10
  657. data/lib/twilio-ruby/rest/utils.rb +0 -25
  658. data/lib/twilio-ruby/twiml/response.rb +0 -15
  659. data/lib/twilio-ruby/util/capability.rb +0 -61
  660. data/lib/twilio-ruby/util/request_validator.rb +0 -22
  661. data/spec/rest/account_spec.rb +0 -58
  662. data/spec/rest/call_spec.rb +0 -18
  663. data/spec/rest/client_spec.rb +0 -100
  664. data/spec/rest/conference_spec.rb +0 -9
  665. data/spec/rest/instance_resource_spec.rb +0 -15
  666. data/spec/rest/message_spec.rb +0 -12
  667. data/spec/rest/numbers_spec.rb +0 -46
  668. data/spec/rest/queue_spec.rb +0 -9
  669. data/spec/rest/recording_spec.rb +0 -9
  670. data/spec/spec_helper.rb +0 -6
  671. data/spec/util/capability_spec.rb +0 -137
  672. data/spec/util/request_validator_spec.rb +0 -65
  673. data/spec/util/url_encode_spec.rb +0 -12
data/CHANGES.md ADDED
@@ -0,0 +1,3045 @@
1
+ twilio-ruby changelog
2
+ =====================
3
+
4
+ [2022-08-24] Version 5.71.0
5
+ ---------------------------
6
+ **Library - Test**
7
+ - [PR #615](https://github.com/twilio/twilio-ruby/pull/615): add test-docker rule. Thanks to [@beebzz](https://github.com/beebzz)!
8
+
9
+ **Api**
10
+ - Remove `beta feature` from scheduling params and remove optimize parameters. **(breaking change)**
11
+
12
+ **Routes**
13
+ - Remove Duplicate Create Method - Update Method will work even if Inbound Processing Region is currently empty/404. **(breaking change)**
14
+
15
+ **Twiml**
16
+ - Add new Polly Neural voices
17
+ - Add new languages to SSML `<lang>`.
18
+
19
+
20
+ [2022-08-10] Version 5.70.1
21
+ ---------------------------
22
+ **Library - Fix**
23
+ - [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)!
24
+
25
+ **Routes**
26
+ - Inbound Proccessing Region API - Public GA
27
+
28
+ **Supersim**
29
+ - Allow updating `DataLimit` on a Fleet
30
+
31
+
32
+ [2022-07-21] Version 5.70.0
33
+ ---------------------------
34
+ **Flex**
35
+ - Add `status`, `error_code`, and `error_message` fields to Interaction `Channel`
36
+ - Adding `messenger` and `gbm` as supported channels for Interactions API
37
+
38
+ **Messaging**
39
+ - Update alpha_sender docs with new valid characters
40
+
41
+ **Verify**
42
+ - Reorder Verification Check parameters so `code` stays as the first parameter **(breaking change)**
43
+ - Rollback List Attempts API V2 back to pilot stage.
44
+
45
+
46
+ [2022-07-13] Version 5.69.0
47
+ ---------------------------
48
+ **Library - Fix**
49
+ - [PR #612](https://github.com/twilio/twilio-ruby/pull/612): useragent regrex unit test for RC branch. Thanks to [@claudiachua](https://github.com/claudiachua)!
50
+
51
+ **Library - Test**
52
+ - [PR #610](https://github.com/twilio/twilio-ruby/pull/610): Adding misc as PR type. Thanks to [@rakatyal](https://github.com/rakatyal)!
53
+
54
+ **Conversations**
55
+ - Allowed to use `identity` as part of Participant's resource **(breaking change)**
56
+
57
+ **Lookups**
58
+ - Remove `enhanced_line_type` from the lookup response **(breaking change)**
59
+
60
+ **Supersim**
61
+ - Add support for `sim_ip_addresses` resource to helper libraries
62
+
63
+ **Verify**
64
+ - Changed summary param `service_sid` to `verify_service_sid` to be consistent with list attempts API **(breaking change)**
65
+ - Make `code` optional on Verification check to support `sna` attempts. **(breaking change)**
66
+
67
+
68
+ [2022-06-29] Version 5.68.0
69
+ ---------------------------
70
+ **Api**
71
+ - Added `amazon-polly` to `usage_record` API.
72
+
73
+ **Insights**
74
+ - Added `annotation` field in call summary
75
+ - Added new endpoint to fetch/create/update Call Annotations
76
+
77
+ **Verify**
78
+ - Remove `api.verify.totp` beta flag and set maturity to `beta` for Verify TOTP properties and parameters. **(breaking change)**
79
+ - Changed summary param `verify_service_sid` to `service_sid` to be consistent with list attempts API **(breaking change)**
80
+
81
+ **Twiml**
82
+ - Add `maxQueueSize` to `Enqueue`
83
+
84
+
85
+ [2022-06-15] Version 5.67.3
86
+ ---------------------------
87
+ **Lookups**
88
+ - Adding support for Lookup V2 API
89
+
90
+ **Studio**
91
+ - Corrected PII labels to be 30 days and added context to be PII
92
+
93
+ **Twiml**
94
+ - Add `statusCallbackMethod` attribute, nested `<Config` and `<Parameter>` elements to `<VirtualAgent>` noun.
95
+ - Add support for new Amazon Polly voices (Q2 2022) for `Say` verb
96
+ - Add support for `<Conversation>` noun
97
+
98
+
99
+ [2022-06-01] Version 5.67.2
100
+ ---------------------------
101
+ **Library - Chore**
102
+ - [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)!
103
+
104
+
105
+ [2022-05-18] Version 5.67.1
106
+ ---------------------------
107
+ **Api**
108
+ - Add property `media_url` to the recording resources
109
+
110
+ **Verify**
111
+ - Include `silent` as a channel type in the verifications API.
112
+
113
+
114
+ [2022-05-04] Version 5.67.0
115
+ ---------------------------
116
+ **Library - Fix**
117
+ - [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)!
118
+ - [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)!
119
+ - [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)!
120
+
121
+ **Library - Feature**
122
+ - [PR #591](https://github.com/twilio/twilio-ruby/pull/591): Add Faraday 2.0 support. Thanks to [@tconst](https://github.com/tconst)!
123
+
124
+ **Conversations**
125
+ - Expose query parameter `type` in list operation on Address Configurations resource
126
+
127
+ **Supersim**
128
+ - Add `data_total_billed` and `billed_units` fields to Super SIM UsageRecords API response.
129
+ - Change ESimProfiles `Eid` parameter to optional to enable Activation Code download method support **(breaking change)**
130
+
131
+ **Verify**
132
+ - Deprecate `push.include_date` parameter in create and update service.
133
+
134
+
135
+ [2022-04-20] Version 5.66.2
136
+ ---------------------------
137
+ **Library - Chore**
138
+ - [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)!
139
+
140
+
141
+ [2022-04-06] Version 5.66.1
142
+ ---------------------------
143
+ **Api**
144
+ - Updated `provider_sid` visibility to private
145
+
146
+ **Verify**
147
+ - Verify List Attempts API summary endpoint added.
148
+ - Update PII documentation for `AccessTokens` `factor_friendly_name` property.
149
+
150
+ **Voice**
151
+ - make annotation parameter from /Calls API private
152
+
153
+
154
+ [2022-03-23] Version 5.66.0
155
+ ---------------------------
156
+ **Api**
157
+ - Change `stream` url parameter to non optional
158
+ - Add `verify-totp` and `verify-whatsapp-conversations-business-initiated` categories to `usage_record` API
159
+
160
+ **Chat**
161
+ - Added v3 Channel update endpoint to support Public to Private channel migration
162
+
163
+ **Flex**
164
+ - Private Beta release of the Interactions API to support the upcoming release of Flex Conversations at the end of Q1 2022.
165
+ - Adding `channel_configs` object to Flex Configuration
166
+
167
+ **Media**
168
+ - Add max_duration param to PlayerStreamer
169
+
170
+ **Supersim**
171
+ - Remove Commands resource, use SmsCommands resource instead **(breaking change)**
172
+
173
+ **Taskrouter**
174
+ - Add limits to `split_by_wait_time` for Cumulative Statistics Endpoint
175
+
176
+ **Video**
177
+ - Change recording `status_callback_method` type from `enum` to `http_method` **(breaking change)**
178
+ - Add `status_callback` and `status_callback_method` to composition
179
+ - Add `status_callback` and `status_callback_method` to recording
180
+
181
+
182
+ [2022-03-09] Version 5.65.1
183
+ ---------------------------
184
+ **Library - Fix**
185
+ - [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)!
186
+
187
+ **Library - Chore**
188
+ - [PR #599](https://github.com/twilio/twilio-ruby/pull/599): push Datadog Release Metric upon deploy success. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
189
+
190
+ **Api**
191
+ - Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings
192
+
193
+ **Chat**
194
+ - Add `X-Twilio-Wehook-Enabled` header to `delete` method in UserChannel resource
195
+
196
+ **Numbers**
197
+ - Expose `failure_reason` in the Supporting Documents resources
198
+
199
+ **Verify**
200
+ - Add optional `metadata` parameter to "verify challenge" endpoint, so the SDK/App can attach relevant information from the device when responding to challenges.
201
+ - remove beta feature flag to list atempt api operations.
202
+ - Add `ttl` and `date_created` properties to `AccessTokens`.
203
+
204
+
205
+ [2022-02-23] Version 5.65.0
206
+ ---------------------------
207
+ **Api**
208
+ - Add `uri` to `stream` resource
209
+ - Add A2P Registration Fee category (`a2p-registration-fee`) to usage records
210
+ - Detected a bug and removed optional boolean include_soft_deleted parameter to retrieve soft deleted recordings. **(breaking change)**
211
+ - Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings.
212
+
213
+ **Numbers**
214
+ - Unrevert valid_until and sort filter params added to List Bundles resource
215
+ - Revert valid_until and sort filter params added to List Bundles resource
216
+ - Update sorting params added to List Bundles resource in the previous release
217
+
218
+ **Preview**
219
+ - Moved `web_channels` from preview to beta under `flex-api` **(breaking change)**
220
+
221
+ **Taskrouter**
222
+ - Add `ETag` as Response Header to List of Task, Reservation & Worker
223
+
224
+ **Verify**
225
+ - Remove outdated documentation commentary to contact sales. Product is already in public beta.
226
+ - Add optional `metadata` to factors.
227
+
228
+ **Twiml**
229
+ - Add new Polly Neural voices
230
+
231
+
232
+ [2022-02-09] Version 5.64.0
233
+ ---------------------------
234
+ **Library - Chore**
235
+ - [PR #594](https://github.com/twilio/twilio-ruby/pull/594): upgrade supported language versions. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
236
+
237
+ **Api**
238
+ - Add `stream` resource
239
+
240
+ **Conversations**
241
+ - Fixed DELETE request to accept "sid_like" params in Address Configuration resources **(breaking change)**
242
+ - Expose Address Configuration resource for `sms` and `whatsapp`
243
+
244
+ **Fax**
245
+ - Removed deprecated Programmable Fax Create and Update methods **(breaking change)**
246
+
247
+ **Insights**
248
+ - Rename `call_state` to `call_status` and remove `whisper` in conference participant summary **(breaking change)**
249
+
250
+ **Numbers**
251
+ - Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource
252
+
253
+ **Supersim**
254
+ - Fix typo in Fleet resource docs
255
+ - Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
256
+ - Add support for setting and reading `ip_commands_url` and `ip_commands_method` on Fleets resource for helper libraries
257
+ - Changed `sim` property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs
258
+
259
+ **Verify**
260
+ - Update list attempts API to include new filters and response fields.
261
+
262
+
263
+ [2022-01-26] Version 5.63.1
264
+ ---------------------------
265
+ **Library - Fix**
266
+ - [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)!
267
+
268
+ **Library - Chore**
269
+ - [PR #589](https://github.com/twilio/twilio-ruby/pull/589): Add sonarcloud analysis. Thanks to [@BrimmingDev](https://github.com/BrimmingDev)!
270
+ - [PR #588](https://github.com/twilio/twilio-ruby/pull/588): support for rubocop linting on ruby-head. Thanks to [@Hunga1](https://github.com/Hunga1)!
271
+
272
+ **Insights**
273
+ - Added new endpoint to fetch Conference Participant Summary
274
+ - Added new endpoint to fetch Conference Summary
275
+
276
+ **Messaging**
277
+ - Add government_entity parameter to brand apis
278
+
279
+ **Verify**
280
+ - Add Access Token fetch endpoint to retrieve a previously created token.
281
+ - Add Access Token payload to the Access Token creation endpoint, including a unique Sid, so it's addressable while it's TTL is valid.
282
+
283
+
284
+ [2022-01-12] Version 5.63.0
285
+ ---------------------------
286
+ **Library - Feature**
287
+ - [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)!
288
+
289
+ **Library - Chore**
290
+ - [PR #584](https://github.com/twilio/twilio-ruby/pull/584): run yard in bundle context. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
291
+ - [PR #583](https://github.com/twilio/twilio-ruby/pull/583): remove githook dependency from make install. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
292
+
293
+ **Api**
294
+ - Make fixed time scheduling parameters public **(breaking change)**
295
+
296
+ **Messaging**
297
+ - Add update brand registration API
298
+
299
+ **Numbers**
300
+ - Add API endpoint for List Bundle Copies resource
301
+
302
+ **Video**
303
+ - Enable external storage for all customers
304
+
305
+
306
+ [2021-12-15] Version 5.62.0
307
+ ---------------------------
308
+ **Library - Feature**
309
+ - [PR #581](https://github.com/twilio/twilio-ruby/pull/581): run tests before deploying. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
310
+
311
+ **Api**
312
+ - Add optional boolean send_as_mms parameter to the create action of Message resource **(breaking change)**
313
+ - Change team ownership for `call` delete
314
+
315
+ **Conversations**
316
+ - Change wording for `Service Webhook Configuration` resource fields
317
+
318
+ **Insights**
319
+ - Added new APIs for updating and getting voice insights flags by accountSid.
320
+
321
+ **Media**
322
+ - Add max_duration param to MediaProcessor
323
+
324
+ **Video**
325
+ - Add `EmptyRoomTimeout` and `UnusedRoomTimeout` properties to a room; add corresponding parameters to room creation
326
+
327
+ **Voice**
328
+ - Add endpoint to delete archived Calls
329
+
330
+
331
+ [2021-12-01] Version 5.61.2
332
+ ---------------------------
333
+ **Library - Chore**
334
+ - [PR #579](https://github.com/twilio/twilio-ruby/pull/579): make ruby-head test optional. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
335
+
336
+ **Conversations**
337
+ - Add `Service Webhook Configuration` resource
338
+
339
+ **Flex**
340
+ - Adding `flex_insights_drilldown` and `flex_url` objects to Flex Configuration
341
+
342
+ **Messaging**
343
+ - Update us_app_to_person endpoints to remove beta feature flag based access
344
+
345
+ **Supersim**
346
+ - Add IP Commands resource
347
+
348
+ **Verify**
349
+ - Add optional `factor_friendly_name` parameter to the create access token endpoint.
350
+
351
+ **Video**
352
+ - Add maxParticipantDuration param to Rooms
353
+
354
+ **Twiml**
355
+ - Unrevert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
356
+ - Revert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
357
+
358
+
359
+ [2021-11-17] Version 5.61.1
360
+ ---------------------------
361
+ **Library - Chore**
362
+ - [PR #578](https://github.com/twilio/twilio-ruby/pull/578): remove yardoc files. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
363
+
364
+ **Library - Fix**
365
+ - [PR #576](https://github.com/twilio/twilio-ruby/pull/576): git log retrieval issues. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
366
+
367
+ **Frontline**
368
+ - Added `is_available` to User's resource
369
+
370
+ **Messaging**
371
+ - Added GET vetting API
372
+
373
+ **Verify**
374
+ - Add `WHATSAPP` to the attempts API.
375
+ - Allow to update `config.notification_platform` from `none` to `apn` or `fcm` and viceversa for Verify Push
376
+ - Add `none` as a valid `config.notification_platform` value for Verify Push
377
+
378
+ **Twiml**
379
+ - Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
380
+
381
+
382
+ [2021-11-03] Version 5.61.0
383
+ ---------------------------
384
+ **Library - Chore**
385
+ - [PR #575](https://github.com/twilio/twilio-ruby/pull/575): migrate from TravisCI to GitHub Actions. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
386
+
387
+ **Api**
388
+ - Updated `media_url` property to be treated as PII
389
+
390
+ **Messaging**
391
+ - Added a new enum for brand registration status named DELETED **(breaking change)**
392
+ - Add a new K12_EDUCATION use case in us_app_to_person_usecase api transaction
393
+ - Added a new enum for brand registration status named IN_REVIEW
394
+
395
+ **Serverless**
396
+ - Add node14 as a valid Build runtime
397
+
398
+ **Verify**
399
+ - Fix typos in Verify Push Factor documentation for the `config.notification_token` parameter.
400
+ - Added `TemplateCustomSubstitutions` on verification creation
401
+ - Make `TemplateSid` parameter public for Verification resource and `DefaultTemplateSid` parameter public for Service resource. **(breaking change)**
402
+
403
+
404
+ [2021-10-18] Version 5.60.0
405
+ ---------------------------
406
+ **Library - Feature**
407
+ - [PR #574](https://github.com/twilio/twilio-ruby/pull/574): Add PlaybackGrant. Thanks to [@sarahcstringer](https://github.com/sarahcstringer)!
408
+
409
+ **Api**
410
+ - Corrected enum values for `emergency_address_status` values in `/IncomingPhoneNumbers` response. **(breaking change)**
411
+ - Clarify `emergency_address_status` values in `/IncomingPhoneNumbers` response.
412
+
413
+ **Messaging**
414
+ - Add PUT and List brand vettings api
415
+ - Removes beta feature flag based visibility for us_app_to_person_registered and usecase field.Updates test cases to add POLITICAL usecase. **(breaking change)**
416
+ - Add brand_feedback as optional field to BrandRegistrations
417
+
418
+ **Video**
419
+ - Add `AudioOnly` to create room
420
+
421
+
422
+ [2021-10-06] Version 5.59.0
423
+ ---------------------------
424
+ **Library - Fix**
425
+ - [PR #571](https://github.com/twilio/twilio-ruby/pull/571): fix travis build for ruby 3.0. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
426
+
427
+ **Api**
428
+ - Add `emergency_address_status` attribute to `/IncomingPhoneNumbers` response.
429
+ - Add `siprec` resource
430
+
431
+ **Conversations**
432
+ - Added attachment parameters in configuration for `NewMessage` type of push notifications
433
+
434
+ **Flex**
435
+ - Adding `flex_insights_hr` object to Flex Configuration
436
+
437
+ **Numbers**
438
+ - Add API endpoint for Bundle ReplaceItems resource
439
+ - Add API endpoint for Bundle Copies resource
440
+
441
+ **Serverless**
442
+ - Add domain_base field to Service response
443
+
444
+ **Taskrouter**
445
+ - Add `If-Match` Header based on ETag for Worker Delete **(breaking change)**
446
+ - Add `If-Match` Header based on Etag for Reservation Update
447
+ - Add `If-Match` Header based on ETag for Worker Update
448
+ - Add `If-Match` Header based on ETag for Worker Delete
449
+ - Add `ETag` as Response Header to Worker
450
+
451
+ **Trunking**
452
+ - Added `transfer_caller_id` property on Trunks.
453
+
454
+ **Verify**
455
+ - Document new pilot `whatsapp` channel.
456
+
457
+
458
+ [2021-09-22] Version 5.58.3
459
+ ---------------------------
460
+ **Events**
461
+ - Add segment sink
462
+
463
+ **Messaging**
464
+ - Add post_approval_required attribute in GET us_app_to_person_usecase api response
465
+ - Add Identity Status, Russell 3000, Tax Exempt Status and Should Skip SecVet fields for Brand Registrations
466
+ - Add Should Skip Secondary Vetting optional flag parameter to create Brand API
467
+
468
+
469
+ [2021-09-08] Version 5.58.2
470
+ ---------------------------
471
+ **Library - Fix**
472
+ - [PR #568](https://github.com/twilio/twilio-ruby/pull/568): deprecation warning on Faraday. Thanks to [@ngouy](https://github.com/ngouy)!
473
+
474
+ **Api**
475
+ - Revert adding `siprec` resource
476
+ - Add `siprec` resource
477
+
478
+ **Messaging**
479
+ - Add 'mock' as an optional field to brand_registration api
480
+ - Add 'mock' as an optional field to us_app_to_person api
481
+ - Adds more Use Cases in us_app_to_person_usecase api transaction and updates us_app_to_person_usecase docs
482
+
483
+ **Verify**
484
+ - Verify List Templates API endpoint added.
485
+
486
+
487
+ [2021-08-25] Version 5.58.1
488
+ ---------------------------
489
+ **Api**
490
+ - Add Programmabled Voice SIP Refer call transfers (`calls-transfers`) to usage records
491
+ - Add Flex Voice Usage category (`flex-usage`) to usage records
492
+
493
+ **Conversations**
494
+ - Add `Order` query parameter to Message resource read operation
495
+
496
+ **Insights**
497
+ - Added `partial` to enum processing_state_request
498
+ - Added abnormal session filter in Call Summaries
499
+
500
+ **Messaging**
501
+ - Add brand_registration_sid as an optional query param for us_app_to_person_usecase api
502
+
503
+ **Pricing**
504
+ - add trunking_numbers resource (v2)
505
+ - add trunking_country resource (v2)
506
+
507
+ **Verify**
508
+ - Changed to private beta the `TemplateSid` optional parameter on Verification creation.
509
+ - Added the optional parameter `Order` to the list Challenges endpoint to define the list order.
510
+
511
+
512
+ [2021-08-11] Version 5.58.0
513
+ ---------------------------
514
+ **Library - Chore**
515
+ - [PR #566](https://github.com/twilio/twilio-ruby/pull/566): integrate sonarcloud. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
516
+
517
+ **Library - Docs**
518
+ - [PR #565](https://github.com/twilio/twilio-ruby/pull/565): update mms example to use media_url. Thanks to [@cnorm35](https://github.com/cnorm35)!
519
+
520
+ **Api**
521
+ - Corrected the `price`, `call_sid_to_coach`, and `uri` data types for Conference, Participant, and Recording **(breaking change)**
522
+ - Made documentation for property `time_limit` in the call api public. **(breaking change)**
523
+ - Added `domain_sid` in sip_credential_list_mapping and sip_ip_access_control_list_mapping APIs **(breaking change)**
524
+
525
+ **Insights**
526
+ - Added new endpoint to fetch Call Summaries
527
+
528
+ **Messaging**
529
+ - Add brand_type field to a2p brand_registration api
530
+ - Revert brand registration api update to add brand_type field
531
+ - Add brand_type field to a2p brand_registration api
532
+
533
+ **Taskrouter**
534
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to all TaskRouter endpoints
535
+
536
+ **Verify**
537
+ - Add `TemplateSid` optional parameter on Verification creation.
538
+ - Include `whatsapp` as a channel type in the verifications API.
539
+
540
+
541
+ [2021-07-28] Version 5.57.1
542
+ ---------------------------
543
+ **Conversations**
544
+ - Expose ParticipantConversations resource
545
+
546
+ **Taskrouter**
547
+ - Adding `links` to the activity resource
548
+
549
+ **Verify**
550
+ - Added a `Version` to Verify Factors `Webhooks` to add new fields without breaking old Webhooks.
551
+
552
+
553
+ [2021-07-14] Version 5.57.0
554
+ ---------------------------
555
+ **Conversations**
556
+ - Changed `last_read_message_index` and `unread_messages_count` type in User Conversation's resource **(breaking change)**
557
+ - Expose UserConversations resource
558
+
559
+ **Messaging**
560
+ - Add brand_score field to brand registration responses
561
+
562
+
563
+ [2021-06-30] Version 5.56.0
564
+ ---------------------------
565
+ **Library - Feature**
566
+ - [PR #559](https://github.com/twilio/twilio-ruby/pull/559): Add `Twilio::HTTP::Client#configure_connection`. Thanks to [@darwinShopify](https://github.com/darwinShopify)!
567
+ - [PR #558](https://github.com/twilio/twilio-ruby/pull/558): Autoload Twilio::REST and Twilio::HTTP. Thanks to [@gmcgibbon](https://github.com/gmcgibbon)!
568
+
569
+ **Conversations**
570
+ - Read-only Conversation Email Binding property `binding`
571
+
572
+ **Supersim**
573
+ - Add Billing Period resource for the Super Sim Pilot
574
+ - Add List endpoint to Billing Period resource for Super Sim Pilot
575
+ - Add Fetch endpoint to Billing Period resource for Super Sim Pilot
576
+
577
+ **Taskrouter**
578
+ - Update `transcribe` & `transcription_configuration` form params in Reservation update endpoint to have private visibility **(breaking change)**
579
+ - Add `transcribe` & `transcription_configuration` form params to Reservation update endpoint
580
+
581
+ **Twiml**
582
+ - Add `modify` event to `statusCallbackEvent` for `<Conference>`.
583
+
584
+
585
+ [2021-06-16] Version 5.55.0
586
+ ---------------------------
587
+ **Api**
588
+ - Update `status` enum for Messages to include 'canceled'
589
+ - Update `update_status` enum for Messages to include 'canceled'
590
+
591
+ **Trusthub**
592
+ - Corrected the sid for policy sid in customer_profile_evaluation.json and trust_product_evaluation.json **(breaking change)**
593
+
594
+
595
+ [2021-06-02] Version 5.54.1
596
+ ---------------------------
597
+ **Events**
598
+ - join Sinks and Subscriptions service
599
+
600
+ **Verify**
601
+ - Improved the documentation of `challenge` adding the maximum and minimum expected lengths of some fields.
602
+ - Improve documentation regarding `notification` by updating the documentation of the field `ttl`.
603
+
604
+
605
+ [2021-05-19] Version 5.54.0
606
+ ---------------------------
607
+ **Events**
608
+ - add query param to return types filtered by Schema Id
609
+ - Add query param to return sinks filtered by status
610
+ - Add query param to return sinks used/not used by a subscription
611
+
612
+ **Messaging**
613
+ - Add fetch and delete instance endpoints to us_app_to_person api **(breaking change)**
614
+ - Remove delete list endpoint from us_app_to_person api **(breaking change)**
615
+ - Update read list endpoint to return a list of us_app_to_person compliance objects **(breaking change)**
616
+ - Add `sid` field to Preregistered US App To Person response
617
+
618
+ **Supersim**
619
+ - Mark `unique_name` in Sim, Fleet, NAP resources as not PII
620
+
621
+ **Video**
622
+ - [Composer] GA maturity level
623
+
624
+
625
+ [2021-05-05] Version 5.53.0
626
+ ---------------------------
627
+ **Library - Fix**
628
+ - [PR #554](https://github.com/twilio/twilio-ruby/pull/554): JSON parser error on timeout response. Thanks to [@Maychell](https://github.com/Maychell)!
629
+
630
+ **Api**
631
+ - Corrected the data types for feedback summary fields **(breaking change)**
632
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
633
+
634
+ **Bulkexports**
635
+ - promoting API maturity to GA
636
+
637
+ **Events**
638
+ - Add endpoint to update description in sink
639
+ - Remove beta-feature account flag
640
+
641
+ **Messaging**
642
+ - Update `status` field in us_app_to_person api to `campaign_status` **(breaking change)**
643
+
644
+ **Verify**
645
+ - Improve documentation regarding `push` factor and include extra information about `totp` factor.
646
+
647
+
648
+ [2021-04-21] Version 5.52.0
649
+ ---------------------------
650
+ **Api**
651
+ - Revert Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
652
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
653
+
654
+ **Bulkexports**
655
+ - moving enum to doc root for auto generating documentation
656
+ - adding status enum and default output properties
657
+
658
+ **Events**
659
+ - Change schema_versions prop and key to versions **(breaking change)**
660
+
661
+ **Messaging**
662
+ - Add `use_inbound_webhook_on_number` field in Service API for fetch, create, update, read
663
+
664
+ **Taskrouter**
665
+ - Add `If-Match` Header based on ETag for Task Delete
666
+
667
+ **Verify**
668
+ - Add `AuthPayload` parameter to support verifying a `Challenge` upon creation. This is only supported for `totp` factors.
669
+ - Add support to resend the notifications of a `Challenge`. This is only supported for `push` factors.
670
+
671
+ **Twiml**
672
+ - Add Polly Neural voices.
673
+
674
+
675
+ [2021-04-07] Version 5.51.0
676
+ ---------------------------
677
+ **Library - Chore**
678
+ - [PR #551](https://github.com/twilio/twilio-ruby/pull/551): omit spec/ from .gem file. Thanks to [@mroach](https://github.com/mroach)!
679
+
680
+ **Api**
681
+ - Added `announcement` event to conference status callback events
682
+ - Removed optional property `time_limit` in the call create request. **(breaking change)**
683
+
684
+ **Messaging**
685
+ - Add rate_limits field to Messaging Services US App To Person API
686
+ - Add usecase field in Service API for fetch, create, update, read
687
+ - Add us app to person api and us app to person usecase api as dependents in service
688
+ - Add us_app_to_person_registered field in service api for fetch, read, create, update
689
+ - Add us app to person api
690
+ - Add us app to person usecase api
691
+ - Add A2P external campaign api
692
+ - Add Usecases API
693
+
694
+ **Supersim**
695
+ - Add Create endpoint to Sims resource
696
+
697
+ **Verify**
698
+ - The `Binding` field is now returned when creating a `Factor`. This value won't be returned for other endpoints.
699
+
700
+ **Video**
701
+ - [Rooms] max_concurrent_published_tracks has got GA maturity
702
+
703
+ **Twiml**
704
+ - Add `announcement` event to `statusCallbackEvent` for `<Conference>`.
705
+
706
+
707
+ [2021-03-24] Version 5.50.0
708
+ ---------------------------
709
+ **Api**
710
+ - Added optional parameter `CallToken` for create calls api
711
+ - Add optional property `time_limit` in the call create request.
712
+
713
+ **Bulkexports**
714
+ - adding two new fields with job api queue_position and estimated_completion_time
715
+
716
+ **Events**
717
+ - Add new endpoints to manage subscribed_events in subscriptions
718
+
719
+ **Numbers**
720
+ - Remove feature flags for RegulatoryCompliance endpoints
721
+
722
+ **Supersim**
723
+ - Add SmsCommands resource
724
+ - Add fields `SmsCommandsUrl`, `SmsCommandsMethod` and `SmsCommandsEnabled` to a Fleet resource
725
+
726
+ **Taskrouter**
727
+ - Add `If-Match` Header based on ETag for Task Update
728
+ - Add `ETag` as Response Headers to Tasks and Reservations
729
+
730
+ **Video**
731
+ - Recording rule beta flag **(breaking change)**
732
+ - [Rooms] Add RecordingRules param to Rooms
733
+
734
+
735
+ [2021-03-15] Version 5.49.0
736
+ ---------------------------
737
+ **Library - Fix**
738
+ - [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)!
739
+
740
+ **Events**
741
+ - Set maturity to beta
742
+
743
+ **Messaging**
744
+ - Adjust A2P brand registration status enum **(breaking change)**
745
+
746
+ **Studio**
747
+ - Remove internal safeguards for Studio V2 API usage now that it's GA
748
+
749
+ **Verify**
750
+ - Add support for creating and verifying totp factors. Support for totp factors is behind the `api.verify.totp` beta feature.
751
+
752
+ **Twiml**
753
+ - Add support for `<VirtualAgent>` noun
754
+
755
+
756
+ [2021-02-24] Version 5.48.0
757
+ ---------------------------
758
+ **Events**
759
+ - Update description of types in the create sink resource
760
+
761
+ **Messaging**
762
+ - Add WA template header and footer
763
+ - Remove A2P campaign and use cases API **(breaking change)**
764
+ - Add number_registration_status field to read and fetch campaign responses
765
+
766
+ **Trusthub**
767
+ - Make all resources public
768
+
769
+ **Verify**
770
+ - Verify List Attempts API endpoints added.
771
+
772
+
773
+ [2021-02-10] Version 5.47.0
774
+ ---------------------------
775
+ **Library - Fix**
776
+ - [PR #548](https://github.com/twilio/twilio-ruby/pull/548): shortcut syntax for new non-GA versions. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
777
+
778
+ **Api**
779
+ - Revert change that conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
780
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
781
+
782
+ **Events**
783
+ - Documentation should state that no fields are PII
784
+
785
+ **Flex**
786
+ - Adding `notifications` and `markdown` to Flex Configuration
787
+
788
+ **Messaging**
789
+ - Add A2P use cases API
790
+ - Add Brand Registrations API
791
+ - Add Campaigns API
792
+
793
+ **Serverless**
794
+ - Add runtime field to Build response and as an optional parameter to the Build create endpoint.
795
+ - Add @twilio/runtime-handler dependency to Build response example.
796
+
797
+ **Sync**
798
+ - Remove If-Match header for Document **(breaking change)**
799
+
800
+ **Twiml**
801
+ - Add `refer_url` and `refer_method` to `Dial`.
802
+
803
+
804
+ [2021-01-27] Version 5.46.1
805
+ ---------------------------
806
+ **Library - Docs**
807
+ - [PR #547](https://github.com/twilio/twilio-ruby/pull/547): Document how to use an API Key. Thanks to [@davetron5000](https://github.com/davetron5000)!
808
+
809
+ **Studio**
810
+ - Studio V2 API is now GA
811
+
812
+ **Supersim**
813
+ - Allow updating `CommandsUrl` and `CommandsMethod` on a Fleet
814
+
815
+ **Twiml**
816
+ - Add `status_callback` and `status_callback_method` to `Stream`.
817
+
818
+
819
+ [2021-01-13] Version 5.46.0
820
+ ---------------------------
821
+ **Library - Docs**
822
+ - [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)!
823
+
824
+ **Library - Fix**
825
+ - [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)!
826
+
827
+ **Api**
828
+ - Add 'Electric Imp v1 Usage' to usage categories
829
+
830
+ **Conversations**
831
+ - Changed `last_read_message_index` type in Participant's resource **(breaking change)**
832
+
833
+ **Insights**
834
+ - Added `created_time` to call summary.
835
+
836
+ **Sync**
837
+ - Remove HideExpired query parameter for filtering Sync Documents with expired **(breaking change)**
838
+
839
+ **Video**
840
+ - [Rooms] Expose maxConcurrentPublishedTracks property in Room resource
841
+
842
+
843
+ [2020-12-16] Version 5.45.1
844
+ ---------------------------
845
+ **Api**
846
+ - Updated `call_event` default_output_properties to request and response.
847
+
848
+ **Conversations**
849
+ - Added `last_read_message_index` and `last_read_timestamp` to Participant's resource update operation
850
+ - Added `is_notifiable` and `is_online` to User's resource
851
+ - Added `reachability_enabled` parameters to update method for Conversation Service Configuration resource
852
+
853
+ **Messaging**
854
+ - Added WA template quick reply, URL, and phone number buttons
855
+
856
+ **Twiml**
857
+ - Add `sequential` to `Dial`.
858
+
859
+
860
+ [2020-12-08] Version 5.45.0
861
+ ---------------------------
862
+ **Api**
863
+ - Added optional `RecordingTrack` parameter for create calls, create participants, and create call recordings
864
+ - Removed deprecated Programmable Chat usage record categories **(breaking change)**
865
+
866
+ **Twiml**
867
+ - Add `recordingTrack` to `Dial`.
868
+
869
+
870
+ [2020-12-02] Version 5.44.0
871
+ ---------------------------
872
+ **Api**
873
+ - Remove `RecordingTrack` parameter for create calls, create participants, and create call recordings **(breaking change)**
874
+ - Added `RecordingTrack` parameter for create calls and create call recordings
875
+ - Add optional property `recording_track` in the participant create request
876
+
877
+ **Lookups**
878
+ - Changed `caller_name` and `carrier` properties type to object **(breaking change)**
879
+
880
+ **Trunking**
881
+ - Added dual channel recording options for Trunks.
882
+
883
+ **Twiml**
884
+ - Add `jitterBufferSize` and `participantLabel` to `Conference`.
885
+
886
+
887
+ [2020-11-18] Version 5.43.0
888
+ ---------------------------
889
+ **Library - Feature**
890
+ - [PR #538](https://github.com/twilio/twilio-ruby/pull/538): adding http logging for ruby. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
891
+
892
+ **Api**
893
+ - Add new call events resource - GET /2010-04-01/Accounts/{account_sid}/Calls/{call_sid}/Events.json
894
+
895
+ **Conversations**
896
+ - Fixed default response property issue for Service Notifications Configuration
897
+
898
+ **Insights**
899
+ - Removing call_sid from participant summary. **(breaking change)**
900
+
901
+ **Serverless**
902
+ - Allow Service unique name to be used in path (in place of SID) in Service update request
903
+
904
+ **Sync**
905
+ - Added HideExpired query parameter for filtering Sync Documents with expired
906
+
907
+ **Verify**
908
+ - Challenge `Details` and `HiddenDetails` properties are now marked as `PII`
909
+ - 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.
910
+ - Entity `identity` attribute updated to allow values between 8 and 64 characters.
911
+ - Verify Service frinedly_name attribute updated from 64 max lenght to 30 characters.
912
+
913
+
914
+ [2020-11-05] Version 5.42.0
915
+ ---------------------------
916
+ **Library - Feature**
917
+ - [PR #537](https://github.com/twilio/twilio-ruby/pull/537): Add region to AccessToken. Thanks to [@ryan-rowland](https://github.com/ryan-rowland)!
918
+
919
+ **Api**
920
+ - Added `verify-push` to `usage_record` API
921
+
922
+ **Bulkexports**
923
+ - 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)**
924
+ - Added property descriptions for Custom Export create method
925
+ - Clarified WebhookUrl and WebhookMethod must be provided together for Custom Export
926
+
927
+ **Insights**
928
+ - Added video room and participant summary apis.
929
+
930
+ **Ip_messaging**
931
+ - Create separate definition for ip-messaging
932
+ - Restore v2 endpoints for ip-messaging
933
+
934
+ **Verify**
935
+ - Verify Push madurity were updated from `preview` to `beta`
936
+ - `twilio_sandbox_mode` header was removed from Verify Push resources **(breaking change)**
937
+
938
+ **Video**
939
+ - [Rooms] Add Recording Rules API
940
+
941
+
942
+ [2020-10-14] Version 5.41.0
943
+ ---------------------------
944
+ **Ai**
945
+ - Add `Annotation Project` and `Annotation Task` endpoints
946
+ - Add `Primitives` endpoints
947
+ - Add `meta.total` to the search endpoint
948
+
949
+ **Conversations**
950
+ - Mutable Conversation Unique Names
951
+
952
+ **Insights**
953
+ - Added `trust` to summary.
954
+
955
+ **Preview**
956
+ - Simplified `Channels` resource. The path is now `/BrandedChannels/branded_channel_sid/Channels` **(breaking change)**
957
+
958
+ **Verify**
959
+ - 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)**
960
+ - 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)**
961
+ - Removed `notify_service_sid` from `push` service configuration object. Add `Push.IncludeDate`, `Push.ApnCredentialSid` and `Push.FcmCredentialSid` service configuration parameters. **(breaking change)**
962
+
963
+
964
+ [2020-09-28] Version 5.40.4
965
+ ---------------------------
966
+ **Library - Docs**
967
+ - [PR #535](https://github.com/twilio/twilio-ruby/pull/535): convert markdown links to RDoc formatted links. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
968
+
969
+ **Api**
970
+ - Add optional property `call_reason` in the participant create request
971
+ - Make sip-domain-service endpoints available in stage-au1 and prod-au1
972
+
973
+ **Messaging**
974
+ - Removed beta feature gate from WhatsApp Templates API
975
+
976
+ **Serverless**
977
+ - Add Build Status endpoint
978
+
979
+ **Video**
980
+ - [Rooms] Add new room type "go" for WebRTC Go
981
+
982
+
983
+ [2020-09-21] Version 5.40.3
984
+ ---------------------------
985
+ **Library - Fix**
986
+ - [PR #534](https://github.com/twilio/twilio-ruby/pull/534): allow API redirect responses. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
987
+
988
+ **Accounts**
989
+ - Add Auth Token rotation API
990
+
991
+ **Conversations**
992
+ - Change resource path for Webhook Configuration
993
+
994
+ **Events**
995
+ - Schemas API get all Schemas names and versions
996
+
997
+
998
+ [2020-09-16] Version 5.40.2
999
+ ---------------------------
1000
+ **Library - Fix**
1001
+ - [PR #530](https://github.com/twilio/twilio-ruby/pull/530): drop the page limit calculation. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1002
+
1003
+ **Conversations**
1004
+ - Expose Configuration and Service Configuration resources
1005
+ - Add Unique Name support for Conversations
1006
+ - Add Services Push Notification resource
1007
+ - Add Service scoped Conversation resources
1008
+ - Support Identity in Users resource endpoint
1009
+
1010
+ **Messaging**
1011
+ - GA Deactivation List API
1012
+ - Add domain cert API's(fetch, update, create) for link tracker
1013
+
1014
+ **Numbers**
1015
+ - Add API endpoint for Supporting Document deletion
1016
+
1017
+ **Proxy**
1018
+ - Updated usage of FailOnParticipantConflict param to apply only to accounts with ProxyAllowParticipantConflict account flag
1019
+
1020
+ **Supersim**
1021
+ - Add `AccountSid` parameter to Sim resource update request
1022
+ - Add `ready` status as an available status for a Sim resource
1023
+
1024
+
1025
+ [2020-09-02] Version 5.40.1
1026
+ ---------------------------
1027
+ **Library - Chore**
1028
+ - [PR #529](https://github.com/twilio/twilio-ruby/pull/529): sort files for deterministic require order. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1029
+
1030
+ **Ai**
1031
+ - Initial release
1032
+
1033
+ **Bulkexports**
1034
+ - removing public beta feature flag from BulkExports Jobs API
1035
+
1036
+ **Messaging**
1037
+ - Add Deactivation List API
1038
+ - Added page token parameter for fetch in WhatsApp Templates API
1039
+
1040
+ **Numbers**
1041
+ - Add API endpoint for End User deletion
1042
+
1043
+ **Routes**
1044
+ - Add Resource Route Configurations API
1045
+ - Add Route Configurations API
1046
+ - Initial Release
1047
+
1048
+ **Trunking**
1049
+ - Added `transfer_mode` property on Trunks.
1050
+
1051
+
1052
+ [2020-08-19] Version 5.40.0
1053
+ ---------------------------
1054
+ **Library - Chore**
1055
+ - [PR #526](https://github.com/twilio/twilio-ruby/pull/526): update GitHub branch references to use HEAD. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
1056
+
1057
+ **Conversations**
1058
+ - Allow Identity addition to Participants
1059
+
1060
+ **Events**
1061
+ - Sinks API Get all Sinks
1062
+
1063
+ **Proxy**
1064
+ - Clarified usage of FailOnParticipantConflict param as experimental
1065
+ - Add FailOnParticipantConflict param to Proxy Session create and Proxy Participant create
1066
+
1067
+ **Supersim**
1068
+ - Add fleet, network, and isoCountryCode to the UsageRecords resource
1069
+ - Change sort order of UsageRecords from ascending to descending with respect to start time field, records are now returned newest to oldest
1070
+
1071
+ **Wireless**
1072
+ - Removed `Start` and `End` parameters from the Data Sessions list endpoint. **(breaking change)**
1073
+
1074
+
1075
+ [2020-08-05] Version 5.39.3
1076
+ ---------------------------
1077
+ **Messaging**
1078
+ - Add rejection reason support to WhatsApp API
1079
+ - Removed status parameter for create and update in WhatsApp Templates API
1080
+
1081
+ **Proxy**
1082
+ - Add FailOnParticipantConflict param to Proxy Session update
1083
+
1084
+ **Verify**
1085
+ - Add `CustomFriendlyName` optional parameter on Verification creation.
1086
+ - Changes in `Challenge` resource to update documentation of both `details` and `hidden_details` properties.
1087
+
1088
+
1089
+ [2020-07-22] Version 5.39.2
1090
+ ---------------------------
1091
+ **Api**
1092
+ - Add optional Click Tracking and Scheduling parameters to Create action of Message resource
1093
+
1094
+ **Supersim**
1095
+ - Add callback_url and callback_method parameters to Sim resource update request
1096
+
1097
+
1098
+ [2020-07-10] Version 5.39.1
1099
+ ---------------------------
1100
+ **Library - Fix**
1101
+ - [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)!
1102
+
1103
+
1104
+ [2020-07-08] Version 5.39.0
1105
+ ---------------------------
1106
+ **Library - Feature**
1107
+ - [PR #516](https://github.com/twilio/twilio-ruby/pull/516): add custom header support. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1108
+
1109
+ **Library - Chore**
1110
+ - [PR #515](https://github.com/twilio/twilio-ruby/pull/515): regenerate library after generator refactor. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1111
+
1112
+ **Conversations**
1113
+ - Allow Address updates for Participants
1114
+ - Message delivery receipts
1115
+
1116
+ **Events**
1117
+ - Add account_sid to subscription and subscribed_events resources
1118
+
1119
+ **Flex**
1120
+ - Changed `wfm_integrations` Flex Configuration key to private **(breaking change)**
1121
+
1122
+ **Messaging**
1123
+ - Add error states to WhatsApp Sender status with failed reason **(breaking change)**
1124
+ - Delete WhatsApp Template API
1125
+ - Update WhatsApp Template API
1126
+ - Add WhatsApp Template Get Api (fetch and read)
1127
+
1128
+ **Numbers**
1129
+ - Add `valid_until` in the Bundles resource
1130
+ - Add API for Bundle deletion
1131
+
1132
+ **Verify**
1133
+ - Removed support for `sms`, `totp` and `app-push` factor types in Verify push **(breaking change)**
1134
+
1135
+
1136
+ [2020-06-24] Version 5.38.0
1137
+ ---------------------------
1138
+ **Api**
1139
+ - Added optional `JitterBufferSize` parameter for creating conference participant
1140
+ - Added optional `label` property for conference participants
1141
+ - Added optional parameter `caller_id` for creating conference participant endpoint.
1142
+
1143
+ **Autopilot**
1144
+ - Remove Export resource from Autopilot Assistant
1145
+
1146
+ **Conversations**
1147
+ - Expose Conversation timers
1148
+
1149
+ **Monitor**
1150
+ - Update start/end date filter params to support date-or-time format **(breaking change)**
1151
+
1152
+ **Numbers**
1153
+ - Add `provisionally-approved` as a Supporting Document status
1154
+
1155
+ **Preview**
1156
+ - Removed `Authy` resources. **(breaking change)**
1157
+
1158
+ **Supersim**
1159
+ - Add ready state to the allowed transitions in the sim update call behind the feature flag supersim.ready-state.v1
1160
+
1161
+ **Verify**
1162
+ - Webhook resources added to Verify services and put behind the `api.verify.push` beta feature
1163
+
1164
+ **Twiml**
1165
+ - Add more supported locales for the `Gather` verb.
1166
+
1167
+
1168
+ [2020-06-10] Version 5.37.0
1169
+ ---------------------------
1170
+ **Library - Docs**
1171
+ - [PR #514](https://github.com/twilio/twilio-ruby/pull/514): link to handling exceptions. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
1172
+ - [PR #513](https://github.com/twilio/twilio-ruby/pull/513): link to custom HTTP client instructions. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
1173
+
1174
+ **Api**
1175
+ - Added `pstnconnectivity` to `usage_record` API
1176
+
1177
+ **Autopilot**
1178
+ - Add dialogue_sid param to Query list resource
1179
+
1180
+ **Notify**
1181
+ - delivery_callback_url and delivery_callback_enabled added
1182
+
1183
+ **Numbers**
1184
+ - Add `provisionally-approved` as a Bundle status
1185
+
1186
+ **Preview**
1187
+ - `BrandsInformation` endpoint now returns a single `BrandsInformation`
1188
+ - Deleted phone number required field in the brand phone number endpoint from `kyc-api`
1189
+ - Removed insights `preview API` from API Definitions **(breaking change)**
1190
+ - Added `BrandsInformation` endpoint to query brands information stored in KYC
1191
+
1192
+ **Supersim**
1193
+ - Require a Network Access Profile when creating a Fleet **(breaking change)**
1194
+
1195
+
1196
+ [2020-05-27] Version 5.36.0
1197
+ ---------------------------
1198
+ **Api**
1199
+ - Added `reason_conference_ended` and `call_sid_ending_conference` to Conference read/fetch/update
1200
+ - Fixed some examples to use the correct "TK" SID prefix for Trunk resources.
1201
+
1202
+ **Authy**
1203
+ - Renamed `twilio_authy_sandbox_mode` headers to `twilio_sandbox_mode` **(breaking change)**
1204
+ - Renamed `Twilio-Authy-*` headers to `Twilio-Veriry-*` **(breaking change)**
1205
+
1206
+ **Flex**
1207
+ - Adding `flex_service_instance_sid` to Flex Configuration
1208
+
1209
+ **Preview**
1210
+ - Removed insights preview API from API Definitions **(breaking change)**
1211
+ - Added `Channels` endpoint to brand a phone number for BrandedCalls
1212
+
1213
+ **Serverless**
1214
+ - Add Build Sid to Log results
1215
+
1216
+ **Supersim**
1217
+ - Add Network Access Profile resource Networks subresource
1218
+ - Allow specifying a Data Limit on Fleets
1219
+
1220
+ **Trunking**
1221
+ - Fixed some examples to use the correct "TK" SID prefix for Trunk resources.
1222
+
1223
+
1224
+ [2020-05-20] Version 5.35.0
1225
+ ---------------------------
1226
+ **Library - Feature**
1227
+ - [PR #512](https://github.com/twilio/twilio-ruby/pull/512): add regional and edge support. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
1228
+
1229
+
1230
+ [2020-05-13] Version 5.34.1
1231
+ ---------------------------
1232
+ **Api**
1233
+ - Add optional `emergency_caller_sid` parameter to SIP Domain
1234
+ - Updated `call_reason` optional property to be treated as PII
1235
+ - Added optional BYOC Trunk Sid property to Sip Domain API resource
1236
+
1237
+ **Autopilot**
1238
+ - Add Restore resource to Autopilot Assistant
1239
+
1240
+ **Contacts**
1241
+ - Added contacts Create API definition
1242
+
1243
+ **Events**
1244
+ - Subscriptions API initial release
1245
+
1246
+ **Numbers**
1247
+ - Add Evaluations API
1248
+
1249
+ **Supersim**
1250
+ - Allow filtering the Fleets resource by Network Access Profile
1251
+ - Allow assigning a Network Access Profile when creating and updating a Fleet
1252
+ - Add Network Access Profiles resource
1253
+
1254
+ **Verify**
1255
+ - Add `CustomCode` optional parameter on Verification creation.
1256
+ - Add delete action on Service resource.
1257
+
1258
+ **Voice**
1259
+ - Added endpoints for BYOC trunks, SIP connection policies and source IP mappings
1260
+
1261
+
1262
+ [2020-04-29] Version 5.34.0
1263
+ ---------------------------
1264
+ **Library - Feature**
1265
+ - [PR #511](https://github.com/twilio/twilio-ruby/pull/511): add details to error object. Thanks to [@ashish-s](https://github.com/ashish-s)!
1266
+
1267
+ **Preview**
1268
+ - Added `Dispatch` version to `preview`
1269
+
1270
+ **Studio**
1271
+ - Reroute Create Execution for V2 to the V2 downstream
1272
+
1273
+ **Supersim**
1274
+ - Add Networks resource
1275
+
1276
+
1277
+ [2020-04-15] Version 5.33.1
1278
+ ---------------------------
1279
+ **Library - Fix**
1280
+ - [PR #506](https://github.com/twilio/twilio-ruby/pull/506): loosen the faraday version requirement. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1281
+
1282
+ **Library - Chore**
1283
+ - [PR #508](https://github.com/twilio/twilio-ruby/pull/508): Refer to https:// homepage in gemspec. Thanks to [@olleolleolle](https://github.com/olleolleolle)!
1284
+ - [PR #507](https://github.com/twilio/twilio-ruby/pull/507): Travis: Drop unused "sudo: false" directive. Thanks to [@olleolleolle](https://github.com/olleolleolle)!
1285
+ - [PR #498](https://github.com/twilio/twilio-ruby/pull/498): autoload TwiML to save memory on load. Thanks to [@philnash](https://github.com/philnash)!
1286
+ - [PR #499](https://github.com/twilio/twilio-ruby/pull/499): autoload JWT classes. Thanks to [@philnash](https://github.com/philnash)!
1287
+ - [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)!
1288
+
1289
+ **Api**
1290
+ - Updated description for property `call_reason` in the call create request
1291
+
1292
+ **Contacts**
1293
+ - Added Read, Delete All, and Delete by SID docs
1294
+ - Initial Release
1295
+
1296
+ **Studio**
1297
+ - Rename `flow_valid` to `flow_validate`
1298
+ - Removed `errors` and `warnings` from flows error response and added new property named `details`
1299
+ - Add Update Execution endpoints to v1 and v2 to end execution via API
1300
+ - Add new `warnings` attribute v2 flow POST api
1301
+
1302
+ **Twiml**
1303
+ - Add enhanced attribute to use with `speech_model` for the `Gather` verb
1304
+
1305
+
1306
+ [2020-04-01] Version 5.33.0
1307
+ ---------------------------
1308
+ **Library - Chore**
1309
+ - [PR #502](https://github.com/twilio/twilio-ruby/pull/502): Fix a typo in JWT::TaskRouterUtils. Thanks to [@rywall](https://github.com/rywall)!
1310
+
1311
+ **Api**
1312
+ - Add optional 'secure' parameter to SIP Domain
1313
+
1314
+ **Authy**
1315
+ - Added an endpoint to list the challenges of a factor
1316
+ - Added optional parameter `Push` when updating a service to send the service level push factor configuration
1317
+
1318
+ **Bulkexports**
1319
+ - exposing bulk exports (vault/slapchop) API as public beta API
1320
+
1321
+ **Flex**
1322
+ - Adding `queue_stats_configuration` and `wfm_integrations` to Flex Configuration
1323
+
1324
+ **Serverless**
1325
+ - Add Function Version Content endpoint
1326
+ - Allow build_sid to be optional for deployment requests
1327
+
1328
+ **Supersim**
1329
+ - Remove `deactivated` status for Super SIM which is replaced by `inactive` **(breaking change)**
1330
+
1331
+
1332
+ [2020-03-18] Version 5.32.0
1333
+ ---------------------------
1334
+ **Api**
1335
+ - Add optional `emergency_calling_enabled` parameter to SIP Domain
1336
+ - Add optional property `call_reason` in the call create request
1337
+
1338
+ **Authy**
1339
+ - Added `friendly_name` and `config` as optional params to Factor update
1340
+ - Added `config` param to Factor creation **(breaking change)**
1341
+
1342
+ **Preview**
1343
+ - Renamed `SuccessRate` endpoint to `ImpressionsRate` for Branded Calls (fka. Verified by Twilio) **(breaking change)**
1344
+
1345
+
1346
+ [2020-03-04] Version 5.31.6
1347
+ ---------------------------
1348
+ **Library - Chore**
1349
+ - [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)!
1350
+
1351
+ **Authy**
1352
+ - Added the `configuration` property to services to return the service level configurations
1353
+ - Added optional parameter `Push` when creating a service to send the service level push factor configuration
1354
+ - Remove FactorStrength support for Factors and Challenges **(breaking change)**
1355
+
1356
+ **Messaging**
1357
+ - Correct the alpha sender capabilities property type **(breaking change)**
1358
+
1359
+ **Preview**
1360
+ - Removed `/Devices` register Branded Calls endpoint, as per iOS sample app deprecation **(breaking change)**
1361
+ - Removed `Twilio-Sandbox-Mode` request header from the Branded Calls endpoints, as not officially supported **(breaking change)**
1362
+ - Removed `Verify` version from `preview` subdomain in favor to `verify` subdomain. **(breaking change)**
1363
+
1364
+ **Serverless**
1365
+ - Add UI-Editable field to Services
1366
+
1367
+ **Supersim**
1368
+ - Add `inactive` status for Super SIM which is an alias for `deactivated`
1369
+
1370
+ **Taskrouter**
1371
+ - Adding value range to `priority` in task endpoint
1372
+
1373
+ **Verify**
1374
+ - Fix `SendCodeAttempts` type. It's an array of objects instead of a unique object. **(breaking change)**
1375
+
1376
+
1377
+ [2020-02-19] Version 5.31.5
1378
+ ---------------------------
1379
+ **Library - Chore**
1380
+ - [PR #495](https://github.com/twilio/twilio-ruby/pull/495): bump the rubocop version. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1381
+
1382
+ **Api**
1383
+ - Make call create parameters `async_amd`, `async_amd_status_callback`, and `async_amd_status_callback_method` public
1384
+ - Add `trunk_sid` as an optional field to Call resource fetch/read responses
1385
+ - Add property `queue_time` to successful response of create, fetch, and update requests for Call
1386
+ - Add optional parameter `byoc` to conference participant create.
1387
+
1388
+ **Authy**
1389
+ - Added support for challenges associated to push factors
1390
+
1391
+ **Flex**
1392
+ - Adding `ui_dependencies` to Flex Configuration
1393
+
1394
+ **Messaging**
1395
+ - Deprecate Session API **(breaking change)**
1396
+
1397
+ **Numbers**
1398
+ - Add Regulations API
1399
+
1400
+ **Studio**
1401
+ - Add Execution and Step endpoints to v2 API
1402
+ - Add webhook_url to Flow response and add new /TestUsers endpoint to v2 API
1403
+
1404
+ **Taskrouter**
1405
+ - Adding `longest_relative_task_age_in_queue` and `longest_relative_task_sid_in_queue` to TaskQueue Real Time Statistics API.
1406
+ - Add `wait_duration_in_queue_until_accepted` aggregations to TaskQueues Cumulative Statistics endpoint
1407
+ - Add TaskQueueEnteredDate property to Tasks.
1408
+
1409
+ **Video**
1410
+ - [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
1411
+ - [Composer] `audio_sources` type on the composer HTTP POST command, changed from `sid[]` to `string[]` **(breaking change)**
1412
+ - [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
1413
+
1414
+
1415
+ [2020-02-05] Version 5.31.4
1416
+ ---------------------------
1417
+ **Api**
1418
+ - Making content retention and address retention public
1419
+ - Update `status` enum for Messages to include 'partially_delivered'
1420
+
1421
+ **Authy**
1422
+ - Added support for push factors
1423
+
1424
+ **Autopilot**
1425
+ - Add one new property in Query i.e dialogue_sid
1426
+
1427
+ **Verify**
1428
+ - Add `SendCodeAttempts` to create verification response.
1429
+
1430
+ **Video**
1431
+ - Clarification in composition creation documentation: one source is mandatory, either `audio_sources` or `video_layout`, but on of them has to be provided
1432
+
1433
+ **Twiml**
1434
+ - Add Polly Neural voices.
1435
+
1436
+
1437
+ [2020-01-22] Version 5.31.3
1438
+ ---------------------------
1439
+ **Library - Docs**
1440
+ - [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)!
1441
+
1442
+ **Library - Chore**
1443
+ - [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)!
1444
+
1445
+ **Api**
1446
+ - Add payments public APIs
1447
+ - Add optional parameter `byoc` to call create request.
1448
+
1449
+ **Flex**
1450
+ - Updating a Flex Flow `creation_on_message` parameter documentation
1451
+
1452
+ **Preview**
1453
+ -
1454
+ - Removed Verify v2 from preview in favor of its own namespace as GA **(breaking change)**
1455
+
1456
+ **Studio**
1457
+ - Flow definition type update from string to object
1458
+
1459
+ **Verify**
1460
+ - Add `AppHash` parameter when creating a Verification.
1461
+ - Add `DoNotShareWarningEnabled` parameter to the Service resource.
1462
+
1463
+ **Twiml**
1464
+ - Add `track` attribute to siprec noun.
1465
+ - Add attribute `byoc` to `<Number>`
1466
+
1467
+
1468
+ [2020-01-08] Version 5.31.2
1469
+ ---------------------------
1470
+ **Library - Chore**
1471
+ - [PR #491](https://github.com/twilio/twilio-ruby/pull/491): upgrade rubocop to 0.79.0. Thanks to [@juampi](https://github.com/juampi)!
1472
+ - [PR #489](https://github.com/twilio/twilio-ruby/pull/489): upgrade faraday to 1.0.0. Thanks to [@juampi](https://github.com/juampi)!
1473
+
1474
+ **Numbers**
1475
+ - Add Regulatory Compliance CRUD APIs
1476
+
1477
+ **Studio**
1478
+ - Add parameter validation for Studio v2 Flows API
1479
+
1480
+ **Twiml**
1481
+ - Add support for `speech_model` to `Gather` verb
1482
+
1483
+
1484
+ [2019-12-18] Version 5.31.1
1485
+ ---------------------------
1486
+ **Library - Chore**
1487
+ - [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)!
1488
+
1489
+ **Preview**
1490
+ - Add `/Insights/SuccessRate` endpoint for Businesses Branded Calls (Verified by Twilio)
1491
+
1492
+ **Studio**
1493
+ - StudioV2 API in beta
1494
+
1495
+ **Verify**
1496
+ - Add `MailerSid` property to Verify Service resource.
1497
+
1498
+ **Wireless**
1499
+ - Added `data_limit_strategy` to Rate Plan resource.
1500
+
1501
+
1502
+ [2019-12-12] Version 5.31.0
1503
+ ---------------------------
1504
+ **Api**
1505
+ - Make `twiml` conditional for create. One of `url`, `twiml`, or `application_sid` is now required.
1506
+ - Add `bundle_sid` parameter to /IncomingPhoneNumbers API
1507
+ - Removed discard / obfuscate parameters from ContentRetention, AddressRetention **(breaking change)**
1508
+
1509
+ **Chat**
1510
+ - Added `last_consumed_message_index` and `last_consumption_timestamp` parameters in update method for UserChannel resource **(breaking change)**
1511
+
1512
+ **Conversations**
1513
+ - Add Participant SID to Message properties
1514
+
1515
+ **Messaging**
1516
+ - Fix incorrectly typed capabilities property for ShortCodes. **(breaking change)**
1517
+
1518
+
1519
+ [2019-12-04] Version 5.30.0
1520
+ ---------------------------
1521
+ **Library**
1522
+ - [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)!
1523
+ - [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)!
1524
+
1525
+ **Api**
1526
+ - Add optional `twiml` parameter for call create
1527
+
1528
+ **Chat**
1529
+ - Added `delete` method in UserChannel resource
1530
+
1531
+ **Conversations**
1532
+ - Allow Messaging Service update
1533
+
1534
+ **Taskrouter**
1535
+ - Support ReEvaluateTasks parameter on Workflow update
1536
+
1537
+ **Twiml**
1538
+ - Remove unsupported `mixed_track` value from `<Stream>` **(breaking change)**
1539
+ - Add missing fax `<Receive>` optional attributes
1540
+
1541
+
1542
+ [2019-11-13] Version 5.29.1
1543
+ ---------------------------
1544
+ **Api**
1545
+ - Make `persistent_action` parameter public
1546
+ - Add `twiml` optional private parameter for call create
1547
+
1548
+ **Autopilot**
1549
+ - Add Export resource to Autopilot Assistant.
1550
+
1551
+ **Flex**
1552
+ - Added Integration.RetryCount attribute to Flex Flow
1553
+ - Updating a Flex Flow `channel_type` options documentation
1554
+
1555
+ **Insights**
1556
+ - Added edges to events and metrics
1557
+ - Added new endpoint definitions for Events and Metrics
1558
+
1559
+ **Messaging**
1560
+ - **create** support for sender registration
1561
+ - **fetch** support for fetching a sender
1562
+ - **update** support for sender verification
1563
+
1564
+ **Supersim**
1565
+ - Add `Direction` filter parameter to list commands endpoint
1566
+ - Allow filtering commands list by Sim Unique Name
1567
+ - Add `Iccid` filter parameter to list sims endpoint
1568
+
1569
+ **Twiml**
1570
+ - Add support for `<Refer>` verb
1571
+
1572
+
1573
+ [2019-10-30] Version 5.29.0
1574
+ ---------------------------
1575
+ **Library**
1576
+ - [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)!
1577
+ - [PR #480](https://github.com/twilio/twilio-ruby/pull/480): Update resources after sorting. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1578
+ - [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)!
1579
+
1580
+ **Api**
1581
+ - Add new usage categories to the public api `sms-messages-carrierfees` and `mms-messages-carrierfees`
1582
+
1583
+ **Conversations**
1584
+ - Add ProjectedAddress to Conversations Participant resource
1585
+
1586
+ **Preview**
1587
+ - Implemented different `Sid` for Current Calls (Verified by Twilio), instead of relying in `Call.Sid` from Voice API team **(breaking change)**
1588
+
1589
+ **Supersim**
1590
+ - Add List endpoint to Commands resource for Super Sim Pilot
1591
+ - Add UsageRecords resource for the Super Sim Pilot
1592
+ - Add List endpoint to UsageRecords resource for the Super Sim Pilot
1593
+ - Allow assigning a Sim to a Fleet by Fleet SID or Unique Name for Super SIM Pilot
1594
+ - Add Update endpoint to Fleets resource for Super Sim Pilot
1595
+ - Add Fetch endpoint to Commands resource for Super Sim Pilot
1596
+ - Allow filtering the Sims resource List endpoint by Fleet
1597
+ - Add List endpoint to Fleets resource for Super Sim Pilot
1598
+
1599
+ **Wireless**
1600
+ - Added `account_sid` to Sim update parameters.
1601
+
1602
+ **Twiml**
1603
+ - Add new locales and voices for `Say` from Polly
1604
+
1605
+
1606
+ [2019-10-16] Version 5.28.0
1607
+ ---------------------------
1608
+ **Library**
1609
+ - [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)!
1610
+ - [PR #477](https://github.com/twilio/twilio-ruby/pull/477): Update instance property ordering. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
1611
+ - [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)!
1612
+ - [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)**
1613
+
1614
+ **Api**
1615
+ - Add new property `attempt` to sms_messages
1616
+ - Fixed a typo in the documentation for Feedback outcome enum **(breaking change)**
1617
+ - Update the call price to be optional for deserializing **(breaking change)**
1618
+
1619
+ **Flex**
1620
+ - Added `JanitorEnabled` attribute to Flex Flow
1621
+ - Change `features_enabled` Flex Configuration key to private **(breaking change)**
1622
+
1623
+ **Supersim**
1624
+ - Add Fetch endpoint to Fleets resource for Super Sim Pilot
1625
+ - Allow assigning a Sim to a Fleet for Super Sim Pilot
1626
+ - Add Create endpoint to Fleets resource for Super Sim Pilot
1627
+
1628
+ **Twiml**
1629
+ - Update `<Conference>` rename "whisper" attribute to "coach" **(breaking change)**
1630
+
1631
+
1632
+ [2019-10-02] Version 5.27.1
1633
+ ---------------------------
1634
+ **Library**
1635
+ - [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)!
1636
+ - [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)!
1637
+
1638
+ **Conversations**
1639
+ - Add media to Conversations Message resource
1640
+
1641
+ **Supersim**
1642
+ - Add List endpoint to Sims resource for Super Sim Pilot
1643
+
1644
+
1645
+ [2019-09-18] Version 5.27.0
1646
+ ----------------------------
1647
+ **Library**
1648
+ - [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)**
1649
+ - [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)!
1650
+ - [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)!
1651
+ - [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)!
1652
+ - [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)!
1653
+ - [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)!
1654
+ - [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)!
1655
+
1656
+ **Numbers**
1657
+ - Add v2 of the Identites API
1658
+
1659
+ **Preview**
1660
+ - Changed authentication method for SDK Trusted Comms endpoints: `/CPS`, `/CurrentCall`, and `/Devices`. Please use `Authorization: Bearer <xCNAM JWT>` **(breaking change)**
1661
+
1662
+ **Voice**
1663
+ - Add Recordings endpoints
1664
+
1665
+
1666
+ [2019-09-04] Version 5.26.0
1667
+ ----------------------------
1668
+ **Library**
1669
+ - [PR #463](https://github.com/twilio/twilio-ruby/pull/463): Reduce line length to satisfy rubocop constraints. Thanks to [@igracia](https://github.com/igracia)!
1670
+ - [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)**
1671
+ - [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)!
1672
+ - [PR #441](https://github.com/twilio/twilio-ruby/pull/441): Link to actual documentation. Thanks to [@alexford](https://github.com/alexford)!
1673
+
1674
+ **Api**
1675
+ - Pass Twiml in call update request
1676
+
1677
+ **Conversations**
1678
+ - Add attributes to Conversations resources
1679
+
1680
+ **Flex**
1681
+ - Adding `features_enabled` and `serverless_service_sids` to Flex Configuration
1682
+
1683
+ **Messaging**
1684
+ - Message API required params updated **(breaking change)**
1685
+
1686
+ **Preview**
1687
+ - Added support for the optional `CallSid` to `/BrandedCalls` endpoint
1688
+
1689
+
1690
+ [2019-08-21] Version 5.25.4
1691
+ ----------------------------
1692
+ **Library**
1693
+ - [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)!
1694
+ - [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)!
1695
+
1696
+ **Conversations**
1697
+ - Add Chat Conversation SID to conversation default output properties
1698
+
1699
+ **Flex**
1700
+ - Adding `outbound_call_flows` object to Flex Configuration
1701
+ - Adding read and fetch to channels API
1702
+
1703
+ **Supersim**
1704
+ - Add Sims and Commands resources for the Super Sim Pilot
1705
+
1706
+ **Sync**
1707
+ - Added configuration option for enabling webhooks from REST.
1708
+
1709
+ **Wireless**
1710
+ - Added `usage_notification_method` and `usage_notification_url` properties to `rate_plan`.
1711
+
1712
+ **Twiml**
1713
+ - Add support for `ach-debit` transactions in `Pay` verb
1714
+
1715
+
1716
+ [2019-08-05] Version 5.25.3
1717
+ ----------------------------
1718
+ **Preview**
1719
+ - Added support for the header `Twilio-Sandbox-Mode` to mock all Voice dependencies
1720
+
1721
+ **Twiml**
1722
+ - Add support for `<Siprec>` noun
1723
+ - Add support for `<Stream>` noun
1724
+ - Create verbs `<Start>` and `<Stop>`
1725
+
1726
+
1727
+ [2019-07-24] Version 5.25.2
1728
+ ----------------------------
1729
+ **Insights**
1730
+ - Added `properties` to summary.
1731
+
1732
+ **Preview**
1733
+ - Added endpoint to brand a call without initiating it, so it can be initiated manually by the Customer
1734
+
1735
+ **Twiml**
1736
+ - Update `<Conference>` recording events **(breaking change)**
1737
+
1738
+
1739
+ [2019-07-10] Version 5.25.1
1740
+ ----------------------------
1741
+ **Api**
1742
+ - Make `friendly_name` optional for applications create
1743
+ - Add new property `as_of` date to Usage Record API calls
1744
+
1745
+ **Wireless**
1746
+ - Added Usage Records resource.
1747
+
1748
+
1749
+ [2019-06-26] Version 5.25.0
1750
+ ----------------------------
1751
+ **Autopilot**
1752
+ - Adds two new properties in Assistant i.e needs_model_build and development_stage
1753
+
1754
+ **Preview**
1755
+ - Changed phone numbers from _URL|Path_ to `X-XCNAM-Sensitive` headers **(breaking change)**
1756
+
1757
+ **Verify**
1758
+ - Add `MessagingConfiguration` resource to verify service
1759
+
1760
+
1761
+ [2019-06-12] Version 5.24.0
1762
+ ----------------------------
1763
+ **Autopilot**
1764
+ - Add Webhooks resource to Autopilot Assistant.
1765
+
1766
+ **Flex**
1767
+ - Added missing 'custom' type to Flex Flow
1768
+ - Adding `integrations` to Flex Configuration
1769
+
1770
+ **Insights**
1771
+ - Added attributes to summary.
1772
+
1773
+ **Messaging**
1774
+ - Message API Create updated with conditional params **(breaking change)**
1775
+
1776
+ **Proxy**
1777
+ - Document that Proxy will return a maximum of 100 records for read/list endpoints **(breaking change)**
1778
+ - Remove non-updatable property parameters for Session update (mode, participants) **(breaking change)**
1779
+
1780
+ **Sync**
1781
+ - Added reachability debouncing configuration options.
1782
+
1783
+ **Verify**
1784
+ - Add `RateLimits` and `Buckets` resources to Verify Services
1785
+ - Add `RateLimits` optional parameter on `Verification` creation.
1786
+
1787
+ **Twiml**
1788
+ - Fix `<Room>` participantIdentity casing
1789
+
1790
+
1791
+ [2019-05-29] Version 5.23.1
1792
+ ----------------------------
1793
+ **Verify**
1794
+ - Add `approved` to status enum
1795
+
1796
+
1797
+ [2019-05-15] Version 5.23.0
1798
+ ----------------------------
1799
+ **Api**
1800
+ - Make `method` optional for queue members update
1801
+
1802
+ **Chat**
1803
+ - Removed `webhook.*.format` update parameters in Service resource from public library visibility in v1 **(breaking change)**
1804
+
1805
+ **Insights**
1806
+ - Added client metrics as sdk_edge to summary.
1807
+ - Added optional query param processing_state.
1808
+
1809
+ **Numbers**
1810
+ - Add addtional metadata fields on a Document
1811
+ - Add status callback fields and parameters
1812
+
1813
+ **Taskrouter**
1814
+ - Added `channel_optimized_routing` attribute to task-channel endpoint
1815
+
1816
+ **Video**
1817
+ - [Rooms] Add Video Subscription API
1818
+
1819
+ **Wireless**
1820
+ - Added `imei` to Data Session resource.
1821
+ - Remove `imeisv` from Data Session resource. **(breaking change)**
1822
+
1823
+
1824
+ [2019-05-01] Version 5.22.3
1825
+ ----------------------------
1826
+ **Serverless**
1827
+ - Documentation
1828
+
1829
+ **Wireless**
1830
+ - Added `imeisv` to Data Session resource.
1831
+
1832
+
1833
+ [2019-04-24] Version 5.22.2
1834
+ ----------------------------
1835
+ **Api**
1836
+ - Add `verified` property to Addresses
1837
+
1838
+ **Numbers**
1839
+ - Add API for Identites and documents
1840
+
1841
+ **Proxy**
1842
+ - Add in use count on number instance
1843
+
1844
+
1845
+ [2019-04-12] Version 5.22.1
1846
+ ----------------------------
1847
+ **Flex**
1848
+ - Adding PluginService to Flex Configuration
1849
+
1850
+ **Numbers**
1851
+ - Add API for Proof of Addresses
1852
+
1853
+ **Proxy**
1854
+ - Clarify documentation for Service and Session fetch
1855
+
1856
+ **Serverless**
1857
+ - Serverless scaffolding
1858
+
1859
+
1860
+ [2019-03-28] Version 5.22.0
1861
+ ----------------------------
1862
+ **Api**
1863
+ - Remove optional `if_machine` call create parameter from helper libraries **(breaking change)**
1864
+ - Changed `call_sid` path parameter type on QueueMember fetch and update requests **(breaking change)**
1865
+
1866
+ **Voice**
1867
+ - changed file names to dialing_permissions prefix **(breaking change)**
1868
+
1869
+ **Wireless**
1870
+ - Added `ResetStatus` property to Sim resource to allow resetting connectivity via the API.
1871
+
1872
+
1873
+ [2019-03-15] Version 5.21.2
1874
+ ----------------------------
1875
+ **Library**
1876
+ - PR #444: Add Help Center and Support Ticket links to the README. Thanks to @childish-sambino!
1877
+
1878
+ **Api**
1879
+ - Add `machine_detection_speech_threshold`, `machine_detection_speech_end_threshold`, `machine_detection_silence_timeout` optional params to Call create request
1880
+
1881
+ **Flex**
1882
+ - Adding Flex Channel Orchestration
1883
+ - Adding Flex Flow
1884
+
1885
+
1886
+ [2019-03-06] Version 5.21.1
1887
+ ----------------------------
1888
+ **Twiml**
1889
+ - Add `de1` to `<Conference>` regions
1890
+
1891
+
1892
+ [2019-03-01] Version 5.21.0
1893
+ ----------------------------
1894
+ **Api**
1895
+ - Make conference participant preview parameters public
1896
+
1897
+ **Authy**
1898
+ - Added support for FactorType and FactorStrength for Factors and Challenges
1899
+
1900
+ **Iam**
1901
+ - First public release
1902
+
1903
+ **Verify**
1904
+ - Add endpoint to update/cancel a Verification **(breaking change)**
1905
+
1906
+ **Video**
1907
+ - [Composer] Make RoomSid mandatory **(breaking change)**
1908
+ - [Composer] Add `enqueued` state to Composition
1909
+
1910
+ **Twiml**
1911
+ - Update message body to not be required for TwiML `Dial` noun.
1912
+
1913
+
1914
+ [2019-02-15] Version 5.20.1
1915
+ ----------------------------
1916
+ **Library**
1917
+ - PR #438: Add a Ruby inspect method to Context classes. Thanks to @childish-sambino!
1918
+
1919
+ **Api**
1920
+ - Add `force_opt_in` optional param to Messages create request
1921
+ - Add agent conference category to usage records
1922
+
1923
+ **Flex**
1924
+ - First public release
1925
+
1926
+ **Taskrouter**
1927
+ - Adding `reject_pending_reservations` to worker update endpoint
1928
+ - Added `event_date_ms` and `worker_time_in_previous_activity_ms` to Events API response
1929
+ - Add ability to filter events by TaskChannel
1930
+
1931
+ **Verify**
1932
+ - Add `EnablePsd2` optional parameter for PSD2 on Service resource creation or update.
1933
+ - Add `Amount`, `Payee` optional parameters for PSD2.
1934
+
1935
+
1936
+ [2019-02-04] Version 5.20.0
1937
+ ----------------------------
1938
+ **Library**
1939
+ - PR #437: Switch body validator to use hex instead of base64. Thanks to @cjcodes!
1940
+
1941
+ **Video**
1942
+ - [Recordings] Add media type filter to list operation
1943
+ - [Composer] Filter Composition Hook resources by FriendlyName
1944
+
1945
+ **Twiml**
1946
+ - Update `language` enum for `Gather` to fix language code for Filipino (Philippines) and include additional supported languages **(breaking change)**
1947
+
1948
+
1949
+ [2019-01-11] Version 5.19.0
1950
+ ----------------------------
1951
+ **Library**
1952
+ - PR #436: Remove jruby-openssl requirement. Thanks to @philnash!
1953
+
1954
+ **Chat**
1955
+ - Mark Member attributes as PII
1956
+
1957
+ **Insights**
1958
+ - Initial revision.
1959
+
1960
+ **Proxy**
1961
+ - Remove unsupported query parameters **(breaking change)**
1962
+ - Remove invalid session statuses in doc
1963
+
1964
+ **Verify**
1965
+ - Add `lookup` information in the response when creating a new verification (depends on the LookupEnabled flag being enabled at the service level)
1966
+ - Add `VerificationSid` optional parameter on Verification check.
1967
+
1968
+
1969
+ [2018-12-17] Version 5.18.0
1970
+ ----------------------------
1971
+ **Authy**
1972
+ - Reverted the change to `FactorType` and `FormType`, avoiding conflicts with Helper Libraries reserved words (`type`) **(breaking change)**
1973
+
1974
+ **Proxy**
1975
+ - Remove incorrect parameter for Session List
1976
+
1977
+ **Studio**
1978
+ - Support date created filtering on list of executions
1979
+
1980
+ **Taskrouter**
1981
+ - Adding ability to Create, Modify and Delete Task Channels.
1982
+
1983
+ **Verify**
1984
+ - Add `SkipSmsToLandlines`, `TtsName`, `DtmfInputRequired` optional parameters on Service resource creation or update.
1985
+
1986
+ **Wireless**
1987
+ - Added delete action on Command resource.
1988
+ - Added delete action on Sim resource.
1989
+
1990
+ **Twiml**
1991
+ - Change `currency` from enum to string for `Pay` **(breaking change)**
1992
+
1993
+
1994
+ [2018-11-30] Version 5.17.0
1995
+ ----------------------------
1996
+ **Api**
1997
+ - Add `interactive_data` optional param to Messages create request
1998
+
1999
+ **Authy**
2000
+ - Required authentication for `/v1/Forms/{type}` endpoint **(breaking change)**
2001
+ - Removed `Challenge.reason` to `Challenge.responded_reason`
2002
+ - Removed `verification_sid` from Challenge responses
2003
+ - Removed `config` param from the Factor creation
2004
+ - Replaced all occurrences of `FactorType` and `FormType` in favor of a unified `Type` **(breaking change)**
2005
+
2006
+ **Chat**
2007
+ - Add Member attributes
2008
+
2009
+ **Preview**
2010
+ - Removed `Authy` version from `preview` subdomain in favor to `authy` subdomain. **(breaking change)**
2011
+
2012
+ **Verify**
2013
+ - Add `CustomCode` optional parameter on Verication creation.
2014
+
2015
+
2016
+ [2018-11-16] Version 5.16.0
2017
+ ----------------------------
2018
+ **Messaging**
2019
+ - Session API
2020
+
2021
+ **Twiml**
2022
+ - Change `master-card` to `mastercard` as `cardType` for `Pay` and `Prompt`, remove attribute `credential_sid` from `Pay` **(breaking change)**
2023
+
2024
+
2025
+ [2018-10-29] Version 5.15.2
2026
+ ----------------------------
2027
+ **Api**
2028
+ - Add new Balance resource:
2029
+ - url: '/v1/Accounts/{account sid}/Balance'
2030
+ - supported methods: GET
2031
+ - returns the balance of the account
2032
+
2033
+ **Proxy**
2034
+ - Add chat_instance_sid to Service
2035
+
2036
+ **Verify**
2037
+ - Add `Locale` optional parameter on Verification creation.
2038
+
2039
+
2040
+ [2018-10-15] Version 5.15.1
2041
+ ----------------------------
2042
+ **Api**
2043
+ - Add <Pay> Verb Transactions category to usage records
2044
+
2045
+ **Twiml**
2046
+ - Add support for `Pay` verb
2047
+
2048
+
2049
+ [2018-10-15] Version 5.15.0
2050
+ ----------------------------
2051
+ **Library**
2052
+ - PR #428: Fix custom param tests. Thanks to @ryan-rowland!
2053
+
2054
+ **Api**
2055
+ - Add `coaching` and `call_sid_to_coach` to participant properties, create and update requests.
2056
+
2057
+ **Authy**
2058
+ - Set public library visibility, and added PII stanza
2059
+ - Dropped support for `FactorType` param given new Factor prefixes **(breaking change)**
2060
+ - Supported `DELETE` actions for Authy resources
2061
+ - Move Authy Services resources to `authy` subdomain
2062
+
2063
+ **Autopilot**
2064
+ - Introduce `autopilot` subdomain with all resources from `preview.understand`
2065
+
2066
+ **Preview**
2067
+ - Renamed Understand intent to task **(breaking change)**
2068
+ - Deprecated Authy endpoints from `preview` to `authy` subdomain
2069
+
2070
+ **Taskrouter**
2071
+ - Allow TaskQueue ReservationActivitySid and AssignmentActivitySid to not be configured for MultiTask Workspaces
2072
+
2073
+ **Verify**
2074
+ - Add `LookupEnabled` optional parameter on Service resource creation or update.
2075
+ - Add `SendDigits` optional parameter on Verification creation.
2076
+ - Add delete action on Service resourse.
2077
+
2078
+ **Twiml**
2079
+ - Add custom parameters to TwiML `Client` noun and renamed the optional `name` field to `identity`. This is a breaking change in Ruby, and applications will need to transition from `dial.client ''` and `dial.client 'alice'` formats to `dial.client` and `dial.client(identity: alice)` formats. **(breaking change)**
2080
+
2081
+
2082
+ [2018-10-04] Version 5.14.1
2083
+ ----------------------------
2084
+ **Twiml**
2085
+ - Add `debug` to `Gather`
2086
+ - Add `participantIdentity` to `Room`
2087
+
2088
+
2089
+ [2018-09-28] Version 5.14.0
2090
+ ----------------------------
2091
+ **Api**
2092
+ - Set `call_sid_to_coach` parameter in participant to be `preview`
2093
+
2094
+ **Preview**
2095
+ - Renamed response headers for Challenge and Factors Signatures
2096
+ - Supported `totp` in Authy preview endpoints
2097
+ - Allowed `latest` in Authy Challenges endpoints
2098
+
2099
+ **Video**
2100
+ - [Composer] Add Composition Hook resources
2101
+
2102
+ **Voice**
2103
+ - changed path param name from parent_iso_code to iso_code for highrisk_special_prefixes api **(breaking change)**
2104
+ - added geo permissions public api
2105
+
2106
+
2107
+ [2018-09-20] Version 5.13.0
2108
+ ----------------------------
2109
+ **Preview**
2110
+ - Add `Form` resource to Authy preview given a `form_type`
2111
+ - Add Authy initial api-definitions in the 4 main resources: Services, Entities, Factors, Challenges
2112
+
2113
+ **Pricing**
2114
+ - add voice_numbers resource (v2)
2115
+
2116
+ **Verify**
2117
+ - Move from preview to beta **(breaking change)**
2118
+
2119
+
2120
+ [2018-08-31] Version 5.12.4
2121
+ ----------------------------
2122
+ **Library**
2123
+ - PR #427: VCORE-3651 Add support for *for* attribute in twiml element. Thanks to @nmahure!
2124
+
2125
+ **Api**
2126
+ - Add `call_sid_to_coach` parameter to participant create request
2127
+ - Add `voice_receive_mode` param to IncomingPhoneNumbers create
2128
+
2129
+ **Video**
2130
+ - [Recordings] Expose `offset` property in resource
2131
+
2132
+
2133
+ [2018-08-23] Version 5.12.3
2134
+ ----------------------------
2135
+ **Chat**
2136
+ - Add User Channel instance resource
2137
+
2138
+
2139
+ [2018-08-17] Version 5.12.2
2140
+ ----------------------------
2141
+ **Api**
2142
+ - Add Proxy Active Sessions category to usage records
2143
+
2144
+ **Preview**
2145
+ - Add `Actions` endpoints and remove `ResponseUrl` from assistants on the Understand api
2146
+
2147
+ **Pricing**
2148
+ - add voice_country resource (v2)
2149
+
2150
+
2151
+ [2018-08-09] Version 5.12.1
2152
+ ----------------------------
2153
+ **Library**
2154
+ - PR #426: Add a test showing how to emit "interpret-as". Thanks to @ekarson!
2155
+
2156
+ **Studio**
2157
+ - Studio is now GA
2158
+
2159
+
2160
+ [2018-08-03] Version 5.12.0
2161
+ ----------------------------
2162
+ **Library**
2163
+ - PR #420: Tag and push Docker latest image when deploying with TravisCI. Thanks to @jonatasbaldin!
2164
+
2165
+ **Chat**
2166
+ - Make message From field updatable
2167
+ - Add REST API webhooks
2168
+
2169
+ **Notify**
2170
+ - Removing deprecated `segments`, `users`, `segment_memberships`, `user_bindings` classes from helper libraries. **(breaking change)**
2171
+
2172
+ **Preview**
2173
+ - Add new Intent Statistics endpoint
2174
+ - Remove `ttl` from Assistants
2175
+
2176
+ **Twiml**
2177
+ - Add `Connect` and `Room` for Programmable Video Rooms
2178
+
2179
+
2180
+ [2018-07-26] Version 5.11.2
2181
+ ----------------------------
2182
+ **Library**
2183
+ - PR #424: Fix Say example in README.md. Thanks to @HuipengRen!
2184
+
2185
+ **Api**
2186
+ - Add support for sip domains to map credential lists for registrations
2187
+
2188
+ **Preview**
2189
+ - Remove `ttl` from Assistants
2190
+
2191
+ **Proxy**
2192
+ - Enable setting a proxy number as reserved
2193
+
2194
+ **Twiml**
2195
+ - Add support for SSML lang tag on Say verb
2196
+
2197
+
2198
+ [2018-07-17] Version 5.11.1
2199
+ ----------------------------
2200
+ **Library**
2201
+ - PR #422: Add attribute overrides from generated code. Thanks to @cjcodes!
2202
+
2203
+ **Video**
2204
+ - Add `group-small` room type
2205
+
2206
+
2207
+ [2018-07-16] Version 5.11.0
2208
+ ----------------------------
2209
+ **Library**
2210
+ - PR #421: Fix TwiML Say verb spec. Thanks to @HuipengRen!
2211
+ - PR #419: Add a request body validator. Thanks to @cjcodes!
2212
+ - PR #418: Remove support for ruby 2.0 and 2.1, adds 2.5. Thanks to @cjcodes!
2213
+
2214
+ **Twiml**
2215
+ - Add support for SSML on Say verb, the message body is changed to be optional **(breaking change)**
2216
+
2217
+
2218
+ [2018-07-11] Version 5.10.7
2219
+ ----------------------------
2220
+ **Api**
2221
+ - Add `cidr_prefix_length` param to SIP IpAddresses API
2222
+
2223
+ **Studio**
2224
+ - Add new /Execution endpoints to begin Engagement -> Execution migration
2225
+
2226
+ **Video**
2227
+ - [Rooms] Allow deletion of individual recordings from a room
2228
+
2229
+
2230
+ [2018-07-05] Version 5.10.6
2231
+ ----------------------------
2232
+ **Library**
2233
+ - PR #413: Add Dockerfile and related changes to build the Docker image. Thanks to @jonatasbaldin!
2234
+
2235
+ **Api**
2236
+ - Release `Call Recording Controls` feature support in helper libraries
2237
+ - Add Voice Insights sub-category keys to usage records
2238
+
2239
+
2240
+ [2018-06-21] Version 5.10.5
2241
+ ----------------------------
2242
+ **Library**
2243
+ - PR #414: Added test for mixed content. Thanks to @ekarson!
2244
+
2245
+ **Video**
2246
+ - Allow user to set `ContentDisposition` when obtaining media URLs for Room Recordings and Compositions
2247
+ - Add Composition Settings resource
2248
+
2249
+
2250
+ [2018-06-19] Version 5.10.4
2251
+ ----------------------------
2252
+ **Library**
2253
+ - PR #412: Allow adding TwiML children with generic tag names. Thanks to @ekarson!
2254
+ - PR #408: Add validate_ssl_certificate helper method to Client. Thanks to @ekarson!
2255
+ - PR #410: Allow adding text nodes to TwiML responses. Thanks to @ekarson!
2256
+
2257
+ **Api**
2258
+ - Add Fraud Lookups category to usage records
2259
+
2260
+ **Twiml**
2261
+ - Add methods to helper libraries to inject arbitrary text under a TwiML node
2262
+
2263
+
2264
+ [2018-06-04] Version 5.10.3
2265
+ ----------------------------
2266
+ **Library**
2267
+ - PR #409: Switch to single quotes for rubocop. Thanks to @cjcodes!
2268
+ - PR #407: Allows developers to add comments to TwiML. Thanks to @philnash!
2269
+ - PR #405: Update description. Thanks to @efossier!
2270
+
2271
+ **Chat**
2272
+ - Add Binding and UserBinding documentation
2273
+
2274
+ **Lookups**
2275
+ - Add back support for `fraud` lookup type
2276
+
2277
+
2278
+ [2018-05-25] Version 5.10.2
2279
+ ----------------------------
2280
+ **Studio**
2281
+ - Add endpoint to delete engagements
2282
+
2283
+
2284
+ [2018-05-18] Version 5.10.1
2285
+ ----------------------------
2286
+ **Api**
2287
+ - Add more programmable video categories to usage records
2288
+ - Add 'include_subaccounts' parameter to all variation of usage_record fetch
2289
+
2290
+ **Trunking**
2291
+ - Added cnam_lookup_enabled parameter to Trunk resource.
2292
+ - Added case-insensitivity for recording parameter to Trunk resource.
2293
+
2294
+
2295
+ [2018-05-11] Version 5.10.0
2296
+ ----------------------------
2297
+ **Chat**
2298
+ - Add Channel Webhooks resource
2299
+
2300
+ **Monitor**
2301
+ - Update event filtering to support date/time **(breaking change)**
2302
+
2303
+ **Wireless**
2304
+ - Updated `maturity` to `ga` for all wireless apis
2305
+
2306
+
2307
+ [2018-04-27] Version 5.9.0
2308
+ ---------------------------
2309
+ **Library**
2310
+ - PR #403: Adds frozen_string_literal magic comment. Thanks to @philnash!
2311
+
2312
+ **Video**
2313
+ - Redesign API by adding custom `VideoLayout` object. **(breaking change)**
2314
+
2315
+
2316
+ [2018-04-20] Version 5.8.1
2317
+ ---------------------------
2318
+ **Library**
2319
+ - PR #397: Uses Twilio::REST::RestError when a page fails to load. Thanks to @philnash!
2320
+
2321
+ **Twiml**
2322
+ - Gather input Enum: remove unnecessary "dtmf speech" value as you can now specify multiple enum values for this parameter and both "dtmf" and "speech" are already available.
2323
+
2324
+
2325
+ [2018-04-13] Version 5.8.0
2326
+ ---------------------------
2327
+ **Library**
2328
+ - PR #389: Add incoming.allow to AccessToken VoiceGrant. Thanks to @ryan-rowland!
2329
+ - PR #391: Improves error message for Twilio::REST::RestError. Thanks to @philnash!
2330
+
2331
+ **Lookups**
2332
+ - Disable support for `fraud` lookups **(breaking change)**
2333
+
2334
+ **Preview**
2335
+ - Support for Understand V2 APIs - renames various resources and adds new fields
2336
+
2337
+ **Studio**
2338
+ - Change parameters type from string to object in engagement resource
2339
+
2340
+ **Video**
2341
+ - [Recordings] Change `size` type to `long`. **(breaking change)**
2342
+
2343
+
2344
+ [2018-03-22] Version 5.7.2
2345
+ ---------------------------
2346
+ **Preview**
2347
+ - Add `BuildDuration` and `ErrorCode` to Understand ModelBuild
2348
+
2349
+ **Studio**
2350
+ - Add new /Context endpoint for step and engagement resources.
2351
+
2352
+
2353
+ [2018-03-09] Version 5.7.1
2354
+ ---------------------------
2355
+ **Api**
2356
+ - Add `caller_id` param to Outbound Calls API
2357
+ - Release `trim` recording Outbound Calls API functionality in helper libraries
2358
+
2359
+ **Video**
2360
+ - Add `room_sid` to Composition resource.
2361
+
2362
+ **Twiml**
2363
+ - Adds support for passing in multiple input type enums when setting `input` on `Gather`
2364
+
2365
+
2366
+ [2018-03-02] Version 5.7.0
2367
+ ---------------------------
2368
+ **TwiML**
2369
+ - Allow newlines in TwiML content. Better XML configuration in general.
2370
+
2371
+ **Studio**
2372
+ - Add new /Context endpoint for step and engagement resources. Removes the context property from existing step and engagement resources. *(breaking change)*
2373
+
2374
+
2375
+ [2018-02-23] Version 5.6.4
2376
+ ---------------------------
2377
+ **Library**
2378
+ - PR #385 - Fix ClientCapability appParams
2379
+
2380
+ **Api**
2381
+ - Add `trim` param to Outbound Calls API
2382
+
2383
+ **Lookups**
2384
+ - Add support for `fraud` lookup type
2385
+
2386
+ **Numbers**
2387
+ - Initial Release
2388
+
2389
+ **Video**
2390
+ - [composer] Add `SEQUENCE` value to available layouts, and `trim` and `reuse` params.
2391
+
2392
+
2393
+ [2018-02-09] Version 5.6.3
2394
+ ---------------------------
2395
+ **Api**
2396
+ - Add `AnnounceUrl` and `AnnounceMethod` params for conference announce
2397
+
2398
+ **Chat**
2399
+ - Add support to looking up user channels by identity in v1
2400
+
2401
+
2402
+ [2018-01-30] Version 5.6.2
2403
+ ---------------------------
2404
+ **Api**
2405
+ - Add `studio-engagements` usage key
2406
+
2407
+ **Preview**
2408
+ - Remove Studio Engagement Deletion
2409
+
2410
+ **Studio**
2411
+ - Initial Release
2412
+
2413
+ **Video**
2414
+ - [omit] Beta: Allow updates to `SubscribedTracks`.
2415
+ - Add `SubscribedTracks`.
2416
+ - Add track name to Video Recording resource
2417
+ - Add Composition and Composition Media resources
2418
+
2419
+
2420
+ [2018-01-22] Version 5.6.1
2421
+ ---------------------------
2422
+ **Api**
2423
+ - Add `conference_sid` property on Recordings
2424
+ - Add proxy and sms usage key
2425
+
2426
+ **Chat**
2427
+ - Make user channels accessible by identity
2428
+ - Add notifications logs flag parameter
2429
+
2430
+ **Fax**
2431
+ - Added `ttl` parameter
2432
+ `ttl` is the number of minutes a fax is considered valid.
2433
+
2434
+ **Preview**
2435
+ - Add `call_delay`, `extension`, `verification_code`, and `verification_call_sids`.
2436
+ - Add `failure_reason` to HostedNumberOrders.
2437
+ - Add DependentHostedNumberOrders endpoint for AuthorizationDocuments preview API.
2438
+
2439
+
2440
+ [2017-12-15] Version 5.6.0
2441
+ ---------------------------
2442
+ **Api**
2443
+ - Add `voip`, `national`, `shared_cost`, and `machine_to_machine` sub-resources to `/2010-04-01/Accounts/{AccountSid}/AvailablePhoneNumbers/{IsoCountryCode}/`
2444
+ - Add programmable video keys
2445
+
2446
+ **Preview**
2447
+ - Add `verification_type` and `verification_document_sid` to HostedNumberOrders.
2448
+
2449
+ **Proxy**
2450
+ - Fixed typo in session status enum value
2451
+
2452
+ **Twiml**
2453
+ - Fix Dial record property incorrectly typed as accepting TrimEnum values when it actually has its own enum of values. *(breaking change)*
2454
+ - Add `priority` and `timeout` properties to Task TwiML.
2455
+ - Add support for `recording_status_callback_event` for Dial verb and for Conference
2456
+
2457
+
2458
+ [2017-12-01] Version 5.5.1
2459
+ ---------------------------
2460
+ **Api**
2461
+ - Use the correct properties for Dependent Phone Numbers of an Address *(breaking change)*
2462
+ - Update Call Recordings with the correct properties
2463
+
2464
+ **Preview**
2465
+ - Add `status` and `email` query param filters for AuthorizationDocument list endpoint
2466
+
2467
+ **Proxy**
2468
+ - Added DELETE support to Interaction
2469
+ - Standardized enum values to dash-case
2470
+ - Rename Service#friendly_name to Service#unique_name
2471
+
2472
+ **Video**
2473
+ - Remove beta flag from `media_region` and `video_codecs`
2474
+
2475
+ **Wireless**
2476
+ - Bug fix: Changed `operator_mcc` and `operator_mnc` in `DataSessions` subresource from `integer` to `string`
2477
+
2478
+
2479
+ [2017-11-17] Version 5.5.0
2480
+ ---------------------------
2481
+ **Sync**
2482
+ - Add TTL support for Sync objects *(breaking change)*
2483
+ - The required `data` parameter on the following actions is now optional: "Update Document", "Update Map Item", "Update List Item"
2484
+ - New actions available for updating TTL of Sync objects: "Update List", "Update Map", "Update Stream"
2485
+
2486
+ **Video**
2487
+ - [bi] Rename `RoomParticipant` to `Participant`
2488
+ - Add Recording Settings resource
2489
+ - Expose EncryptionKey and MediaExternalLocation properties in Recording resource
2490
+
2491
+
2492
+ [2017-11-10] Version 5.4.5
2493
+ ---------------------------
2494
+ **Accounts**
2495
+ - Add AWS credential type
2496
+
2497
+ **Preview**
2498
+ - Removed `iso_country` as required field for creating a HostedNumberOrder.
2499
+
2500
+ **Proxy**
2501
+ - Added new fields to Service: geo_match_level, number_selection_behavior, intercept_callback_url, out_of_session_callback_url
2502
+
2503
+
2504
+ [2017-11-03] Version 5.4.4
2505
+ ---------------------------
2506
+ **Library**
2507
+ - PR #365: Fixed proxy interpolation. Thanks @ankane.
2508
+
2509
+ **Api**
2510
+ - Add programmable video keys
2511
+
2512
+ **Video**
2513
+ - Add `Participants`
2514
+
2515
+
2516
+ [2017-10-27] Version 5.4.3
2517
+ ---------------------------
2518
+ **Chat**
2519
+ - Add Binding resource
2520
+ - Add UserBinding resource
2521
+
2522
+
2523
+ [2017-10-20] Version 5.4.2
2524
+ ---------------------------
2525
+ **Library**
2526
+ - #360 Fix downcasing twiml parameters that are not snake_case
2527
+
2528
+ [2017-10-20] Version 5.4.1
2529
+ ---------------------------
2530
+ **Library**
2531
+ - #359 Correctly set headers on Twilio::Response
2532
+
2533
+ **Api**
2534
+ - Add `address_sid` param to IncomingPhoneNumbers create and update
2535
+ - Add 'fax_enabled' option for Phone Number Search
2536
+
2537
+
2538
+ [2017-10-13] Version 5.4.0
2539
+ ---------------------------
2540
+ **Api**
2541
+ - Add `smart_encoded` param for Messages
2542
+ - Add `identity_sid` param to IncomingPhoneNumbers create and update
2543
+
2544
+ **Preview**
2545
+ - Make 'address_sid' and 'email' optional fields when creating a HostedNumberOrder
2546
+ - Add AuthorizationDocuments preview API.
2547
+
2548
+ **Proxy**
2549
+ - Initial Release
2550
+
2551
+ **Wireless**
2552
+ - Added `ip_address` to sim resource
2553
+
2554
+
2555
+ [2017-10-06] Version 5.3.1
2556
+ ---------------------------
2557
+ **Preview**
2558
+ - Add `acc_security` (authy-phone-verification) initial api-definitions
2559
+
2560
+ **Taskrouter**
2561
+ - [bi] Less verbose naming of cumulative and real time statistics
2562
+
2563
+
2564
+ [2017-09-29] Version 5.3.0
2565
+ ---------------------------
2566
+ **Library**
2567
+ - Remove left over files from legacy 4.x library
2568
+
2569
+ **Chat**
2570
+ - Make member accessible through identity
2571
+ - Make channel subresources accessible by channel unique name
2572
+ - Set get list 'max_page_size' parameter to 100
2573
+ - Add service instance webhook retry configuration
2574
+ - Add media message capability
2575
+ - Make `body` an optional parameter on Message creation. *(breaking change)*
2576
+
2577
+ **Notify**
2578
+ - `data`, `apn`, `gcm`, `fcm`, `sms` parameters in `Notifications` create resource now accept objects (hashes) instead of strings. Passing manually stringified json will continue to work.
2579
+
2580
+ **Taskrouter**
2581
+ - Add new query ability by TaskChannelSid or TaskChannelUniqueName
2582
+ - Move Events, Worker, Workers endpoint over to CPR
2583
+ - Add new RealTime and Cumulative Statistics endpoints
2584
+
2585
+ **Video**
2586
+ - Create should allow an array of video_codecs.
2587
+ - Add video_codecs as a property of room to make it externally visible.
2588
+
2589
+
2590
+ [2017-09-15] Version 5.2.3
2591
+ ---------------------------
2592
+ **Api**
2593
+ - Add `sip_registration` property on SIP Domains
2594
+ - Add new video and market usage category keys
2595
+ - Add support for transferring IncomingPhoneNumbers between accounts.
2596
+
2597
+
2598
+ [2017-09-08] Version 5.2.2
2599
+ ---------------------------
2600
+ - Add configurable timeout to HttpClient
2601
+
2602
+ [2017-09-01] Version 5.2.1
2603
+ ---------------------------
2604
+ **Sync**
2605
+ - Add support for Streams
2606
+
2607
+ **Wireless**
2608
+ - Added DataSessions sub-resource to Sims.
2609
+
2610
+
2611
+ [2017-08-25] Version 5.2.0
2612
+ ---------------------------
2613
+ **Library**
2614
+ - Add `last_request`, `last_response` properties to http client for easier debugging.
2615
+ - Add `Request` class to abstract http client implementations.
2616
+ - Rename `TwilioResponse` to `Response` for consistency, deprecate `TwilioResponse` class.
2617
+ - Support libxml 2 and 3. Issue #315. Thanks @malmckay.
2618
+ - Add `inspect` methods to all classes. Thanks @malmckay.
2619
+
2620
+ **Api**
2621
+ - Update `status` enum for Recordings to include 'failed'
2622
+ - Add `error_code` property on Recordings
2623
+
2624
+ **Chat**
2625
+ - Add mutable parameters for channel, members and messages
2626
+
2627
+ **Video**
2628
+ - New `media_region` parameter when creating a room, which controls which region media will be served out of.
2629
+
2630
+
2631
+ [2017-08-18] Version 5.1.2
2632
+ ---------------------------
2633
+ **Api**
2634
+ - Add VoiceReceiveMode {'voice', 'fax'} option to IncomingPhoneNumber UPDATE requests
2635
+
2636
+ **Chat**
2637
+ - Add channel message media information
2638
+ - Add service instance message media information
2639
+
2640
+ **Preview**
2641
+ - Removed 'email' from bulk_exports configuration api [bi]. No migration plan needed because api has not been used yet.
2642
+ - Add DeployedDevices.
2643
+
2644
+ **Sync**
2645
+ - Add support for Service Instance unique names
2646
+
2647
+
2648
+ [2017-08-10] Version 5.1.1
2649
+ ---------------------------
2650
+ **Library**
2651
+ - Don't override Faraday default param encoder. Thanks to @isaacseymour. PR #309
2652
+ - Fix incorrectly aliased `to_xml` on TwiML classes. Thanks to @philnash. PR #318
2653
+ - Only define `to_s` on BaseJWT instead of subclasses. Thanks to @philnash. PR #321
2654
+ - Silence deprecation messages in testing. Thanks to @philnash. PR #323
2655
+
2656
+ **Api**
2657
+ - Add New wireless usage keys added
2658
+ - Add `auto_correct_address` param for Addresses create and update
2659
+
2660
+ **Video**
2661
+ - Add `video_codec` enum and `video_codecs` parameter, which can be set to either `VP8` or `H264` during room creation.
2662
+ - Restrict recordings page size to 100
2663
+
2664
+ **Chat**
2665
+ - Add ChatGrant to available access tokens.
2666
+ - Mark IpMessagingGrant as deprecated in favor of ChatGrant.
2667
+
2668
+
2669
+ [2017-07-27] Version 5.1.0
2670
+ ---------------------------
2671
+ This release adds Beta and Preview products to main artifact.
2672
+
2673
+ Previously, Beta and Preview products were only included in the alpha artifact.
2674
+ They are now being included in the main artifact to ease product
2675
+ discoverability and the collective operational overhead of maintaining multiple
2676
+ artifacts per library.
2677
+
2678
+ **Api**
2679
+ - Remove unused `encryption_type` property on Recordings *(breaking change)*
2680
+ - Update `status` enum for Messages to include 'accepted'
2681
+ - Update `AnnounceMethod` parameter naming for consistency
2682
+
2683
+ **Messaging**
2684
+ - Fix incorrectly typed capabilities property for PhoneNumbers.
2685
+
2686
+ **Notify**
2687
+ - Add `ToBinding` optional parameter on Notifications resource creation. Accepted values are json strings.
2688
+
2689
+ **Preview**
2690
+ - Add `sms_application_sid` to HostedNumberOrders.
2691
+ - Add `verification_attempts` to HostedNumberOrders.
2692
+
2693
+ **Taskrouter**
2694
+ - Fully support conference functionality in reservations.
2695
+
2696
+
2697
+ [2017-07-13] Version 5.0.0
2698
+ --------------------------------
2699
+ - Moving to General Availability
2700
+
2701
+ [2017-07-07] Version 5.0.0.rc26
2702
+ --------------------------------
2703
+ **Api**
2704
+ - [omit] Rachet /Keys and /SigningKeys
2705
+
2706
+ **Preview**
2707
+ - Add `status_callback_url` and `status_callback_method` to HostedNumberOrders.
2708
+
2709
+
2710
+ [2017-07-06] Version 5.0.0.rc25
2711
+ --------------------------------
2712
+ **Messaging**
2713
+ - Fix incorrectly typed capabilities property for PhoneNumbers.
2714
+
2715
+ **Notify**
2716
+ - Add `ToBinding` optional parameter on Notifications resource creation. Accepted values are json strings.
2717
+
2718
+ **Preview**
2719
+ - [omit] Enabled beta feature flag (api.vault.data-platform) for bulk_exports api
2720
+
2721
+ **Video**
2722
+ - Filter recordings by date using the parameters `DateCreatedAfter` and `DateCreatedBefore`.
2723
+ - Override the default time-to-live of a recording's media URL through the `Ttl` parameter (in seconds, default value is 3600).
2724
+ - Add query parameters `SourceSid`, `Status`, `DateCreatedAfter` and `DateCreatedBefore` to the convenience method for retrieving Room recordings.
2725
+
2726
+ **Wireless**
2727
+ - Added national and international data limits to the RatePlans resource.
2728
+
2729
+
2730
+ [2017-06-22] Version 5.0.0.rc24
2731
+ -------------------------------
2732
+ - Namespaced Policy, Grants, and Scope to their respective Token.
2733
+ - Added `announce_url` and `annouce_url_method` to Conference update.
2734
+ - Added `store_media` to Fax.
2735
+
2736
+ [2017-06-19] Version 5.0.0.rc23
2737
+ -------------------------------
2738
+ - Fixed ClientCapability parameter encoded bug.
2739
+ - Optional URL parameter for TwiML Play verb.
2740
+
2741
+ [2017-06-15] Version 5.0.0.rc22
2742
+ -------------------------------
2743
+ - Refactor JWT token constructors
2744
+
2745
+
2746
+ [2017-05-24] Version 5.0.0.rc21
2747
+ -------------------------------
2748
+ - Add HostedNumbers preview support.
2749
+ - Add Proxy preview support.
2750
+ - Add BulkExports preview support.
2751
+
2752
+ [2017-05-22] Version 5.0.0.rc20
2753
+ -------------------------------
2754
+ - Add Wireless Domain
2755
+ - Add Fax Domain
2756
+ - Add Video Domain
2757
+ - Updated Usage Trigger enums with missing categories.
2758
+ - Add `area_code_geomatch`, `validtiy_period`, `fallback_to_long_code` to Messaging Service
2759
+ - Converted `TwilioException` to `TwilioError`
2760
+
2761
+ [2017-04-27] Version 5.0.0.rc19
2762
+ -------------------------------
2763
+
2764
+ - Add chat v2.
2765
+ - Wireless rate plans updates.
2766
+ - Message `ValidityPeriod` parameter.
2767
+ - New Usage API categories.
2768
+
2769
+ Version 5.0.0.rc18
2770
+ -------------------------------
2771
+
2772
+ Release April 17, 2017
2773
+
2774
+ - Update VideoGrant access token to accept `room` instead of `configuration_profile_sid`
2775
+
2776
+ Version 5.0.0.rc16
2777
+ -------------------------------
2778
+
2779
+ Release September 1, 2016
2780
+
2781
+ - Add voice grant.
2782
+
2783
+ Version 5.0.0.rc8
2784
+ -------------
2785
+
2786
+ Release July 8, 2016
2787
+
2788
+ - Add SMS and Facebook Messenger for Notify
2789
+
2790
+ Version 5.0.0.rc7
2791
+ -------------
2792
+
2793
+ Release June 9, 2016
2794
+
2795
+ - Add messaging feedback support
2796
+
2797
+
2798
+ Version 5.0.0.rc5
2799
+ -------------
2800
+
2801
+ Release May 31, 2016
2802
+
2803
+ - Add preview.twilio.com/wireless support
2804
+
2805
+ Version 5.0.0.rc4
2806
+ -------------
2807
+
2808
+ Release March 28, 2016
2809
+
2810
+ - Add notifications.twilio.com subdomain
2811
+
2812
+ Version 5.0.0
2813
+ -------------
2814
+
2815
+ Release January 29, 2016
2816
+
2817
+ - First class paging support
2818
+ - Streaming auto-paging functionality
2819
+ - Separation between strict paging and streaming, with network-efficient defaults
2820
+ - Fully configurable and swappable HTTP Client interfaces
2821
+ - Normalization of mounts -> endpoints relations, with first-class unified support for subdomains and multi-version support
2822
+ - Fixed URL pathing of subresources, preventing edge case errors with path building via mounting
2823
+ - Proper serialization/deserialization of types (integers, dates, etc.)
2824
+
2825
+ Version 4.2.0
2826
+ -------------
2827
+
2828
+ Release May 19, 2015
2829
+
2830
+ - Add support for the beta field for IncomingPhoneNumbers and AvailablePhoneNumbers
2831
+
2832
+ Version 4.1.0
2833
+ -------------
2834
+
2835
+ Released May 7, 2015
2836
+
2837
+ - Add support for the new Monitor API
2838
+
2839
+ Version 4.0.1
2840
+ -------------
2841
+
2842
+ Released May 6, 2015
2843
+
2844
+ - Add support for the new Pricing API
2845
+
2846
+ Version 4.0.0
2847
+ -------------
2848
+
2849
+ Released April 16, 2015
2850
+
2851
+ - Remove support for total
2852
+ - Use configuration object instead of defaults hash for REST clients
2853
+ - Moves statistics from task router client to individual classes
2854
+ - Deprecates statistics methods on task router client
2855
+
2856
+ Version 3.16.1
2857
+ --------------
2858
+
2859
+ Released March 31, 2015
2860
+
2861
+ - Fix bug in PhoneNumbers resource
2862
+
2863
+ Version 3.16.0
2864
+ --------------
2865
+
2866
+ Released March 31, 2015
2867
+
2868
+ - Add support for new Twilio Lookups API
2869
+ - Update LICENSE wording
2870
+
2871
+ Version 3.15.2
2872
+ --------------
2873
+
2874
+ Released March 10, 2015
2875
+
2876
+ - Add missing documentation on TaskRouter client
2877
+
2878
+ Version 3.15.1
2879
+ --------------
2880
+
2881
+ Released February 18, 2015
2882
+
2883
+ - For real this time, add TaskRouterClient object and resources for new TaskRouter API
2884
+
2885
+ Version 3.15.0
2886
+ --------------
2887
+
2888
+ Released February 18, 2015
2889
+
2890
+ - Adds TaskRouterClient object and resources for new TaskRouter API
2891
+
2892
+ Version 3.14.5
2893
+ --------------
2894
+
2895
+ Released February 9, 2015
2896
+
2897
+ - Relaxes JWT gem version requirement
2898
+ - Adds Ruby 2.2.0 testing to TravisCI
2899
+
2900
+ Version 3.14.4
2901
+ --------------
2902
+
2903
+ Released January 8, 2015
2904
+
2905
+ - Feature: dynamically choose the auth token to validate requests with when using the TwilioWebhookAuthentication middleware.
2906
+ - Deprecation: The Twilio::REST::SMS::Message resource is deprecated.
2907
+ - More fixing of docs
2908
+
2909
+ Version 3.14.3
2910
+ --------------
2911
+
2912
+ Released January 8, 2015
2913
+
2914
+ - Fix nil error in RequestValidator middleware
2915
+ - Fix up docs
2916
+
2917
+ Version 3.14.2
2918
+ --------------
2919
+
2920
+ Released November 24, 2014
2921
+
2922
+ - Fixed incomplete token support
2923
+
2924
+ Version 3.14.1
2925
+ --------------
2926
+
2927
+ Released November 21, 2014
2928
+
2929
+ - Add support for the new Tokens endpoint
2930
+
2931
+ Version 3.14.0
2932
+ --------------
2933
+
2934
+ Released November 13, 2014
2935
+
2936
+ - Switch to a constant-time string comparison for TwiML request signature validation
2937
+ - Add support for Call and Message deletion/redaction
2938
+
2939
+ Version 3.13.1
2940
+ --------------
2941
+
2942
+ Released October 1, 2014
2943
+
2944
+ - Bump required version to 1.9.3
2945
+
2946
+ Version 3.13.0
2947
+ --------------
2948
+
2949
+ Released September 23, 2014
2950
+
2951
+ - Deprecates 1.8.7 support
2952
+ - Internal code style changes including:
2953
+ - change symbol hash syntax to Ruby 1.9 style
2954
+ - remove curly braces from hash arguments to methods
2955
+ - add spaces around curly braces in blocks
2956
+ - reduces all lines to less than 80 characters
2957
+
2958
+ Version 3.12.3
2959
+ --------------
2960
+
2961
+ Released September 23, 2014
2962
+
2963
+ - Added block configure syntax
2964
+
2965
+ Version 3.12.2
2966
+ --------------
2967
+
2968
+ Released August 29, 2014
2969
+
2970
+ - `client.account.{resource}` can now be accessed with `client.{resource}`
2971
+ - Many doc updates
2972
+
2973
+ Version 3.12.1
2974
+ --------------
2975
+
2976
+ Released August 26, 2014
2977
+
2978
+ - Add support for new call feedback endpoints
2979
+
2980
+ Version 3.12.0
2981
+ --------------
2982
+
2983
+ Released August 18, 2014
2984
+
2985
+ - Add Rack middleware for Twilio request-signature validation
2986
+ - Upgrade dependencies and clean up project files
2987
+ - Documentation fixes
2988
+ - Add `text` alias for `to_xml` method on TwiML generator objects
2989
+
2990
+ Version 3.11.6
2991
+ --------------
2992
+
2993
+ Released July 25, 2014
2994
+
2995
+ - Add #to_xml to TwiML Responses.
2996
+ - Updated test / development dependencies.
2997
+ - Updated to RSpec 3 syntax.
2998
+
2999
+ Version 3.11.5
3000
+ --------------
3001
+
3002
+ Released February 4, 2014
3003
+
3004
+ - Add bangs for twilify to indicate it's a dangerous operation.
3005
+ - Remove reference to deprecated OpenSSL Digest parameter.
3006
+ - Encode dates properly before passing them to the Twilio API.
3007
+
3008
+ Version 3.11.4
3009
+ --------------
3010
+
3011
+ Released October 21, 2013
3012
+
3013
+ - Add support for listing IncomingPhoneNumbers by type.
3014
+ - Add support for searching for mobile enabled numbers for
3015
+ both IncomingPhoneNumbers and AvailablePhoneNumbers.
3016
+
3017
+ Version 3.11.3
3018
+ --------------
3019
+
3020
+ Released October 15, 2013
3021
+
3022
+ - Restore support for versions of Ruby other than 2.0.0, which the
3023
+ previous release removed.
3024
+
3025
+ Version 3.11.2
3026
+
3027
+ Released October 15, 2013
3028
+
3029
+ - Restore ability of `sms.messages` to make requests to /SMS/Messages.
3030
+
3031
+ Version 3.11.1
3032
+ --------------
3033
+
3034
+ Released September 24, 2013
3035
+
3036
+ - Fix a bug causing request the new messages class to fail.
3037
+
3038
+ Version 3.11.0
3039
+ -------------
3040
+
3041
+ Released September 18, 2013
3042
+
3043
+ - Add MMS support.
3044
+ - Add SIP-In support.
3045
+ - Add docs.