twilio-ruby 7.6.5 → 7.8.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 +51 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +5 -5
- data/lib/twilio-ruby/rest/content/v1/content.rb +4 -1
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +2 -8
- data/lib/twilio-ruby/rest/flex_api/v1/assessments.rb +3 -3
- data/lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb +3 -3
- data/lib/twilio-ruby/rest/flex_api/v2/web_channels.rb +3 -0
- data/lib/twilio-ruby/rest/iam/v1/get_api_keys.rb +7 -0
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +27 -3
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +18 -0
- data/lib/twilio-ruby/rest/messaging/v2/channels_sender.rb +171 -26
- data/lib/twilio-ruby/rest/messaging/v2.rb +1 -1
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +21 -0
- data/lib/twilio-ruby/rest/numbers/v1/{porting_webhook_configuration_fetch.rb → webhook.rb} +20 -20
- data/lib/twilio-ruby/rest/numbers/v1.rb +6 -6
- data/lib/twilio-ruby/rest/studio/v1/flow/engagement/step.rb +7 -0
- data/lib/twilio-ruby/rest/studio/v1/flow/execution/execution_step.rb +7 -0
- data/lib/twilio-ruby/rest/studio/v2/flow/execution/execution_step.rb +7 -0
- data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +7 -0
- data/lib/twilio-ruby/rest/verify/v2/service.rb +61 -0
- data/lib/twilio-ruby/rest/voice_base.rb +1 -6
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +3 -3
@@ -17,12 +17,12 @@ module Twilio
|
|
17
17
|
module REST
|
18
18
|
class Numbers < NumbersBase
|
19
19
|
class V1 < Version
|
20
|
-
class
|
20
|
+
class WebhookList < ListResource
|
21
21
|
|
22
22
|
##
|
23
|
-
# Initialize the
|
23
|
+
# Initialize the WebhookList
|
24
24
|
# @param [Version] version Version that contains the resource
|
25
|
-
# @return [
|
25
|
+
# @return [WebhookList] WebhookList
|
26
26
|
def initialize(version)
|
27
27
|
super(version)
|
28
28
|
# Path Solution
|
@@ -31,8 +31,8 @@ module Twilio
|
|
31
31
|
|
32
32
|
end
|
33
33
|
##
|
34
|
-
# Fetch the
|
35
|
-
# @return [
|
34
|
+
# Fetch the WebhookInstance
|
35
|
+
# @return [WebhookInstance] Fetched WebhookInstance
|
36
36
|
def fetch
|
37
37
|
|
38
38
|
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
|
@@ -42,7 +42,7 @@ module Twilio
|
|
42
42
|
|
43
43
|
|
44
44
|
payload = @version.fetch('GET', @uri, headers: headers)
|
45
|
-
|
45
|
+
WebhookInstance.new(
|
46
46
|
@version,
|
47
47
|
payload,
|
48
48
|
)
|
@@ -53,17 +53,17 @@ module Twilio
|
|
53
53
|
|
54
54
|
# Provide a user friendly representation
|
55
55
|
def to_s
|
56
|
-
'#<Twilio.Numbers.V1.
|
56
|
+
'#<Twilio.Numbers.V1.WebhookList>'
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
class
|
60
|
+
class WebhookPage < Page
|
61
61
|
##
|
62
|
-
# Initialize the
|
62
|
+
# Initialize the WebhookPage
|
63
63
|
# @param [Version] version Version that contains the resource
|
64
64
|
# @param [Response] response Response from the API
|
65
65
|
# @param [Hash] solution Path solution for the resource
|
66
|
-
# @return [
|
66
|
+
# @return [WebhookPage] WebhookPage
|
67
67
|
def initialize(version, response, solution)
|
68
68
|
super(version, response)
|
69
69
|
|
@@ -72,29 +72,29 @@ module Twilio
|
|
72
72
|
end
|
73
73
|
|
74
74
|
##
|
75
|
-
# Build an instance of
|
75
|
+
# Build an instance of WebhookInstance
|
76
76
|
# @param [Hash] payload Payload response from the API
|
77
|
-
# @return [
|
77
|
+
# @return [WebhookInstance] WebhookInstance
|
78
78
|
def get_instance(payload)
|
79
|
-
|
79
|
+
WebhookInstance.new(@version, payload)
|
80
80
|
end
|
81
81
|
|
82
82
|
##
|
83
83
|
# Provide a user friendly representation
|
84
84
|
def to_s
|
85
|
-
'<Twilio.Numbers.V1.
|
85
|
+
'<Twilio.Numbers.V1.WebhookPage>'
|
86
86
|
end
|
87
87
|
end
|
88
|
-
class
|
88
|
+
class WebhookInstance < InstanceResource
|
89
89
|
##
|
90
|
-
# Initialize the
|
90
|
+
# Initialize the WebhookInstance
|
91
91
|
# @param [Version] version Version that contains the resource
|
92
92
|
# @param [Hash] payload payload that contains response from Twilio
|
93
93
|
# @param [String] account_sid The SID of the
|
94
|
-
# {Account}[https://www.twilio.com/docs/iam/api/account] that created this
|
94
|
+
# {Account}[https://www.twilio.com/docs/iam/api/account] that created this Webhook
|
95
95
|
# resource.
|
96
96
|
# @param [String] sid The SID of the Call resource to fetch.
|
97
|
-
# @return [
|
97
|
+
# @return [WebhookInstance] WebhookInstance
|
98
98
|
def initialize(version, payload )
|
99
99
|
super(version)
|
100
100
|
|
@@ -149,13 +149,13 @@ module Twilio
|
|
149
149
|
##
|
150
150
|
# Provide a user friendly representation
|
151
151
|
def to_s
|
152
|
-
"<Twilio.Numbers.V1.
|
152
|
+
"<Twilio.Numbers.V1.WebhookInstance>"
|
153
153
|
end
|
154
154
|
|
155
155
|
##
|
156
156
|
# Provide a detailed, user friendly representation
|
157
157
|
def inspect
|
158
|
-
"<Twilio.Numbers.V1.
|
158
|
+
"<Twilio.Numbers.V1.WebhookInstance>"
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
@@ -28,8 +28,8 @@ module Twilio
|
|
28
28
|
@porting_portabilities = nil
|
29
29
|
@porting_webhook_configurations = nil
|
30
30
|
@porting_webhook_configurations_delete = nil
|
31
|
-
@porting_webhook_configuration_fetch = nil
|
32
31
|
@signing_request_configurations = nil
|
32
|
+
@webhook = nil
|
33
33
|
end
|
34
34
|
|
35
35
|
##
|
@@ -135,16 +135,16 @@ module Twilio
|
|
135
135
|
end
|
136
136
|
end
|
137
137
|
##
|
138
|
-
# @return [Twilio::REST::Numbers::V1::PortingWebhookConfigurationFetchList]
|
139
|
-
def porting_webhook_configuration_fetch
|
140
|
-
@porting_webhook_configuration_fetch ||= PortingWebhookConfigurationFetchList.new self
|
141
|
-
end
|
142
|
-
##
|
143
138
|
# @return [Twilio::REST::Numbers::V1::SigningRequestConfigurationList]
|
144
139
|
def signing_request_configurations
|
145
140
|
@signing_request_configurations ||= SigningRequestConfigurationList.new self
|
146
141
|
end
|
147
142
|
##
|
143
|
+
# @return [Twilio::REST::Numbers::V1::WebhookList]
|
144
|
+
def webhook
|
145
|
+
@webhook ||= WebhookList.new self
|
146
|
+
end
|
147
|
+
##
|
148
148
|
# Provide a user friendly representation
|
149
149
|
def to_s
|
150
150
|
'<Twilio::REST::Numbers::V1>';
|
@@ -249,6 +249,7 @@ module Twilio
|
|
249
249
|
'parent_step_sid' => payload['parent_step_sid'],
|
250
250
|
'transitioned_from' => payload['transitioned_from'],
|
251
251
|
'transitioned_to' => payload['transitioned_to'],
|
252
|
+
'type' => payload['type'],
|
252
253
|
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
253
254
|
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
254
255
|
'url' => payload['url'],
|
@@ -325,6 +326,12 @@ module Twilio
|
|
325
326
|
@properties['transitioned_to']
|
326
327
|
end
|
327
328
|
|
329
|
+
##
|
330
|
+
# @return [String] The type of the widget that was executed.
|
331
|
+
def type
|
332
|
+
@properties['type']
|
333
|
+
end
|
334
|
+
|
328
335
|
##
|
329
336
|
# @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
330
337
|
def date_created
|
@@ -249,6 +249,7 @@ module Twilio
|
|
249
249
|
'context' => payload['context'],
|
250
250
|
'transitioned_from' => payload['transitioned_from'],
|
251
251
|
'transitioned_to' => payload['transitioned_to'],
|
252
|
+
'type' => payload['type'],
|
252
253
|
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
253
254
|
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
254
255
|
'url' => payload['url'],
|
@@ -325,6 +326,12 @@ module Twilio
|
|
325
326
|
@properties['transitioned_to']
|
326
327
|
end
|
327
328
|
|
329
|
+
##
|
330
|
+
# @return [String] The type of the widget that was executed.
|
331
|
+
def type
|
332
|
+
@properties['type']
|
333
|
+
end
|
334
|
+
|
328
335
|
##
|
329
336
|
# @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
330
337
|
def date_created
|
@@ -249,6 +249,7 @@ module Twilio
|
|
249
249
|
'context' => payload['context'],
|
250
250
|
'transitioned_from' => payload['transitioned_from'],
|
251
251
|
'transitioned_to' => payload['transitioned_to'],
|
252
|
+
'type' => payload['type'],
|
252
253
|
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
253
254
|
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
254
255
|
'url' => payload['url'],
|
@@ -325,6 +326,12 @@ module Twilio
|
|
325
326
|
@properties['transitioned_to']
|
326
327
|
end
|
327
328
|
|
329
|
+
##
|
330
|
+
# @return [String] The type of the widget that was executed.
|
331
|
+
def type
|
332
|
+
@properties['type']
|
333
|
+
end
|
334
|
+
|
328
335
|
##
|
329
336
|
# @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
330
337
|
def date_created
|
@@ -157,6 +157,7 @@ module Twilio
|
|
157
157
|
'entity_sid' => payload['entity_sid'],
|
158
158
|
'identity' => payload['identity'],
|
159
159
|
'binding' => payload['binding'],
|
160
|
+
'options' => payload['options'],
|
160
161
|
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
161
162
|
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
162
163
|
'friendly_name' => payload['friendly_name'],
|
@@ -205,6 +206,12 @@ module Twilio
|
|
205
206
|
@properties['binding']
|
206
207
|
end
|
207
208
|
|
209
|
+
##
|
210
|
+
# @return [Hash]
|
211
|
+
def options
|
212
|
+
@properties['options']
|
213
|
+
end
|
214
|
+
|
208
215
|
##
|
209
216
|
# @return [Time] The date that this Factor was created, given in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
210
217
|
def date_created
|
@@ -51,6 +51,12 @@ module Twilio
|
|
51
51
|
# @param [String] default_template_sid The default message [template](https://www.twilio.com/docs/verify/api/templates). Will be used for all SMS verifications unless explicitly overriden. SMS channel only.
|
52
52
|
# @param [String] whatsapp_msg_service_sid The SID of the Messaging Service containing WhatsApp Sender(s) that Verify will use to send WhatsApp messages to your users.
|
53
53
|
# @param [String] whatsapp_from The number to use as the WhatsApp Sender that Verify will use to send WhatsApp messages to your users.This WhatsApp Sender must be associated with a Messaging Service SID.
|
54
|
+
# @param [String] passkeys_relying_party_id The Relying Party ID for Passkeys. This is the domain of your application, e.g. `example.com`. It is used to identify your application when creating Passkeys.
|
55
|
+
# @param [String] passkeys_relying_party_name The Relying Party Name for Passkeys. This is the name of your application, e.g. `Example App`. It is used to identify your application when creating Passkeys.
|
56
|
+
# @param [String] passkeys_relying_party_origins The Relying Party Origins for Passkeys. This is the origin of your application, e.g. `login.example.com,www.example.com`. It is used to identify your application when creating Passkeys, it can have multiple origins split by `,`.
|
57
|
+
# @param [String] passkeys_authenticator_attachment The Authenticator Attachment for Passkeys. This is the type of authenticator that will be used to create Passkeys. It can be empty or it can have the values `platform`, `cross-platform` or `any`.
|
58
|
+
# @param [String] passkeys_discoverable_credentials Indicates whether credentials must be discoverable by the authenticator. It can be empty or it can have the values `required`, `preferred` or `discouraged`.
|
59
|
+
# @param [String] passkeys_user_verification The User Verification for Passkeys. This is the type of user verification that will be used to create Passkeys. It can be empty or it can have the values `required`, `preferred` or `discouraged`.
|
54
60
|
# @param [Boolean] verify_event_subscription_enabled Whether to allow verifications from the service to reach the stream-events sinks if configured
|
55
61
|
# @return [ServiceInstance] Created ServiceInstance
|
56
62
|
def create(
|
@@ -73,6 +79,12 @@ module Twilio
|
|
73
79
|
default_template_sid: :unset,
|
74
80
|
whatsapp_msg_service_sid: :unset,
|
75
81
|
whatsapp_from: :unset,
|
82
|
+
passkeys_relying_party_id: :unset,
|
83
|
+
passkeys_relying_party_name: :unset,
|
84
|
+
passkeys_relying_party_origins: :unset,
|
85
|
+
passkeys_authenticator_attachment: :unset,
|
86
|
+
passkeys_discoverable_credentials: :unset,
|
87
|
+
passkeys_user_verification: :unset,
|
76
88
|
verify_event_subscription_enabled: :unset
|
77
89
|
)
|
78
90
|
|
@@ -96,6 +108,12 @@ module Twilio
|
|
96
108
|
'DefaultTemplateSid' => default_template_sid,
|
97
109
|
'Whatsapp.MsgServiceSid' => whatsapp_msg_service_sid,
|
98
110
|
'Whatsapp.From' => whatsapp_from,
|
111
|
+
'Passkeys.RelyingParty.Id' => passkeys_relying_party_id,
|
112
|
+
'Passkeys.RelyingParty.Name' => passkeys_relying_party_name,
|
113
|
+
'Passkeys.RelyingParty.Origins' => passkeys_relying_party_origins,
|
114
|
+
'Passkeys.AuthenticatorAttachment' => passkeys_authenticator_attachment,
|
115
|
+
'Passkeys.DiscoverableCredentials' => passkeys_discoverable_credentials,
|
116
|
+
'Passkeys.UserVerification' => passkeys_user_verification,
|
99
117
|
'VerifyEventSubscriptionEnabled' => verify_event_subscription_enabled,
|
100
118
|
})
|
101
119
|
|
@@ -283,6 +301,12 @@ module Twilio
|
|
283
301
|
# @param [String] default_template_sid The default message [template](https://www.twilio.com/docs/verify/api/templates). Will be used for all SMS verifications unless explicitly overriden. SMS channel only.
|
284
302
|
# @param [String] whatsapp_msg_service_sid The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/services) to associate with the Verification Service.
|
285
303
|
# @param [String] whatsapp_from The WhatsApp number to use as the sender of the verification messages. This number must be associated with the WhatsApp Message Service.
|
304
|
+
# @param [String] passkeys_relying_party_id The Relying Party ID for Passkeys. This is the domain of your application, e.g. `example.com`. It is used to identify your application when creating Passkeys.
|
305
|
+
# @param [String] passkeys_relying_party_name The Relying Party Name for Passkeys. This is the name of your application, e.g. `Example App`. It is used to identify your application when creating Passkeys.
|
306
|
+
# @param [String] passkeys_relying_party_origins The Relying Party Origins for Passkeys. This is the origin of your application, e.g. `login.example.com,www.example.com`. It is used to identify your application when creating Passkeys, it can have multiple origins split by `,`.
|
307
|
+
# @param [String] passkeys_authenticator_attachment The Authenticator Attachment for Passkeys. This is the type of authenticator that will be used to create Passkeys. It can be empty or it can have the values `platform`, `cross-platform` or `any`.
|
308
|
+
# @param [String] passkeys_discoverable_credentials Indicates whether credentials must be discoverable by the authenticator. It can be empty or it can have the values `required`, `preferred` or `discouraged`.
|
309
|
+
# @param [String] passkeys_user_verification The User Verification for Passkeys. This is the type of user verification that will be used to create Passkeys. It can be empty or it can have the values `required`, `preferred` or `discouraged`.
|
286
310
|
# @param [Boolean] verify_event_subscription_enabled Whether to allow verifications from the service to reach the stream-events sinks if configured
|
287
311
|
# @return [ServiceInstance] Updated ServiceInstance
|
288
312
|
def update(
|
@@ -305,6 +329,12 @@ module Twilio
|
|
305
329
|
default_template_sid: :unset,
|
306
330
|
whatsapp_msg_service_sid: :unset,
|
307
331
|
whatsapp_from: :unset,
|
332
|
+
passkeys_relying_party_id: :unset,
|
333
|
+
passkeys_relying_party_name: :unset,
|
334
|
+
passkeys_relying_party_origins: :unset,
|
335
|
+
passkeys_authenticator_attachment: :unset,
|
336
|
+
passkeys_discoverable_credentials: :unset,
|
337
|
+
passkeys_user_verification: :unset,
|
308
338
|
verify_event_subscription_enabled: :unset
|
309
339
|
)
|
310
340
|
|
@@ -328,6 +358,12 @@ module Twilio
|
|
328
358
|
'DefaultTemplateSid' => default_template_sid,
|
329
359
|
'Whatsapp.MsgServiceSid' => whatsapp_msg_service_sid,
|
330
360
|
'Whatsapp.From' => whatsapp_from,
|
361
|
+
'Passkeys.RelyingParty.Id' => passkeys_relying_party_id,
|
362
|
+
'Passkeys.RelyingParty.Name' => passkeys_relying_party_name,
|
363
|
+
'Passkeys.RelyingParty.Origins' => passkeys_relying_party_origins,
|
364
|
+
'Passkeys.AuthenticatorAttachment' => passkeys_authenticator_attachment,
|
365
|
+
'Passkeys.DiscoverableCredentials' => passkeys_discoverable_credentials,
|
366
|
+
'Passkeys.UserVerification' => passkeys_user_verification,
|
331
367
|
'VerifyEventSubscriptionEnabled' => verify_event_subscription_enabled,
|
332
368
|
})
|
333
369
|
|
@@ -544,6 +580,7 @@ module Twilio
|
|
544
580
|
'totp' => payload['totp'],
|
545
581
|
'default_template_sid' => payload['default_template_sid'],
|
546
582
|
'whatsapp' => payload['whatsapp'],
|
583
|
+
'passkeys' => payload['passkeys'],
|
547
584
|
'verify_event_subscription_enabled' => payload['verify_event_subscription_enabled'],
|
548
585
|
'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
|
549
586
|
'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
|
@@ -657,6 +694,12 @@ module Twilio
|
|
657
694
|
@properties['whatsapp']
|
658
695
|
end
|
659
696
|
|
697
|
+
##
|
698
|
+
# @return [Hash]
|
699
|
+
def passkeys
|
700
|
+
@properties['passkeys']
|
701
|
+
end
|
702
|
+
|
660
703
|
##
|
661
704
|
# @return [Boolean] Whether to allow verifications from the service to reach the stream-events sinks if configured
|
662
705
|
def verify_event_subscription_enabled
|
@@ -724,6 +767,12 @@ module Twilio
|
|
724
767
|
# @param [String] default_template_sid The default message [template](https://www.twilio.com/docs/verify/api/templates). Will be used for all SMS verifications unless explicitly overriden. SMS channel only.
|
725
768
|
# @param [String] whatsapp_msg_service_sid The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/services) to associate with the Verification Service.
|
726
769
|
# @param [String] whatsapp_from The WhatsApp number to use as the sender of the verification messages. This number must be associated with the WhatsApp Message Service.
|
770
|
+
# @param [String] passkeys_relying_party_id The Relying Party ID for Passkeys. This is the domain of your application, e.g. `example.com`. It is used to identify your application when creating Passkeys.
|
771
|
+
# @param [String] passkeys_relying_party_name The Relying Party Name for Passkeys. This is the name of your application, e.g. `Example App`. It is used to identify your application when creating Passkeys.
|
772
|
+
# @param [String] passkeys_relying_party_origins The Relying Party Origins for Passkeys. This is the origin of your application, e.g. `login.example.com,www.example.com`. It is used to identify your application when creating Passkeys, it can have multiple origins split by `,`.
|
773
|
+
# @param [String] passkeys_authenticator_attachment The Authenticator Attachment for Passkeys. This is the type of authenticator that will be used to create Passkeys. It can be empty or it can have the values `platform`, `cross-platform` or `any`.
|
774
|
+
# @param [String] passkeys_discoverable_credentials Indicates whether credentials must be discoverable by the authenticator. It can be empty or it can have the values `required`, `preferred` or `discouraged`.
|
775
|
+
# @param [String] passkeys_user_verification The User Verification for Passkeys. This is the type of user verification that will be used to create Passkeys. It can be empty or it can have the values `required`, `preferred` or `discouraged`.
|
727
776
|
# @param [Boolean] verify_event_subscription_enabled Whether to allow verifications from the service to reach the stream-events sinks if configured
|
728
777
|
# @return [ServiceInstance] Updated ServiceInstance
|
729
778
|
def update(
|
@@ -746,6 +795,12 @@ module Twilio
|
|
746
795
|
default_template_sid: :unset,
|
747
796
|
whatsapp_msg_service_sid: :unset,
|
748
797
|
whatsapp_from: :unset,
|
798
|
+
passkeys_relying_party_id: :unset,
|
799
|
+
passkeys_relying_party_name: :unset,
|
800
|
+
passkeys_relying_party_origins: :unset,
|
801
|
+
passkeys_authenticator_attachment: :unset,
|
802
|
+
passkeys_discoverable_credentials: :unset,
|
803
|
+
passkeys_user_verification: :unset,
|
749
804
|
verify_event_subscription_enabled: :unset
|
750
805
|
)
|
751
806
|
|
@@ -769,6 +824,12 @@ module Twilio
|
|
769
824
|
default_template_sid: default_template_sid,
|
770
825
|
whatsapp_msg_service_sid: whatsapp_msg_service_sid,
|
771
826
|
whatsapp_from: whatsapp_from,
|
827
|
+
passkeys_relying_party_id: passkeys_relying_party_id,
|
828
|
+
passkeys_relying_party_name: passkeys_relying_party_name,
|
829
|
+
passkeys_relying_party_origins: passkeys_relying_party_origins,
|
830
|
+
passkeys_authenticator_attachment: passkeys_authenticator_attachment,
|
831
|
+
passkeys_discoverable_credentials: passkeys_discoverable_credentials,
|
832
|
+
passkeys_user_verification: passkeys_user_verification,
|
772
833
|
verify_event_subscription_enabled: verify_event_subscription_enabled,
|
773
834
|
)
|
774
835
|
end
|
@@ -21,17 +21,12 @@ module Twilio
|
|
21
21
|
@base_url = "https://voice.twilio.com"
|
22
22
|
@host = "voice.twilio.com"
|
23
23
|
@port = 443
|
24
|
-
@v1 = nil
|
25
|
-
end
|
26
|
-
|
27
|
-
def v1
|
28
|
-
@v1 ||= Voice::V1.new self
|
29
24
|
end
|
30
25
|
|
31
26
|
##
|
32
27
|
# Provide a user friendly representation
|
33
28
|
def to_s
|
34
|
-
'<Twilio::REST::Voice
|
29
|
+
'<Twilio::REST::Voice>';
|
35
30
|
end
|
36
31
|
end
|
37
32
|
end
|
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.
|
4
|
+
version: 7.8.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: 2025-
|
11
|
+
date: 2025-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -621,8 +621,8 @@ files:
|
|
621
621
|
- lib/twilio-ruby/rest/numbers/v1/porting_portability.rb
|
622
622
|
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb
|
623
623
|
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb
|
624
|
-
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_fetch.rb
|
625
624
|
- lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb
|
625
|
+
- lib/twilio-ruby/rest/numbers/v1/webhook.rb
|
626
626
|
- lib/twilio-ruby/rest/numbers/v2.rb
|
627
627
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document.rb
|
628
628
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb
|