twilio-ruby 7.8.6 → 7.8.8
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 +23 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/base/client_base.rb +28 -1
- data/lib/twilio-ruby/rest/content/v1/content.rb +677 -1
- data/lib/twilio-ruby/rest/iam/v1/o_auth_app.rb +462 -0
- data/lib/twilio-ruby/rest/iam/v1.rb +15 -0
- data/lib/twilio-ruby/rest/messaging/v1/domain_validate_dn.rb +208 -0
- data/lib/twilio-ruby/rest/messaging/v1.rb +15 -0
- data/lib/twilio-ruby/rest/numbers/v2/application.rb +378 -0
- data/lib/twilio-ruby/rest/numbers/v2.rb +15 -0
- data/lib/twilio-ruby/rest/oauth/v2/token.rb +6 -1
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb +3 -0
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +5 -2
|
@@ -34,6 +34,7 @@ module Twilio
|
|
|
34
34
|
# Create the ComplianceTollfreeInquiriesInstance
|
|
35
35
|
# @param [String] tollfree_phone_number The Tollfree phone number to be verified
|
|
36
36
|
# @param [String] notification_email The email address to receive the notification about the verification result.
|
|
37
|
+
# @param [String] customer_profile_sid The Customer Profile Sid associated with the Account.
|
|
37
38
|
# @param [String] business_name The name of the business or organization using the Tollfree number.
|
|
38
39
|
# @param [String] business_website The website of the business or organization using the Tollfree number.
|
|
39
40
|
# @param [Array[String]] use_case_categories The category of the use case for the Tollfree Number. List as many are applicable..
|
|
@@ -59,6 +60,7 @@ module Twilio
|
|
|
59
60
|
def create(
|
|
60
61
|
tollfree_phone_number: nil,
|
|
61
62
|
notification_email: nil,
|
|
63
|
+
customer_profile_sid: :unset,
|
|
62
64
|
business_name: :unset,
|
|
63
65
|
business_website: :unset,
|
|
64
66
|
use_case_categories: :unset,
|
|
@@ -85,6 +87,7 @@ module Twilio
|
|
|
85
87
|
data = Twilio::Values.of({
|
|
86
88
|
'TollfreePhoneNumber' => tollfree_phone_number,
|
|
87
89
|
'NotificationEmail' => notification_email,
|
|
90
|
+
'CustomerProfileSid' => customer_profile_sid,
|
|
88
91
|
'BusinessName' => business_name,
|
|
89
92
|
'BusinessWebsite' => business_website,
|
|
90
93
|
'UseCaseCategories' => Twilio.serialize_list(use_case_categories) { |e| e },
|
data/lib/twilio-ruby/version.rb
CHANGED
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.8
|
|
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-
|
|
11
|
+
date: 2025-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jwt
|
|
@@ -499,6 +499,7 @@ files:
|
|
|
499
499
|
- lib/twilio-ruby/rest/iam/v1/api_key.rb
|
|
500
500
|
- lib/twilio-ruby/rest/iam/v1/get_api_keys.rb
|
|
501
501
|
- lib/twilio-ruby/rest/iam/v1/new_api_key.rb
|
|
502
|
+
- lib/twilio-ruby/rest/iam/v1/o_auth_app.rb
|
|
502
503
|
- lib/twilio-ruby/rest/iam/v1/token.rb
|
|
503
504
|
- lib/twilio-ruby/rest/iam_base.rb
|
|
504
505
|
- lib/twilio-ruby/rest/insights.rb
|
|
@@ -592,6 +593,7 @@ files:
|
|
|
592
593
|
- lib/twilio-ruby/rest/messaging/v1/domain_certs.rb
|
|
593
594
|
- lib/twilio-ruby/rest/messaging/v1/domain_config.rb
|
|
594
595
|
- lib/twilio-ruby/rest/messaging/v1/domain_config_messaging_service.rb
|
|
596
|
+
- lib/twilio-ruby/rest/messaging/v1/domain_validate_dn.rb
|
|
595
597
|
- lib/twilio-ruby/rest/messaging/v1/external_campaign.rb
|
|
596
598
|
- lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service.rb
|
|
597
599
|
- lib/twilio-ruby/rest/messaging/v1/linkshortening_messaging_service_domain_association.rb
|
|
@@ -635,6 +637,7 @@ files:
|
|
|
635
637
|
- lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb
|
|
636
638
|
- lib/twilio-ruby/rest/numbers/v1/webhook.rb
|
|
637
639
|
- lib/twilio-ruby/rest/numbers/v2.rb
|
|
640
|
+
- lib/twilio-ruby/rest/numbers/v2/application.rb
|
|
638
641
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document.rb
|
|
639
642
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb
|
|
640
643
|
- lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb
|