google-apis-identitytoolkit_v1 0.18.0 → 0.19.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6da0e34d31b7c1c1a22bee3696adf7dfb9619141da7739a59a2b5c7ec2a2befb
4
- data.tar.gz: 6775d6521e6fd342abffca3091f70f8f8abf8644fb8fe84c8b53ae232e9aa4b2
3
+ metadata.gz: 9b26f6a4dea53c515f4e2e0194e7a697393dd9fd9be13ac9ba6b18cae3f6ebf3
4
+ data.tar.gz: dde868acbba955517748e01c7bd22acf62c8634fd57f0624b86699996e7964f0
5
5
  SHA512:
6
- metadata.gz: 7aa7c324d0760e2f791efa909bd35e610897bba7e3fb4829911924a5138badb1f1ce5ffa30657c497a4812a04231ab1c5039f5bdb2554b519e646db7d2aea546
7
- data.tar.gz: 3d2b95051fdff7398022ca9add965ebf53467725853ccc604f2ad30d128057198ef5ac59bb70c0e0872b1a7ccc94eddb30b440cca320d48b3af03c05176a9315
6
+ metadata.gz: d9910233fd85f26e4a6253f05b61b8ae13391c9a0b25051c1933b4dab73c78b83ff4935ec7420898ced44232a2ec3bbf6ded0b1c747e5d3acf6b7c26e264258d
7
+ data.tar.gz: 5dfbe6fdbacca6fa67eb22b814efbdcd5add00da69f2f5e1e9dc775f14cde758908b87c097bd0d4c6c0597b1cc34a8363dae26d5104063a6c87c9f2332394bb5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-identitytoolkit_v1
2
2
 
3
+ ### v0.19.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250130
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.18.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241205
@@ -714,10 +714,7 @@ module Google
714
714
  # @return [Array<String>]
715
715
  attr_accessor :email
716
716
 
717
- # The federated user identifier of one or more accounts to fetch. Should only be
718
- # specified by authenticated requests bearing a Google OAuth 2.0 credential with
719
- # proper [permissions](https://cloud.google.com/identity-platform/docs/access-
720
- # control).
717
+ #
721
718
  # Corresponds to the JSON property `federatedUserId`
722
719
  # @return [Array<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1FederatedUserIdentifier>]
723
720
  attr_accessor :federated_user_id
@@ -906,6 +903,14 @@ module Google
906
903
  # @return [String]
907
904
  attr_accessor :id_token
908
905
 
906
+ # Optional. In order to ensure that the url used can be easily opened in iOS or
907
+ # Android, we create a Hosting link '/__/auth/links'. This optional field
908
+ # contains the domain to use when constructing a Hosting link. If not set, '.
909
+ # firebaseapp.com' domain will be used.
910
+ # Corresponds to the JSON property `linkDomain`
911
+ # @return [String]
912
+ attr_accessor :link_domain
913
+
909
914
  # The email address the account is being updated to. Required only for
910
915
  # VERIFY_AND_CHANGE_EMAIL requests.
911
916
  # Corresponds to the JSON property `newEmail`
@@ -972,6 +977,7 @@ module Google
972
977
  @i_os_app_store_id = args[:i_os_app_store_id] if args.key?(:i_os_app_store_id)
973
978
  @i_os_bundle_id = args[:i_os_bundle_id] if args.key?(:i_os_bundle_id)
974
979
  @id_token = args[:id_token] if args.key?(:id_token)
980
+ @link_domain = args[:link_domain] if args.key?(:link_domain)
975
981
  @new_email = args[:new_email] if args.key?(:new_email)
976
982
  @recaptcha_version = args[:recaptcha_version] if args.key?(:recaptcha_version)
977
983
  @request_type = args[:request_type] if args.key?(:request_type)
@@ -1199,7 +1205,7 @@ module Google
1199
1205
  # @return [Fixnum]
1200
1206
  attr_accessor :experiment_percent
1201
1207
 
1202
- # Name of the identity provider.
1208
+ #
1203
1209
  # Corresponds to the JSON property `provider`
1204
1210
  # @return [String]
1205
1211
  attr_accessor :provider
@@ -1540,8 +1546,7 @@ module Google
1540
1546
  class GoogleCloudIdentitytoolkitV1QueryUserInfoRequest
1541
1547
  include Google::Apis::Core::Hashable
1542
1548
 
1543
- # Query conditions used to filter results. If more than one is passed, only the
1544
- # first SqlExpression is evaluated.
1549
+ #
1545
1550
  # Corresponds to the JSON property `expression`
1546
1551
  # @return [Array<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1SqlExpression>]
1547
1552
  attr_accessor :expression
@@ -1558,8 +1563,7 @@ module Google
1558
1563
  # @return [Fixnum]
1559
1564
  attr_accessor :offset
1560
1565
 
1561
- # The order for sorting query result. Defaults to __ascending__ order. Only
1562
- # valid when `return_user_info` is set to `true`.
1566
+ #
1563
1567
  # Corresponds to the JSON property `order`
1564
1568
  # @return [String]
1565
1569
  attr_accessor :order
@@ -1572,9 +1576,7 @@ module Google
1572
1576
  attr_accessor :return_user_info
1573
1577
  alias_method :return_user_info?, :return_user_info
1574
1578
 
1575
- # The field to use for sorting user accounts. Defaults to `USER_ID`. Note: when `
1576
- # phone_number` is specified in `expression`, the result ignores the sorting.
1577
- # Only valid when `return_user_info` is set to `true`.
1579
+ #
1578
1580
  # Corresponds to the JSON property `sortBy`
1579
1581
  # @return [String]
1580
1582
  attr_accessor :sort_by
@@ -1890,7 +1892,7 @@ module Google
1890
1892
  # @return [Fixnum]
1891
1893
  attr_accessor :delegated_project_number
1892
1894
 
1893
- # The account's attributes to be deleted.
1895
+ #
1894
1896
  # Corresponds to the JSON property `deleteAttribute`
1895
1897
  # @return [Array<String>]
1896
1898
  attr_accessor :delete_attribute
@@ -3583,7 +3585,7 @@ module Google
3583
3585
  # @return [Fixnum]
3584
3586
  attr_accessor :parallelization
3585
3587
 
3586
- # Password and salt order when verify password.
3588
+ #
3587
3589
  # Corresponds to the JSON property `passwordHashOrder`
3588
3590
  # @return [String]
3589
3591
  attr_accessor :password_hash_order
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IdentitytoolkitV1
18
18
  # Version of the google-apis-identitytoolkit_v1 gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241205"
25
+ REVISION = "20250130"
26
26
  end
27
27
  end
28
28
  end
@@ -593,6 +593,7 @@ module Google
593
593
  property :i_os_app_store_id, as: 'iOSAppStoreId'
594
594
  property :i_os_bundle_id, as: 'iOSBundleId'
595
595
  property :id_token, as: 'idToken'
596
+ property :link_domain, as: 'linkDomain'
596
597
  property :new_email, as: 'newEmail'
597
598
  property :recaptcha_version, as: 'recaptchaVersion'
598
599
  property :request_type, as: 'requestType'
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-identitytoolkit_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.18.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.19.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Identity Toolkit API V1
82
79
  test_files: []