google-apis-identitytoolkit_v1 0.2.0 → 0.3.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: b31128bb6005d3f4396433ff20c55287b7a13bf3f00354e3a9212996514863c7
4
- data.tar.gz: 35a289c18815a1b3836880629f7a58977bbbb9dacbb6dfd00f23e8a040391a07
3
+ metadata.gz: df14aba46d81f518cc5272322cb08366f8e25c37b700db226a4d057f93d671cb
4
+ data.tar.gz: e36932323e21c0bcc8e6a60e5538684a1b91579bd0091eacf3d3ce4cd5774e00
5
5
  SHA512:
6
- metadata.gz: 5143ede106ed21aa38c36ac174db3e8ad7a5ce1cddb1502a1f0dcc84b6aaf79935b7d0d2972ea40b4642a218c83798d1edd6eeeb158ef032784da2963459e7d3
7
- data.tar.gz: bccecb45b6906bd7f6fadfbb36901aad5f95a882636c847a34386a9a34255d9c3d62187c9431135940a3ca33e19296a6005dc14d0fb28078e6fa83c7d8ea7b45
6
+ metadata.gz: 7f7c423b24bdbaa8e41289977bd5153ab6a3fa6e20febb054f1c55cdf0c21c79385a5d8d04b593f8bd40a18c773170de6fbf8eb27f3cdff11bcd47b5276f1a04
7
+ data.tar.gz: d2113916b0d1651fc4b6c2d14e92b20e8fcd99bf24ed33af6694153ba0913be2302769f897987374eea447d102397be955ada49540b0958645f099e6d06797ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-identitytoolkit_v1
2
2
 
3
+ ### v0.3.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230128
6
+
3
7
  ### v0.2.0 (2023-01-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20230113
@@ -2278,6 +2278,13 @@ module Google
2278
2278
  # @return [String]
2279
2279
  attr_accessor :display_name
2280
2280
 
2281
+ # The user's Game Center game player ID. A unique identifier for a player of the
2282
+ # game. https://developer.apple.com/documentation/gamekit/gkplayer/3113960-
2283
+ # gameplayerid
2284
+ # Corresponds to the JSON property `gamePlayerId`
2285
+ # @return [String]
2286
+ attr_accessor :game_player_id
2287
+
2281
2288
  # A valid ID token for an Identity Platform account. If present, this request
2282
2289
  # will link the Game Center player ID to the account represented by this ID
2283
2290
  # token.
@@ -2306,6 +2313,13 @@ module Google
2306
2313
  # @return [String]
2307
2314
  attr_accessor :signature
2308
2315
 
2316
+ # The user's Game Center team player ID. A unique identifier for a player of all
2317
+ # the games that you distribute using your developer account. https://developer.
2318
+ # apple.com/documentation/gamekit/gkplayer/3174857-teamplayerid
2319
+ # Corresponds to the JSON property `teamPlayerId`
2320
+ # @return [String]
2321
+ attr_accessor :team_player_id
2322
+
2309
2323
  # The ID of the Identity Platform tenant the user is signing in to.
2310
2324
  # Corresponds to the JSON property `tenantId`
2311
2325
  # @return [String]
@@ -2324,11 +2338,13 @@ module Google
2324
2338
  # Update properties of this object
2325
2339
  def update!(**args)
2326
2340
  @display_name = args[:display_name] if args.key?(:display_name)
2341
+ @game_player_id = args[:game_player_id] if args.key?(:game_player_id)
2327
2342
  @id_token = args[:id_token] if args.key?(:id_token)
2328
2343
  @player_id = args[:player_id] if args.key?(:player_id)
2329
2344
  @public_key_url = args[:public_key_url] if args.key?(:public_key_url)
2330
2345
  @salt = args[:salt] if args.key?(:salt)
2331
2346
  @signature = args[:signature] if args.key?(:signature)
2347
+ @team_player_id = args[:team_player_id] if args.key?(:team_player_id)
2332
2348
  @tenant_id = args[:tenant_id] if args.key?(:tenant_id)
2333
2349
  @timestamp = args[:timestamp] if args.key?(:timestamp)
2334
2350
  end
@@ -2348,6 +2364,13 @@ module Google
2348
2364
  # @return [Fixnum]
2349
2365
  attr_accessor :expires_in
2350
2366
 
2367
+ # The user's Game Center game player ID. A unique identifier for a player of the
2368
+ # game. https://developer.apple.com/documentation/gamekit/gkplayer/3113960-
2369
+ # gameplayerid
2370
+ # Corresponds to the JSON property `gamePlayerId`
2371
+ # @return [String]
2372
+ attr_accessor :game_player_id
2373
+
2351
2374
  # An Identity Platform ID token for the authenticated user.
2352
2375
  # Corresponds to the JSON property `idToken`
2353
2376
  # @return [String]
@@ -2374,6 +2397,13 @@ module Google
2374
2397
  # @return [String]
2375
2398
  attr_accessor :refresh_token
2376
2399
 
2400
+ # The user's Game Center team player ID. A unique identifier for a player of all
2401
+ # the games that you distribute using your developer account. https://developer.
2402
+ # apple.com/documentation/gamekit/gkplayer/3174857-teamplayerid
2403
+ # Corresponds to the JSON property `teamPlayerId`
2404
+ # @return [String]
2405
+ attr_accessor :team_player_id
2406
+
2377
2407
  def initialize(**args)
2378
2408
  update!(**args)
2379
2409
  end
@@ -2382,11 +2412,13 @@ module Google
2382
2412
  def update!(**args)
2383
2413
  @display_name = args[:display_name] if args.key?(:display_name)
2384
2414
  @expires_in = args[:expires_in] if args.key?(:expires_in)
2415
+ @game_player_id = args[:game_player_id] if args.key?(:game_player_id)
2385
2416
  @id_token = args[:id_token] if args.key?(:id_token)
2386
2417
  @is_new_user = args[:is_new_user] if args.key?(:is_new_user)
2387
2418
  @local_id = args[:local_id] if args.key?(:local_id)
2388
2419
  @player_id = args[:player_id] if args.key?(:player_id)
2389
2420
  @refresh_token = args[:refresh_token] if args.key?(:refresh_token)
2421
+ @team_player_id = args[:team_player_id] if args.key?(:team_player_id)
2390
2422
  end
2391
2423
  end
2392
2424
 
@@ -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.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230113"
25
+ REVISION = "20230128"
26
26
  end
27
27
  end
28
28
  end
@@ -889,11 +889,13 @@ module Google
889
889
  # @private
890
890
  class Representation < Google::Apis::Core::JsonRepresentation
891
891
  property :display_name, as: 'displayName'
892
+ property :game_player_id, as: 'gamePlayerId'
892
893
  property :id_token, as: 'idToken'
893
894
  property :player_id, as: 'playerId'
894
895
  property :public_key_url, as: 'publicKeyUrl'
895
896
  property :salt, as: 'salt'
896
897
  property :signature, as: 'signature'
898
+ property :team_player_id, as: 'teamPlayerId'
897
899
  property :tenant_id, as: 'tenantId'
898
900
  property :timestamp, :numeric_string => true, as: 'timestamp'
899
901
  end
@@ -904,11 +906,13 @@ module Google
904
906
  class Representation < Google::Apis::Core::JsonRepresentation
905
907
  property :display_name, as: 'displayName'
906
908
  property :expires_in, :numeric_string => true, as: 'expiresIn'
909
+ property :game_player_id, as: 'gamePlayerId'
907
910
  property :id_token, as: 'idToken'
908
911
  property :is_new_user, as: 'isNewUser'
909
912
  property :local_id, as: 'localId'
910
913
  property :player_id, as: 'playerId'
911
914
  property :refresh_token, as: 'refreshToken'
915
+ property :team_player_id, as: 'teamPlayerId'
912
916
  end
913
917
  end
914
918
 
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.2.0
4
+ version: 0.3.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-01-22 00:00:00.000000000 Z
11
+ date: 2023-02-05 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.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.3.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: []