twilio-ruby 5.52.0 → 5.67.3

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 (163) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/pr-lint.yml +15 -0
  3. data/.github/workflows/test-and-deploy.yml +129 -0
  4. data/.gitignore +5 -1
  5. data/.rubocop.yml +1 -1
  6. data/.rubocop_todo.yml +91 -28
  7. data/CHANGES.md +563 -0
  8. data/Gemfile +1 -0
  9. data/Makefile +8 -11
  10. data/README.md +13 -6
  11. data/examples/examples.rb +1 -1
  12. data/lib/rack/twilio_webhook_authentication.rb +25 -1
  13. data/lib/twilio-ruby/http/http_client.rb +20 -4
  14. data/lib/twilio-ruby/http.rb +5 -0
  15. data/lib/twilio-ruby/jwt/access_token.rb +13 -0
  16. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +23 -23
  17. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +5 -5
  18. data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +8 -8
  19. data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +674 -0
  20. data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +674 -0
  21. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +68 -14
  22. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +12 -8
  23. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +1 -1
  24. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +11 -4
  25. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +11 -4
  26. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +11 -4
  27. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +17 -10
  28. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +18 -5
  29. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +34 -7
  30. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +11 -11
  31. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +11 -11
  32. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +0 -8
  33. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +0 -6
  34. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +0 -8
  35. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +0 -8
  36. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +0 -8
  37. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +10 -4
  38. data/lib/twilio-ruby/rest/chat/v3/channel.rb +275 -0
  39. data/lib/twilio-ruby/rest/chat/v3.rb +48 -0
  40. data/lib/twilio-ruby/rest/chat.rb +16 -0
  41. data/lib/twilio-ruby/rest/client.rb +21 -12
  42. data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +454 -0
  43. data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +12 -5
  44. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +7 -0
  45. data/lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb +312 -0
  46. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb +18 -2
  47. data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +269 -0
  48. data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +8 -0
  49. data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +12 -5
  50. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +7 -0
  51. data/lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb +324 -0
  52. data/lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb +466 -0
  53. data/lib/twilio-ruby/rest/conversations/v1/service/user.rb +44 -0
  54. data/lib/twilio-ruby/rest/conversations/v1/service.rb +23 -0
  55. data/lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb +442 -0
  56. data/lib/twilio-ruby/rest/conversations/v1/user.rb +35 -0
  57. data/lib/twilio-ruby/rest/conversations/v1.rb +24 -0
  58. data/lib/twilio-ruby/rest/conversations.rb +15 -0
  59. data/lib/twilio-ruby/rest/events/v1/event_type.rb +12 -5
  60. data/lib/twilio-ruby/rest/events/v1/sink.rb +41 -5
  61. data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +28 -0
  62. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +55 -34
  63. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +236 -0
  64. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +330 -0
  65. data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +384 -0
  66. data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +233 -0
  67. data/lib/twilio-ruby/rest/flex_api/v1.rb +16 -0
  68. data/lib/twilio-ruby/rest/flex_api.rb +9 -0
  69. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +258 -0
  70. data/lib/twilio-ruby/rest/{fax → frontline_api}/v1.rb +11 -11
  71. data/lib/twilio-ruby/rest/{fax.rb → frontline_api.rb} +11 -11
  72. data/lib/twilio-ruby/rest/insights/v1/annotation.rb +271 -0
  73. data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +434 -0
  74. data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +474 -0
  75. data/lib/twilio-ruby/rest/insights/v1/conference.rb +512 -0
  76. data/lib/twilio-ruby/rest/insights/v1/setting.rb +215 -0
  77. data/lib/twilio-ruby/rest/insights/v1.rb +46 -0
  78. data/lib/twilio-ruby/rest/insights.rb +28 -0
  79. data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +268 -0
  80. data/lib/twilio-ruby/rest/lookups/v2.rb +45 -0
  81. data/lib/twilio-ruby/rest/lookups.rb +7 -0
  82. data/lib/twilio-ruby/rest/media/v1/media_processor.rb +397 -0
  83. data/lib/twilio-ruby/rest/media/v1/media_recording.rb +406 -0
  84. data/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +221 -0
  85. data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +403 -0
  86. data/lib/twilio-ruby/rest/media/v1.rb +76 -0
  87. data/lib/twilio-ruby/rest/media.rb +65 -0
  88. data/lib/twilio-ruby/rest/{fax/v1/fax/fax_media.rb → messaging/v1/brand_registration/brand_vetting.rb} +134 -95
  89. data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +127 -2
  90. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +7 -0
  91. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +187 -20
  92. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person_usecase.rb +6 -2
  93. data/lib/twilio-ruby/rest/messaging/v1/service.rb +37 -5
  94. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +268 -0
  95. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb +188 -0
  96. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +128 -26
  97. data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +7 -0
  98. data/lib/twilio-ruby/rest/pricing/v2/country.rb +280 -0
  99. data/lib/twilio-ruby/rest/pricing/v2/number.rb +225 -0
  100. data/lib/twilio-ruby/rest/pricing/v2.rb +37 -0
  101. data/lib/twilio-ruby/rest/pricing.rb +19 -0
  102. data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +1 -1
  103. data/lib/twilio-ruby/rest/serverless/v1/service.rb +7 -0
  104. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +1 -1
  105. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +1 -1
  106. data/lib/twilio-ruby/rest/supersim/v1/esim_profile.rb +372 -0
  107. data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +44 -55
  108. data/lib/twilio-ruby/rest/supersim/v1/{command.rb → ip_command.rb} +132 -84
  109. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +231 -0
  110. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +30 -1
  111. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +1 -1
  112. data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +23 -9
  113. data/lib/twilio-ruby/rest/supersim/v1.rb +23 -7
  114. data/lib/twilio-ruby/rest/supersim.rb +15 -6
  115. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +7 -0
  116. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +7 -3
  117. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +6 -2
  118. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +7 -3
  119. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +23 -11
  120. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +4 -2
  121. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +4 -2
  122. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +38 -22
  123. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +19 -3
  124. data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +155 -10
  125. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +12 -9
  126. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +74 -22
  127. data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +34 -15
  128. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +66 -31
  129. data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +7 -3
  130. data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +25 -7
  131. data/lib/twilio-ruby/rest/verify/v2/service/webhook.rb +24 -5
  132. data/lib/twilio-ruby/rest/verify/v2/service.rb +40 -11
  133. data/lib/twilio-ruby/rest/verify/v2/template.rb +206 -0
  134. data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +89 -21
  135. data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +234 -0
  136. data/lib/twilio-ruby/rest/verify/v2.rb +14 -0
  137. data/lib/twilio-ruby/rest/verify.rb +14 -2
  138. data/lib/twilio-ruby/rest/video/v1/composition.rb +21 -8
  139. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +0 -8
  140. data/lib/twilio-ruby/rest/video/v1/recording.rb +21 -0
  141. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +7 -0
  142. data/lib/twilio-ruby/rest/video/v1/room.rb +62 -5
  143. data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +184 -0
  144. data/lib/twilio-ruby/rest/voice/v1.rb +21 -0
  145. data/lib/twilio-ruby/rest/voice.rb +8 -0
  146. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +3 -3
  147. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +16 -26
  148. data/lib/twilio-ruby/rest.rb +13 -0
  149. data/lib/twilio-ruby/twiml/voice_response.rb +727 -87
  150. data/lib/twilio-ruby/version.rb +1 -1
  151. data/lib/twilio-ruby.rb +6 -16
  152. data/sonar-project.properties +13 -0
  153. data/twilio-ruby.gemspec +1 -2
  154. metadata +59 -32
  155. data/.travis.yml +0 -45
  156. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -536
  157. /data/lib/twilio-ruby/framework/{domain.rb → rest/domain.rb} +0 -0
  158. /data/lib/twilio-ruby/framework/{error.rb → rest/error.rb} +0 -0
  159. /data/lib/twilio-ruby/framework/{helper.rb → rest/helper.rb} +0 -0
  160. /data/lib/twilio-ruby/framework/{obsolete_client.rb → rest/obsolete_client.rb} +0 -0
  161. /data/lib/twilio-ruby/framework/{page.rb → rest/page.rb} +0 -0
  162. /data/lib/twilio-ruby/framework/{resource.rb → rest/resource.rb} +0 -0
  163. /data/lib/twilio-ruby/framework/{version.rb → rest/version.rb} +0 -0
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '5.52.0'
2
+ VERSION = '5.67.3'
3
3
  end
data/lib/twilio-ruby.rb CHANGED
@@ -10,33 +10,23 @@ require 'time'
10
10
  require 'json'
11
11
 
12
12
  require 'twilio-ruby/version' unless defined?(Twilio::VERSION)
13
- require 'rack/twilio_webhook_authentication'
13
+ require 'rack/twilio_webhook_authentication' if defined?(Rack) && defined?(Rack::MediaType)
14
14
 
15
15
  require 'twilio-ruby/util'
16
16
  require 'twilio-ruby/security/request_validator'
17
17
  require 'twilio-ruby/util/configuration'
18
18
 
19
- Dir[File.dirname(__FILE__) + '/twilio-ruby/http/**/*.rb'].sort.each do |file|
20
- require file
21
- end
22
- Dir[File.dirname(__FILE__) + '/twilio-ruby/framework/**/*.rb'].sort.each do |file|
23
- require file
24
- end
25
- Dir[File.dirname(__FILE__) + '/twilio-ruby/rest/*.rb'].sort.each do |file|
26
- require file
27
- end
28
- Dir[File.dirname(__FILE__) + '/twilio-ruby/rest/**/*.rb'].sort.each do |file|
29
- require file
30
- end
31
- Dir[File.dirname(__FILE__) + '/twilio-ruby/compatibility/**/*.rb'].sort.each do |file|
19
+ Dir[File.join(__dir__, 'twilio-ruby/framework/*.rb')].sort.each do |file|
32
20
  require file
33
21
  end
34
22
 
35
23
  module Twilio
36
24
  extend SingleForwardable
37
25
 
38
- autoload :JWT, File.join(File.dirname(__FILE__), 'twilio-ruby', 'jwt', 'jwt.rb')
39
- autoload :TwiML, File.join(File.dirname(__FILE__), 'twilio-ruby', 'twiml', 'twiml.rb')
26
+ autoload :JWT, File.join(__dir__, 'twilio-ruby', 'jwt', 'jwt.rb')
27
+ autoload :TwiML, File.join(__dir__, 'twilio-ruby', 'twiml', 'twiml.rb')
28
+ autoload :HTTP, File.join(__dir__, 'twilio-ruby', 'http.rb')
29
+ autoload :REST, File.join(__dir__, 'twilio-ruby', 'rest.rb')
40
30
 
41
31
  def_delegators :configuration, :account_sid, :auth_token, :http_client, :region, :edge, :logger
42
32
 
@@ -0,0 +1,13 @@
1
+ sonar.projectKey=twilio_twilio-ruby
2
+ sonar.projectName=twilio-ruby
3
+ sonar.organization=twilio
4
+
5
+ sonar.sources=lib/twilio-ruby
6
+ # Exclude any auto-generated source code
7
+ sonar.exclusions=lib/twilio-ruby/rest/**/*
8
+ sonar.tests=spec/
9
+ # Exclude any auto-generated integration tests
10
+ sonar.test.exclusions=spec/integration/**/*.spec.rb
11
+
12
+ # For Code Coverage analysis
13
+ sonar.ruby.coverage.reportPaths=coverage/coverage.json
data/twilio-ruby.gemspec CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
26
26
 
27
27
  spec.add_dependency('jwt', '>= 1.5', '<= 2.5')
28
28
  spec.add_dependency('nokogiri', '>= 1.6', '< 2.0')
29
- spec.add_dependency('faraday', '>= 0.9', '< 2.0')
29
+ spec.add_dependency('faraday', '>= 0.9', '< 3.0')
30
30
  # Workaround for RBX <= 2.2.1, should be fixed in next version
31
31
  spec.add_dependency('rubysl') if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
32
32
 
@@ -36,7 +36,6 @@ Gem::Specification.new do |spec|
36
36
  spec.add_development_dependency 'rack', '~> 2.0'
37
37
  spec.add_development_dependency 'rake', '~> 13.0'
38
38
  spec.add_development_dependency 'rspec', '~> 3.0'
39
- spec.add_development_dependency 'rubocop', '~> 0.82.0'
40
39
  spec.add_development_dependency 'yard', '~> 0.9.9'
41
40
  spec.add_development_dependency 'logger', '~> 1.4.2'
42
41
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twilio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.52.0
4
+ version: 5.67.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twilio API Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-21 00:00:00.000000000 Z
11
+ date: 2022-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -59,7 +59,7 @@ dependencies:
59
59
  version: '0.9'
60
60
  - - "<"
61
61
  - !ruby/object:Gem::Version
62
- version: '2.0'
62
+ version: '3.0'
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
@@ -69,7 +69,7 @@ dependencies:
69
69
  version: '0.9'
70
70
  - - "<"
71
71
  - !ruby/object:Gem::Version
72
- version: '2.0'
72
+ version: '3.0'
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: bundler
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -160,20 +160,6 @@ dependencies:
160
160
  - - "~>"
161
161
  - !ruby/object:Gem::Version
162
162
  version: '3.0'
163
- - !ruby/object:Gem::Dependency
164
- name: rubocop
165
- requirement: !ruby/object:Gem::Requirement
166
- requirements:
167
- - - "~>"
168
- - !ruby/object:Gem::Version
169
- version: 0.82.0
170
- type: :development
171
- prerelease: false
172
- version_requirements: !ruby/object:Gem::Requirement
173
- requirements:
174
- - - "~>"
175
- - !ruby/object:Gem::Version
176
- version: 0.82.0
177
163
  - !ruby/object:Gem::Dependency
178
164
  name: yard
179
165
  requirement: !ruby/object:Gem::Requirement
@@ -212,10 +198,11 @@ extra_rdoc_files:
212
198
  - LICENSE
213
199
  files:
214
200
  - ".dockerignore"
201
+ - ".github/workflows/pr-lint.yml"
202
+ - ".github/workflows/test-and-deploy.yml"
215
203
  - ".gitignore"
216
204
  - ".rubocop.yml"
217
205
  - ".rubocop_todo.yml"
218
- - ".travis.yml"
219
206
  - AUTHORS.md
220
207
  - CHANGES.md
221
208
  - CODE_OF_CONDUCT.md
@@ -236,23 +223,25 @@ files:
236
223
  - githooks/pre-commit
237
224
  - lib/rack/twilio_webhook_authentication.rb
238
225
  - lib/twilio-ruby.rb
239
- - lib/twilio-ruby/framework/domain.rb
240
- - lib/twilio-ruby/framework/error.rb
241
- - lib/twilio-ruby/framework/helper.rb
242
- - lib/twilio-ruby/framework/obsolete_client.rb
243
- - lib/twilio-ruby/framework/page.rb
244
226
  - lib/twilio-ruby/framework/request.rb
245
- - lib/twilio-ruby/framework/resource.rb
246
227
  - lib/twilio-ruby/framework/response.rb
228
+ - lib/twilio-ruby/framework/rest/domain.rb
229
+ - lib/twilio-ruby/framework/rest/error.rb
230
+ - lib/twilio-ruby/framework/rest/helper.rb
231
+ - lib/twilio-ruby/framework/rest/obsolete_client.rb
232
+ - lib/twilio-ruby/framework/rest/page.rb
233
+ - lib/twilio-ruby/framework/rest/resource.rb
234
+ - lib/twilio-ruby/framework/rest/version.rb
247
235
  - lib/twilio-ruby/framework/serialize.rb
248
236
  - lib/twilio-ruby/framework/twilio_response.rb
249
237
  - lib/twilio-ruby/framework/values.rb
250
- - lib/twilio-ruby/framework/version.rb
238
+ - lib/twilio-ruby/http.rb
251
239
  - lib/twilio-ruby/http/http_client.rb
252
240
  - lib/twilio-ruby/jwt/access_token.rb
253
241
  - lib/twilio-ruby/jwt/client_capability.rb
254
242
  - lib/twilio-ruby/jwt/jwt.rb
255
243
  - lib/twilio-ruby/jwt/task_router.rb
244
+ - lib/twilio-ruby/rest.rb
256
245
  - lib/twilio-ruby/rest/accounts.rb
257
246
  - lib/twilio-ruby/rest/accounts/v1.rb
258
247
  - lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb
@@ -283,6 +272,8 @@ files:
283
272
  - lib/twilio-ruby/rest/api/v2010/account/call/notification.rb
284
273
  - lib/twilio-ruby/rest/api/v2010/account/call/payment.rb
285
274
  - lib/twilio-ruby/rest/api/v2010/account/call/recording.rb
275
+ - lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb
276
+ - lib/twilio-ruby/rest/api/v2010/account/call/stream.rb
286
277
  - lib/twilio-ruby/rest/api/v2010/account/conference.rb
287
278
  - lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb
288
279
  - lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb
@@ -385,9 +376,12 @@ files:
385
376
  - lib/twilio-ruby/rest/chat/v2/service/user.rb
386
377
  - lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb
387
378
  - lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb
379
+ - lib/twilio-ruby/rest/chat/v3.rb
380
+ - lib/twilio-ruby/rest/chat/v3/channel.rb
388
381
  - lib/twilio-ruby/rest/client.rb
389
382
  - lib/twilio-ruby/rest/conversations.rb
390
383
  - lib/twilio-ruby/rest/conversations/v1.rb
384
+ - lib/twilio-ruby/rest/conversations/v1/address_configuration.rb
391
385
  - lib/twilio-ruby/rest/conversations/v1/configuration.rb
392
386
  - lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb
393
387
  - lib/twilio-ruby/rest/conversations/v1/conversation.rb
@@ -396,19 +390,24 @@ files:
396
390
  - lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb
397
391
  - lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb
398
392
  - lib/twilio-ruby/rest/conversations/v1/credential.rb
393
+ - lib/twilio-ruby/rest/conversations/v1/participant_conversation.rb
399
394
  - lib/twilio-ruby/rest/conversations/v1/role.rb
400
395
  - lib/twilio-ruby/rest/conversations/v1/service.rb
401
396
  - lib/twilio-ruby/rest/conversations/v1/service/binding.rb
402
397
  - lib/twilio-ruby/rest/conversations/v1/service/configuration.rb
403
398
  - lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb
399
+ - lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb
404
400
  - lib/twilio-ruby/rest/conversations/v1/service/conversation.rb
405
401
  - lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb
406
402
  - lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb
407
403
  - lib/twilio-ruby/rest/conversations/v1/service/conversation/participant.rb
408
404
  - lib/twilio-ruby/rest/conversations/v1/service/conversation/webhook.rb
405
+ - lib/twilio-ruby/rest/conversations/v1/service/participant_conversation.rb
409
406
  - lib/twilio-ruby/rest/conversations/v1/service/role.rb
410
407
  - lib/twilio-ruby/rest/conversations/v1/service/user.rb
408
+ - lib/twilio-ruby/rest/conversations/v1/service/user/user_conversation.rb
411
409
  - lib/twilio-ruby/rest/conversations/v1/user.rb
410
+ - lib/twilio-ruby/rest/conversations/v1/user/user_conversation.rb
412
411
  - lib/twilio-ruby/rest/events.rb
413
412
  - lib/twilio-ruby/rest/events/v1.rb
414
413
  - lib/twilio-ruby/rest/events/v1/event_type.rb
@@ -419,24 +418,32 @@ files:
419
418
  - lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb
420
419
  - lib/twilio-ruby/rest/events/v1/subscription.rb
421
420
  - lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb
422
- - lib/twilio-ruby/rest/fax.rb
423
- - lib/twilio-ruby/rest/fax/v1.rb
424
- - lib/twilio-ruby/rest/fax/v1/fax.rb
425
- - lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb
426
421
  - lib/twilio-ruby/rest/flex_api.rb
427
422
  - lib/twilio-ruby/rest/flex_api/v1.rb
428
423
  - lib/twilio-ruby/rest/flex_api/v1/channel.rb
429
424
  - lib/twilio-ruby/rest/flex_api/v1/configuration.rb
430
425
  - lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb
426
+ - lib/twilio-ruby/rest/flex_api/v1/interaction.rb
427
+ - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb
428
+ - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb
429
+ - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb
431
430
  - lib/twilio-ruby/rest/flex_api/v1/web_channel.rb
431
+ - lib/twilio-ruby/rest/frontline_api.rb
432
+ - lib/twilio-ruby/rest/frontline_api/v1.rb
433
+ - lib/twilio-ruby/rest/frontline_api/v1/user.rb
432
434
  - lib/twilio-ruby/rest/insights.rb
433
435
  - lib/twilio-ruby/rest/insights/v1.rb
436
+ - lib/twilio-ruby/rest/insights/v1/annotation.rb
434
437
  - lib/twilio-ruby/rest/insights/v1/call.rb
435
438
  - lib/twilio-ruby/rest/insights/v1/call/event.rb
436
439
  - lib/twilio-ruby/rest/insights/v1/call/metric.rb
437
440
  - lib/twilio-ruby/rest/insights/v1/call/summary.rb
441
+ - lib/twilio-ruby/rest/insights/v1/call_summaries.rb
442
+ - lib/twilio-ruby/rest/insights/v1/conference.rb
443
+ - lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb
438
444
  - lib/twilio-ruby/rest/insights/v1/room.rb
439
445
  - lib/twilio-ruby/rest/insights/v1/room/participant.rb
446
+ - lib/twilio-ruby/rest/insights/v1/setting.rb
440
447
  - lib/twilio-ruby/rest/ip_messaging.rb
441
448
  - lib/twilio-ruby/rest/ip_messaging/v1.rb
442
449
  - lib/twilio-ruby/rest/ip_messaging/v1/credential.rb
@@ -464,9 +471,18 @@ files:
464
471
  - lib/twilio-ruby/rest/lookups.rb
465
472
  - lib/twilio-ruby/rest/lookups/v1.rb
466
473
  - lib/twilio-ruby/rest/lookups/v1/phone_number.rb
474
+ - lib/twilio-ruby/rest/lookups/v2.rb
475
+ - lib/twilio-ruby/rest/lookups/v2/phone_number.rb
476
+ - lib/twilio-ruby/rest/media.rb
477
+ - lib/twilio-ruby/rest/media/v1.rb
478
+ - lib/twilio-ruby/rest/media/v1/media_processor.rb
479
+ - lib/twilio-ruby/rest/media/v1/media_recording.rb
480
+ - lib/twilio-ruby/rest/media/v1/player_streamer.rb
481
+ - lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb
467
482
  - lib/twilio-ruby/rest/messaging.rb
468
483
  - lib/twilio-ruby/rest/messaging/v1.rb
469
484
  - lib/twilio-ruby/rest/messaging/v1/brand_registration.rb
485
+ - lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb
470
486
  - lib/twilio-ruby/rest/messaging/v1/deactivation.rb
471
487
  - lib/twilio-ruby/rest/messaging/v1/external_campaign.rb
472
488
  - lib/twilio-ruby/rest/messaging/v1/service.rb
@@ -490,8 +506,10 @@ files:
490
506
  - lib/twilio-ruby/rest/numbers/v2.rb
491
507
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb
492
508
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb
509
+ - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb
493
510
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb
494
511
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb
512
+ - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/replace_items.rb
495
513
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user.rb
496
514
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/end_user_type.rb
497
515
  - lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb
@@ -565,6 +583,8 @@ files:
565
583
  - lib/twilio-ruby/rest/pricing/v1/voice/country.rb
566
584
  - lib/twilio-ruby/rest/pricing/v1/voice/number.rb
567
585
  - lib/twilio-ruby/rest/pricing/v2.rb
586
+ - lib/twilio-ruby/rest/pricing/v2/country.rb
587
+ - lib/twilio-ruby/rest/pricing/v2/number.rb
568
588
  - lib/twilio-ruby/rest/pricing/v2/voice.rb
569
589
  - lib/twilio-ruby/rest/pricing/v2/voice/country.rb
570
590
  - lib/twilio-ruby/rest/pricing/v2/voice/number.rb
@@ -613,12 +633,14 @@ files:
613
633
  - lib/twilio-ruby/rest/studio/v2/flow_validate.rb
614
634
  - lib/twilio-ruby/rest/supersim.rb
615
635
  - lib/twilio-ruby/rest/supersim/v1.rb
616
- - lib/twilio-ruby/rest/supersim/v1/command.rb
636
+ - lib/twilio-ruby/rest/supersim/v1/esim_profile.rb
617
637
  - lib/twilio-ruby/rest/supersim/v1/fleet.rb
638
+ - lib/twilio-ruby/rest/supersim/v1/ip_command.rb
618
639
  - lib/twilio-ruby/rest/supersim/v1/network.rb
619
640
  - lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb
620
641
  - lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb
621
642
  - lib/twilio-ruby/rest/supersim/v1/sim.rb
643
+ - lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb
622
644
  - lib/twilio-ruby/rest/supersim/v1/sms_command.rb
623
645
  - lib/twilio-ruby/rest/supersim/v1/usage_record.rb
624
646
  - lib/twilio-ruby/rest/sync.rb
@@ -700,7 +722,9 @@ files:
700
722
  - lib/twilio-ruby/rest/verify/v2/service/verification.rb
701
723
  - lib/twilio-ruby/rest/verify/v2/service/verification_check.rb
702
724
  - lib/twilio-ruby/rest/verify/v2/service/webhook.rb
725
+ - lib/twilio-ruby/rest/verify/v2/template.rb
703
726
  - lib/twilio-ruby/rest/verify/v2/verification_attempt.rb
727
+ - lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb
704
728
  - lib/twilio-ruby/rest/video.rb
705
729
  - lib/twilio-ruby/rest/video/v1.rb
706
730
  - lib/twilio-ruby/rest/video/v1/composition.rb
@@ -717,6 +741,7 @@ files:
717
741
  - lib/twilio-ruby/rest/video/v1/room/room_recording_rule.rb
718
742
  - lib/twilio-ruby/rest/voice.rb
719
743
  - lib/twilio-ruby/rest/voice/v1.rb
744
+ - lib/twilio-ruby/rest/voice/v1/archived_call.rb
720
745
  - lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb
721
746
  - lib/twilio-ruby/rest/voice/v1/connection_policy.rb
722
747
  - lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb
@@ -743,6 +768,7 @@ files:
743
768
  - lib/twilio-ruby/util.rb
744
769
  - lib/twilio-ruby/util/configuration.rb
745
770
  - lib/twilio-ruby/version.rb
771
+ - sonar-project.properties
746
772
  - twilio-ruby.gemspec
747
773
  homepage: https://github.com/twilio/twilio-ruby
748
774
  licenses:
@@ -770,7 +796,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
770
796
  - !ruby/object:Gem::Version
771
797
  version: '0'
772
798
  requirements: []
773
- rubygems_version: 3.0.8
799
+ rubyforge_project:
800
+ rubygems_version: 2.6.14.4
774
801
  signing_key:
775
802
  specification_version: 4
776
803
  summary: The official library for communicating with the Twilio REST API, building
data/.travis.yml DELETED
@@ -1,45 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- bundler_args: --without development
4
-
5
- rvm:
6
- - ruby-head
7
- - 3.0
8
- - 2.7
9
- - 2.6
10
- - 2.5
11
- - 2.4
12
- - jruby-9.2
13
-
14
- services:
15
- - docker
16
-
17
- install: make install
18
- script: make test
19
-
20
- matrix:
21
- allow_failures:
22
- - rvm: ruby-head
23
- fast_finish: true
24
-
25
- deploy:
26
- - provider: script
27
- script: make docker-build && make docker-push
28
- skip_cleanup: true
29
- on:
30
- tags: true
31
- rvm: "2.4"
32
- - provider: rubygems
33
- api_key: $RUBYGEMS_APIKEY
34
- on:
35
- tags: true
36
- rvm: "2.4"
37
-
38
- notifications:
39
- slack:
40
- if: branch = main
41
- on_pull_requests: false
42
- on_success: never
43
- on_failure: change
44
- rooms:
45
- - secure: AxzkBxp8izIXqkOEDiUaGjjym60GvuJeV1sBAHnLXqujDDpvdCeM+G8r274Xp48l7YqFz72PR2prFrAl8qMY5IVVFBolH1BtXqa7MsgclFKXXhq87y7OqzrUHVwdB1TAhse7k/wkeVN+mFPZswzSYqDzR3WmAbBG0iT6d1szO6c=