google-apis-identitytoolkit_v1 0.9.0 → 0.11.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: 8165244eae9c74e7715be19034073924bf9a1fc716d95368bd603fc54368a372
4
- data.tar.gz: 5430bc60195074ae95e4be633012dd166cb95a49d7ada95d5eace20612e8f37e
3
+ metadata.gz: 67d4befec6578fd7726d3bf003a72ff18c103b21a99e7cec5e0a09a9730d1a01
4
+ data.tar.gz: 5424b676bd4514918f18159b4030251f973bf73b59ba28081f9acc3e2805c81d
5
5
  SHA512:
6
- metadata.gz: 2a266f92971a4184e0c3c4d952a708995be3dda468fda130791aa7da712e6f22995e7af770e387b328d943b32605fd40cf04625961d445b9f16201162c813471
7
- data.tar.gz: cf848cc6b319c86266431d8bda936e56dc54e6188e88e9ac4cf256a946f6e3e7ca2d369f521e2f52b4010f086ebef787ecaabd6d24c595222a4066f22252ed3b
6
+ metadata.gz: 9b96a7239bf70e0d586b20ac8d3d3319890edd7d14b53c36b22ce85d43349236090d0bcfc495715f883b5a0c81b9f92843e2e6310162350106af1feab7b87f52
7
+ data.tar.gz: 22eefd7e579e89393e772cd288d3f98eaca43cf946a1643f8a39f71fbb366afa19e556603cb1093f2fce23a5609f74c514b4e5fcd48ab5ae189b0de602b8a336
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-identitytoolkit_v1
2
2
 
3
+ ### v0.11.0 (2023-06-04)
4
+
5
+ * Regenerated from discovery document revision 20230531
6
+
7
+ ### v0.10.0 (2023-05-14)
8
+
9
+ * Regenerated from discovery document revision 20230508
10
+
3
11
  ### v0.9.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230421
@@ -119,7 +119,7 @@ module Google
119
119
  attr_accessor :local_ids
120
120
 
121
121
  # If the accounts belong to an Identity Platform tenant, the ID of the tenant.
122
- # If the accounts belong to an default Identity Platform project, the field is
122
+ # If the accounts belong to a default Identity Platform project, the field is
123
123
  # not needed.
124
124
  # Corresponds to the JSON property `tenantId`
125
125
  # @return [String]
@@ -2523,19 +2523,19 @@ module Google
2523
2523
  # that contains the credential (e.g. an ID token or access token for OAuth 2.0
2524
2524
  # IdPs) and the provider ID of the IdP that issued the credential. For example,
2525
2525
  # if the user is signing in to the Google provider using a Google ID token, this
2526
- # should be set to `id_token=[GOOGLE_ID_TOKEN]&providerId=google.com`, where `[
2526
+ # should be set to id_token`=[GOOGLE_ID_TOKEN]&providerId=google.com`, where `[
2527
2527
  # GOOGLE_ID_TOKEN]` should be replaced with the Google ID token. If the user is
2528
2528
  # signing in to the Facebook provider using a Facebook authentication token,
2529
- # this should be set to `id_token=[FACEBOOK_AUTHENTICATION_TOKEN]&providerId=
2530
- # facebook.com&nonce= [NONCE]`, where `[FACEBOOK_AUTHENTICATION_TOKEN]` should
2529
+ # this should be set to id_token`=[FACEBOOK_AUTHENTICATION_TOKEN]&providerId=
2530
+ # facebook. com&nonce= [NONCE]`, where `[FACEBOOK_AUTHENTICATION_TOKEN]` should
2531
2531
  # be replaced with the Facebook authentication token. Nonce is required for
2532
2532
  # validating the token. The request will fail if no nonce is provided. If the
2533
2533
  # user is signing in to the Facebook provider using a Facebook access token,
2534
- # this should be set to `access_token=[FACEBOOK_ACCESS_TOKEN]&providerId=
2535
- # facebook.com`, where `[FACEBOOK_ACCESS_TOKEN]` should be replaced with the
2534
+ # this should be set to access_token`=[FACEBOOK_ACCESS_TOKEN]&providerId=
2535
+ # facebook. com`, where `[FACEBOOK_ACCESS_TOKEN]` should be replaced with the
2536
2536
  # Facebook access token. If the user is signing in to the Twitter provider using
2537
- # a Twitter OAuth 1.0 credential, this should be set to `access_token=[
2538
- # TWITTER_ACCESS_TOKEN]&oauth_token_secret=[TWITTER_TOKEN_SECRET]&providerId=
2537
+ # a Twitter OAuth 1.0 credential, this should be set to access_token`=[
2538
+ # TWITTER_ACCESS_TOKEN]&oauth_token_secret= [TWITTER_TOKEN_SECRET]&providerId=
2539
2539
  # twitter.com`, where `[TWITTER_ACCESS_TOKEN]` and `[TWITTER_TOKEN_SECRET]`
2540
2540
  # should be replaced with the Twitter OAuth access token and Twitter OAuth token
2541
2541
  # secret respectively.
@@ -3055,6 +3055,11 @@ module Google
3055
3055
  attr_accessor :registered
3056
3056
  alias_method :registered?, :registered
3057
3057
 
3058
+ # Warning notifications for the user.
3059
+ # Corresponds to the JSON property `userNotifications`
3060
+ # @return [Array<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserNotification>]
3061
+ attr_accessor :user_notifications
3062
+
3058
3063
  def initialize(**args)
3059
3064
  update!(**args)
3060
3065
  end
@@ -3075,6 +3080,7 @@ module Google
3075
3080
  @profile_picture = args[:profile_picture] if args.key?(:profile_picture)
3076
3081
  @refresh_token = args[:refresh_token] if args.key?(:refresh_token)
3077
3082
  @registered = args[:registered] if args.key?(:registered)
3083
+ @user_notifications = args[:user_notifications] if args.key?(:user_notifications)
3078
3084
  end
3079
3085
  end
3080
3086
 
@@ -3850,6 +3856,31 @@ module Google
3850
3856
  end
3851
3857
  end
3852
3858
 
3859
+ # Warning notifications for the user.
3860
+ class GoogleCloudIdentitytoolkitV1UserNotification
3861
+ include Google::Apis::Core::Hashable
3862
+
3863
+ # Warning notification enum. Can be used for localization.
3864
+ # Corresponds to the JSON property `notificationCode`
3865
+ # @return [String]
3866
+ attr_accessor :notification_code
3867
+
3868
+ # Warning notification string. Can be used as fallback.
3869
+ # Corresponds to the JSON property `notificationMessage`
3870
+ # @return [String]
3871
+ attr_accessor :notification_message
3872
+
3873
+ def initialize(**args)
3874
+ update!(**args)
3875
+ end
3876
+
3877
+ # Update properties of this object
3878
+ def update!(**args)
3879
+ @notification_code = args[:notification_code] if args.key?(:notification_code)
3880
+ @notification_message = args[:notification_message] if args.key?(:notification_message)
3881
+ end
3882
+ end
3883
+
3853
3884
  # Request message for VerifyIosClient
3854
3885
  class GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
3855
3886
  include Google::Apis::Core::Hashable
@@ -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.9.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230421"
25
+ REVISION = "20230531"
26
26
  end
27
27
  end
28
28
  end
@@ -370,6 +370,12 @@ module Google
370
370
  include Google::Apis::Core::JsonObjectSupport
371
371
  end
372
372
 
373
+ class GoogleCloudIdentitytoolkitV1UserNotification
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
373
379
  class GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
374
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
381
 
@@ -1042,6 +1048,8 @@ module Google
1042
1048
  property :profile_picture, as: 'profilePicture'
1043
1049
  property :refresh_token, as: 'refreshToken'
1044
1050
  property :registered, as: 'registered'
1051
+ collection :user_notifications, as: 'userNotifications', class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserNotification, decorator: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserNotification::Representation
1052
+
1045
1053
  end
1046
1054
  end
1047
1055
 
@@ -1195,6 +1203,14 @@ module Google
1195
1203
  end
1196
1204
  end
1197
1205
 
1206
+ class GoogleCloudIdentitytoolkitV1UserNotification
1207
+ # @private
1208
+ class Representation < Google::Apis::Core::JsonRepresentation
1209
+ property :notification_code, as: 'notificationCode'
1210
+ property :notification_message, as: 'notificationMessage'
1211
+ end
1212
+ end
1213
+
1198
1214
  class GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
1199
1215
  # @private
1200
1216
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1152,7 +1152,7 @@ module Google
1152
1152
  # project that accounts belong to.
1153
1153
  # @param [String] tenant_id
1154
1154
  # If the accounts belong to an Identity Platform tenant, the ID of the tenant.
1155
- # If the accounts belong to an default Identity Platform project, the field is
1155
+ # If the accounts belong to a default Identity Platform project, the field is
1156
1156
  # not needed.
1157
1157
  # @param [Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1BatchDeleteAccountsRequest] google_cloud_identitytoolkit_v1_batch_delete_accounts_request_object
1158
1158
  # @param [String] fields
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-identitytoolkit_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v1
63
63
  post_install_message:
64
64
  rdoc_options: []