twilio-ruby 5.74.4 → 7.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (769) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +1 -1
  3. data/.github/ISSUE_TEMPLATE/bug_report.yml +69 -0
  4. data/.github/workflows/test-and-deploy.yml +20 -2
  5. data/.gitignore +3 -0
  6. data/.rubocop.yml +1 -0
  7. data/CHANGES.md +1073 -0
  8. data/CONTRIBUTING.md +11 -9
  9. data/Dockerfile +2 -1
  10. data/Gemfile +5 -0
  11. data/LICENSE +1 -1
  12. data/Makefile +6 -0
  13. data/README.md +138 -40
  14. data/UPGRADE.md +21 -0
  15. data/advanced-examples/custom-http-client.md +170 -0
  16. data/cluster/cluster_oauth_spec.rb +19 -0
  17. data/cluster/cluster_orgs_spec.rb +40 -0
  18. data/cluster/cluster_spec.rb +75 -0
  19. data/examples/public_oauth.rb +13 -0
  20. data/lib/twilio-ruby/auth_strategy/auth_strategy.rb +19 -0
  21. data/lib/twilio-ruby/auth_strategy/no_auth_strategy.rb +17 -0
  22. data/lib/twilio-ruby/auth_strategy/token_auth_strategy.rb +39 -0
  23. data/lib/twilio-ruby/base/client_base.rb +131 -0
  24. data/lib/twilio-ruby/credential/auth_type.rb +17 -0
  25. data/lib/twilio-ruby/credential/client_credential_provider.rb +28 -0
  26. data/lib/twilio-ruby/credential/credential_provider.rb +11 -0
  27. data/lib/twilio-ruby/credential/orgs_credential_provider.rb +30 -0
  28. data/lib/twilio-ruby/framework/request.rb +8 -1
  29. data/lib/twilio-ruby/framework/rest/domain.rb +0 -1
  30. data/lib/twilio-ruby/framework/rest/error.rb +0 -12
  31. data/lib/twilio-ruby/framework/rest/page.rb +1 -0
  32. data/lib/twilio-ruby/http/client_token_manager.rb +28 -0
  33. data/lib/twilio-ruby/http/http_client.rb +22 -5
  34. data/lib/twilio-ruby/http/org_token_manager.rb +28 -0
  35. data/lib/twilio-ruby/jwt/access_token.rb +0 -59
  36. data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +205 -178
  37. data/lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb +137 -0
  38. data/lib/twilio-ruby/rest/accounts/v1/bulk_contacts.rb +137 -0
  39. data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +397 -332
  40. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +397 -332
  41. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +122 -114
  42. data/lib/twilio-ruby/rest/accounts/v1/safelist.rb +186 -0
  43. data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +225 -192
  44. data/lib/twilio-ruby/rest/accounts/v1.rb +63 -42
  45. data/lib/twilio-ruby/rest/accounts.rb +4 -34
  46. data/lib/twilio-ruby/rest/accounts_base.rb +38 -0
  47. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +374 -365
  48. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +583 -530
  49. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +641 -605
  50. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +323 -320
  51. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +398 -0
  52. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +398 -0
  53. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +398 -0
  54. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +398 -0
  55. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +398 -0
  56. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +398 -0
  57. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +398 -0
  58. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb +442 -0
  59. data/lib/twilio-ruby/rest/api/v2010/account/balance.rb +143 -118
  60. data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +206 -194
  61. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +410 -417
  62. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +302 -342
  63. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +520 -511
  64. data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +852 -641
  65. data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +852 -641
  66. data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +318 -0
  67. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb +163 -153
  68. data/lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message_subscription.rb +239 -240
  69. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +972 -1050
  70. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +685 -756
  71. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +471 -458
  72. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +505 -493
  73. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +446 -407
  74. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +330 -352
  75. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +416 -418
  76. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +546 -554
  77. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +546 -553
  78. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +546 -553
  79. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +867 -903
  80. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +355 -302
  81. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +174 -166
  82. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +354 -350
  83. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +644 -641
  84. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +164 -138
  85. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +164 -138
  86. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +410 -399
  87. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +388 -358
  88. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +356 -338
  89. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +452 -390
  90. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload/data.rb +204 -0
  91. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +393 -380
  92. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +382 -385
  93. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +378 -372
  94. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +521 -513
  95. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +433 -408
  96. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +355 -306
  97. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +401 -368
  98. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +425 -373
  99. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_credential_list_mapping.rb +366 -0
  100. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls/auth_calls_ip_access_control_list_mapping.rb +366 -0
  101. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_calls.rb +141 -0
  102. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations/auth_registrations_credential_list_mapping.rb +366 -0
  103. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_type_registrations.rb +127 -0
  104. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types.rb +95 -103
  105. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +359 -339
  106. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +359 -338
  107. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +675 -645
  108. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +438 -421
  109. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +425 -374
  110. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +142 -150
  111. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +178 -154
  112. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +378 -350
  113. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +318 -339
  114. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +318 -339
  115. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +318 -339
  116. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +318 -339
  117. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +318 -339
  118. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +318 -339
  119. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +318 -339
  120. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +318 -339
  121. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +385 -416
  122. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +511 -484
  123. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +113 -104
  124. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +179 -161
  125. data/lib/twilio-ruby/rest/api/v2010/account.rb +1001 -943
  126. data/lib/twilio-ruby/rest/api/v2010.rb +126 -148
  127. data/lib/twilio-ruby/rest/api.rb +25 -34
  128. data/lib/twilio-ruby/rest/api_base.rb +38 -0
  129. data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_knowledge.rb +371 -0
  130. data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_tool.rb +371 -0
  131. data/lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb +311 -0
  132. data/lib/twilio-ruby/rest/assistants/v1/assistant/message.rb +206 -0
  133. data/lib/twilio-ruby/rest/assistants/v1/assistant.rb +687 -0
  134. data/lib/twilio-ruby/rest/assistants/v1/knowledge/chunk.rb +232 -0
  135. data/lib/twilio-ruby/rest/assistants/v1/knowledge/knowledge_status.rb +213 -0
  136. data/lib/twilio-ruby/rest/assistants/v1/knowledge.rb +629 -0
  137. data/lib/twilio-ruby/rest/assistants/v1/policy.rb +267 -0
  138. data/lib/twilio-ruby/rest/assistants/v1/session/message.rb +267 -0
  139. data/lib/twilio-ruby/rest/assistants/v1/session.rb +335 -0
  140. data/lib/twilio-ruby/rest/assistants/v1/tool.rb +605 -0
  141. data/lib/twilio-ruby/rest/assistants/v1.rb +100 -0
  142. data/lib/twilio-ruby/rest/assistants.rb +6 -0
  143. data/lib/twilio-ruby/rest/assistants_base.rb +38 -0
  144. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +309 -279
  145. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +308 -279
  146. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +282 -248
  147. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +253 -235
  148. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +256 -216
  149. data/lib/twilio-ruby/rest/bulkexports/v1.rb +57 -55
  150. data/lib/twilio-ruby/rest/bulkexports.rb +3 -34
  151. data/lib/twilio-ruby/rest/bulkexports_base.rb +38 -0
  152. data/lib/twilio-ruby/rest/chat/v1/credential.rb +445 -403
  153. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +394 -391
  154. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +448 -440
  155. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +464 -437
  156. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +560 -515
  157. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +422 -367
  158. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +248 -239
  159. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +491 -440
  160. data/lib/twilio-ruby/rest/chat/v1/service.rb +887 -894
  161. data/lib/twilio-ruby/rest/chat/v1.rb +57 -55
  162. data/lib/twilio-ruby/rest/chat/v2/credential.rb +445 -401
  163. data/lib/twilio-ruby/rest/chat/v2/service/binding.rb +385 -370
  164. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +394 -386
  165. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +509 -527
  166. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +536 -533
  167. data/lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb +466 -467
  168. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +629 -605
  169. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +422 -369
  170. data/lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb +378 -381
  171. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +425 -419
  172. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +533 -491
  173. data/lib/twilio-ruby/rest/chat/v2/service.rb +790 -778
  174. data/lib/twilio-ruby/rest/chat/v2.rb +57 -53
  175. data/lib/twilio-ruby/rest/chat/v3/channel.rb +295 -267
  176. data/lib/twilio-ruby/rest/chat/v3.rb +64 -41
  177. data/lib/twilio-ruby/rest/chat.rb +4 -48
  178. data/lib/twilio-ruby/rest/chat_base.rb +48 -0
  179. data/lib/twilio-ruby/rest/client.rb +333 -584
  180. data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +190 -0
  181. data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +206 -188
  182. data/lib/twilio-ruby/rest/content/v1/content.rb +964 -336
  183. data/lib/twilio-ruby/rest/content/v1/content_and_approvals.rb +255 -0
  184. data/lib/twilio-ruby/rest/content/v1/legacy_content.rb +261 -246
  185. data/lib/twilio-ruby/rest/content/v1.rb +54 -45
  186. data/lib/twilio-ruby/rest/content/v2/content.rb +319 -0
  187. data/lib/twilio-ruby/rest/content/v2/content_and_approvals.rb +312 -0
  188. data/lib/twilio-ruby/rest/content/v2.rb +46 -0
  189. data/lib/twilio-ruby/rest/content.rb +2 -40
  190. data/lib/twilio-ruby/rest/content_base.rb +43 -0
  191. data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +498 -444
  192. data/lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb +267 -227
  193. data/lib/twilio-ruby/rest/conversations/v1/configuration.rb +292 -252
  194. data/lib/twilio-ruby/rest/conversations/v1/conversation/message/delivery_receipt.rb +344 -344
  195. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +560 -510
  196. data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +521 -495
  197. data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +451 -403
  198. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +643 -552
  199. data/lib/twilio-ruby/rest/conversations/v1/conversation_with_participants.rb +263 -0
  200. data/lib/twilio-ruby/rest/conversations/v1/credential.rb +451 -409
  201. data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +308 -304
  202. data/lib/twilio-ruby/rest/conversations/v1/role.rb +410 -356
  203. data/lib/twilio-ruby/rest/conversations/v1/service/binding.rb +378 -373
  204. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +313 -289
  205. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +259 -235
  206. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +320 -279
  207. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb +351 -371
  208. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +567 -550
  209. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb +530 -530
  210. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb +460 -438
  211. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +655 -588
  212. data/lib/twilio-ruby/rest/conversations/v1/service/conversation_with_participants.rb +269 -0
  213. data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +314 -317
  214. data/lib/twilio-ruby/rest/conversations/v1/service/role.rb +422 -380
  215. data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +466 -455
  216. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +507 -474
  217. data/lib/twilio-ruby/rest/conversations/v1/service.rb +515 -447
  218. data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +465 -435
  219. data/lib/twilio-ruby/rest/conversations/v1/user.rb +495 -441
  220. data/lib/twilio-ruby/rest/conversations/v1.rb +135 -136
  221. data/lib/twilio-ruby/rest/conversations.rb +9 -34
  222. data/lib/twilio-ruby/rest/conversations_base.rb +38 -0
  223. data/lib/twilio-ruby/rest/events/v1/event_type.rb +326 -288
  224. data/lib/twilio-ruby/rest/events/v1/schema/schema_version.rb +309 -0
  225. data/lib/twilio-ruby/rest/events/v1/schema.rb +234 -218
  226. data/lib/twilio-ruby/rest/events/v1/sink/sink_test.rb +121 -100
  227. data/lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb +127 -103
  228. data/lib/twilio-ruby/rest/events/v1/sink.rb +460 -408
  229. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +391 -339
  230. data/lib/twilio-ruby/rest/events/v1/subscription.rb +436 -387
  231. data/lib/twilio-ruby/rest/events/v1.rb +87 -87
  232. data/lib/twilio-ruby/rest/events.rb +5 -34
  233. data/lib/twilio-ruby/rest/events_base.rb +38 -0
  234. data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +452 -301
  235. data/lib/twilio-ruby/rest/flex_api/v1/channel.rb +385 -330
  236. data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +555 -496
  237. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +589 -570
  238. data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +328 -306
  239. data/lib/twilio-ruby/rest/flex_api/v1/insights_conversations.rb +232 -0
  240. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires.rb +452 -384
  241. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_category.rb +363 -303
  242. data/lib/twilio-ruby/rest/flex_api/v1/insights_questionnaires_question.rb +448 -380
  243. data/lib/twilio-ruby/rest/flex_api/v1/insights_segments.rb +355 -403
  244. data/lib/twilio-ruby/rest/flex_api/v1/insights_session.rb +213 -190
  245. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answer_sets.rb +161 -0
  246. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb +141 -124
  247. data/lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb +192 -166
  248. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +252 -227
  249. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +354 -319
  250. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_transfer.rb +352 -0
  251. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +442 -398
  252. data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +321 -225
  253. data/lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb +408 -0
  254. data/lib/twilio-ruby/rest/flex_api/v1/plugin.rb +461 -0
  255. data/lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb +251 -0
  256. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration/configured_plugin.rb +400 -0
  257. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration.rb +397 -0
  258. data/lib/twilio-ruby/rest/flex_api/v1/plugin_configuration_archive.rb +237 -0
  259. data/lib/twilio-ruby/rest/flex_api/v1/plugin_release.rb +343 -0
  260. data/lib/twilio-ruby/rest/flex_api/v1/plugin_version_archive.rb +260 -0
  261. data/lib/twilio-ruby/rest/flex_api/v1/provisioning_status.rb +192 -0
  262. data/lib/twilio-ruby/rest/flex_api/v1/web_channel.rb +404 -331
  263. data/lib/twilio-ruby/rest/flex_api/v1.rb +313 -207
  264. data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +339 -0
  265. data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +152 -127
  266. data/lib/twilio-ruby/rest/flex_api/v2.rb +70 -28
  267. data/lib/twilio-ruby/rest/flex_api.rb +21 -111
  268. data/lib/twilio-ruby/rest/flex_api_base.rb +43 -0
  269. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +255 -227
  270. data/lib/twilio-ruby/rest/frontline_api/v1.rb +42 -38
  271. data/lib/twilio-ruby/rest/frontline_api.rb +2 -34
  272. data/lib/twilio-ruby/rest/frontline_api_base.rb +38 -0
  273. data/lib/twilio-ruby/rest/iam/v1/api_key.rb +280 -0
  274. data/lib/twilio-ruby/rest/iam/v1/get_api_keys.rb +233 -0
  275. data/lib/twilio-ruby/rest/iam/v1/new_api_key.rb +181 -0
  276. data/lib/twilio-ruby/rest/iam/v1/token.rb +186 -0
  277. data/lib/twilio-ruby/rest/iam/v1.rb +67 -0
  278. data/lib/twilio-ruby/rest/iam.rb +6 -0
  279. data/lib/twilio-ruby/rest/iam_base.rb +38 -0
  280. data/lib/twilio-ruby/rest/insights/v1/call/annotation.rb +323 -315
  281. data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +357 -0
  282. data/lib/twilio-ruby/rest/insights/v1/call/event.rb +273 -255
  283. data/lib/twilio-ruby/rest/insights/v1/call/metric.rb +245 -225
  284. data/lib/twilio-ruby/rest/insights/v1/call.rb +267 -236
  285. data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +561 -433
  286. data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +491 -467
  287. data/lib/twilio-ruby/rest/insights/v1/conference.rb +505 -502
  288. data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +386 -371
  289. data/lib/twilio-ruby/rest/insights/v1/room.rb +498 -489
  290. data/lib/twilio-ruby/rest/insights/v1/setting.rb +257 -205
  291. data/lib/twilio-ruby/rest/insights/v1.rb +84 -83
  292. data/lib/twilio-ruby/rest/insights.rb +6 -34
  293. data/lib/twilio-ruby/rest/insights_base.rb +38 -0
  294. data/lib/twilio-ruby/rest/intelligence/v2/custom_operator.rb +464 -0
  295. data/lib/twilio-ruby/rest/intelligence/v2/operator.rb +363 -0
  296. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachment.rb +223 -0
  297. data/lib/twilio-ruby/rest/intelligence/v2/operator_attachments.rb +201 -0
  298. data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +365 -0
  299. data/lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb +363 -0
  300. data/lib/twilio-ruby/rest/intelligence/v2/service.rb +534 -0
  301. data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +231 -0
  302. data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +403 -0
  303. data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +265 -0
  304. data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +538 -0
  305. data/lib/twilio-ruby/rest/intelligence/v2.rb +176 -0
  306. data/lib/twilio-ruby/rest/intelligence.rb +6 -0
  307. data/lib/twilio-ruby/rest/intelligence_base.rb +38 -0
  308. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +445 -364
  309. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +394 -359
  310. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +448 -397
  311. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +464 -409
  312. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +560 -488
  313. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +422 -347
  314. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +248 -233
  315. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +491 -418
  316. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +887 -779
  317. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +57 -53
  318. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +445 -364
  319. data/lib/twilio-ruby/rest/ip_messaging/v2/service/binding.rb +385 -343
  320. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +394 -359
  321. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +509 -451
  322. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +536 -479
  323. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/webhook.rb +466 -411
  324. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +629 -555
  325. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +422 -347
  326. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb +378 -351
  327. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +417 -384
  328. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +533 -467
  329. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +790 -689
  330. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +57 -53
  331. data/lib/twilio-ruby/rest/ip_messaging.rb +3 -41
  332. data/lib/twilio-ruby/rest/ip_messaging_base.rb +43 -0
  333. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +248 -237
  334. data/lib/twilio-ruby/rest/lookups/v1.rb +42 -39
  335. data/lib/twilio-ruby/rest/lookups/v2/bucket.rb +315 -0
  336. data/lib/twilio-ruby/rest/lookups/v2/lookup_override.rb +390 -0
  337. data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +386 -342
  338. data/lib/twilio-ruby/rest/lookups/v2/query.rb +456 -0
  339. data/lib/twilio-ruby/rest/lookups/v2/rate_limit.rb +136 -0
  340. data/lib/twilio-ruby/rest/lookups/v2.rb +128 -38
  341. data/lib/twilio-ruby/rest/lookups.rb +2 -41
  342. data/lib/twilio-ruby/rest/lookups_base.rb +43 -0
  343. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on/available_add_on_extension.rb +316 -0
  344. data/lib/twilio-ruby/rest/marketplace/v1/available_add_on.rb +343 -0
  345. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_extension.rb +363 -0
  346. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +162 -0
  347. data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on.rb +482 -0
  348. data/lib/twilio-ruby/rest/marketplace/v1/module_data.rb +221 -0
  349. data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +325 -0
  350. data/lib/twilio-ruby/rest/marketplace/v1/referral_conversion.rb +146 -0
  351. data/lib/twilio-ruby/rest/marketplace/v1.rb +91 -0
  352. data/lib/twilio-ruby/rest/marketplace.rb +6 -0
  353. data/lib/twilio-ruby/rest/marketplace_base.rb +38 -0
  354. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +143 -0
  355. data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +372 -346
  356. data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +532 -443
  357. data/lib/twilio-ruby/rest/messaging/v1/deactivations.rb +196 -0
  358. data/lib/twilio-ruby/rest/messaging/v1/domain_certs.rb +295 -0
  359. data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +292 -259
  360. data/lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb +243 -0
  361. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +165 -144
  362. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb +223 -0
  363. data/lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb +201 -0
  364. data/lib/twilio-ruby/rest/messaging/v1/request_managed_cert.rb +243 -0
  365. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +369 -335
  366. data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +383 -0
  367. data/lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb +392 -0
  368. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +376 -341
  369. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +376 -336
  370. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +630 -521
  371. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +128 -115
  372. data/lib/twilio-ruby/rest/messaging/v1/service.rb +818 -763
  373. data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +810 -699
  374. data/lib/twilio-ruby/rest/messaging/v1/usecase.rb +113 -94
  375. data/lib/twilio-ruby/rest/messaging/v1.rb +202 -124
  376. data/lib/twilio-ruby/rest/messaging/v2/channels_sender.rb +769 -0
  377. data/lib/twilio-ruby/rest/messaging/v2.rb +49 -0
  378. data/lib/twilio-ruby/rest/messaging.rb +10 -35
  379. data/lib/twilio-ruby/rest/messaging_base.rb +43 -0
  380. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +408 -395
  381. data/lib/twilio-ruby/rest/monitor/v1/event.rb +391 -390
  382. data/lib/twilio-ruby/rest/monitor/v1.rb +57 -53
  383. data/lib/twilio-ruby/rest/monitor.rb +3 -34
  384. data/lib/twilio-ruby/rest/monitor_base.rb +38 -0
  385. data/lib/twilio-ruby/rest/notify/v1/credential.rb +445 -408
  386. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +455 -452
  387. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +320 -362
  388. data/lib/twilio-ruby/rest/notify/v1/service.rb +650 -622
  389. data/lib/twilio-ruby/rest/notify/v1.rb +57 -55
  390. data/lib/twilio-ruby/rest/notify.rb +3 -34
  391. data/lib/twilio-ruby/rest/notify_base.rb +38 -0
  392. data/lib/twilio-ruby/rest/numbers/v1/bulk_eligibility.rb +249 -0
  393. data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +132 -0
  394. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +325 -0
  395. data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +328 -0
  396. data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +260 -0
  397. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +153 -0
  398. data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +170 -0
  399. data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +280 -0
  400. data/lib/twilio-ruby/rest/numbers/v1/webhook.rb +165 -0
  401. data/lib/twilio-ruby/rest/numbers/v1.rb +155 -0
  402. data/lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb +347 -0
  403. data/lib/twilio-ruby/rest/numbers/v2/authorization_document.rb +421 -0
  404. data/lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb +274 -0
  405. data/lib/twilio-ruby/rest/numbers/v2/bundle_clone.rb +281 -0
  406. data/lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb +613 -0
  407. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +288 -261
  408. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb +340 -298
  409. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb +353 -309
  410. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +201 -181
  411. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +630 -607
  412. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb +417 -351
  413. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb +300 -266
  414. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +349 -307
  415. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +445 -371
  416. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb +300 -266
  417. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb +178 -181
  418. data/lib/twilio-ruby/rest/numbers/v2.rb +93 -28
  419. data/lib/twilio-ruby/rest/numbers.rb +2 -34
  420. data/lib/twilio-ruby/rest/numbers_base.rb +43 -0
  421. data/lib/twilio-ruby/rest/oauth/v1/authorize.rb +148 -0
  422. data/lib/twilio-ruby/rest/oauth/v1/token.rb +180 -151
  423. data/lib/twilio-ruby/rest/oauth/v1.rb +39 -56
  424. data/lib/twilio-ruby/rest/oauth.rb +3 -65
  425. data/lib/twilio-ruby/rest/oauth_base.rb +38 -0
  426. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document/dependent_hosted_number_order.rb +374 -396
  427. data/lib/twilio-ruby/rest/preview/hosted_numbers/authorization_document.rb +466 -446
  428. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +634 -625
  429. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +57 -55
  430. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +309 -298
  431. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +333 -309
  432. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +356 -330
  433. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +453 -398
  434. data/lib/twilio-ruby/rest/preview/marketplace.rb +57 -53
  435. data/lib/twilio-ruby/rest/preview/wireless/command.rb +401 -364
  436. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +472 -398
  437. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +237 -205
  438. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +588 -523
  439. data/lib/twilio-ruby/rest/preview/wireless.rb +72 -69
  440. data/lib/twilio-ruby/rest/preview.rb +10 -87
  441. data/lib/twilio-ruby/rest/preview_base.rb +48 -0
  442. data/lib/twilio-ruby/rest/preview_iam/v1/authorize.rb +148 -0
  443. data/lib/twilio-ruby/rest/preview_iam/v1/token.rb +186 -0
  444. data/lib/twilio-ruby/rest/preview_iam/v1.rb +46 -0
  445. data/lib/twilio-ruby/rest/preview_iam/versionless/organization/account.rb +309 -0
  446. data/lib/twilio-ruby/rest/preview_iam/versionless/organization/role_assignment.rb +375 -0
  447. data/lib/twilio-ruby/rest/preview_iam/versionless/organization/user.rb +530 -0
  448. data/lib/twilio-ruby/rest/preview_iam/versionless/organization.rb +277 -0
  449. data/lib/twilio-ruby/rest/preview_iam/versionless.rb +49 -0
  450. data/lib/twilio-ruby/rest/preview_iam.rb +9 -0
  451. data/lib/twilio-ruby/rest/preview_iam_base.rb +38 -0
  452. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +307 -275
  453. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +108 -119
  454. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +300 -268
  455. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +108 -119
  456. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +307 -275
  457. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +227 -197
  458. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +122 -135
  459. data/lib/twilio-ruby/rest/pricing/v1.rb +45 -42
  460. data/lib/twilio-ruby/rest/pricing/v2/country.rb +299 -270
  461. data/lib/twilio-ruby/rest/pricing/v2/number.rb +239 -217
  462. data/lib/twilio-ruby/rest/pricing/v2/voice/country.rb +307 -275
  463. data/lib/twilio-ruby/rest/pricing/v2/voice/number.rb +245 -220
  464. data/lib/twilio-ruby/rest/pricing/v2/voice.rb +122 -138
  465. data/lib/twilio-ruby/rest/pricing/v2.rb +63 -65
  466. data/lib/twilio-ruby/rest/pricing.rb +6 -41
  467. data/lib/twilio-ruby/rest/pricing_base.rb +43 -0
  468. data/lib/twilio-ruby/rest/proxy/v1/service/phone_number.rb +443 -403
  469. data/lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb +420 -418
  470. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant/message_interaction.rb +444 -449
  471. data/lib/twilio-ruby/rest/proxy/v1/service/session/participant.rb +439 -442
  472. data/lib/twilio-ruby/rest/proxy/v1/service/session.rb +546 -506
  473. data/lib/twilio-ruby/rest/proxy/v1/service.rb +556 -596
  474. data/lib/twilio-ruby/rest/proxy/v1.rb +42 -38
  475. data/lib/twilio-ruby/rest/proxy.rb +2 -34
  476. data/lib/twilio-ruby/rest/proxy_base.rb +38 -0
  477. data/lib/twilio-ruby/rest/routes/v2/phone_number.rb +273 -227
  478. data/lib/twilio-ruby/rest/routes/v2/sip_domain.rb +273 -223
  479. data/lib/twilio-ruby/rest/routes/v2/trunk.rb +273 -227
  480. data/lib/twilio-ruby/rest/routes/v2.rb +72 -69
  481. data/lib/twilio-ruby/rest/routes.rb +4 -34
  482. data/lib/twilio-ruby/rest/routes_base.rb +38 -0
  483. data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +323 -323
  484. data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +436 -380
  485. data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +213 -208
  486. data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +425 -384
  487. data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +353 -338
  488. data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +369 -383
  489. data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +427 -396
  490. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +474 -447
  491. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +228 -234
  492. data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +350 -353
  493. data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +436 -380
  494. data/lib/twilio-ruby/rest/serverless/v1/service.rb +547 -493
  495. data/lib/twilio-ruby/rest/serverless/v1.rb +42 -37
  496. data/lib/twilio-ruby/rest/serverless.rb +2 -34
  497. data/lib/twilio-ruby/rest/serverless_base.rb +38 -0
  498. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb +213 -199
  499. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step/step_context.rb +228 -218
  500. data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +378 -355
  501. data/lib/twilio-ruby/rest/studio/v1/flow/engagement.rb +442 -394
  502. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_context.rb +213 -200
  503. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step/execution_step_context.rb +228 -221
  504. data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +378 -361
  505. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +494 -449
  506. data/lib/twilio-ruby/rest/studio/v1/flow.rb +394 -355
  507. data/lib/twilio-ruby/rest/studio/v1.rb +42 -37
  508. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb +213 -200
  509. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step/execution_step_context.rb +228 -221
  510. data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +378 -361
  511. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +487 -442
  512. data/lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb +351 -320
  513. data/lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb +245 -0
  514. data/lib/twilio-ruby/rest/studio/v2/flow.rb +545 -472
  515. data/lib/twilio-ruby/rest/studio/v2/flow_validate.rb +128 -99
  516. data/lib/twilio-ruby/rest/studio/v2.rb +48 -44
  517. data/lib/twilio-ruby/rest/studio.rb +3 -41
  518. data/lib/twilio-ruby/rest/studio_base.rb +43 -0
  519. data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +407 -362
  520. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +492 -483
  521. data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +412 -409
  522. data/lib/twilio-ruby/rest/supersim/v1/network.rb +310 -297
  523. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb +355 -332
  524. data/lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb +400 -351
  525. data/lib/twilio-ruby/rest/supersim/v1/settings_update.rb +250 -237
  526. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +246 -224
  527. data/lib/twilio-ruby/rest/supersim/v1/sim/sim_ip_address.rb +204 -188
  528. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +480 -453
  529. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +372 -361
  530. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +309 -344
  531. data/lib/twilio-ruby/rest/supersim/v1.rb +144 -147
  532. data/lib/twilio-ruby/rest/supersim.rb +10 -34
  533. data/lib/twilio-ruby/rest/supersim_base.rb +38 -0
  534. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +396 -371
  535. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +481 -423
  536. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +490 -490
  537. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +396 -370
  538. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +496 -445
  539. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +493 -495
  540. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +396 -368
  541. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +496 -444
  542. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream/stream_message.rb +146 -132
  543. data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +445 -400
  544. data/lib/twilio-ruby/rest/sync/v1/service.rb +601 -567
  545. data/lib/twilio-ruby/rest/sync/v1.rb +42 -37
  546. data/lib/twilio-ruby/rest/sync.rb +2 -34
  547. data/lib/twilio-ruby/rest/sync_base.rb +38 -0
  548. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +431 -395
  549. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +452 -464
  550. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +720 -749
  551. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +676 -661
  552. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +435 -382
  553. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_bulk_real_time_statistics.rb +168 -0
  554. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +366 -369
  555. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +286 -275
  556. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +237 -236
  557. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +243 -258
  558. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +600 -572
  559. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +702 -732
  560. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +405 -388
  561. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +242 -239
  562. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_cumulative_statistics.rb +288 -265
  563. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_real_time_statistics.rb +222 -193
  564. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +258 -234
  565. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +647 -637
  566. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +366 -375
  567. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_real_time_statistics.rb +252 -241
  568. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +237 -244
  569. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +549 -510
  570. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +360 -356
  571. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_real_time_statistics.rb +238 -206
  572. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +248 -234
  573. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +746 -730
  574. data/lib/twilio-ruby/rest/taskrouter/v1.rb +42 -37
  575. data/lib/twilio-ruby/rest/taskrouter.rb +2 -34
  576. data/lib/twilio-ruby/rest/taskrouter_base.rb +38 -0
  577. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +362 -320
  578. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +362 -317
  579. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +466 -419
  580. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +495 -451
  581. data/lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb +237 -191
  582. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +656 -630
  583. data/lib/twilio-ruby/rest/trunking/v1.rb +42 -38
  584. data/lib/twilio-ruby/rest/trunking.rb +2 -34
  585. data/lib/twilio-ruby/rest/trunking_base.rb +38 -0
  586. data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +257 -0
  587. data/lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb +365 -0
  588. data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +224 -0
  589. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb +377 -352
  590. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb +361 -323
  591. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb +349 -321
  592. data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb +558 -513
  593. data/lib/twilio-ruby/rest/trusthub/v1/end_user.rb +409 -346
  594. data/lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb +292 -261
  595. data/lib/twilio-ruby/rest/trusthub/v1/policies.rb +285 -252
  596. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document.rb +423 -359
  597. data/lib/twilio-ruby/rest/trusthub/v1/supporting_document_type.rb +292 -261
  598. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb +377 -352
  599. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb +361 -323
  600. data/lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb +349 -321
  601. data/lib/twilio-ruby/rest/trusthub/v1/trust_products.rb +558 -513
  602. data/lib/twilio-ruby/rest/trusthub/v1.rb +168 -139
  603. data/lib/twilio-ruby/rest/trusthub.rb +8 -34
  604. data/lib/twilio-ruby/rest/trusthub_base.rb +38 -0
  605. data/lib/twilio-ruby/rest/verify/v2/form.rb +200 -183
  606. data/lib/twilio-ruby/rest/verify/v2/safelist.rb +238 -207
  607. data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +285 -254
  608. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +198 -192
  609. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +518 -531
  610. data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +467 -453
  611. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +263 -283
  612. data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +442 -414
  613. data/lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb +405 -363
  614. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb +427 -388
  615. data/lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb +446 -384
  616. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +402 -371
  617. data/lib/twilio-ruby/rest/verify/v2/service/verification_check.rb +228 -205
  618. data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +473 -412
  619. data/lib/twilio-ruby/rest/verify/v2/service.rb +876 -780
  620. data/lib/twilio-ruby/rest/verify/v2/template.rb +225 -205
  621. data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +382 -387
  622. data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +246 -226
  623. data/lib/twilio-ruby/rest/verify/v2.rb +99 -103
  624. data/lib/twilio-ruby/rest/verify.rb +7 -34
  625. data/lib/twilio-ruby/rest/verify_base.rb +38 -0
  626. data/lib/twilio-ruby/rest/video/v1/composition.rb +497 -507
  627. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +551 -647
  628. data/lib/twilio-ruby/rest/video/v1/composition_settings.rb +294 -261
  629. data/lib/twilio-ruby/rest/video/v1/recording.rb +440 -426
  630. data/lib/twilio-ruby/rest/video/v1/recording_settings.rb +294 -261
  631. data/lib/twilio-ruby/rest/video/v1/room/participant/anonymize.rb +266 -0
  632. data/lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb +341 -0
  633. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribe_rules.rb +194 -0
  634. data/lib/twilio-ruby/rest/video/v1/room/participant/subscribed_track.rb +348 -0
  635. data/lib/twilio-ruby/rest/video/v1/room/participant.rb +514 -0
  636. data/lib/twilio-ruby/rest/video/v1/room/recording_rules.rb +183 -0
  637. data/lib/twilio-ruby/rest/video/v1/room/room_recording.rb +437 -0
  638. data/lib/twilio-ruby/rest/video/v1/room/transcriptions.rb +417 -0
  639. data/lib/twilio-ruby/rest/video/v1/room.rb +661 -602
  640. data/lib/twilio-ruby/rest/video/v1.rb +99 -99
  641. data/lib/twilio-ruby/rest/video.rb +7 -34
  642. data/lib/twilio-ruby/rest/video_base.rb +38 -0
  643. data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +163 -176
  644. data/lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb +527 -486
  645. data/lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb +466 -434
  646. data/lib/twilio-ruby/rest/voice/v1/connection_policy.rb +417 -352
  647. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/bulk_country_update.rb +142 -121
  648. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country/highrisk_special_prefix.rb +199 -183
  649. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/country.rb +383 -397
  650. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb +228 -190
  651. data/lib/twilio-ruby/rest/voice/v1/dialing_permissions.rb +123 -121
  652. data/lib/twilio-ruby/rest/voice/v1/ip_record.rb +403 -339
  653. data/lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb +386 -319
  654. data/lib/twilio-ruby/rest/voice/v1.rb +130 -117
  655. data/lib/twilio-ruby/rest/voice.rb +7 -34
  656. data/lib/twilio-ruby/rest/voice_base.rb +33 -0
  657. data/lib/twilio-ruby/rest/wireless/v1/command.rb +428 -406
  658. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +492 -436
  659. data/lib/twilio-ruby/rest/wireless/v1/sim/data_session.rb +302 -284
  660. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +243 -243
  661. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +654 -647
  662. data/lib/twilio-ruby/rest/wireless/v1/usage_record.rb +230 -221
  663. data/lib/twilio-ruby/rest/wireless/v1.rb +78 -76
  664. data/lib/twilio-ruby/rest/wireless.rb +5 -34
  665. data/lib/twilio-ruby/rest/wireless_base.rb +38 -0
  666. data/lib/twilio-ruby/rest.rb +1 -0
  667. data/lib/twilio-ruby/twiml/messaging_response.rb +1 -1
  668. data/lib/twilio-ruby/twiml/voice_response.rb +263 -20
  669. data/lib/twilio-ruby/version.rb +1 -1
  670. data/sonar-project.properties +1 -1
  671. data/twilio-ruby.gemspec +3 -2
  672. metadata +201 -108
  673. data/conf/cacert.pem +0 -3376
  674. data/lib/twilio-ruby/framework/twilio_response.rb +0 -19
  675. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +0 -500
  676. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb +0 -500
  677. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +0 -500
  678. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb +0 -500
  679. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb +0 -500
  680. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +0 -500
  681. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb +0 -500
  682. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +0 -464
  683. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +0 -301
  684. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +0 -314
  685. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_credential_list_mapping.rb +0 -348
  686. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping/auth_calls_ip_access_control_list_mapping.rb +0 -348
  687. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_calls_mapping.rb +0 -163
  688. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping/auth_registrations_credential_list_mapping.rb +0 -348
  689. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/auth_types/auth_registrations_mapping.rb +0 -137
  690. data/lib/twilio-ruby/rest/autopilot/v1/assistant/defaults.rb +0 -220
  691. data/lib/twilio-ruby/rest/autopilot/v1/assistant/dialogue.rb +0 -214
  692. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb +0 -399
  693. data/lib/twilio-ruby/rest/autopilot/v1/assistant/field_type.rb +0 -418
  694. data/lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb +0 -392
  695. data/lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb +0 -469
  696. data/lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb +0 -218
  697. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb +0 -386
  698. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb +0 -456
  699. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_actions.rb +0 -255
  700. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb +0 -237
  701. data/lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb +0 -507
  702. data/lib/twilio-ruby/rest/autopilot/v1/assistant/webhook.rb +0 -420
  703. data/lib/twilio-ruby/rest/autopilot/v1/assistant.rb +0 -650
  704. data/lib/twilio-ruby/rest/autopilot/v1/restore_assistant.rb +0 -194
  705. data/lib/twilio-ruby/rest/autopilot/v1.rb +0 -52
  706. data/lib/twilio-ruby/rest/autopilot.rb +0 -53
  707. data/lib/twilio-ruby/rest/events/v1/schema/version.rb +0 -290
  708. data/lib/twilio-ruby/rest/flex_api/v1/insights_settings_answersets.rb +0 -144
  709. data/lib/twilio-ruby/rest/insights/v1/call/summary.rb +0 -321
  710. data/lib/twilio-ruby/rest/media/v1/media_processor.rb +0 -397
  711. data/lib/twilio-ruby/rest/media/v1/media_recording.rb +0 -399
  712. data/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +0 -221
  713. data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +0 -403
  714. data/lib/twilio-ruby/rest/media/v1.rb +0 -76
  715. data/lib/twilio-ruby/rest/media.rb +0 -65
  716. data/lib/twilio-ruby/rest/messaging/v1/deactivation.rb +0 -164
  717. data/lib/twilio-ruby/rest/messaging/v1/domain_cert.rb +0 -257
  718. data/lib/twilio-ruby/rest/microvisor/v1/account_config.rb +0 -317
  719. data/lib/twilio-ruby/rest/microvisor/v1/account_secret.rb +0 -310
  720. data/lib/twilio-ruby/rest/microvisor/v1/app.rb +0 -305
  721. data/lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb +0 -342
  722. data/lib/twilio-ruby/rest/microvisor/v1/device/device_secret.rb +0 -335
  723. data/lib/twilio-ruby/rest/microvisor/v1/device.rb +0 -393
  724. data/lib/twilio-ruby/rest/microvisor/v1.rb +0 -92
  725. data/lib/twilio-ruby/rest/microvisor.rb +0 -70
  726. data/lib/twilio-ruby/rest/oauth/v1/device_code.rb +0 -153
  727. data/lib/twilio-ruby/rest/oauth/v1/oauth.rb +0 -162
  728. data/lib/twilio-ruby/rest/oauth/v1/openid_discovery.rb +0 -242
  729. data/lib/twilio-ruby/rest/oauth/v1/user_info.rb +0 -193
  730. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb +0 -382
  731. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/deployment.rb +0 -365
  732. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/device.rb +0 -425
  733. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet/key.rb +0 -376
  734. data/lib/twilio-ruby/rest/preview/deployed_devices/fleet.rb +0 -469
  735. data/lib/twilio-ruby/rest/preview/deployed_devices.rb +0 -45
  736. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -385
  737. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -406
  738. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -418
  739. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -385
  740. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -405
  741. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -415
  742. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -385
  743. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -405
  744. data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -462
  745. data/lib/twilio-ruby/rest/preview/sync.rb +0 -44
  746. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_fallback_actions.rb +0 -212
  747. data/lib/twilio-ruby/rest/preview/understand/assistant/assistant_initiation_actions.rb +0 -212
  748. data/lib/twilio-ruby/rest/preview/understand/assistant/dialogue.rb +0 -206
  749. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type/field_value.rb +0 -386
  750. data/lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb +0 -407
  751. data/lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb +0 -380
  752. data/lib/twilio-ruby/rest/preview/understand/assistant/query.rb +0 -437
  753. data/lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb +0 -212
  754. data/lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb +0 -373
  755. data/lib/twilio-ruby/rest/preview/understand/assistant/task/sample.rb +0 -428
  756. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb +0 -241
  757. data/lib/twilio-ruby/rest/preview/understand/assistant/task/task_statistics.rb +0 -225
  758. data/lib/twilio-ruby/rest/preview/understand/assistant/task.rb +0 -495
  759. data/lib/twilio-ruby/rest/preview/understand/assistant.rb +0 -629
  760. data/lib/twilio-ruby/rest/preview/understand.rb +0 -45
  761. data/lib/twilio-ruby/rest/proxy/v1/service/short_code.rb +0 -377
  762. data/lib/twilio-ruby/rest/studio/v2/flow/test_user.rb +0 -199
  763. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +0 -413
  764. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_anonymize.rb +0 -240
  765. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_published_track.rb +0 -335
  766. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb +0 -175
  767. data/lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribed_track.rb +0 -340
  768. data/lib/twilio-ruby/rest/video/v1/room/room_participant.rb +0 -499
  769. data/lib/twilio-ruby/rest/video/v1/room/room_recording_rule.rb +0 -144
data/CHANGES.md CHANGED
@@ -1,6 +1,1079 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2025-08-18] Version 7.7.1
5
+ --------------------------
6
+ **Accounts**
7
+ - Update beta feature flag for consent and contact bulk upsert APIs
8
+
9
+ **Api**
10
+ - Add multiple missing usage categories to usage records and usage triggers api
11
+ - Add `channels-whatsapp-template-marketing` and `channels-whatsapp-template-utility` to usage categories
12
+
13
+ **Conversations**
14
+ - Fix `state` spelling for `initializing` enum value
15
+ - Update `state` to include `intializing` for ServiceConversationWithParticipants and ConversationWithParticipants
16
+
17
+ **Flex**
18
+ - Adding new optional parameter `identity` to `web_channels` API in version `v2`
19
+
20
+ **Trusthub**
21
+ - Add required Permissions to the ComplianceInquiries API
22
+
23
+ **Verify**
24
+ - Add passkeys support to Verify API creating and updating services.
25
+ - Update `ienum` type for Factor creation
26
+ - Add passkeys as challenge and factor type
27
+
28
+
29
+ [2025-07-24] Version 7.7.0
30
+ --------------------------
31
+ **Events**
32
+ - Remove `SinkSid` parameter when updating subscriptions. **(breaking change)**
33
+
34
+ **Twiml**
35
+ - Remove Duplicates.
36
+ - Add Polly Generative voices.
37
+ - Add Latest Google (Chirp3-HD) voices.
38
+
39
+
40
+ [2025-07-10] Version 7.6.5
41
+ --------------------------
42
+ **Flex**
43
+ - update team name for web_channel, webchat_init_token, webchat_refresh_token
44
+
45
+
46
+ [2025-07-03] Version 7.6.4
47
+ --------------------------
48
+ **Library - Chore**
49
+ - [PR #750](https://github.com/twilio/twilio-ruby/pull/750): Remove references to microvisor. Thanks to [@akhani18](https://github.com/akhani18)!
50
+ - [PR #752](https://github.com/twilio/twilio-ruby/pull/752): remove knowledge domain. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
51
+
52
+ **Bulkexports**
53
+ - Changed the type of 'details' field to be a list of objects instead of a single object
54
+
55
+ **Conversations**
56
+ - Updates to `method` casing for ConfgurationAddress, ConversationScopedWebhook, and ServiceConversationScopedWebhook for RestProxy compatibility
57
+
58
+ **Proxy**
59
+ - remove shortcodes resource as its no longer used
60
+
61
+ **Serverless**
62
+ - Change log field level from type `ienum` to `string` in Logs api
63
+
64
+ **Taskrouter**
65
+ - Remove `URL-encoded` from attributes param definition in tasks
66
+
67
+ **Trunking**
68
+ - Added `symmetric_rtp_enabled` property on Trunks.
69
+
70
+ **Twiml**
71
+ - Add support for `<WhatsApp>` noun under `<Dial>` verb
72
+
73
+
74
+ [2025-06-12] Version 7.6.3
75
+ --------------------------
76
+ **Library - Chore**
77
+ - [PR #751](https://github.com/twilio/twilio-ruby/pull/751): Delete knowledge related files. Thanks to [@krishnakalluri](https://github.com/krishnakalluri)!
78
+
79
+ **Api**
80
+ - Change DependentPhoneNumber `capabilities` type `object` and `date_created`, `date_updated` to `date_time<rfc2822>`
81
+ - Updated the `Default` value from 0 to 1 in the Recordings Resource `channels` property
82
+
83
+ **Serverless**
84
+ - Update `ienum` type level in Logs api
85
+
86
+ **Verify**
87
+ - Update Channel list in Verify Attempst API
88
+ - Update `ienum` type for Conversion_Status in Verify Attempts API
89
+
90
+ **Twiml**
91
+ - Add `us2` to the list of supported values for the region attribute in the `<Conference>` TwiML noun.
92
+
93
+
94
+ [2025-05-29] Version 7.6.2
95
+ --------------------------
96
+ **Library - Chore**
97
+ - [PR #749](https://github.com/twilio/twilio-ruby/pull/749): move from preview_iam to iam token endpoint. Thanks to [@manisha1997](https://github.com/manisha1997)!
98
+ - [PR #748](https://github.com/twilio/twilio-ruby/pull/748): removing ruby-head from CI. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
99
+
100
+ **Api**
101
+ - Added several usage category enums to `usage_record` API
102
+
103
+ **Numbers**
104
+ - Update the porting documentation
105
+
106
+ **Verify**
107
+ - Update `ienum` type for Channels in Verify Attempts API
108
+
109
+
110
+ [2025-05-13] Version 7.6.1
111
+ --------------------------
112
+ **Accounts**
113
+ - Changes to add date_of_consent param in Bulk Consent API
114
+
115
+ **Api**
116
+ - Change `friendly_name`, `date_created` and `date_updated` properties to type `string`.
117
+
118
+ **Twiml**
119
+ - Update twiml definition for `<ConversationRelay>` and `<Assistant>`
120
+
121
+
122
+ [2025-05-05] Version 7.6.0
123
+ --------------------------
124
+ **Library - Chore**
125
+ - [PR #742](https://github.com/twilio/twilio-ruby/pull/742): remove ostruct and benchmark from gemspec. Thanks to [@oehlschl](https://github.com/oehlschl)!
126
+
127
+ **Api**
128
+ - Add `response_key` for `Usage Triggers` fetch endpoint.
129
+
130
+ **Flex**
131
+ - Add Update Interaction API
132
+ - Adding `webhook_ttid` as optional parameter in Interactions API
133
+
134
+ **Serverless**
135
+ - Add node22 as a valid Build runtime
136
+ - Add node20 as a valid Build runtime
137
+
138
+ **Video**
139
+ - removed `transcribe_participants_on_connect` and `transcriptions_configuration` from the room resource **(breaking change)**
140
+ - Added `transcribe_participants_on_connect` and `transcriptions_configuration` to the room resource
141
+
142
+
143
+ [2025-04-07] Version 7.5.2
144
+ --------------------------
145
+ **Studio**
146
+ - Add documentation for parent_step_sid field in Step resource
147
+
148
+
149
+ [2025-03-20] Version 7.5.1
150
+ --------------------------
151
+ **Accounts**
152
+ - Update Safelist API docs as part of prefix supoort
153
+
154
+ **Flex**
155
+ - Removing `first_name`, `last_name`, and `friendly_name` from the Flex User API
156
+
157
+ **Messaging**
158
+ - Add missing tests under transaction/phone_numbers and transaction/short_code
159
+
160
+
161
+ [2025-03-11] Version 7.5.0
162
+ --------------------------
163
+ **Library - Feature**
164
+ - [PR #745](https://github.com/twilio/twilio-ruby/pull/745): MVR ready. Thanks to [@manisha1997](https://github.com/manisha1997)!
165
+
166
+ **Library - Chore**
167
+ - [PR #744](https://github.com/twilio/twilio-ruby/pull/744): create image with required files. Thanks to [@sbansla](https://github.com/sbansla)!
168
+
169
+ **Api**
170
+ - Add the missing `emergency_enabled` field for `Address Service` endpoints
171
+
172
+ **Messaging**
173
+ - Add missing enums for A2P and TF
174
+
175
+ **Numbers**
176
+ - add missing enum values to hosted_number_order_status
177
+
178
+ **Twiml**
179
+ - Convert Twiml Attribute `speechModel` of type enum to string **(breaking change)**
180
+
181
+
182
+ [2025-02-20] Version 7.4.5
183
+ --------------------------
184
+ **Flex**
185
+ - Adding Digital Transfers APIs under v1/Interactions
186
+
187
+ **Numbers**
188
+ - Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
189
+
190
+ **Trusthub**
191
+ - Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
192
+
193
+
194
+ [2025-02-11] Version 7.4.4
195
+ --------------------------
196
+ **Api**
197
+ - Change downstream url and change media type for file `base/api/v2010/validation_request.json`.
198
+
199
+ **Intelligence**
200
+ - Add json_results for Generative JSON operator results
201
+
202
+ **Messaging**
203
+ - Add DestinationAlphaSender API to support Country-Specific Alpha Senders
204
+
205
+ **Video**
206
+ - Change codec type from enum to case-insensitive enum in recording and room_recording apis
207
+
208
+
209
+ [2025-01-28] Version 7.4.3
210
+ --------------------------
211
+ **Library - Chore**
212
+ - [PR #740](https://github.com/twilio/twilio-ruby/pull/740): added bug report issue template. Thanks to [@sbansla](https://github.com/sbansla)!
213
+
214
+ **Api**
215
+ - Add open-api file tag to `conference/call recordings` and `recording_transcriptions`.
216
+
217
+ **Events**
218
+ - Add support for subaccount subscriptions (beta)
219
+
220
+ **Insights**
221
+ - add new region to conference APIs
222
+
223
+ **Lookups**
224
+ - Add new `parnter_sub_id` query parameter to the lookup request
225
+
226
+
227
+ [2025-01-13] Version 7.4.2
228
+ --------------------------
229
+ **Library - Chore**
230
+ - [PR #739](https://github.com/twilio/twilio-ruby/pull/739): add ostruct and benchmark in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
231
+ - [PR #738](https://github.com/twilio/twilio-ruby/pull/738): add ostruct in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
232
+
233
+ **Messaging**
234
+ - Adds validity period Default value in service resource documentation
235
+
236
+
237
+ [2025-01-09] Version 7.4.1
238
+ --------------------------
239
+ **Library - Chore**
240
+ - [PR #736](https://github.com/twilio/twilio-ruby/pull/736): removing jruby-9.2. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
241
+
242
+ **Numbers**
243
+ - Change beta feature flag to use v2/BulkHostedNumberOrders
244
+
245
+
246
+ [2024-12-12] Version 7.4.0
247
+ --------------------------
248
+ **Library - Feature**
249
+ - [PR #735](https://github.com/twilio/twilio-ruby/pull/735): public oauth. Thanks to [@manisha1997](https://github.com/manisha1997)!
250
+
251
+
252
+ [2024-12-05] Version 7.3.7
253
+ --------------------------
254
+ **Api**
255
+ - Add optional parameter `intelligence_service` to `transcription`
256
+ - Updated `phone_number_sid` to be populated for sip trunking terminating calls.
257
+
258
+ **Numbers**
259
+ - Add Update Hosted Number Order V2 API endpoint
260
+ - Update Port in docs
261
+
262
+ **Twiml**
263
+ - Add optional parameter `intelligence_service` to `<Transcription>`
264
+ - Add support for new `<ConversationRelay>` and `<Assistant>` noun
265
+ - Add `events` attribute to `<Dial>` verb
266
+
267
+
268
+ [2024-11-15] Version 7.3.6
269
+ --------------------------
270
+ **Library - Chore**
271
+ - [PR #732](https://github.com/twilio/twilio-ruby/pull/732): removed preview sync api. Thanks to [@sbansla](https://github.com/sbansla)!
272
+
273
+ **Api**
274
+ - Added `ivr-virtual-agent-custom-voices` and `ivr-virtual-agent-genai` to `usage_record` API.
275
+ - Add open-api file tag to realtime_transcriptions
276
+
277
+ **Taskrouter**
278
+ - Add `api-tag` property to workers reservation
279
+ - Add `api-tag` property to task reservation
280
+
281
+
282
+ [2024-10-24] Version 7.3.5
283
+ --------------------------
284
+ **Conversations**
285
+ - Expose ConversationWithParticipants resource that allows creating a conversation with participants
286
+
287
+
288
+ [2024-10-17] Version 7.3.4
289
+ --------------------------
290
+ **Api**
291
+ - Add response key `country` to fetch AvailablePhoneNumber resource by specific country.
292
+
293
+ **Messaging**
294
+ - Make library and doc public for requestManagedCert Endpoint
295
+
296
+
297
+ [2024-10-03] Version 7.3.3
298
+ --------------------------
299
+ **Messaging**
300
+ - Add A2P external campaign CnpMigration flag
301
+
302
+ **Numbers**
303
+ - Add address sid to portability API
304
+
305
+ **Verify**
306
+ - Add `SnaClientToken` optional parameter on Verification check.
307
+ - Add `EnableSnaClientToken` optional parameter for Verification creation.
308
+
309
+
310
+ [2024-09-25] Version 7.3.2
311
+ --------------------------
312
+ **Accounts**
313
+ - Update docs and mounts.
314
+ - Change library visibility to public
315
+ - Enable consent and contact bulk upsert APIs in prod.
316
+
317
+ **Serverless**
318
+ - Add is_plugin parameter in deployments api to check if it is plugins deployment
319
+
320
+
321
+ [2024-09-18] Version 7.3.1
322
+ --------------------------
323
+ **Intelligence**
324
+ - Remove public from operator_type
325
+ - Update operator_type to include general-availablity and deprecated
326
+
327
+ **Numbers**
328
+ - Remove beta flag for bundle clone API
329
+
330
+
331
+ [2024-09-05] Version 7.3.0
332
+ --------------------------
333
+ **Iam**
334
+ - updated library_visibility public for new public apikeys
335
+
336
+ **Numbers**
337
+ - Add new field in Error Codes for Regulatory Compliance.
338
+ - Change typing of Port In Request date_created field to date_time instead of date **(breaking change)**
339
+
340
+
341
+ [2024-08-26] Version 7.2.4
342
+ --------------------------
343
+ **Library - Chore**
344
+ - [PR #729](https://github.com/twilio/twilio-ruby/pull/729): remove preview_iam reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
345
+ - [PR #727](https://github.com/twilio/twilio-ruby/pull/727): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
346
+ - [PR #726](https://github.com/twilio/twilio-ruby/pull/726): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
347
+ - [PR #725](https://github.com/twilio/twilio-ruby/pull/725): fix documentation link. Thanks to [@manisha1997](https://github.com/manisha1997)!
348
+
349
+ **Api**
350
+ - Update documentation of `error_code` and `error_message` on the Message resource.
351
+ - Remove generic parameters from `transcription` resource
352
+ - Added public documentation for Payload Data retrieval API
353
+
354
+ **Flex**
355
+ - Adding update Flex User api
356
+
357
+ **Insights**
358
+ - Added 'branded', 'business_profile' and 'voice_integrity' fields in List Call Summary
359
+
360
+ **Intelligence**
361
+ - Add `words` array information to the Sentences v2 entity.
362
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Operator Results.
363
+ - Change the path parameter when fetching an `/OperatorType/{}` from `sid<EY>` to `string` to support searching by SID or by name
364
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Transcript and Service endpoints.
365
+
366
+ **Messaging**
367
+ - Adds two new channel senders api to add/remove channel senders to/from a messaging service
368
+ - Extend ERC api to accept an optional attribute in request body to indicate CNP migration for an ERC
369
+
370
+ **Numbers**
371
+ - Modify visibility to public in bundle clone API
372
+ - Add `port_date` field to Port In Request and Port In Phone Numbers Fetch APIs
373
+ - Change properties docs for port in phone numbers api
374
+ - Add is_test body param to the Bundle Create API
375
+ - Change properties docs for port in api
376
+
377
+ **Trusthub**
378
+ - Add new field in themeSetId in compliance_inquiry.
379
+
380
+ **Verify**
381
+ - Update `custom_code_enabled` description on verification docs
382
+
383
+
384
+ [2024-07-02] Version 7.2.3
385
+ --------------------------
386
+ **Rubygems**
387
+ - Add docs link to gemspec
388
+
389
+ [2024-07-02] Version 7.2.2
390
+ --------------------------
391
+ **Intelligence**
392
+ - Deprecate account flag api.twilio-intelligence.v2
393
+
394
+
395
+ [2024-06-27] Version 7.2.1
396
+ --------------------------
397
+ **Api**
398
+ - Add `transcription` resource
399
+ - Add beta feature request managed cert
400
+
401
+ **Flex**
402
+ - Changed mount name for flex_team v2 api
403
+
404
+ **Intelligence**
405
+ - Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
406
+
407
+ **Numbers**
408
+ - Added include_constraints query parameter to the Regulations API
409
+
410
+ **Twiml**
411
+ - Add support for `<Transcription>` noun
412
+
413
+
414
+ [2024-06-18] Version 7.2.0
415
+ --------------------------
416
+ **Library - Chore**
417
+ - [PR #723](https://github.com/twilio/twilio-ruby/pull/723): adding contentType in post and put. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
418
+
419
+ **Events**
420
+ - Add `status` and `documentation_url` to Event Types
421
+
422
+ **Lookups**
423
+ - Removed unused `fraud` lookups in V1 only to facilitate rest proxy migration
424
+
425
+ **Numbers**
426
+ - Add date_created field to the Get Port In Request API
427
+ - Rename the `status_last_time_updated_timestamp` field to `last_updated` in the Get Port In Phone Number API **(breaking change)**
428
+ - Add Rejection reason and rejection reason code to the Get Port In Phone Number API
429
+ - Remove the carrier information from the Portability API
430
+
431
+ **Proxy**
432
+ - Change property `type` from enum to ienum
433
+
434
+ **Trusthub**
435
+ - Add skipMessagingUseCase field in compliance_tollfree_inquiry.
436
+
437
+
438
+ [2024-06-06] Version 7.1.1
439
+ --------------------------
440
+ **Library - Chore**
441
+ - [PR #721](https://github.com/twilio/twilio-ruby/pull/721): adding rexml to Gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
442
+
443
+ **Api**
444
+ - Mark MaxPrice as obsolete
445
+
446
+ **Lookups**
447
+ - Update examples for `phone_number_quality_score`
448
+
449
+ **Messaging**
450
+ - List tollfree verifications on parent account and all sub-accounts
451
+
452
+
453
+ [2024-05-24] Version 7.1.0
454
+ --------------------------
455
+ **Library - Chore**
456
+ - [PR #720](https://github.com/twilio/twilio-ruby/pull/720): removing preview_messaging reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
457
+
458
+ **Api**
459
+ - Add ie1 as supported region for UserDefinedMessage and UserDefinedMessageSubscription.
460
+
461
+ **Flex**
462
+ - Adding validated field to `plugin_versions`
463
+ - Corrected the data type for `runtime_domain`, `call_recording_webhook_url`, `crm_callback_url`, `crm_fallback_url`, `flex_url` in Flex Configuration
464
+ - Making `routing` optional in Create Interactions endpoint
465
+
466
+ **Intelligence**
467
+ - Expose operator authoring apis to public visibility
468
+ - Deleted `language_code` parameter from updating service in v2 **(breaking change)**
469
+ - Add read_only_attached_operator_sids to v2 services
470
+
471
+ **Numbers**
472
+ - Add API endpoint for GET Porting Webhook Configurations By Account SID
473
+ - Remove bulk portability api under version `/v1`. **(breaking change)**
474
+ - Removed porting_port_in_fetch.json files and move the content into porting_port_in.json files
475
+ - Add API endpoint to deleting Webhook Configurations
476
+ - Add Get Phone Number by Port in request SID and Phone Number SID api
477
+ - Add Create Porting webhook configuration API
478
+ - Added bundle_sid and losing_carrier_information fields to Create PortInRequest api to support Japan porting
479
+
480
+ **Taskrouter**
481
+ - Add back `routing_target` property to tasks
482
+ - Add back `ignore_capacity` property to tasks
483
+ - Removing `routing_target` property to tasks due to revert
484
+ - Removing `ignore_capacity` property to tasks due to revert
485
+ - Add `routing_target` property to tasks
486
+ - Add `ignore_capacity` property to tasks
487
+
488
+ **Trusthub**
489
+ - Add new field errors to bundle as part of public API response in customer_profile.json and trust_product.json **(breaking change)**
490
+ - Add themeSetId field in compliance_tollfree_inquiry.
491
+
492
+ **Verify**
493
+ - Update `friendly_name` description on service docs
494
+
495
+
496
+ [2024-04-18] Version 7.0.2
497
+ --------------------------
498
+ **Flex**
499
+ - Add header `ui_version` to `web_channels` API
500
+
501
+ **Messaging**
502
+ - Redeploy after failed pipeline
503
+
504
+ **Numbers**
505
+ - Add Delete Port In request phone number api and Add Delete Port In request api
506
+
507
+
508
+ [2024-04-04] Version 7.0.1
509
+ --------------------------
510
+ **Api**
511
+ - Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
512
+
513
+ **Flex**
514
+ - Remove optional parameter from `plugins` and it to `plugin_versions`
515
+
516
+ **Lookups**
517
+ - Add new `pre_fill` package to the lookup response
518
+
519
+ **Messaging**
520
+ - Cleanup api.messaging.next-gen from Messaging Services endpoints
521
+ - Readd Sending-Window after fixing test failure
522
+
523
+ **Verify**
524
+ - Add `whatsapp.msg_service_sid` and `whatsapp.from` parameters to create, update, get and list of services endpoints
525
+
526
+ **Voice**
527
+ - Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
528
+
529
+ **Twiml**
530
+ - Add new `token_type` value `payment-method` for `Pay` verb
531
+
532
+
533
+ [2024-04-01] Version 7.0.0
534
+ --------------------------
535
+ **Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2024-01-19-6xx-to-7xx) for detailed migration notes.
536
+
537
+ **Library - Feature**
538
+ - [PR #719](https://github.com/twilio/twilio-ruby/pull/719): Merge '7.0.0-rc' into main. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)! **(breaking change)**
539
+
540
+ **Library - Chore**
541
+ - [PR #715](https://github.com/twilio/twilio-ruby/pull/715): remove media endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
542
+
543
+ **Api**
544
+ - Add property `queue_time` to conference participant resource
545
+ - Update RiskCheck documentation
546
+ - Correct call filtering by start and end time documentation, clarifying that times are UTC.
547
+
548
+ **Flex**
549
+ - Adding optional parameter to `plugins`
550
+
551
+ **Media**
552
+ - Remove API: MediaProcessor
553
+
554
+ **Messaging**
555
+ - Remove Sending-Window due to test failure
556
+ - Add Sending-Window as a response property to Messaging Services, gated by a beta feature flag
557
+
558
+ **Numbers**
559
+ - Correct valid_until_date field to be visible in Bundles resource
560
+ - Adding port_in_status field to the Port In resource and phone_number_status and sid fields to the Port In Phone Number resource
561
+
562
+ **Oauth**
563
+ - Modified token endpoint response
564
+ - Added refresh_token and scope as optional parameter to token endpoint
565
+ - Add new APIs for vendor authorize and token endpoints
566
+
567
+ **Trusthub**
568
+ - Add update inquiry endpoint in compliance_registration.
569
+ - Add new field in themeSetId in compliance_registration.
570
+
571
+ **Voice**
572
+ - Correct call filtering by start and end time documentation, clarifying that times are UTC.
573
+
574
+ **Twiml**
575
+ - Add support for new Google voices (Q1 2024) for `Say` verb - gu-IN voices
576
+ - Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb - Niamh (en-IE) and Sofie (da-DK) voices
577
+
578
+
579
+ [2024-03-12] Version 6.12.1
580
+ ---------------------------
581
+ **Api**
582
+ - Correct precedence documentation for application_sid vs status_callback in message creation
583
+ - Mark MaxPrice as deprecated
584
+
585
+ **Flex**
586
+ - Making `plugins` visibility to public
587
+
588
+ **Messaging**
589
+ - Add new `errors` attribute to the Brand Registration resource.
590
+ - Mark `brand_feedback` attribute as deprecated.
591
+ - Mark `failure_reason` attribute as deprecated.
592
+ - The new `errors` attribute is expected to provide additional information about Brand registration failures and feedback (if any has been provided by The Campaign Registry). Consumers should use this attribute instead of `brand_feedback` and `failure_reason`.
593
+
594
+ **Numbers**
595
+ - Correcting mount_name for porting port in fetch API
596
+
597
+ **Trusthub**
598
+ - Add new field in statusCallbackUrl in compliance_registration.
599
+ - Add new field in isvRegisteringForSelfOrTenant in compliance_registration.
600
+
601
+ **Twiml**
602
+ - Expanded description of Action parameter for Message verb
603
+
604
+
605
+ [2024-02-27] Version 6.12.0
606
+ ---------------------------
607
+ **Library - Chore**
608
+ - [PR #712](https://github.com/twilio/twilio-ruby/pull/712): cluster tests enabled. Thanks to [@sbansla](https://github.com/sbansla)!
609
+
610
+ **Api**
611
+ - remove feedback and feedback summary from call resource
612
+
613
+ **Flex**
614
+ - Adding `routing_properties` to Interactions Channels Participant
615
+
616
+ **Lookups**
617
+ - Add new `line_status` package to the lookup response
618
+ - Remove `live_activity` package from the lookup response **(breaking change)**
619
+
620
+ **Messaging**
621
+ - Add tollfree multiple rejection reasons response array
622
+
623
+ **Trusthub**
624
+ - Add ENUM for businessRegistrationAuthority in compliance_registration. **(breaking change)**
625
+ - Add new field in isIsvEmbed in compliance_registration.
626
+ - Add additional optional fields in compliance_registration for Individual business type.
627
+
628
+ **Twiml**
629
+ - Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb
630
+
631
+
632
+ [2024-02-09] Version 6.11.0
633
+ ---------------------------
634
+ **Library - Chore**
635
+ - [PR #710](https://github.com/twilio/twilio-ruby/pull/710): remove live media endpoint. Thanks to [@califlower](https://github.com/califlower)!
636
+ - [PR #708](https://github.com/twilio/twilio-ruby/pull/708): removing oauth and autopilot references. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
637
+
638
+ **Api**
639
+ - Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
640
+ - Update documentation to reflect RiskCheck GA
641
+ - Added optional parameter `CallToken` for create participant api
642
+
643
+ **Events**
644
+ - Marked as GA
645
+
646
+ **Flex**
647
+ - Adding `flex_instance_sid` to Flex Configuration
648
+ - Adding `provisioning_status` for Email Manager
649
+ - Adding `offline_config` to Flex Configuration
650
+
651
+ **Insights**
652
+ - add flag to restrict access to unapid customers
653
+ - decommission voice-qualitystats-endpoint role
654
+
655
+ **Intelligence**
656
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
657
+
658
+ **Lookups**
659
+ - Remove `carrier` field from `sms_pumping_risk` and leave `carrier_risk_category` **(breaking change)**
660
+ - Remove carrier information from call forwarding package **(breaking change)**
661
+
662
+ **Messaging**
663
+ - Add update instance endpoints to us_app_to_person api
664
+ - Add tollfree edit_allowed and edit_reason fields
665
+ - Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
666
+ - Add DELETE support to Tollfree Verification resource
667
+
668
+ **Numbers**
669
+ - Add Get Port In request api
670
+
671
+ **Push**
672
+ - Migrated to new Push API V4 with Resilient Notification Delivery.
673
+
674
+ **Serverless**
675
+ - Add node18 as a valid Build runtime
676
+
677
+ **Taskrouter**
678
+ - Add `jitter_buffer_size` param in update reservation
679
+ - Add container attribute to task_queue_bulk_real_time_statistics endpoint
680
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
681
+
682
+ **Trusthub**
683
+ - Add optional field NotificationEmail to the POST /v1/ComplianceInquiries/Customers/Initialize API
684
+ - Add additional optional fields in compliance_tollfree_inquiry.json
685
+ - Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
686
+ - Add new optional field notification_email to compliance_tollfree_inquiry.json
687
+
688
+ **Verify**
689
+ - `Tags` property added again to Public Docs **(breaking change)**
690
+ - Remove `Tags` from Public Docs **(breaking change)**
691
+ - Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
692
+ - Add `Tags` optional parameter on Verification creation.
693
+ - Update Verify TOTP maturity to GA.
694
+
695
+
696
+ [2024-01-25] Version 6.10.0
697
+ ---------------------------
698
+ **Oauth**
699
+ - updated openid discovery endpoint uri **(breaking change)**
700
+ - Added device code authorization endpoint
701
+ - added oauth JWKS endpoint
702
+ - Get userinfo resource
703
+ - OpenID discovery resource
704
+ - Add new API for token endpoint
705
+
706
+
707
+ [2024-01-14] Version 6.9.1
708
+ --------------------------
709
+ **Library - Chore**
710
+ - [PR #691](https://github.com/twilio/twilio-ruby/pull/691): Removing tests related to Autopilot and Understand Endpoints - product EoL. Thanks to [@miriamela](https://github.com/miriamela)!
711
+
712
+ **Library - Fix**
713
+ - [PR #693](https://github.com/twilio/twilio-ruby/pull/693): fixed query param not going for delete. Thanks to [@manisha1997](https://github.com/manisha1997)!
714
+
715
+ **Push**
716
+ - Migrated to new Push API V4 with Resilient Notification Delivery.
717
+
718
+
719
+ [2023-12-14] Version 6.9.0
720
+ --------------------------
721
+ **Api**
722
+ - Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**
723
+
724
+ **Events**
725
+ - Marked as GA
726
+
727
+ **Insights**
728
+ - decommission voice-qualitystats-endpoint role
729
+
730
+ **Numbers**
731
+ - Add Get Port In request api
732
+
733
+ **Taskrouter**
734
+ - Add `jitter_buffer_size` param in update reservation
735
+
736
+ **Trusthub**
737
+ - Add additional optional fields in compliance_tollfree_inquiry.json
738
+
739
+ **Verify**
740
+ - Remove `Tags` from Public Docs **(breaking change)**
741
+
742
+
743
+ [2023-12-01] Version 6.8.3
744
+ --------------------------
745
+ **Verify**
746
+ - Add `VerifyEventSubscriptionEnabled` parameter to service create and update endpoints.
747
+
748
+
749
+ [2023-11-17] Version 6.8.2
750
+ --------------------------
751
+ **Library - Chore**
752
+ - [PR #687](https://github.com/twilio/twilio-ruby/pull/687): remove more oauth refrences. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
753
+
754
+ **Api**
755
+ - Update documentation to reflect RiskCheck GA
756
+
757
+ **Messaging**
758
+ - Add tollfree edit_allowed and edit_reason fields
759
+ - Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
760
+
761
+ **Taskrouter**
762
+ - Add container attribute to task_queue_bulk_real_time_statistics endpoint
763
+
764
+ **Trusthub**
765
+ - Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
766
+ - Add new optional field notification_email to compliance_tollfree_inquiry.json
767
+
768
+ **Verify**
769
+ - Add `Tags` optional parameter on Verification creation.
770
+
771
+
772
+ [2023-11-06] Version 6.8.1
773
+ --------------------------
774
+ **Flex**
775
+ - Adding `provisioning_status` for Email Manager
776
+
777
+ **Intelligence**
778
+ - Add text-generation operator (for example conversation summary) results to existing OperatorResults collection.
779
+
780
+ **Messaging**
781
+ - Add DELETE support to Tollfree Verification resource
782
+
783
+ **Serverless**
784
+ - Add node18 as a valid Build runtime
785
+
786
+ **Verify**
787
+ - Update Verify TOTP maturity to GA.
788
+
789
+
790
+ [2023-10-19] Version 6.8.0
791
+ --------------------------
792
+ **Library - Chore**
793
+ - [PR #682](https://github.com/twilio/twilio-ruby/pull/682): Removing Test Related To Deprecated Endpoint - OAuth. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
794
+
795
+ **Library - Fix**
796
+ - [PR #680](https://github.com/twilio/twilio-ruby/pull/680): update validate ssl method with new endpoint. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
797
+
798
+ **Accounts**
799
+ - Updated Safelist metadata to correct the docs.
800
+ - Add Global SafeList API changes
801
+
802
+ **Api**
803
+ - Added optional parameter `CallToken` for create participant api
804
+
805
+ **Flex**
806
+ - Adding `offline_config` to Flex Configuration
807
+
808
+ **Intelligence**
809
+ - Deleted `redacted` parameter from fetching transcript in v2 **(breaking change)**
810
+
811
+ **Lookups**
812
+ - Add new `phone_number_quality_score` package to the lookup response
813
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
814
+
815
+ **Messaging**
816
+ - Update US App To Person documentation with current `message_samples` requirements
817
+
818
+ **Taskrouter**
819
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
820
+ - Add `virtual_start_time` property to tasks
821
+ - Updating `task_queue_data` format from `map` to `array` in the response of bulk get endpoint of TaskQueue Real Time Statistics API **(breaking change)**
822
+
823
+
824
+ [2023-10-05] Version 6.7.1
825
+ --------------------------
826
+ **Library - Chore**
827
+ - [PR #678](https://github.com/twilio/twilio-ruby/pull/678): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
828
+
829
+ **Lookups**
830
+ - Add test api support for Lookup v2
831
+
832
+
833
+ [2023-09-21] Version 6.7.0
834
+ --------------------------
835
+ **Conversations**
836
+ - Enable conversation email bindings, email address configurations and email message subjects
837
+
838
+ **Flex**
839
+ - Adding `console_errors_included` to Flex Configuration field `debugger_integrations`
840
+ - Introducing new channel status as `inactive` in modify channel endpoint for leave functionality **(breaking change)**
841
+ - Adding `citrix_voice_vdi` to Flex Configuration
842
+
843
+ **Taskrouter**
844
+ - Add Update Queues, Workers, Workflow Real Time Statistics API to flex-rt-data-api-v2 endpoint
845
+ - Add Update Workspace Real Time Statistics API to flex-rt-data-api-v2 endpoint
846
+
847
+
848
+ [2023-09-07] Version 6.6.0
849
+ --------------------------
850
+ **Api**
851
+ - Make message tagging parameters public **(breaking change)**
852
+
853
+ **Flex**
854
+ - Adding `agent_conv_end_methods` to Flex Configuration
855
+
856
+ **Messaging**
857
+ - Mark Mesasging Services fallback_to_long_code feature obsolete
858
+
859
+ **Numbers**
860
+ - Add Create Port In request api
861
+ - Renaming sid for bulk_hosting_sid and remove account_sid response field in numbers/v2/BulkHostedNumberOrders **(breaking change)**
862
+
863
+ **Pricing**
864
+ - gate resources behind a beta_feature
865
+
866
+
867
+ [2023-08-24] Version 6.5.0
868
+ --------------------------
869
+ **Api**
870
+ - 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
871
+
872
+ **Flex**
873
+ - Changing `sid<UO>` path param to `sid<UT>` in interaction channel participant update endpoint **(breaking change)**
874
+
875
+ **Messaging**
876
+ - Add Channel Sender api
877
+ - Fixing country code docs and removing Zipwhip references
878
+
879
+ **Numbers**
880
+ - Request status changed in numbers/v2/BulkHostedNumberOrders **(breaking change)**
881
+ - Add bulk hosting orders API under version `/v2
882
+
883
+
884
+ [2023-08-10] Version 6.4.0
885
+ --------------------------
886
+ **Library - Fix**
887
+ - [PR #673](https://github.com/twilio/twilio-ruby/pull/673): remove ruby version. Thanks to [@kridai](https://github.com/kridai)!
888
+ - [PR #672](https://github.com/twilio/twilio-ruby/pull/672): revert setting ruby version. Thanks to [@kridai](https://github.com/kridai)!
889
+ - [PR #671](https://github.com/twilio/twilio-ruby/pull/671): fix the headers issue. Thanks to [@kridai](https://github.com/kridai)!
890
+
891
+ **Insights**
892
+ - Normalize annotations parameters in list summary api to be prefixed
893
+
894
+ **Numbers**
895
+ - Change Bulk_hosted_sid from BHR to BH prefix in HNO and dependent under version `/v2` API's. **(breaking change)**
896
+ - Added parameter target_account_sid to portability and account_sid to response body
897
+
898
+ **Verify**
899
+ - Remove beta feature flag to list attempts API.
900
+ - Remove beta feature flag to verifications summary attempts API.
901
+
902
+
903
+ [2023-07-27] Version 6.3.1
904
+ --------------------------
905
+ **Api**
906
+ - Added `voice-intelligence`, `voice-intelligence-transcription` and `voice-intelligence-operators` to `usage_record` API.
907
+ - Added `tts-google` to `usage_record` API.
908
+
909
+ **Lookups**
910
+ - Add new `disposable_phone_number_risk` package to the lookup response
911
+
912
+ **Verify**
913
+ - Documentation of list attempts API was improved by correcting `date_created_after` and `date_created_before` expected date format.
914
+ - Documentation was improved by correcting `date_created_after` and `date_created_before` expected date format parameter on attempts summary API.
915
+ - Documentation was improved by adding `WHATSAPP` as optional valid parameter on attempts summary API.
916
+
917
+ **Twiml**
918
+ - Added support for he-il inside of ssm_lang.json that was missing
919
+ - Added support for he-il language in say.json that was missing
920
+ - Add `statusCallback` and `statusCallbackMethod` attributes to `<Siprec>`.
921
+
922
+
923
+ [2023-07-13] Version 6.3.0
924
+ --------------------------
925
+ **Library - Chore**
926
+ - [PR #668](https://github.com/twilio/twilio-ruby/pull/668): remove cacert. Thanks to [@sbansla](https://github.com/sbansla)!
927
+
928
+ **Flex**
929
+ - Adding `interaction_context_sid` as optional parameter in Interactions API
930
+
931
+ **Messaging**
932
+ - Making visiblity public for tollfree_verification API
933
+
934
+ **Numbers**
935
+ - Remove Sms capability property from HNO creation under version `/v2` of HNO API. **(breaking change)**
936
+ - Update required properties in LOA creation under version `/v2` of Authorization document API. **(breaking change)**
937
+
938
+ **Taskrouter**
939
+ - Add api to fetch task queue statistics for multiple TaskQueues
940
+
941
+ **Verify**
942
+ - Add `RiskCheck` optional parameter on Verification creation.
943
+
944
+ **Twiml**
945
+ - Add Google Voices and languages
946
+
947
+
948
+ [2023-06-28] Version 6.2.0
949
+ --------------------------
950
+ **Library - Fix**
951
+ - [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)!
952
+
953
+ **Lookups**
954
+ - Add `reassigned_number` package to the lookup response
955
+
956
+ **Numbers**
957
+ - Add hosted_number_order under version `/v2`.
958
+ - Update properties in Porting and Bulk Porting APIs. **(breaking change)**
959
+ - Added bulk Portability API under version `/v1`.
960
+ - Added Portability API under version `/v1`.
961
+
962
+
963
+ [2023-06-15] Version 6.1.0
964
+ --------------------------
965
+ **Api**
966
+ - Added `content_sid` as conditional parameter
967
+ - Removed `content_sid` as optional field **(breaking change)**
968
+
969
+ **Insights**
970
+ - Added `annotation` to list summary output
971
+
972
+
973
+ [2023-06-01] Version 6.0.2
974
+ --------------------------
975
+ **Api**
976
+ - Add `Trim` to create Conference Participant API
977
+
978
+ **Intelligence**
979
+ - First public beta release for Voice Intelligence APIs with client libraries
980
+
981
+ **Messaging**
982
+ - Add new `errors` attribute to us_app_to_person resource. This attribute will provide additional information about campaign registration errors.
983
+
984
+
985
+ [2023-05-18] Version 6.0.1
986
+ --------------------------
987
+ **Library - Fix**
988
+ - [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)!
989
+
990
+ **Conversations**
991
+ - Added `AddressCountry` parameter to Address Configuration endpoint, to support regional short code addresses
992
+ - Added query parameters `start_date`, `end_date` and `state` in list Conversations resource for filtering
993
+
994
+ **Insights**
995
+ - Added annotations parameters to list summary api
996
+
997
+ **Messaging**
998
+ - Add GET domainByMessagingService endpoint to linkShortening service
999
+ - Add `disable_https` to link shortening domain_config properties
1000
+
1001
+ **Numbers**
1002
+ - Add bulk_eligibility api under version `/v1`.
1003
+
1004
+
1005
+ [2023-05-04] Version 6.0.0
1006
+ --------------------------
1007
+ **Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2023-05-03-5xx-to-6xx) for detailed migration notes.
1008
+
1009
+ **Library - Feature**
1010
+ - [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)**
1011
+
1012
+ **Conversations**
1013
+ - Remove `start_date`, `end_date` and `state` query parameters from list operation on Conversations resource **(breaking change)**
1014
+
1015
+ **Twiml**
1016
+ - Add support for new Amazon Polly voices (Q1 2023) for `Say` verb
1017
+
1018
+
1019
+ [2023-04-19] Version 5.77.0
1020
+ ---------------------------
1021
+ **Library - Docs**
1022
+ - [PR #645](https://github.com/twilio/twilio-ruby/pull/645): consolidate. Thanks to [@stern-shawn](https://github.com/stern-shawn)!
1023
+
1024
+ **Messaging**
1025
+ - Remove `messaging_service_sids` and `messaging_service_sid_action` from domain config endpoint **(breaking change)**
1026
+ - Add error_code and rejection_reason properties to tollfree verification API response
1027
+
1028
+ **Numbers**
1029
+ - Added the new Eligibility API under version `/v1`.
1030
+
1031
+
1032
+ [2023-04-05] Version 5.76.0
1033
+ ---------------------------
1034
+ **Conversations**
1035
+ - Expose query parameters `start_date`, `end_date` and `state` in list operation on Conversations resource for sorting and filtering
1036
+
1037
+ **Insights**
1038
+ - Added answered by filter in Call Summaries
1039
+
1040
+ **Lookups**
1041
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
1042
+
1043
+ **Messaging**
1044
+ - Add support for `SOLE_PROPRIETOR` brand type and `SOLE_PROPRIETOR` campaign use case.
1045
+ - New Sole Proprietor Brands should be created with `SOLE_PROPRIETOR` brand type. Brand registration requests with `STARTER` brand type will be rejected.
1046
+ - New Sole Proprietor Campaigns should be created with `SOLE_PROPRIETOR` campaign use case. Campaign registration requests with `STARTER` campaign use case will be rejected.
1047
+ - Add Brand Registrations OTP API
1048
+
1049
+
1050
+ [2023-03-22] Version 5.75.0
1051
+ ---------------------------
1052
+ **Library - Chore**
1053
+ - [PR #630](https://github.com/twilio/twilio-ruby/pull/630): Accommodate jwt's minor and patch updates. Thanks to [@sato11](https://github.com/sato11)!
1054
+
1055
+ **Api**
1056
+ - Revert Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources
1057
+ - Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources **(breaking change)**
1058
+
1059
+ **Messaging**
1060
+ - Add `linkshortening_messaging_service` resource
1061
+ - Add new endpoint for GetDomainConfigByMessagingServiceSid
1062
+ - Remove `validated` parameter and add `cert_in_validation` parameter to Link Shortening API **(breaking change)**
1063
+
1064
+
1065
+ [2023-03-09] Version 5.74.5
1066
+ ---------------------------
1067
+ **Api**
1068
+ - Add new categories for whatsapp template
1069
+
1070
+ **Lookups**
1071
+ - Remove `validation_results` from the `default_output_properties`
1072
+
1073
+ **Supersim**
1074
+ - Add ESimProfile's `matching_id` and `activation_code` parameters to libraries
1075
+
1076
+
4
1077
  [2023-02-22] Version 5.74.4
5
1078
  ---------------------------
6
1079
  **Api**