twilio-ruby 5.75.0 → 5.77.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.
- checksums.yaml +4 -4
- data/CHANGES.md +31 -0
- data/CONTRIBUTING.md +1 -7
- data/README.md +132 -45
- data/advanced-examples/custom-http-client.md +170 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +43 -5
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation.rb +43 -5
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +9 -3
- data/lib/twilio-ruby/rest/lookups/v2/phone_number.rb +0 -7
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb +134 -0
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +26 -3
- data/lib/twilio-ruby/rest/messaging/v1/domain_config.rb +4 -29
- data/lib/twilio-ruby/rest/messaging/v1/tollfree_verification.rb +14 -0
- data/lib/twilio-ruby/rest/numbers/v1/eligibility.rb +111 -0
- data/lib/twilio-ruby/rest/numbers/v1.rb +35 -0
- data/lib/twilio-ruby/rest/numbers.rb +13 -0
- data/lib/twilio-ruby/rest/verify/v2/service.rb +3 -3
- data/lib/twilio-ruby/rest/verify/v2/template.rb +3 -3
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +6 -2
@@ -26,7 +26,7 @@ module Twilio
|
|
26
26
|
##
|
27
27
|
# Create the ServiceInstance
|
28
28
|
# @param [String] friendly_name A descriptive string that you create to describe
|
29
|
-
# the verification service. It can be up to
|
29
|
+
# the verification service. It can be up to 32 characters long. **This value
|
30
30
|
# should not contain PII.**
|
31
31
|
# @param [String] code_length The length of the verification code to generate.
|
32
32
|
# Must be an integer value between 4 and 10, inclusive.
|
@@ -264,7 +264,7 @@ module Twilio
|
|
264
264
|
##
|
265
265
|
# Update the ServiceInstance
|
266
266
|
# @param [String] friendly_name A descriptive string that you create to describe
|
267
|
-
# the verification service. It can be up to
|
267
|
+
# the verification service. It can be up to 32 characters long. **This value
|
268
268
|
# should not contain PII.**
|
269
269
|
# @param [String] code_length The length of the verification code to generate.
|
270
270
|
# Must be an integer value between 4 and 10, inclusive.
|
@@ -649,7 +649,7 @@ module Twilio
|
|
649
649
|
##
|
650
650
|
# Update the ServiceInstance
|
651
651
|
# @param [String] friendly_name A descriptive string that you create to describe
|
652
|
-
# the verification service. It can be up to
|
652
|
+
# the verification service. It can be up to 32 characters long. **This value
|
653
653
|
# should not contain PII.**
|
654
654
|
# @param [String] code_length The length of the verification code to generate.
|
655
655
|
# Must be an integer value between 4 and 10, inclusive.
|
@@ -28,7 +28,7 @@ module Twilio
|
|
28
28
|
# Unlike stream(), this operation is eager and will load `limit` records into
|
29
29
|
# memory before returning.
|
30
30
|
# @param [String] friendly_name String filter used to query templates with a given
|
31
|
-
# friendly name
|
31
|
+
# friendly name.
|
32
32
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
33
33
|
# guarantees to never return more than limit. Default is no limit
|
34
34
|
# @param [Integer] page_size Number of records to fetch per request, when
|
@@ -45,7 +45,7 @@ module Twilio
|
|
45
45
|
# This operation lazily loads records as efficiently as possible until the limit
|
46
46
|
# is reached.
|
47
47
|
# @param [String] friendly_name String filter used to query templates with a given
|
48
|
-
# friendly name
|
48
|
+
# friendly name.
|
49
49
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
50
50
|
# guarantees to never return more than limit. Default is no limit.
|
51
51
|
# @param [Integer] page_size Number of records to fetch per request, when
|
@@ -79,7 +79,7 @@ module Twilio
|
|
79
79
|
# Retrieve a single page of TemplateInstance records from the API.
|
80
80
|
# Request is executed immediately.
|
81
81
|
# @param [String] friendly_name String filter used to query templates with a given
|
82
|
-
# friendly name
|
82
|
+
# friendly name.
|
83
83
|
# @param [String] page_token PageToken provided by the API
|
84
84
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
85
85
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
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: 5.
|
4
|
+
version: 5.77.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: 2023-
|
11
|
+
date: 2023-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -217,6 +217,7 @@ files:
|
|
217
217
|
- Rakefile
|
218
218
|
- UPGRADE.md
|
219
219
|
- VERSIONS.md
|
220
|
+
- advanced-examples/custom-http-client.md
|
220
221
|
- conf/cacert.pem
|
221
222
|
- examples/examples.rb
|
222
223
|
- examples/print_call_log.rb
|
@@ -503,6 +504,7 @@ files:
|
|
503
504
|
- lib/twilio-ruby/rest/messaging.rb
|
504
505
|
- lib/twilio-ruby/rest/messaging/v1.rb
|
505
506
|
- lib/twilio-ruby/rest/messaging/v1/brand_registration.rb
|
507
|
+
- lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_registration_otp.rb
|
506
508
|
- lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb
|
507
509
|
- lib/twilio-ruby/rest/messaging/v1/deactivation.rb
|
508
510
|
- lib/twilio-ruby/rest/messaging/v1/domain_cert.rb
|
@@ -538,6 +540,8 @@ files:
|
|
538
540
|
- lib/twilio-ruby/rest/notify/v1/service/binding.rb
|
539
541
|
- lib/twilio-ruby/rest/notify/v1/service/notification.rb
|
540
542
|
- lib/twilio-ruby/rest/numbers.rb
|
543
|
+
- lib/twilio-ruby/rest/numbers/v1.rb
|
544
|
+
- lib/twilio-ruby/rest/numbers/v1/eligibility.rb
|
541
545
|
- lib/twilio-ruby/rest/numbers/v2.rb
|
542
546
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb
|
543
547
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb
|