twilio-ruby 5.66.0 → 5.66.1
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/.github/workflows/pr-lint.yml +15 -0
- data/CHANGES.md +13 -0
- data/README.md +2 -4
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +0 -7
- data/lib/twilio-ruby/rest/verify/v2/service/verification.rb +2 -1
- data/lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb +234 -0
- data/lib/twilio-ruby/rest/verify/v2.rb +7 -0
- data/lib/twilio-ruby/rest/verify.rb +6 -0
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27cd5b2536a7ece409f2f6222f9743446e7ed44f
|
|
4
|
+
data.tar.gz: 2d2d5e161f40f11b388f9118eebd120e9c5ba765
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32503dca86f69127f882feec36ad61d9c91f01379ae60f10bed3f9d410e30399d3436bbd097ff063a9359f100c83173b82b9203fd1871500694ef81cec6cb911
|
|
7
|
+
data.tar.gz: d426b5f3df1f6a991f0c829623dd5c67d17de0f7068ac79b586911e4dc8afb3052ac781fa5e152b7c5c63adf9f7696732ed072527457d523e3b13d4fc49574a0
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
name: Lint PR
|
|
2
|
+
on:
|
|
3
|
+
pull_request_target:
|
|
4
|
+
types: [ opened, edited, reopened ]
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
validate:
|
|
8
|
+
name: Validate title
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: amannn/action-semantic-pull-request@v4
|
|
12
|
+
with:
|
|
13
|
+
types: chore docs fix feat test
|
|
14
|
+
env:
|
|
15
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/CHANGES.md
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
twilio-ruby changelog
|
|
2
2
|
=====================
|
|
3
3
|
|
|
4
|
+
[2022-04-06] Version 5.66.1
|
|
5
|
+
---------------------------
|
|
6
|
+
**Api**
|
|
7
|
+
- Updated `provider_sid` visibility to private
|
|
8
|
+
|
|
9
|
+
**Verify**
|
|
10
|
+
- Verify List Attempts API summary endpoint added.
|
|
11
|
+
- Update PII documentation for `AccessTokens` `factor_friendly_name` property.
|
|
12
|
+
|
|
13
|
+
**Voice**
|
|
14
|
+
- make annotation parameter from /Calls API private
|
|
15
|
+
|
|
16
|
+
|
|
4
17
|
[2022-03-23] Version 5.66.0
|
|
5
18
|
---------------------------
|
|
6
19
|
**Api**
|
data/README.md
CHANGED
|
@@ -4,8 +4,6 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/twilio-ruby)
|
|
5
5
|
[](https://twil.io/learn-open-source)
|
|
6
6
|
|
|
7
|
-
**The default branch name for this repository has been changed to `main` as of 07/27/2020.**
|
|
8
|
-
|
|
9
7
|
## Documentation
|
|
10
8
|
|
|
11
9
|
The documentation for the Twilio API can be found [here][apidocs].
|
|
@@ -36,13 +34,13 @@ This library supports the following Ruby implementations:
|
|
|
36
34
|
To install using [Bundler][bundler] grab the latest stable version:
|
|
37
35
|
|
|
38
36
|
```ruby
|
|
39
|
-
gem 'twilio-ruby', '~> 5.66.
|
|
37
|
+
gem 'twilio-ruby', '~> 5.66.1'
|
|
40
38
|
```
|
|
41
39
|
|
|
42
40
|
To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
|
|
43
41
|
|
|
44
42
|
```bash
|
|
45
|
-
gem install twilio-ruby -v 5.66.
|
|
43
|
+
gem install twilio-ruby -v 5.66.1
|
|
46
44
|
```
|
|
47
45
|
|
|
48
46
|
To build and install the development branch yourself from the latest source:
|
|
@@ -684,7 +684,6 @@ module Twilio
|
|
|
684
684
|
'price_unit' => payload['price_unit'],
|
|
685
685
|
'direction' => payload['direction'],
|
|
686
686
|
'answered_by' => payload['answered_by'],
|
|
687
|
-
'annotation' => payload['annotation'],
|
|
688
687
|
'api_version' => payload['api_version'],
|
|
689
688
|
'forwarded_from' => payload['forwarded_from'],
|
|
690
689
|
'group_sid' => payload['group_sid'],
|
|
@@ -819,12 +818,6 @@ module Twilio
|
|
|
819
818
|
@properties['answered_by']
|
|
820
819
|
end
|
|
821
820
|
|
|
822
|
-
##
|
|
823
|
-
# @return [String] The annotation provided for the call
|
|
824
|
-
def annotation
|
|
825
|
-
@properties['annotation']
|
|
826
|
-
end
|
|
827
|
-
|
|
828
821
|
##
|
|
829
822
|
# @return [String] The API Version used to create the call
|
|
830
823
|
def api_version
|
|
@@ -61,7 +61,8 @@ module Twilio
|
|
|
61
61
|
# may include multiple Rate Limit values in each request.
|
|
62
62
|
# @param [Hash] channel_configuration
|
|
63
63
|
# {`email`}[https://www.twilio.com/docs/verify/email] channel configuration in
|
|
64
|
-
# json format.
|
|
64
|
+
# json format. The fields 'from' and 'from_name' are optional but if included the
|
|
65
|
+
# 'from' field must have a valid email address.
|
|
65
66
|
# @param [String] app_hash Your {App
|
|
66
67
|
# Hash}[https://developers.google.com/identity/sms-retriever/verify#computing_your_apps_hash_string]
|
|
67
68
|
# to be appended at the end of your verification SMS body. Applies only to SMS.
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
##
|
|
2
|
+
# This code was generated by
|
|
3
|
+
# \ / _ _ _| _ _
|
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
5
|
+
# / /
|
|
6
|
+
#
|
|
7
|
+
# frozen_string_literal: true
|
|
8
|
+
|
|
9
|
+
module Twilio
|
|
10
|
+
module REST
|
|
11
|
+
class Verify < Domain
|
|
12
|
+
class V2 < Version
|
|
13
|
+
class VerificationAttemptsSummaryList < ListResource
|
|
14
|
+
##
|
|
15
|
+
# Initialize the VerificationAttemptsSummaryList
|
|
16
|
+
# @param [Version] version Version that contains the resource
|
|
17
|
+
# @return [VerificationAttemptsSummaryList] VerificationAttemptsSummaryList
|
|
18
|
+
def initialize(version)
|
|
19
|
+
super(version)
|
|
20
|
+
|
|
21
|
+
# Path Solution
|
|
22
|
+
@solution = {}
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
##
|
|
26
|
+
# Provide a user friendly representation
|
|
27
|
+
def to_s
|
|
28
|
+
'#<Twilio.Verify.V2.VerificationAttemptsSummaryList>'
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
class VerificationAttemptsSummaryPage < Page
|
|
33
|
+
##
|
|
34
|
+
# Initialize the VerificationAttemptsSummaryPage
|
|
35
|
+
# @param [Version] version Version that contains the resource
|
|
36
|
+
# @param [Response] response Response from the API
|
|
37
|
+
# @param [Hash] solution Path solution for the resource
|
|
38
|
+
# @return [VerificationAttemptsSummaryPage] VerificationAttemptsSummaryPage
|
|
39
|
+
def initialize(version, response, solution)
|
|
40
|
+
super(version, response)
|
|
41
|
+
|
|
42
|
+
# Path Solution
|
|
43
|
+
@solution = solution
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
##
|
|
47
|
+
# Build an instance of VerificationAttemptsSummaryInstance
|
|
48
|
+
# @param [Hash] payload Payload response from the API
|
|
49
|
+
# @return [VerificationAttemptsSummaryInstance] VerificationAttemptsSummaryInstance
|
|
50
|
+
def get_instance(payload)
|
|
51
|
+
VerificationAttemptsSummaryInstance.new(@version, payload, )
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
##
|
|
55
|
+
# Provide a user friendly representation
|
|
56
|
+
def to_s
|
|
57
|
+
'<Twilio.Verify.V2.VerificationAttemptsSummaryPage>'
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class VerificationAttemptsSummaryContext < InstanceContext
|
|
62
|
+
##
|
|
63
|
+
# Initialize the VerificationAttemptsSummaryContext
|
|
64
|
+
# @param [Version] version Version that contains the resource
|
|
65
|
+
# @return [VerificationAttemptsSummaryContext] VerificationAttemptsSummaryContext
|
|
66
|
+
def initialize(version)
|
|
67
|
+
super(version)
|
|
68
|
+
|
|
69
|
+
# Path Solution
|
|
70
|
+
@solution = {}
|
|
71
|
+
@uri = "/Attempts/Summary"
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
##
|
|
75
|
+
# Fetch the VerificationAttemptsSummaryInstance
|
|
76
|
+
# @param [String] verify_service_sid Filter used to consider only Verification
|
|
77
|
+
# Attempts of the given verify service on the summary aggregation.
|
|
78
|
+
# @param [Time] date_created_after Datetime filter used to consider only
|
|
79
|
+
# Verification Attempts created after this datetime on the summary aggregation.
|
|
80
|
+
# Given as GMT in RFC 2822 format.
|
|
81
|
+
# @param [Time] date_created_before Datetime filter used to consider only
|
|
82
|
+
# Verification Attempts created before this datetime on the summary aggregation.
|
|
83
|
+
# Given as GMT in RFC 2822 format.
|
|
84
|
+
# @param [String] country Filter used to consider only Verification Attempts sent
|
|
85
|
+
# to the specified destination country on the summary aggregation.
|
|
86
|
+
# @param [verification_attempts_summary.Channels] channel Filter Verification
|
|
87
|
+
# Attempts considered on the summary aggregation by communication channel. Valid
|
|
88
|
+
# values are `SMS` and `CALL`
|
|
89
|
+
# @param [String] destination_prefix Filter the Verification Attempts considered
|
|
90
|
+
# on the summary aggregation by Destination prefix. It is the prefix of a phone
|
|
91
|
+
# number in E.164 format.
|
|
92
|
+
# @return [VerificationAttemptsSummaryInstance] Fetched VerificationAttemptsSummaryInstance
|
|
93
|
+
def fetch(verify_service_sid: :unset, date_created_after: :unset, date_created_before: :unset, country: :unset, channel: :unset, destination_prefix: :unset)
|
|
94
|
+
params = Twilio::Values.of({
|
|
95
|
+
'VerifyServiceSid' => verify_service_sid,
|
|
96
|
+
'DateCreatedAfter' => Twilio.serialize_iso8601_datetime(date_created_after),
|
|
97
|
+
'DateCreatedBefore' => Twilio.serialize_iso8601_datetime(date_created_before),
|
|
98
|
+
'Country' => country,
|
|
99
|
+
'Channel' => channel,
|
|
100
|
+
'DestinationPrefix' => destination_prefix,
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
payload = @version.fetch('GET', @uri, params: params)
|
|
104
|
+
|
|
105
|
+
VerificationAttemptsSummaryInstance.new(@version, payload, )
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
##
|
|
109
|
+
# Provide a user friendly representation
|
|
110
|
+
def to_s
|
|
111
|
+
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
|
112
|
+
"#<Twilio.Verify.V2.VerificationAttemptsSummaryContext #{context}>"
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
##
|
|
116
|
+
# Provide a detailed, user friendly representation
|
|
117
|
+
def inspect
|
|
118
|
+
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
|
|
119
|
+
"#<Twilio.Verify.V2.VerificationAttemptsSummaryContext #{context}>"
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
class VerificationAttemptsSummaryInstance < InstanceResource
|
|
124
|
+
##
|
|
125
|
+
# Initialize the VerificationAttemptsSummaryInstance
|
|
126
|
+
# @param [Version] version Version that contains the resource
|
|
127
|
+
# @param [Hash] payload payload that contains response from Twilio
|
|
128
|
+
# @return [VerificationAttemptsSummaryInstance] VerificationAttemptsSummaryInstance
|
|
129
|
+
def initialize(version, payload)
|
|
130
|
+
super(version)
|
|
131
|
+
|
|
132
|
+
# Marshaled Properties
|
|
133
|
+
@properties = {
|
|
134
|
+
'total_attempts' => payload['total_attempts'].to_i,
|
|
135
|
+
'total_converted' => payload['total_converted'].to_i,
|
|
136
|
+
'total_unconverted' => payload['total_unconverted'].to_i,
|
|
137
|
+
'conversion_rate_percentage' => payload['conversion_rate_percentage'].to_f,
|
|
138
|
+
'url' => payload['url'],
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
# Context
|
|
142
|
+
@instance_context = nil
|
|
143
|
+
@params = {}
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
##
|
|
147
|
+
# Generate an instance context for the instance, the context is capable of
|
|
148
|
+
# performing various actions. All instance actions are proxied to the context
|
|
149
|
+
# @return [VerificationAttemptsSummaryContext] VerificationAttemptsSummaryContext for this VerificationAttemptsSummaryInstance
|
|
150
|
+
def context
|
|
151
|
+
unless @instance_context
|
|
152
|
+
@instance_context = VerificationAttemptsSummaryContext.new(@version, )
|
|
153
|
+
end
|
|
154
|
+
@instance_context
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
##
|
|
158
|
+
# @return [String] Total of attempts made.
|
|
159
|
+
def total_attempts
|
|
160
|
+
@properties['total_attempts']
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
##
|
|
164
|
+
# @return [String] Total of attempts confirmed by the end user.
|
|
165
|
+
def total_converted
|
|
166
|
+
@properties['total_converted']
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
##
|
|
170
|
+
# @return [String] Total of attempts made that were not confirmed by the end user.
|
|
171
|
+
def total_unconverted
|
|
172
|
+
@properties['total_unconverted']
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
##
|
|
176
|
+
# @return [String] Percentage of the confirmed messages over the total.
|
|
177
|
+
def conversion_rate_percentage
|
|
178
|
+
@properties['conversion_rate_percentage']
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
##
|
|
182
|
+
# @return [String] The url
|
|
183
|
+
def url
|
|
184
|
+
@properties['url']
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
##
|
|
188
|
+
# Fetch the VerificationAttemptsSummaryInstance
|
|
189
|
+
# @param [String] verify_service_sid Filter used to consider only Verification
|
|
190
|
+
# Attempts of the given verify service on the summary aggregation.
|
|
191
|
+
# @param [Time] date_created_after Datetime filter used to consider only
|
|
192
|
+
# Verification Attempts created after this datetime on the summary aggregation.
|
|
193
|
+
# Given as GMT in RFC 2822 format.
|
|
194
|
+
# @param [Time] date_created_before Datetime filter used to consider only
|
|
195
|
+
# Verification Attempts created before this datetime on the summary aggregation.
|
|
196
|
+
# Given as GMT in RFC 2822 format.
|
|
197
|
+
# @param [String] country Filter used to consider only Verification Attempts sent
|
|
198
|
+
# to the specified destination country on the summary aggregation.
|
|
199
|
+
# @param [verification_attempts_summary.Channels] channel Filter Verification
|
|
200
|
+
# Attempts considered on the summary aggregation by communication channel. Valid
|
|
201
|
+
# values are `SMS` and `CALL`
|
|
202
|
+
# @param [String] destination_prefix Filter the Verification Attempts considered
|
|
203
|
+
# on the summary aggregation by Destination prefix. It is the prefix of a phone
|
|
204
|
+
# number in E.164 format.
|
|
205
|
+
# @return [VerificationAttemptsSummaryInstance] Fetched VerificationAttemptsSummaryInstance
|
|
206
|
+
def fetch(verify_service_sid: :unset, date_created_after: :unset, date_created_before: :unset, country: :unset, channel: :unset, destination_prefix: :unset)
|
|
207
|
+
context.fetch(
|
|
208
|
+
verify_service_sid: verify_service_sid,
|
|
209
|
+
date_created_after: date_created_after,
|
|
210
|
+
date_created_before: date_created_before,
|
|
211
|
+
country: country,
|
|
212
|
+
channel: channel,
|
|
213
|
+
destination_prefix: destination_prefix,
|
|
214
|
+
)
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
##
|
|
218
|
+
# Provide a user friendly representation
|
|
219
|
+
def to_s
|
|
220
|
+
values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
|
|
221
|
+
"<Twilio.Verify.V2.VerificationAttemptsSummaryInstance #{values}>"
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
##
|
|
225
|
+
# Provide a detailed, user friendly representation
|
|
226
|
+
def inspect
|
|
227
|
+
values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
|
|
228
|
+
"<Twilio.Verify.V2.VerificationAttemptsSummaryInstance #{values}>"
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
end
|
|
234
|
+
end
|
|
@@ -18,6 +18,7 @@ module Twilio
|
|
|
18
18
|
@forms = nil
|
|
19
19
|
@services = nil
|
|
20
20
|
@verification_attempts = nil
|
|
21
|
+
@verification_attempts_summary = nil
|
|
21
22
|
@templates = nil
|
|
22
23
|
end
|
|
23
24
|
|
|
@@ -68,6 +69,12 @@ module Twilio
|
|
|
68
69
|
end
|
|
69
70
|
end
|
|
70
71
|
|
|
72
|
+
##
|
|
73
|
+
# @return [Twilio::REST::Verify::V2::VerificationAttemptsSummaryContext]
|
|
74
|
+
def verification_attempts_summary
|
|
75
|
+
@verification_attempts_summary ||= VerificationAttemptsSummaryContext.new self
|
|
76
|
+
end
|
|
77
|
+
|
|
71
78
|
##
|
|
72
79
|
# @return [Twilio::REST::Verify::V2::TemplateContext]
|
|
73
80
|
def templates
|
|
@@ -55,6 +55,12 @@ module Twilio
|
|
|
55
55
|
self.v2.verification_attempts(sid)
|
|
56
56
|
end
|
|
57
57
|
|
|
58
|
+
##
|
|
59
|
+
# @return [Twilio::REST::Verify::V2::VerificationAttemptsSummaryInstance]
|
|
60
|
+
def verification_attempts_summary
|
|
61
|
+
self.v2.verification_attempts_summary()
|
|
62
|
+
end
|
|
63
|
+
|
|
58
64
|
##
|
|
59
65
|
# @return [Twilio::REST::Verify::V2::TemplateInstance]
|
|
60
66
|
def templates
|
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.66.
|
|
4
|
+
version: 5.66.1
|
|
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: 2022-
|
|
11
|
+
date: 2022-04-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jwt
|
|
@@ -198,6 +198,7 @@ extra_rdoc_files:
|
|
|
198
198
|
- LICENSE
|
|
199
199
|
files:
|
|
200
200
|
- ".dockerignore"
|
|
201
|
+
- ".github/workflows/pr-lint.yml"
|
|
201
202
|
- ".github/workflows/test-and-deploy.yml"
|
|
202
203
|
- ".gitignore"
|
|
203
204
|
- ".rubocop.yml"
|
|
@@ -725,6 +726,7 @@ files:
|
|
|
725
726
|
- lib/twilio-ruby/rest/verify/v2/service/webhook.rb
|
|
726
727
|
- lib/twilio-ruby/rest/verify/v2/template.rb
|
|
727
728
|
- lib/twilio-ruby/rest/verify/v2/verification_attempt.rb
|
|
729
|
+
- lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb
|
|
728
730
|
- lib/twilio-ruby/rest/video.rb
|
|
729
731
|
- lib/twilio-ruby/rest/video/v1.rb
|
|
730
732
|
- lib/twilio-ruby/rest/video/v1/composition.rb
|