twilio-ruby 4.6.1 → 6.9.0

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