google-apis-identitytoolkit_v1 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8165244eae9c74e7715be19034073924bf9a1fc716d95368bd603fc54368a372
4
- data.tar.gz: 5430bc60195074ae95e4be633012dd166cb95a49d7ada95d5eace20612e8f37e
3
+ metadata.gz: 1b040967645f25917bc00107b7919a84eb7b16db2ad6a13190806c1fa66a9d2a
4
+ data.tar.gz: fd030cbd0c921aad801d8faa07f8aa69c9f6887efa57647b089617494998c846
5
5
  SHA512:
6
- metadata.gz: 2a266f92971a4184e0c3c4d952a708995be3dda468fda130791aa7da712e6f22995e7af770e387b328d943b32605fd40cf04625961d445b9f16201162c813471
7
- data.tar.gz: cf848cc6b319c86266431d8bda936e56dc54e6188e88e9ac4cf256a946f6e3e7ca2d369f521e2f52b4010f086ebef787ecaabd6d24c595222a4066f22252ed3b
6
+ metadata.gz: 106fa3559c7e58f9eac36e6f9aa8ac42b7f879d44ae545ac4f0b1e8455f4ee7d5ef6c570534ba67c2ebb576822a7f3366e1c7533dd44e71a839501189a0f7602
7
+ data.tar.gz: fd619518dfe0db91670a0066be58acb28e4831cdcb44976ed750ae2f376c73b4cae3733318786910b17b7c683cdce3fa4813fb6475ae88fb9b3f52438fe34df1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-identitytoolkit_v1
2
2
 
3
+ ### v0.10.0 (2023-05-14)
4
+
5
+ * Regenerated from discovery document revision 20230508
6
+
3
7
  ### v0.9.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230421
@@ -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.10.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 = "20230508"
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
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.10.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-05-14 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.10.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: []