twilio-ruby 7.7.1 → 7.7.2
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 +9 -0
- data/README.md +2 -2
- 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.rb +18 -0
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc16b2d959a23ab7143fb5da2ceaeb2f8bdd824d
|
4
|
+
data.tar.gz: 59a2eb4f346abc3e188131f4521dccaf1fb0c0a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44fdec16888edf12ec6d2df85f3b7199786b5e56fc91a6a90a9ee9fc39bcbbd4fb4c6955d7db8ea2321be463c69d07bd36664b9d38f3bdd91d6f29dff40c754b
|
7
|
+
data.tar.gz: 7f2872a1931d7bb7297cde50c276faa80a35f3d40c27a74e2d94141c1e6c4dfe150c7b4ff1c593fb8c4c08171d7a555dba14431227227a6a55ad81fcb4b4589b
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
twilio-ruby changelog
|
2
2
|
=====================
|
3
3
|
|
4
|
+
[2025-08-28] Version 7.7.2
|
5
|
+
--------------------------
|
6
|
+
**Studio**
|
7
|
+
- Add `type` to Step resource APIs
|
8
|
+
|
9
|
+
**Verify**
|
10
|
+
- Allow to update all passkeys parameters in the service update
|
11
|
+
|
12
|
+
|
4
13
|
[2025-08-18] Version 7.7.1
|
5
14
|
--------------------------
|
6
15
|
**Accounts**
|
data/README.md
CHANGED
@@ -39,13 +39,13 @@ This library supports the following Ruby implementations:
|
|
39
39
|
To install using [Bundler][bundler] grab the latest stable version:
|
40
40
|
|
41
41
|
```ruby
|
42
|
-
gem 'twilio-ruby', '~> 7.7.
|
42
|
+
gem 'twilio-ruby', '~> 7.7.2'
|
43
43
|
```
|
44
44
|
|
45
45
|
To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
|
46
46
|
|
47
47
|
```bash
|
48
|
-
gem install twilio-ruby -v 7.7.
|
48
|
+
gem install twilio-ruby -v 7.7.2
|
49
49
|
```
|
50
50
|
|
51
51
|
To build and install the development branch yourself from the latest source:
|
@@ -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
|
@@ -304,6 +304,9 @@ module Twilio
|
|
304
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
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
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`.
|
307
310
|
# @param [Boolean] verify_event_subscription_enabled Whether to allow verifications from the service to reach the stream-events sinks if configured
|
308
311
|
# @return [ServiceInstance] Updated ServiceInstance
|
309
312
|
def update(
|
@@ -329,6 +332,9 @@ module Twilio
|
|
329
332
|
passkeys_relying_party_id: :unset,
|
330
333
|
passkeys_relying_party_name: :unset,
|
331
334
|
passkeys_relying_party_origins: :unset,
|
335
|
+
passkeys_authenticator_attachment: :unset,
|
336
|
+
passkeys_discoverable_credentials: :unset,
|
337
|
+
passkeys_user_verification: :unset,
|
332
338
|
verify_event_subscription_enabled: :unset
|
333
339
|
)
|
334
340
|
|
@@ -355,6 +361,9 @@ module Twilio
|
|
355
361
|
'Passkeys.RelyingParty.Id' => passkeys_relying_party_id,
|
356
362
|
'Passkeys.RelyingParty.Name' => passkeys_relying_party_name,
|
357
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,
|
358
367
|
'VerifyEventSubscriptionEnabled' => verify_event_subscription_enabled,
|
359
368
|
})
|
360
369
|
|
@@ -761,6 +770,9 @@ module Twilio
|
|
761
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.
|
762
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.
|
763
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`.
|
764
776
|
# @param [Boolean] verify_event_subscription_enabled Whether to allow verifications from the service to reach the stream-events sinks if configured
|
765
777
|
# @return [ServiceInstance] Updated ServiceInstance
|
766
778
|
def update(
|
@@ -786,6 +798,9 @@ module Twilio
|
|
786
798
|
passkeys_relying_party_id: :unset,
|
787
799
|
passkeys_relying_party_name: :unset,
|
788
800
|
passkeys_relying_party_origins: :unset,
|
801
|
+
passkeys_authenticator_attachment: :unset,
|
802
|
+
passkeys_discoverable_credentials: :unset,
|
803
|
+
passkeys_user_verification: :unset,
|
789
804
|
verify_event_subscription_enabled: :unset
|
790
805
|
)
|
791
806
|
|
@@ -812,6 +827,9 @@ module Twilio
|
|
812
827
|
passkeys_relying_party_id: passkeys_relying_party_id,
|
813
828
|
passkeys_relying_party_name: passkeys_relying_party_name,
|
814
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,
|
815
833
|
verify_event_subscription_enabled: verify_event_subscription_enabled,
|
816
834
|
)
|
817
835
|
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.7.
|
4
|
+
version: 7.7.2
|
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-08-
|
11
|
+
date: 2025-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|