twilio-ruby 5.52.0 → 5.56.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_todo.yml +7 -7
  3. data/.travis.yml +22 -28
  4. data/CHANGES.md +85 -0
  5. data/README.md +10 -2
  6. data/lib/twilio-ruby.rb +5 -15
  7. data/lib/twilio-ruby/framework/{domain.rb → rest/domain.rb} +0 -0
  8. data/lib/twilio-ruby/framework/{error.rb → rest/error.rb} +0 -0
  9. data/lib/twilio-ruby/framework/{helper.rb → rest/helper.rb} +0 -0
  10. data/lib/twilio-ruby/framework/{obsolete_client.rb → rest/obsolete_client.rb} +0 -0
  11. data/lib/twilio-ruby/framework/{page.rb → rest/page.rb} +0 -0
  12. data/lib/twilio-ruby/framework/{resource.rb → rest/resource.rb} +0 -0
  13. data/lib/twilio-ruby/framework/{version.rb → rest/version.rb} +0 -0
  14. data/lib/twilio-ruby/http.rb +5 -0
  15. data/lib/twilio-ruby/http/http_client.rb +14 -2
  16. data/lib/twilio-ruby/rest.rb +13 -0
  17. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +23 -23
  18. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +5 -5
  19. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +8 -7
  20. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +2 -2
  21. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +0 -8
  22. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +0 -8
  23. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +0 -6
  24. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +0 -8
  25. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +0 -8
  26. data/lib/twilio-ruby/rest/client.rb +7 -0
  27. data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +7 -0
  28. data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +7 -0
  29. data/lib/twilio-ruby/rest/events/v1/event_type.rb +12 -5
  30. data/lib/twilio-ruby/rest/events/v1/sink.rb +41 -5
  31. data/lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb +28 -22
  32. data/lib/twilio-ruby/rest/frontline_api.rb +47 -0
  33. data/lib/twilio-ruby/rest/frontline_api/v1.rb +45 -0
  34. data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +233 -0
  35. data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +7 -0
  36. data/lib/twilio-ruby/rest/messaging/v1/service.rb +8 -2
  37. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +178 -18
  38. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +1 -1
  39. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +1 -1
  40. data/lib/twilio-ruby/rest/supersim/v1/sim.rb +30 -1
  41. data/lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb +231 -0
  42. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +16 -7
  43. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +6 -7
  44. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +43 -18
  45. data/lib/twilio-ruby/rest/video/v1/composition.rb +0 -8
  46. data/lib/twilio-ruby/rest/video/v1/composition_hook.rb +0 -8
  47. data/lib/twilio-ruby/version.rb +1 -1
  48. metadata +15 -9
@@ -10,8 +10,6 @@ module Twilio
10
10
  module REST
11
11
  class Video < Domain
12
12
  class V1 < Version
13
- ##
14
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
15
13
  class CompositionList < ListResource
16
14
  ##
17
15
  # Initialize the CompositionList
@@ -234,8 +232,6 @@ module Twilio
234
232
  end
235
233
  end
236
234
 
237
- ##
238
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
239
235
  class CompositionPage < Page
240
236
  ##
241
237
  # Initialize the CompositionPage
@@ -265,8 +261,6 @@ module Twilio
265
261
  end
266
262
  end
267
263
 
268
- ##
269
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
270
264
  class CompositionContext < InstanceContext
271
265
  ##
272
266
  # Initialize the CompositionContext
@@ -312,8 +306,6 @@ module Twilio
312
306
  end
313
307
  end
314
308
 
315
- ##
316
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
317
309
  class CompositionInstance < InstanceResource
318
310
  ##
319
311
  # Initialize the CompositionInstance
@@ -10,8 +10,6 @@ module Twilio
10
10
  module REST
11
11
  class Video < Domain
12
12
  class V1 < Version
13
- ##
14
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
15
13
  class CompositionHookList < ListResource
16
14
  ##
17
15
  # Initialize the CompositionHookList
@@ -248,8 +246,6 @@ module Twilio
248
246
  end
249
247
  end
250
248
 
251
- ##
252
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
253
249
  class CompositionHookPage < Page
254
250
  ##
255
251
  # Initialize the CompositionHookPage
@@ -279,8 +275,6 @@ module Twilio
279
275
  end
280
276
  end
281
277
 
282
- ##
283
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
284
278
  class CompositionHookContext < InstanceContext
285
279
  ##
286
280
  # Initialize the CompositionHookContext
@@ -412,8 +406,6 @@ module Twilio
412
406
  end
413
407
  end
414
408
 
415
- ##
416
- # PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
417
409
  class CompositionHookInstance < InstanceResource
418
410
  ##
419
411
  # Initialize the CompositionHookInstance
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '5.52.0'
2
+ VERSION = '5.56.0'
3
3
  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.56.0
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: 2021-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -236,23 +236,25 @@ files:
236
236
  - githooks/pre-commit
237
237
  - lib/rack/twilio_webhook_authentication.rb
238
238
  - 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
239
  - lib/twilio-ruby/framework/request.rb
245
- - lib/twilio-ruby/framework/resource.rb
246
240
  - lib/twilio-ruby/framework/response.rb
241
+ - lib/twilio-ruby/framework/rest/domain.rb
242
+ - lib/twilio-ruby/framework/rest/error.rb
243
+ - lib/twilio-ruby/framework/rest/helper.rb
244
+ - lib/twilio-ruby/framework/rest/obsolete_client.rb
245
+ - lib/twilio-ruby/framework/rest/page.rb
246
+ - lib/twilio-ruby/framework/rest/resource.rb
247
+ - lib/twilio-ruby/framework/rest/version.rb
247
248
  - lib/twilio-ruby/framework/serialize.rb
248
249
  - lib/twilio-ruby/framework/twilio_response.rb
249
250
  - lib/twilio-ruby/framework/values.rb
250
- - lib/twilio-ruby/framework/version.rb
251
+ - lib/twilio-ruby/http.rb
251
252
  - lib/twilio-ruby/http/http_client.rb
252
253
  - lib/twilio-ruby/jwt/access_token.rb
253
254
  - lib/twilio-ruby/jwt/client_capability.rb
254
255
  - lib/twilio-ruby/jwt/jwt.rb
255
256
  - lib/twilio-ruby/jwt/task_router.rb
257
+ - lib/twilio-ruby/rest.rb
256
258
  - lib/twilio-ruby/rest/accounts.rb
257
259
  - lib/twilio-ruby/rest/accounts/v1.rb
258
260
  - lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb
@@ -429,6 +431,9 @@ files:
429
431
  - lib/twilio-ruby/rest/flex_api/v1/configuration.rb
430
432
  - lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb
431
433
  - lib/twilio-ruby/rest/flex_api/v1/web_channel.rb
434
+ - lib/twilio-ruby/rest/frontline_api.rb
435
+ - lib/twilio-ruby/rest/frontline_api/v1.rb
436
+ - lib/twilio-ruby/rest/frontline_api/v1/user.rb
432
437
  - lib/twilio-ruby/rest/insights.rb
433
438
  - lib/twilio-ruby/rest/insights/v1.rb
434
439
  - lib/twilio-ruby/rest/insights/v1/call.rb
@@ -619,6 +624,7 @@ files:
619
624
  - lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb
620
625
  - lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb
621
626
  - lib/twilio-ruby/rest/supersim/v1/sim.rb
627
+ - lib/twilio-ruby/rest/supersim/v1/sim/billing_period.rb
622
628
  - lib/twilio-ruby/rest/supersim/v1/sms_command.rb
623
629
  - lib/twilio-ruby/rest/supersim/v1/usage_record.rb
624
630
  - lib/twilio-ruby/rest/sync.rb