twilio-ruby 7.8.0 → 7.8.2
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.
- checksums.yaml +4 -4
- data/CHANGES.md +27 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/local.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/machine_to_machine.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/mobile.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/national.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/shared_cost.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/toll_free.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country/voip.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +5 -2
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +1 -1
- data/lib/twilio-ruby/rest/client.rb +5 -0
- data/lib/twilio-ruby/rest/content/v1/content.rb +38 -1
- data/lib/twilio-ruby/rest/intelligence/v2/service.rb +17 -1
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/encrypted_operator_results.rb +217 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/encrypted_sentences.rb +217 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +43 -0
- data/lib/twilio-ruby/rest/knowledge/v1/knowledge/chunk.rb +232 -0
- data/lib/twilio-ruby/rest/knowledge/v1/knowledge/knowledge_status.rb +213 -0
- data/lib/twilio-ruby/rest/knowledge/v1/knowledge.rb +623 -0
- data/lib/twilio-ruby/rest/knowledge/v1.rb +49 -0
- data/lib/twilio-ruby/rest/knowledge.rb +6 -0
- data/lib/twilio-ruby/rest/knowledge_base.rb +38 -0
- data/lib/twilio-ruby/rest/messaging/v2/typing_indicator.rb +140 -0
- data/lib/twilio-ruby/rest/messaging/v2.rb +6 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +96 -8
- data/lib/twilio-ruby/rest/numbers/v3/hosted_number_order.rb +339 -0
- data/lib/twilio-ruby/rest/numbers/v3.rb +40 -0
- data/lib/twilio-ruby/rest/numbers_base.rb +5 -0
- data/lib/twilio-ruby/rest/oauth/v2/token.rb +186 -0
- data/lib/twilio-ruby/rest/oauth/v2.rb +40 -0
- data/lib/twilio-ruby/rest/oauth_base.rb +6 -1
- data/lib/twilio-ruby/rest/verify/v2/service/approve_challenge.rb +312 -0
- data/lib/twilio-ruby/rest/verify/v2/service/new_challenge.rb +340 -0
- data/lib/twilio-ruby/rest/verify/v2/service/new_factor.rb +467 -0
- data/lib/twilio-ruby/rest/verify/v2/service.rb +75 -0
- data/lib/twilio-ruby/rest/voice_base.rb +6 -1
- data/lib/twilio-ruby/twiml/voice_response.rb +20 -0
- data/lib/twilio-ruby/version.rb +1 -1
- data/twilio-ruby.gemspec +1 -1
- metadata +20 -4
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: 7.8.
|
4
|
+
version: 7.8.2
|
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: 2025-09-
|
11
|
+
date: 2025-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '1.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '4.0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '1.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '4.0'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: nokogiri
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -524,6 +524,8 @@ files:
|
|
524
524
|
- lib/twilio-ruby/rest/intelligence/v2/prebuilt_operator.rb
|
525
525
|
- lib/twilio-ruby/rest/intelligence/v2/service.rb
|
526
526
|
- lib/twilio-ruby/rest/intelligence/v2/transcript.rb
|
527
|
+
- lib/twilio-ruby/rest/intelligence/v2/transcript/encrypted_operator_results.rb
|
528
|
+
- lib/twilio-ruby/rest/intelligence/v2/transcript/encrypted_sentences.rb
|
527
529
|
- lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb
|
528
530
|
- lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb
|
529
531
|
- lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb
|
@@ -553,6 +555,12 @@ files:
|
|
553
555
|
- lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_binding.rb
|
554
556
|
- lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb
|
555
557
|
- lib/twilio-ruby/rest/ip_messaging_base.rb
|
558
|
+
- lib/twilio-ruby/rest/knowledge.rb
|
559
|
+
- lib/twilio-ruby/rest/knowledge/v1.rb
|
560
|
+
- lib/twilio-ruby/rest/knowledge/v1/knowledge.rb
|
561
|
+
- lib/twilio-ruby/rest/knowledge/v1/knowledge/chunk.rb
|
562
|
+
- lib/twilio-ruby/rest/knowledge/v1/knowledge/knowledge_status.rb
|
563
|
+
- lib/twilio-ruby/rest/knowledge_base.rb
|
556
564
|
- lib/twilio-ruby/rest/lookups.rb
|
557
565
|
- lib/twilio-ruby/rest/lookups/v1.rb
|
558
566
|
- lib/twilio-ruby/rest/lookups/v1/phone_number.rb
|
@@ -599,6 +607,7 @@ files:
|
|
599
607
|
- lib/twilio-ruby/rest/messaging/v1/usecase.rb
|
600
608
|
- lib/twilio-ruby/rest/messaging/v2.rb
|
601
609
|
- lib/twilio-ruby/rest/messaging/v2/channels_sender.rb
|
610
|
+
- lib/twilio-ruby/rest/messaging/v2/typing_indicator.rb
|
602
611
|
- lib/twilio-ruby/rest/messaging_base.rb
|
603
612
|
- lib/twilio-ruby/rest/monitor.rb
|
604
613
|
- lib/twilio-ruby/rest/monitor/v1.rb
|
@@ -640,11 +649,15 @@ files:
|
|
640
649
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb
|
641
650
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb
|
642
651
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document_type.rb
|
652
|
+
- lib/twilio-ruby/rest/numbers/v3.rb
|
653
|
+
- lib/twilio-ruby/rest/numbers/v3/hosted_number_order.rb
|
643
654
|
- lib/twilio-ruby/rest/numbers_base.rb
|
644
655
|
- lib/twilio-ruby/rest/oauth.rb
|
645
656
|
- lib/twilio-ruby/rest/oauth/v1.rb
|
646
657
|
- lib/twilio-ruby/rest/oauth/v1/authorize.rb
|
647
658
|
- lib/twilio-ruby/rest/oauth/v1/token.rb
|
659
|
+
- lib/twilio-ruby/rest/oauth/v2.rb
|
660
|
+
- lib/twilio-ruby/rest/oauth/v2/token.rb
|
648
661
|
- lib/twilio-ruby/rest/oauth_base.rb
|
649
662
|
- lib/twilio-ruby/rest/preview.rb
|
650
663
|
- lib/twilio-ruby/rest/preview/hosted_numbers.rb
|
@@ -831,12 +844,15 @@ files:
|
|
831
844
|
- lib/twilio-ruby/rest/verify/v2/safelist.rb
|
832
845
|
- lib/twilio-ruby/rest/verify/v2/service.rb
|
833
846
|
- lib/twilio-ruby/rest/verify/v2/service/access_token.rb
|
847
|
+
- lib/twilio-ruby/rest/verify/v2/service/approve_challenge.rb
|
834
848
|
- lib/twilio-ruby/rest/verify/v2/service/entity.rb
|
835
849
|
- lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb
|
836
850
|
- lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb
|
837
851
|
- lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb
|
838
852
|
- lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb
|
839
853
|
- lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb
|
854
|
+
- lib/twilio-ruby/rest/verify/v2/service/new_challenge.rb
|
855
|
+
- lib/twilio-ruby/rest/verify/v2/service/new_factor.rb
|
840
856
|
- lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb
|
841
857
|
- lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb
|
842
858
|
- lib/twilio-ruby/rest/verify/v2/service/verification.rb
|