twilio-ruby 5.64.0 → 5.66.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/.github/workflows/test-and-deploy.yml +5 -0
- data/CHANGES.md +78 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/call/payment.rb +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/call/siprec.rb +7 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +11 -4
- data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +27 -7
- data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +10 -4
- data/lib/twilio-ruby/rest/chat/v3/channel.rb +275 -0
- data/lib/twilio-ruby/rest/chat/v3.rb +48 -0
- data/lib/twilio-ruby/rest/chat.rb +16 -0
- data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +22 -10
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +7 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb +236 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb +330 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb +377 -0
- data/lib/twilio-ruby/rest/flex_api/v1/interaction.rb +233 -0
- data/lib/twilio-ruby/rest/flex_api/v1.rb +16 -0
- data/lib/twilio-ruby/rest/flex_api.rb +9 -0
- data/lib/twilio-ruby/rest/insights/v1/annotation.rb +271 -0
- data/lib/twilio-ruby/rest/insights/v1.rb +16 -0
- data/lib/twilio-ruby/rest/insights.rb +8 -0
- data/lib/twilio-ruby/rest/media/v1/media_processor.rb +1 -1
- data/lib/twilio-ruby/rest/media/v1/media_recording.rb +406 -0
- data/lib/twilio-ruby/rest/media/v1/player_streamer.rb +14 -1
- data/lib/twilio-ruby/rest/media/v1.rb +16 -0
- data/lib/twilio-ruby/rest/media.rb +9 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +6 -6
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +7 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +3 -55
- data/lib/twilio-ruby/rest/supersim/v1/usage_record.rb +9 -9
- data/lib/twilio-ruby/rest/supersim/v1.rb +0 -16
- data/lib/twilio-ruby/rest/supersim.rb +0 -9
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb +6 -2
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb +4 -2
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_cumulative_statistics.rb +4 -2
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +18 -1
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +22 -4
- data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +7 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +16 -6
- data/lib/twilio-ruby/rest/video/v1/composition.rb +14 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +14 -0
- data/lib/twilio-ruby/version.rb +1 -1
- data/lib/twilio-ruby.rb +1 -1
- metadata +10 -3
- data/lib/twilio-ruby/rest/supersim/v1/command.rb +0 -368
@@ -49,9 +49,9 @@ module Twilio
|
|
49
49
|
# @param [Time] start_time Only include usage that occurred at or after this time,
|
50
50
|
# specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601] format. Default
|
51
51
|
# is one month before the `end_time`.
|
52
|
-
# @param [Time] end_time Only include usage that occurred before this time
|
53
|
-
# specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601]
|
54
|
-
# is the current time.
|
52
|
+
# @param [Time] end_time Only include usage that occurred before this time
|
53
|
+
# (exclusive), specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601]
|
54
|
+
# format. Default is the current time.
|
55
55
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
56
56
|
# guarantees to never return more than limit. Default is no limit
|
57
57
|
# @param [Integer] page_size Number of records to fetch per request, when
|
@@ -98,9 +98,9 @@ module Twilio
|
|
98
98
|
# @param [Time] start_time Only include usage that occurred at or after this time,
|
99
99
|
# specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601] format. Default
|
100
100
|
# is one month before the `end_time`.
|
101
|
-
# @param [Time] end_time Only include usage that occurred before this time
|
102
|
-
# specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601]
|
103
|
-
# is the current time.
|
101
|
+
# @param [Time] end_time Only include usage that occurred before this time
|
102
|
+
# (exclusive), specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601]
|
103
|
+
# format. Default is the current time.
|
104
104
|
# @param [Integer] limit Upper limit for the number of records to return. stream()
|
105
105
|
# guarantees to never return more than limit. Default is no limit.
|
106
106
|
# @param [Integer] page_size Number of records to fetch per request, when
|
@@ -163,9 +163,9 @@ module Twilio
|
|
163
163
|
# @param [Time] start_time Only include usage that occurred at or after this time,
|
164
164
|
# specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601] format. Default
|
165
165
|
# is one month before the `end_time`.
|
166
|
-
# @param [Time] end_time Only include usage that occurred before this time
|
167
|
-
# specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601]
|
168
|
-
# is the current time.
|
166
|
+
# @param [Time] end_time Only include usage that occurred before this time
|
167
|
+
# (exclusive), specified in {ISO 8601}[https://en.wikipedia.org/wiki/ISO_8601]
|
168
|
+
# format. Default is the current time.
|
169
169
|
# @param [String] page_token PageToken provided by the API
|
170
170
|
# @param [Integer] page_number Page Number, this value is simply for client state
|
171
171
|
# @param [Integer] page_size Number of records to return, defaults to 50
|
@@ -15,7 +15,6 @@ module Twilio
|
|
15
15
|
def initialize(domain)
|
16
16
|
super
|
17
17
|
@version = 'v1'
|
18
|
-
@commands = nil
|
19
18
|
@esim_profiles = nil
|
20
19
|
@fleets = nil
|
21
20
|
@ip_commands = nil
|
@@ -26,21 +25,6 @@ module Twilio
|
|
26
25
|
@usage_records = nil
|
27
26
|
end
|
28
27
|
|
29
|
-
##
|
30
|
-
# @param [String] sid The SID of the Command resource to fetch.
|
31
|
-
# @return [Twilio::REST::Supersim::V1::CommandContext] if sid was passed.
|
32
|
-
# @return [Twilio::REST::Supersim::V1::CommandList]
|
33
|
-
def commands(sid=:unset)
|
34
|
-
if sid.nil?
|
35
|
-
raise ArgumentError, 'sid cannot be nil'
|
36
|
-
end
|
37
|
-
if sid == :unset
|
38
|
-
@commands ||= CommandList.new self
|
39
|
-
else
|
40
|
-
CommandContext.new(self, sid)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
28
|
##
|
45
29
|
# @param [String] sid The SID of the eSIM Profile resource to fetch.
|
46
30
|
# @return [Twilio::REST::Supersim::V1::EsimProfileContext] if sid was passed.
|
@@ -28,15 +28,6 @@ module Twilio
|
|
28
28
|
@v1 ||= V1.new self
|
29
29
|
end
|
30
30
|
|
31
|
-
##
|
32
|
-
# @param [String] sid The unique string that we created to identify the Command
|
33
|
-
# resource.
|
34
|
-
# @return [Twilio::REST::Supersim::V1::CommandInstance] if sid was passed.
|
35
|
-
# @return [Twilio::REST::Supersim::V1::CommandList]
|
36
|
-
def commands(sid=:unset)
|
37
|
-
self.v1.commands(sid)
|
38
|
-
end
|
39
|
-
|
40
31
|
##
|
41
32
|
# @param [String] sid The unique string that we created to identify the eSIM
|
42
33
|
# Profile resource.
|
data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_cumulative_statistics.rb
CHANGED
@@ -101,7 +101,9 @@ module Twilio
|
|
101
101
|
# @param [String] split_by_wait_time A comma separated list of values that
|
102
102
|
# describes the thresholds, in seconds, to calculate statistics on. For each
|
103
103
|
# threshold specified, the number of Tasks canceled and reservations accepted
|
104
|
-
# above and below the specified thresholds in seconds are computed.
|
104
|
+
# above and below the specified thresholds in seconds are computed. TaskRouter
|
105
|
+
# will calculate statistics on up to 10,000 Tasks/Reservations for any given
|
106
|
+
# threshold.
|
105
107
|
# @return [TaskQueueCumulativeStatisticsInstance] Fetched TaskQueueCumulativeStatisticsInstance
|
106
108
|
def fetch(end_date: :unset, minutes: :unset, start_date: :unset, task_channel: :unset, split_by_wait_time: :unset)
|
107
109
|
params = Twilio::Values.of({
|
@@ -343,7 +345,9 @@ module Twilio
|
|
343
345
|
# @param [String] split_by_wait_time A comma separated list of values that
|
344
346
|
# describes the thresholds, in seconds, to calculate statistics on. For each
|
345
347
|
# threshold specified, the number of Tasks canceled and reservations accepted
|
346
|
-
# above and below the specified thresholds in seconds are computed.
|
348
|
+
# above and below the specified thresholds in seconds are computed. TaskRouter
|
349
|
+
# will calculate statistics on up to 10,000 Tasks/Reservations for any given
|
350
|
+
# threshold.
|
347
351
|
# @return [TaskQueueCumulativeStatisticsInstance] Fetched TaskQueueCumulativeStatisticsInstance
|
348
352
|
def fetch(end_date: :unset, minutes: :unset, start_date: :unset, task_channel: :unset, split_by_wait_time: :unset)
|
349
353
|
context.fetch(
|
data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_cumulative_statistics.rb
CHANGED
@@ -105,7 +105,8 @@ module Twilio
|
|
105
105
|
# above and below the specified thresholds in seconds are computed. For example,
|
106
106
|
# `5,30` would show splits of Tasks that were canceled or accepted before and
|
107
107
|
# after 5 seconds and before and after 30 seconds. This can be used to show short
|
108
|
-
# abandoned Tasks or Tasks that failed to meet an SLA.
|
108
|
+
# abandoned Tasks or Tasks that failed to meet an SLA. TaskRouter will calculate
|
109
|
+
# statistics on up to 10,000 Tasks for any given threshold.
|
109
110
|
# @return [WorkflowCumulativeStatisticsInstance] Fetched WorkflowCumulativeStatisticsInstance
|
110
111
|
def fetch(end_date: :unset, minutes: :unset, start_date: :unset, task_channel: :unset, split_by_wait_time: :unset)
|
111
112
|
params = Twilio::Values.of({
|
@@ -351,7 +352,8 @@ module Twilio
|
|
351
352
|
# above and below the specified thresholds in seconds are computed. For example,
|
352
353
|
# `5,30` would show splits of Tasks that were canceled or accepted before and
|
353
354
|
# after 5 seconds and before and after 30 seconds. This can be used to show short
|
354
|
-
# abandoned Tasks or Tasks that failed to meet an SLA.
|
355
|
+
# abandoned Tasks or Tasks that failed to meet an SLA. TaskRouter will calculate
|
356
|
+
# statistics on up to 10,000 Tasks for any given threshold.
|
355
357
|
# @return [WorkflowCumulativeStatisticsInstance] Fetched WorkflowCumulativeStatisticsInstance
|
356
358
|
def fetch(end_date: :unset, minutes: :unset, start_date: :unset, task_channel: :unset, split_by_wait_time: :unset)
|
357
359
|
context.fetch(
|
@@ -97,7 +97,8 @@ module Twilio
|
|
97
97
|
# above and below the specified thresholds in seconds are computed. For example,
|
98
98
|
# `5,30` would show splits of Tasks that were canceled or accepted before and
|
99
99
|
# after 5 seconds and before and after 30 seconds. This can be used to show short
|
100
|
-
# abandoned Tasks or Tasks that failed to meet an SLA.
|
100
|
+
# abandoned Tasks or Tasks that failed to meet an SLA. TaskRouter will calculate
|
101
|
+
# statistics on up to 10,000 Tasks for any given threshold.
|
101
102
|
# @return [WorkspaceCumulativeStatisticsInstance] Fetched WorkspaceCumulativeStatisticsInstance
|
102
103
|
def fetch(end_date: :unset, minutes: :unset, start_date: :unset, task_channel: :unset, split_by_wait_time: :unset)
|
103
104
|
params = Twilio::Values.of({
|
@@ -328,7 +329,8 @@ module Twilio
|
|
328
329
|
# above and below the specified thresholds in seconds are computed. For example,
|
329
330
|
# `5,30` would show splits of Tasks that were canceled or accepted before and
|
330
331
|
# after 5 seconds and before and after 30 seconds. This can be used to show short
|
331
|
-
# abandoned Tasks or Tasks that failed to meet an SLA.
|
332
|
+
# abandoned Tasks or Tasks that failed to meet an SLA. TaskRouter will calculate
|
333
|
+
# statistics on up to 10,000 Tasks for any given threshold.
|
332
334
|
# @return [WorkspaceCumulativeStatisticsInstance] Fetched WorkspaceCumulativeStatisticsInstance
|
333
335
|
def fetch(end_date: :unset, minutes: :unset, start_date: :unset, task_channel: :unset, split_by_wait_time: :unset)
|
334
336
|
context.fetch(
|
@@ -36,12 +36,15 @@ module Twilio
|
|
36
36
|
# `push`
|
37
37
|
# @param [String] factor_friendly_name The friendly name of the factor that is
|
38
38
|
# going to be created with this access token
|
39
|
+
# @param [String] ttl How long, in seconds, the access token is valid. Can be an
|
40
|
+
# integer between 60 and 300. Default is 60.
|
39
41
|
# @return [AccessTokenInstance] Created AccessTokenInstance
|
40
|
-
def create(identity: nil, factor_type: nil, factor_friendly_name: :unset)
|
42
|
+
def create(identity: nil, factor_type: nil, factor_friendly_name: :unset, ttl: :unset)
|
41
43
|
data = Twilio::Values.of({
|
42
44
|
'Identity' => identity,
|
43
45
|
'FactorType' => factor_type,
|
44
46
|
'FactorFriendlyName' => factor_friendly_name,
|
47
|
+
'Ttl' => ttl,
|
45
48
|
})
|
46
49
|
|
47
50
|
payload = @version.create('POST', @uri, data: data)
|
@@ -158,6 +161,8 @@ module Twilio
|
|
158
161
|
'factor_friendly_name' => payload['factor_friendly_name'],
|
159
162
|
'token' => payload['token'],
|
160
163
|
'url' => payload['url'],
|
164
|
+
'ttl' => payload['ttl'].to_i,
|
165
|
+
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
161
166
|
}
|
162
167
|
|
163
168
|
# Context
|
@@ -224,6 +229,18 @@ module Twilio
|
|
224
229
|
@properties['url']
|
225
230
|
end
|
226
231
|
|
232
|
+
##
|
233
|
+
# @return [String] How long, in seconds, the access token is valid.
|
234
|
+
def ttl
|
235
|
+
@properties['ttl']
|
236
|
+
end
|
237
|
+
|
238
|
+
##
|
239
|
+
# @return [Time] The date this access token was created
|
240
|
+
def date_created
|
241
|
+
@properties['date_created']
|
242
|
+
end
|
243
|
+
|
227
244
|
##
|
228
245
|
# Fetch the AccessTokenInstance
|
229
246
|
# @return [AccessTokenInstance] Fetched AccessTokenInstance
|
@@ -277,9 +277,16 @@ module Twilio
|
|
277
277
|
# Challenge. E.g., a TOTP would use the numeric code. For `TOTP` this value must
|
278
278
|
# be between 3 and 8 characters long. For `Push` this value can be up to 5456
|
279
279
|
# characters in length
|
280
|
+
# @param [Hash] metadata Custom metadata associated with the challenge. This is
|
281
|
+
# added by the Device/SDK directly to allow for the inclusion of device
|
282
|
+
# information. It must be a stringified JSON with only strings values eg. `{"os":
|
283
|
+
# "Android"}`. Can be up to 1024 characters in length.
|
280
284
|
# @return [ChallengeInstance] Updated ChallengeInstance
|
281
|
-
def update(auth_payload: :unset)
|
282
|
-
data = Twilio::Values.of({
|
285
|
+
def update(auth_payload: :unset, metadata: :unset)
|
286
|
+
data = Twilio::Values.of({
|
287
|
+
'AuthPayload' => auth_payload,
|
288
|
+
'Metadata' => Twilio.serialize_object(metadata),
|
289
|
+
})
|
283
290
|
|
284
291
|
payload = @version.update('POST', @uri, data: data)
|
285
292
|
|
@@ -358,6 +365,7 @@ module Twilio
|
|
358
365
|
'responded_reason' => payload['responded_reason'],
|
359
366
|
'details' => payload['details'],
|
360
367
|
'hidden_details' => payload['hidden_details'],
|
368
|
+
'metadata' => payload['metadata'],
|
361
369
|
'factor_type' => payload['factor_type'],
|
362
370
|
'url' => payload['url'],
|
363
371
|
'links' => payload['links'],
|
@@ -468,6 +476,12 @@ module Twilio
|
|
468
476
|
@properties['hidden_details']
|
469
477
|
end
|
470
478
|
|
479
|
+
##
|
480
|
+
# @return [Hash] Metadata of the challenge.
|
481
|
+
def metadata
|
482
|
+
@properties['metadata']
|
483
|
+
end
|
484
|
+
|
471
485
|
##
|
472
486
|
# @return [challenge.FactorTypes] The Factor Type of this Challenge
|
473
487
|
def factor_type
|
@@ -499,9 +513,13 @@ module Twilio
|
|
499
513
|
# Challenge. E.g., a TOTP would use the numeric code. For `TOTP` this value must
|
500
514
|
# be between 3 and 8 characters long. For `Push` this value can be up to 5456
|
501
515
|
# characters in length
|
516
|
+
# @param [Hash] metadata Custom metadata associated with the challenge. This is
|
517
|
+
# added by the Device/SDK directly to allow for the inclusion of device
|
518
|
+
# information. It must be a stringified JSON with only strings values eg. `{"os":
|
519
|
+
# "Android"}`. Can be up to 1024 characters in length.
|
502
520
|
# @return [ChallengeInstance] Updated ChallengeInstance
|
503
|
-
def update(auth_payload: :unset)
|
504
|
-
context.update(auth_payload: auth_payload, )
|
521
|
+
def update(auth_payload: :unset, metadata: :unset)
|
522
|
+
context.update(auth_payload: auth_payload, metadata: metadata, )
|
505
523
|
end
|
506
524
|
|
507
525
|
##
|
@@ -293,6 +293,7 @@ module Twilio
|
|
293
293
|
'status' => payload['status'],
|
294
294
|
'factor_type' => payload['factor_type'],
|
295
295
|
'config' => payload['config'],
|
296
|
+
'metadata' => payload['metadata'],
|
296
297
|
'url' => payload['url'],
|
297
298
|
}
|
298
299
|
|
@@ -383,6 +384,12 @@ module Twilio
|
|
383
384
|
@properties['config']
|
384
385
|
end
|
385
386
|
|
387
|
+
##
|
388
|
+
# @return [Hash] Metadata of the factor.
|
389
|
+
def metadata
|
390
|
+
@properties['metadata']
|
391
|
+
end
|
392
|
+
|
386
393
|
##
|
387
394
|
# @return [String] The URL of this resource.
|
388
395
|
def url
|
@@ -41,9 +41,7 @@ module Twilio
|
|
41
41
|
# constructing the `binding.uri` property.
|
42
42
|
# At the same time, we recommend avoiding providing PII.
|
43
43
|
# @param [new_factor.FactorTypes] factor_type The Type of this Factor. Currently
|
44
|
-
# `push` and `totp` are supported.
|
45
|
-
# sales}[https://www.twilio.com/help/sales] first to have the Verify TOTP feature
|
46
|
-
# enabled for your Twilio account.
|
44
|
+
# `push` and `totp` are supported.
|
47
45
|
# @param [String] binding_alg The algorithm used when `factor_type` is `push`.
|
48
46
|
# Algorithm supported: `ES256`
|
49
47
|
# @param [String] binding_public_key The Ecdsa public key in PKIX, ASN.1 DER
|
@@ -96,8 +94,12 @@ module Twilio
|
|
96
94
|
# TOTP codes. Can be `sha1`, `sha256` or `sha512`. Defaults to `sha1`.
|
97
95
|
#
|
98
96
|
# Used when `factor_type` is `totp`
|
97
|
+
# @param [Hash] metadata Custom metadata associated with the factor. This is added
|
98
|
+
# by the Device/SDK directly to allow for the inclusion of device information. It
|
99
|
+
# must be a stringified JSON with only strings values eg. `{"os": "Android"}`. Can
|
100
|
+
# be up to 1024 characters in length.
|
99
101
|
# @return [NewFactorInstance] Created NewFactorInstance
|
100
|
-
def create(friendly_name: nil, factor_type: nil, binding_alg: :unset, binding_public_key: :unset, config_app_id: :unset, config_notification_platform: :unset, config_notification_token: :unset, config_sdk_version: :unset, binding_secret: :unset, config_time_step: :unset, config_skew: :unset, config_code_length: :unset, config_alg: :unset)
|
102
|
+
def create(friendly_name: nil, factor_type: nil, binding_alg: :unset, binding_public_key: :unset, config_app_id: :unset, config_notification_platform: :unset, config_notification_token: :unset, config_sdk_version: :unset, binding_secret: :unset, config_time_step: :unset, config_skew: :unset, config_code_length: :unset, config_alg: :unset, metadata: :unset)
|
101
103
|
data = Twilio::Values.of({
|
102
104
|
'FriendlyName' => friendly_name,
|
103
105
|
'FactorType' => factor_type,
|
@@ -112,6 +114,7 @@ module Twilio
|
|
112
114
|
'Config.Skew' => config_skew,
|
113
115
|
'Config.CodeLength' => config_code_length,
|
114
116
|
'Config.Alg' => config_alg,
|
117
|
+
'Metadata' => Twilio.serialize_object(metadata),
|
115
118
|
})
|
116
119
|
|
117
120
|
payload = @version.create('POST', @uri, data: data)
|
@@ -197,6 +200,7 @@ module Twilio
|
|
197
200
|
'status' => payload['status'],
|
198
201
|
'factor_type' => payload['factor_type'],
|
199
202
|
'config' => payload['config'],
|
203
|
+
'metadata' => payload['metadata'],
|
200
204
|
'url' => payload['url'],
|
201
205
|
}
|
202
206
|
end
|
@@ -232,7 +236,7 @@ module Twilio
|
|
232
236
|
end
|
233
237
|
|
234
238
|
##
|
235
|
-
# @return [Hash]
|
239
|
+
# @return [Hash] Binding of the factor
|
236
240
|
def binding
|
237
241
|
@properties['binding']
|
238
242
|
end
|
@@ -268,11 +272,17 @@ module Twilio
|
|
268
272
|
end
|
269
273
|
|
270
274
|
##
|
271
|
-
# @return [Hash]
|
275
|
+
# @return [Hash] Configurations for a `factor_type`.
|
272
276
|
def config
|
273
277
|
@properties['config']
|
274
278
|
end
|
275
279
|
|
280
|
+
##
|
281
|
+
# @return [Hash] Metadata of the factor.
|
282
|
+
def metadata
|
283
|
+
@properties['metadata']
|
284
|
+
end
|
285
|
+
|
276
286
|
##
|
277
287
|
# @return [String] The URL of this resource.
|
278
288
|
def url
|
@@ -335,6 +335,8 @@ module Twilio
|
|
335
335
|
'size' => payload['size'].to_i,
|
336
336
|
'duration' => payload['duration'].to_i,
|
337
337
|
'media_external_location' => payload['media_external_location'],
|
338
|
+
'status_callback' => payload['status_callback'],
|
339
|
+
'status_callback_method' => payload['status_callback_method'],
|
338
340
|
'url' => payload['url'],
|
339
341
|
'links' => payload['links'],
|
340
342
|
}
|
@@ -457,6 +459,18 @@ module Twilio
|
|
457
459
|
@properties['media_external_location']
|
458
460
|
end
|
459
461
|
|
462
|
+
##
|
463
|
+
# @return [String] The URL called to send status information on every composition event.
|
464
|
+
def status_callback
|
465
|
+
@properties['status_callback']
|
466
|
+
end
|
467
|
+
|
468
|
+
##
|
469
|
+
# @return [String] The HTTP method used to call `status_callback`
|
470
|
+
def status_callback_method
|
471
|
+
@properties['status_callback_method']
|
472
|
+
end
|
473
|
+
|
460
474
|
##
|
461
475
|
# @return [String] The absolute URL of the resource
|
462
476
|
def url
|
@@ -273,6 +273,8 @@ module Twilio
|
|
273
273
|
'track_name' => payload['track_name'],
|
274
274
|
'offset' => payload['offset'].to_i,
|
275
275
|
'media_external_location' => payload['media_external_location'],
|
276
|
+
'status_callback' => payload['status_callback'],
|
277
|
+
'status_callback_method' => payload['status_callback_method'],
|
276
278
|
'links' => payload['links'],
|
277
279
|
}
|
278
280
|
|
@@ -382,6 +384,18 @@ module Twilio
|
|
382
384
|
@properties['media_external_location']
|
383
385
|
end
|
384
386
|
|
387
|
+
##
|
388
|
+
# @return [String] The URL called to send status information on every recording event.
|
389
|
+
def status_callback
|
390
|
+
@properties['status_callback']
|
391
|
+
end
|
392
|
+
|
393
|
+
##
|
394
|
+
# @return [String] The HTTP method used to call `status_callback`
|
395
|
+
def status_callback_method
|
396
|
+
@properties['status_callback_method']
|
397
|
+
end
|
398
|
+
|
385
399
|
##
|
386
400
|
# @return [String] The URLs of related resources
|
387
401
|
def links
|
data/lib/twilio-ruby/version.rb
CHANGED
data/lib/twilio-ruby.rb
CHANGED
@@ -10,7 +10,7 @@ require 'time'
|
|
10
10
|
require 'json'
|
11
11
|
|
12
12
|
require 'twilio-ruby/version' unless defined?(Twilio::VERSION)
|
13
|
-
require 'rack/twilio_webhook_authentication'
|
13
|
+
require 'rack/twilio_webhook_authentication' if defined?(Rack)
|
14
14
|
|
15
15
|
require 'twilio-ruby/util'
|
16
16
|
require 'twilio-ruby/security/request_validator'
|
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.66.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: 2022-
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -375,6 +375,8 @@ files:
|
|
375
375
|
- lib/twilio-ruby/rest/chat/v2/service/user.rb
|
376
376
|
- lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb
|
377
377
|
- lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb
|
378
|
+
- lib/twilio-ruby/rest/chat/v3.rb
|
379
|
+
- lib/twilio-ruby/rest/chat/v3/channel.rb
|
378
380
|
- lib/twilio-ruby/rest/client.rb
|
379
381
|
- lib/twilio-ruby/rest/conversations.rb
|
380
382
|
- lib/twilio-ruby/rest/conversations/v1.rb
|
@@ -424,12 +426,17 @@ files:
|
|
424
426
|
- lib/twilio-ruby/rest/flex_api/v1/channel.rb
|
425
427
|
- lib/twilio-ruby/rest/flex_api/v1/configuration.rb
|
426
428
|
- lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb
|
429
|
+
- lib/twilio-ruby/rest/flex_api/v1/interaction.rb
|
430
|
+
- lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb
|
431
|
+
- lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb
|
432
|
+
- lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb
|
427
433
|
- lib/twilio-ruby/rest/flex_api/v1/web_channel.rb
|
428
434
|
- lib/twilio-ruby/rest/frontline_api.rb
|
429
435
|
- lib/twilio-ruby/rest/frontline_api/v1.rb
|
430
436
|
- lib/twilio-ruby/rest/frontline_api/v1/user.rb
|
431
437
|
- lib/twilio-ruby/rest/insights.rb
|
432
438
|
- lib/twilio-ruby/rest/insights/v1.rb
|
439
|
+
- lib/twilio-ruby/rest/insights/v1/annotation.rb
|
433
440
|
- lib/twilio-ruby/rest/insights/v1/call.rb
|
434
441
|
- lib/twilio-ruby/rest/insights/v1/call/event.rb
|
435
442
|
- lib/twilio-ruby/rest/insights/v1/call/metric.rb
|
@@ -470,6 +477,7 @@ files:
|
|
470
477
|
- lib/twilio-ruby/rest/media.rb
|
471
478
|
- lib/twilio-ruby/rest/media/v1.rb
|
472
479
|
- lib/twilio-ruby/rest/media/v1/media_processor.rb
|
480
|
+
- lib/twilio-ruby/rest/media/v1/media_recording.rb
|
473
481
|
- lib/twilio-ruby/rest/media/v1/player_streamer.rb
|
474
482
|
- lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb
|
475
483
|
- lib/twilio-ruby/rest/messaging.rb
|
@@ -626,7 +634,6 @@ files:
|
|
626
634
|
- lib/twilio-ruby/rest/studio/v2/flow_validate.rb
|
627
635
|
- lib/twilio-ruby/rest/supersim.rb
|
628
636
|
- lib/twilio-ruby/rest/supersim/v1.rb
|
629
|
-
- lib/twilio-ruby/rest/supersim/v1/command.rb
|
630
637
|
- lib/twilio-ruby/rest/supersim/v1/esim_profile.rb
|
631
638
|
- lib/twilio-ruby/rest/supersim/v1/fleet.rb
|
632
639
|
- lib/twilio-ruby/rest/supersim/v1/ip_command.rb
|