twilio-ruby 5.51.0 → 5.53.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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +22 -28
  3. data/CHANGES.md +50 -0
  4. data/README.md +3 -2
  5. data/lib/twilio-ruby/http/http_client.rb +3 -1
  6. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +23 -23
  7. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +5 -5
  8. data/lib/twilio-ruby/rest/bulkexports/v1/export.rb +0 -8
  9. data/lib/twilio-ruby/rest/bulkexports/v1/export/day.rb +0 -8
  10. data/lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb +1 -7
  11. data/lib/twilio-ruby/rest/bulkexports/v1/export/job.rb +1 -9
  12. data/lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb +0 -8
  13. data/lib/twilio-ruby/rest/events/v1/schema.rb +12 -12
  14. data/lib/twilio-ruby/rest/events/v1/schema/{schema_version.rb → version.rb} +37 -37
  15. data/lib/twilio-ruby/rest/events/v1/sink.rb +22 -0
  16. data/lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb +15 -12
  17. data/lib/twilio-ruby/rest/messaging/v1/service.rb +69 -26
  18. data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +3 -3
  19. data/lib/twilio-ruby/rest/studio/v1/flow/execution.rb +1 -1
  20. data/lib/twilio-ruby/rest/studio/v2/flow/execution.rb +1 -1
  21. data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +6 -6
  22. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +16 -4
  23. data/lib/twilio-ruby/rest/verify/v2/service.rb +61 -3
  24. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +39 -1
  25. data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb +202 -0
  26. data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +45 -15
  27. data/lib/twilio-ruby/version.rb +1 -1
  28. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe0a077fb4499a65063ab675b16e0f03e36020d23e08472076177070fca80fb7
4
- data.tar.gz: a44a751b49ef24c9101dd277f8a210e1e0473bc1a71184e7926765e493329a3f
3
+ metadata.gz: d2f1293c8cedd9eb9e7c9a5078d1e0ac4bb2e34116056233c1112d31911d7de1
4
+ data.tar.gz: d4d4a2935c742a0f70a5899963b2b114fd83abc5570e0de72f594f2a9ce34b36
5
5
  SHA512:
6
- metadata.gz: d582b7d61865ef2951ddc1822f7645a72d6a30c7a5cfbf8bb131076c1569bd24f4da0b7ee31d709c9e1d30cb595d3678fed85e467f99b232abcc4cc5d2c669f5
7
- data.tar.gz: 855ce01fe7b39596b6b717a97720ab796864eab3e22fbd3a90cac9e5617dca8c9d9ea8dd0cf2f672af0f8d164ad1bc17a831046de84f86abdb83f507c25d7159
6
+ metadata.gz: 398824d908de11ffd6449648f01eabc8d8ce97156080c55e4a785fa66caa1a05f38fad0c4fe77521310ebb917bd7482b84c91860c2612a91cb6d322698e5cf84
7
+ data.tar.gz: 3755621b7a3d180ac82c5b07c88e0bf349099c7d661231247c96b91d3fb726b25d0d01968a653cddc270a816305681a5c941130dedc19a07f9f6253f64afd77a
data/.travis.yml CHANGED
@@ -1,40 +1,34 @@
1
1
  language: ruby
2
2
  cache: bundler
3
- bundler_args: --without development
4
-
3
+ bundler_args: "--without development"
5
4
  rvm:
6
- - ruby-head
7
- - 3.0
8
- - 2.7
9
- - 2.6
10
- - 2.5
11
- - 2.4
12
- - jruby-9.2
13
-
5
+ - ruby-head
6
+ - 3.0
7
+ - 2.7
8
+ - 2.6
9
+ - 2.5
10
+ - 2.4
11
+ - jruby-9.2
14
12
  services:
15
- - docker
16
-
13
+ - docker
17
14
  install: make install
18
15
  script: make test
19
-
20
16
  matrix:
21
17
  allow_failures:
22
- - rvm: ruby-head
18
+ - rvm: ruby-head
23
19
  fast_finish: true
24
-
25
20
  deploy:
26
- - provider: script
27
- script: make docker-build && make docker-push
28
- skip_cleanup: true
29
- on:
30
- tags: true
31
- rvm: "2.4"
32
- - provider: rubygems
33
- api_key: $RUBYGEMS_APIKEY
34
- on:
35
- tags: true
36
- rvm: "2.4"
37
-
21
+ - provider: script
22
+ script: make docker-build && make docker-push
23
+ skip_cleanup: true
24
+ on:
25
+ tags: true
26
+ rvm: '2.4'
27
+ - provider: rubygems
28
+ api_key: "$RUBYGEMS_APIKEY"
29
+ on:
30
+ tags: true
31
+ rvm: '2.4'
38
32
  notifications:
39
33
  slack:
40
34
  if: branch = main
@@ -42,4 +36,4 @@ notifications:
42
36
  on_success: never
43
37
  on_failure: change
44
38
  rooms:
45
- - secure: AxzkBxp8izIXqkOEDiUaGjjym60GvuJeV1sBAHnLXqujDDpvdCeM+G8r274Xp48l7YqFz72PR2prFrAl8qMY5IVVFBolH1BtXqa7MsgclFKXXhq87y7OqzrUHVwdB1TAhse7k/wkeVN+mFPZswzSYqDzR3WmAbBG0iT6d1szO6c=
39
+ secure: OkXuxf75AYfH919/hhfY3IZOb6IzN3p74ouG2U860Vdwku1WzXjIutq0PnTeL7frqd+jbQgJmKcc3lbVXFZM0r96t8EsAuvXXx9ZWl7GuxpNUKAxwOqAY80m1b6Os7175MKeRyGnfvW8HTX14O7UmyYIJp5HrfN9dU1D1ZMUTDw=
data/CHANGES.md CHANGED
@@ -1,6 +1,56 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2021-05-05] Version 5.53.0
5
+ ---------------------------
6
+ **Library - Fix**
7
+ - [PR #554](https://github.com/twilio/twilio-ruby/pull/554): JSON parser error on timeout response. Thanks to [@Maychell](https://github.com/Maychell)!
8
+
9
+ **Api**
10
+ - Corrected the data types for feedback summary fields **(breaking change)**
11
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
12
+
13
+ **Bulkexports**
14
+ - promoting API maturity to GA
15
+
16
+ **Events**
17
+ - Add endpoint to update description in sink
18
+ - Remove beta-feature account flag
19
+
20
+ **Messaging**
21
+ - Update `status` field in us_app_to_person api to `campaign_status` **(breaking change)**
22
+
23
+ **Verify**
24
+ - Improve documentation regarding `push` factor and include extra information about `totp` factor.
25
+
26
+
27
+ [2021-04-21] Version 5.52.0
28
+ ---------------------------
29
+ **Api**
30
+ - Revert Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
31
+ - Update the conference participant create `from` and `to` param to be endpoint type for supporting client identifier and sip address
32
+
33
+ **Bulkexports**
34
+ - moving enum to doc root for auto generating documentation
35
+ - adding status enum and default output properties
36
+
37
+ **Events**
38
+ - Change schema_versions prop and key to versions **(breaking change)**
39
+
40
+ **Messaging**
41
+ - Add `use_inbound_webhook_on_number` field in Service API for fetch, create, update, read
42
+
43
+ **Taskrouter**
44
+ - Add `If-Match` Header based on ETag for Task Delete
45
+
46
+ **Verify**
47
+ - Add `AuthPayload` parameter to support verifying a `Challenge` upon creation. This is only supported for `totp` factors.
48
+ - Add support to resend the notifications of a `Challenge`. This is only supported for `push` factors.
49
+
50
+ **Twiml**
51
+ - Add Polly Neural voices.
52
+
53
+
4
54
  [2021-04-07] Version 5.51.0
5
55
  ---------------------------
6
56
  **Library - Chore**
data/README.md CHANGED
@@ -24,6 +24,7 @@ This library supports the following Ruby implementations:
24
24
  * Ruby 2.5
25
25
  * Ruby 2.6
26
26
  * Ruby 2.7
27
+ * Ruby 3.0
27
28
 
28
29
  ### Migrating from 4.x
29
30
 
@@ -34,13 +35,13 @@ This library supports the following Ruby implementations:
34
35
  To install using [Bundler][bundler] grab the latest stable version:
35
36
 
36
37
  ```ruby
37
- gem 'twilio-ruby', '~> 5.51.0'
38
+ gem 'twilio-ruby', '~> 5.53.0'
38
39
  ```
39
40
 
40
41
  To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
41
42
 
42
43
  ```bash
43
- gem install twilio-ruby -v 5.51.0
44
+ gem install twilio-ruby -v 5.53.0
44
45
  ```
45
46
 
46
47
  To build and install the development branch yourself from the latest source:
@@ -34,7 +34,9 @@ module Twilio
34
34
  @last_response = nil
35
35
 
36
36
  response = send(request)
37
- if response.body && !response.body.empty?
37
+ if response.status == 504
38
+ object = { message: 'Request timeout', code: 504 }.to_json
39
+ elsif response.body && !response.body.empty?
38
40
  object = response.body
39
41
  elsif response.status == 400
40
42
  object = { message: 'Bad request', code: 400 }.to_json
@@ -87,6 +87,20 @@ module Twilio
87
87
  @uri = "/Accounts/#{@solution[:account_sid]}/Calls/#{@solution[:call_sid]}/Feedback.json"
88
88
  end
89
89
 
90
+ ##
91
+ # Fetch the FeedbackInstance
92
+ # @return [FeedbackInstance] Fetched FeedbackInstance
93
+ def fetch
94
+ payload = @version.fetch('GET', @uri)
95
+
96
+ FeedbackInstance.new(
97
+ @version,
98
+ payload,
99
+ account_sid: @solution[:account_sid],
100
+ call_sid: @solution[:call_sid],
101
+ )
102
+ end
103
+
90
104
  ##
91
105
  # Create the FeedbackInstance
92
106
  # @param [String] quality_score The call quality expressed as an integer from `1`
@@ -113,20 +127,6 @@ module Twilio
113
127
  )
114
128
  end
115
129
 
116
- ##
117
- # Fetch the FeedbackInstance
118
- # @return [FeedbackInstance] Fetched FeedbackInstance
119
- def fetch
120
- payload = @version.fetch('GET', @uri)
121
-
122
- FeedbackInstance.new(
123
- @version,
124
- payload,
125
- account_sid: @solution[:account_sid],
126
- call_sid: @solution[:call_sid],
127
- )
128
- end
129
-
130
130
  ##
131
131
  # Update the FeedbackInstance
132
132
  # @param [String] quality_score The call quality expressed as an integer from `1`
@@ -137,7 +137,7 @@ module Twilio
137
137
  # `incorrect-caller-id`, `post-dial-delay`, `digits-not-captured`,
138
138
  # `audio-latency`, `unsolicited-call`, or `one-way-audio`.
139
139
  # @return [FeedbackInstance] Updated FeedbackInstance
140
- def update(quality_score: nil, issue: :unset)
140
+ def update(quality_score: :unset, issue: :unset)
141
141
  data = Twilio::Values.of({
142
142
  'QualityScore' => quality_score,
143
143
  'Issue' => Twilio.serialize_list(issue) { |e| e },
@@ -244,6 +244,13 @@ module Twilio
244
244
  @properties['sid']
245
245
  end
246
246
 
247
+ ##
248
+ # Fetch the FeedbackInstance
249
+ # @return [FeedbackInstance] Fetched FeedbackInstance
250
+ def fetch
251
+ context.fetch
252
+ end
253
+
247
254
  ##
248
255
  # Create the FeedbackInstance
249
256
  # @param [String] quality_score The call quality expressed as an integer from `1`
@@ -258,13 +265,6 @@ module Twilio
258
265
  context.create(quality_score: quality_score, issue: issue, )
259
266
  end
260
267
 
261
- ##
262
- # Fetch the FeedbackInstance
263
- # @return [FeedbackInstance] Fetched FeedbackInstance
264
- def fetch
265
- context.fetch
266
- end
267
-
268
268
  ##
269
269
  # Update the FeedbackInstance
270
270
  # @param [String] quality_score The call quality expressed as an integer from `1`
@@ -275,7 +275,7 @@ module Twilio
275
275
  # `incorrect-caller-id`, `post-dial-delay`, `digits-not-captured`,
276
276
  # `audio-latency`, `unsolicited-call`, or `one-way-audio`.
277
277
  # @return [FeedbackInstance] Updated FeedbackInstance
278
- def update(quality_score: nil, issue: :unset)
278
+ def update(quality_score: :unset, issue: :unset)
279
279
  context.update(quality_score: quality_score, issue: issue, )
280
280
  end
281
281
 
@@ -167,14 +167,14 @@ module Twilio
167
167
  'call_feedback_count' => payload['call_feedback_count'].to_i,
168
168
  'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
169
169
  'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
170
- 'end_date' => Twilio.deserialize_iso8601_datetime(payload['end_date']),
170
+ 'end_date' => Twilio.deserialize_iso8601_date(payload['end_date']),
171
171
  'include_subaccounts' => payload['include_subaccounts'],
172
172
  'issues' => payload['issues'],
173
173
  'quality_score_average' => payload['quality_score_average'].to_f,
174
174
  'quality_score_median' => payload['quality_score_median'].to_f,
175
175
  'quality_score_standard_deviation' => payload['quality_score_standard_deviation'].to_f,
176
176
  'sid' => payload['sid'],
177
- 'start_date' => Twilio.deserialize_iso8601_datetime(payload['start_date']),
177
+ 'start_date' => Twilio.deserialize_iso8601_date(payload['start_date']),
178
178
  'status' => payload['status'],
179
179
  }
180
180
 
@@ -225,7 +225,7 @@ module Twilio
225
225
  end
226
226
 
227
227
  ##
228
- # @return [Time] The latest feedback entry date in the summary
228
+ # @return [Date] The latest feedback entry date in the summary
229
229
  def end_date
230
230
  @properties['end_date']
231
231
  end
@@ -237,7 +237,7 @@ module Twilio
237
237
  end
238
238
 
239
239
  ##
240
- # @return [Array[String]] Issues experienced during the call
240
+ # @return [Array[Hash]] Issues experienced during the call
241
241
  def issues
242
242
  @properties['issues']
243
243
  end
@@ -267,7 +267,7 @@ module Twilio
267
267
  end
268
268
 
269
269
  ##
270
- # @return [Time] The earliest feedback entry date in the summary
270
+ # @return [Date] The earliest feedback entry date in the summary
271
271
  def start_date
272
272
  @properties['start_date']
273
273
  end
@@ -10,8 +10,6 @@ module Twilio
10
10
  module REST
11
11
  class Bulkexports < Domain
12
12
  class V1 < Version
13
- ##
14
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
15
13
  class ExportList < ListResource
16
14
  ##
17
15
  # Initialize the ExportList
@@ -50,8 +48,6 @@ module Twilio
50
48
  end
51
49
  end
52
50
 
53
- ##
54
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
55
51
  class ExportPage < Page
56
52
  ##
57
53
  # Initialize the ExportPage
@@ -81,8 +77,6 @@ module Twilio
81
77
  end
82
78
  end
83
79
 
84
- ##
85
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
86
80
  class ExportContext < InstanceContext
87
81
  ##
88
82
  # Initialize the ExportContext
@@ -156,8 +150,6 @@ module Twilio
156
150
  end
157
151
  end
158
152
 
159
- ##
160
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
161
153
  class ExportInstance < InstanceResource
162
154
  ##
163
155
  # Initialize the ExportInstance
@@ -11,8 +11,6 @@ module Twilio
11
11
  class Bulkexports < Domain
12
12
  class V1 < Version
13
13
  class ExportContext < InstanceContext
14
- ##
15
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
16
14
  class DayList < ListResource
17
15
  ##
18
16
  # Initialize the DayList
@@ -115,8 +113,6 @@ module Twilio
115
113
  end
116
114
  end
117
115
 
118
- ##
119
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
120
116
  class DayPage < Page
121
117
  ##
122
118
  # Initialize the DayPage
@@ -146,8 +142,6 @@ module Twilio
146
142
  end
147
143
  end
148
144
 
149
- ##
150
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
151
145
  class DayContext < InstanceContext
152
146
  ##
153
147
  # Initialize the DayContext
@@ -189,8 +183,6 @@ module Twilio
189
183
  end
190
184
  end
191
185
 
192
- ##
193
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
194
186
  class DayInstance < InstanceResource
195
187
  ##
196
188
  # Initialize the DayInstance
@@ -11,8 +11,6 @@ module Twilio
11
11
  class Bulkexports < Domain
12
12
  class V1 < Version
13
13
  class ExportContext < InstanceContext
14
- ##
15
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
16
14
  class ExportCustomJobList < ListResource
17
15
  ##
18
16
  # Initialize the ExportCustomJobList
@@ -147,8 +145,6 @@ module Twilio
147
145
  end
148
146
  end
149
147
 
150
- ##
151
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
152
148
  class ExportCustomJobPage < Page
153
149
  ##
154
150
  # Initialize the ExportCustomJobPage
@@ -178,8 +174,6 @@ module Twilio
178
174
  end
179
175
  end
180
176
 
181
- ##
182
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
183
177
  class ExportCustomJobInstance < InstanceResource
184
178
  ##
185
179
  # Initialize the ExportCustomJobInstance
@@ -256,7 +250,7 @@ module Twilio
256
250
  end
257
251
 
258
252
  ##
259
- # @return [Hash] The details of a job state which is an object that contains a status string, a day count integer, and list of days in the job
253
+ # @return [Hash] The details of a job state which is an object that contains a `status` string, a day count integer, and list of days in the job
260
254
  def details
261
255
  @properties['details']
262
256
  end
@@ -11,8 +11,6 @@ module Twilio
11
11
  class Bulkexports < Domain
12
12
  class V1 < Version
13
13
  class ExportList < ListResource
14
- ##
15
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
16
14
  class JobList < ListResource
17
15
  ##
18
16
  # Initialize the JobList
@@ -32,8 +30,6 @@ module Twilio
32
30
  end
33
31
  end
34
32
 
35
- ##
36
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
37
33
  class JobPage < Page
38
34
  ##
39
35
  # Initialize the JobPage
@@ -63,8 +59,6 @@ module Twilio
63
59
  end
64
60
  end
65
61
 
66
- ##
67
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
68
62
  class JobContext < InstanceContext
69
63
  ##
70
64
  # Initialize the JobContext
@@ -111,8 +105,6 @@ module Twilio
111
105
  end
112
106
  end
113
107
 
114
- ##
115
- # PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
116
108
  class JobInstance < InstanceResource
117
109
  ##
118
110
  # Initialize the JobInstance
@@ -169,7 +161,7 @@ module Twilio
169
161
  end
170
162
 
171
163
  ##
172
- # @return [Hash] This is a list of the completed, pending, or errored dates within the export time range, with one entry for each status with more than one day in that status
164
+ # @return [Hash] The details of a job state which is an object that contains a `status` string, a day count integer, and list of days in the job
173
165
  def details
174
166
  @properties['details']
175
167
  end