twilio-ruby 5.74.1 → 7.8.0

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