google-apis-games_v1 0.27.0 → 0.28.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: 600cf09e2fb7df8e89e99b7ddf932dc2636b4928e26ef4df6d0a8963f1806cf5
4
- data.tar.gz: c1075af08207ed4b53225ce12ced60f3a5ce117005def0cdb3b2024f46303bbf
3
+ metadata.gz: 7747e1ed0f6b33ac82f00ec2639c8b6868b1c075dc919969282473555537f96f
4
+ data.tar.gz: 10a188b47181af4c09f46c53022915dd310a7f5a21d1c080d190bec09c2ce4fc
5
5
  SHA512:
6
- metadata.gz: a54de6b8feafc8ccc6498115fef4614b9467b9611dc92ecde059bfca2e115e2851806dab1a5e1b3679d0bf192c329758f14a01fc9fa9c88db826d63671235101
7
- data.tar.gz: f761cb076f699c569b7b930fc86dff49cecb5f1ac48983a31dd3df90fa9bbdea35f4f05da9d444d734371a78ff8766e18e1fd0fd3c427b8f889cc9ec1c0feb03
6
+ metadata.gz: 0607f479381abbd4836803e5b8c330b5d7a5d7469dc7da155db8ff433ff5bfb34ac469e7ca33a31e06a3f6b5b081110aed7bec3a87c81628da4c0dbb58f3e1c3
7
+ data.tar.gz: 81b04886bb7a9dc57ec927ad633bf7ba8a0bad271cb1d415ddd4e110559687d45892c3d9a241f89cf886a6308002ae0ad41fe10574072bb26e849709eaaa6b11
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-games_v1
2
2
 
3
+ ### v0.28.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240701
6
+
3
7
  ### v0.27.0 (2024-06-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20240618
@@ -1057,10 +1057,10 @@ module Google
1057
1057
  # @return [String]
1058
1058
  attr_accessor :application_id
1059
1059
 
1060
- # Recall token data.
1061
- # Corresponds to the JSON property `token`
1062
- # @return [Array<Google::Apis::GamesV1::RecallToken>]
1063
- attr_accessor :token
1060
+ # Recall token data returned from RetrievePlayerTokens RPC
1061
+ # Corresponds to the JSON property `recallToken`
1062
+ # @return [Google::Apis::GamesV1::RecallToken]
1063
+ attr_accessor :recall_token
1064
1064
 
1065
1065
  def initialize(**args)
1066
1066
  update!(**args)
@@ -1069,7 +1069,7 @@ module Google
1069
1069
  # Update properties of this object
1070
1070
  def update!(**args)
1071
1071
  @application_id = args[:application_id] if args.key?(:application_id)
1072
- @token = args[:token] if args.key?(:token)
1072
+ @recall_token = args[:recall_token] if args.key?(:recall_token)
1073
1073
  end
1074
1074
  end
1075
1075
 
@@ -2599,10 +2599,10 @@ module Google
2599
2599
  class RetrieveDeveloperGamesLastPlayerTokenResponse
2600
2600
  include Google::Apis::Core::Hashable
2601
2601
 
2602
- # Recall token data returned from RetrievePlayerTokens RPC
2603
- # Corresponds to the JSON property `token`
2604
- # @return [Google::Apis::GamesV1::RecallToken]
2605
- attr_accessor :token
2602
+ # Recall tokens for a game.
2603
+ # Corresponds to the JSON property `gamePlayerToken`
2604
+ # @return [Google::Apis::GamesV1::GamePlayerToken]
2605
+ attr_accessor :game_player_token
2606
2606
 
2607
2607
  def initialize(**args)
2608
2608
  update!(**args)
@@ -2610,7 +2610,7 @@ module Google
2610
2610
 
2611
2611
  # Update properties of this object
2612
2612
  def update!(**args)
2613
- @token = args[:token] if args.key?(:token)
2613
+ @game_player_token = args[:game_player_token] if args.key?(:game_player_token)
2614
2614
  end
2615
2615
  end
2616
2616
 
@@ -2621,9 +2621,9 @@ module Google
2621
2621
  # The requested applications along with the recall tokens for the player. If the
2622
2622
  # player does not have recall tokens for an application, that application is not
2623
2623
  # included in the response.
2624
- # Corresponds to the JSON property `applicationRecallTokens`
2624
+ # Corresponds to the JSON property `gamePlayerTokens`
2625
2625
  # @return [Array<Google::Apis::GamesV1::GamePlayerToken>]
2626
- attr_accessor :application_recall_tokens
2626
+ attr_accessor :game_player_tokens
2627
2627
 
2628
2628
  def initialize(**args)
2629
2629
  update!(**args)
@@ -2631,7 +2631,7 @@ module Google
2631
2631
 
2632
2632
  # Update properties of this object
2633
2633
  def update!(**args)
2634
- @application_recall_tokens = args[:application_recall_tokens] if args.key?(:application_recall_tokens)
2634
+ @game_player_tokens = args[:game_player_tokens] if args.key?(:game_player_tokens)
2635
2635
  end
2636
2636
  end
2637
2637
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GamesV1
18
18
  # Version of the google-apis-games_v1 gem
19
- GEM_VERSION = "0.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240618"
25
+ REVISION = "20240701"
26
26
  end
27
27
  end
28
28
  end
@@ -779,7 +779,7 @@ module Google
779
779
  # @private
780
780
  class Representation < Google::Apis::Core::JsonRepresentation
781
781
  property :application_id, as: 'applicationId'
782
- collection :token, as: 'token', class: Google::Apis::GamesV1::RecallToken, decorator: Google::Apis::GamesV1::RecallToken::Representation
782
+ property :recall_token, as: 'recallToken', class: Google::Apis::GamesV1::RecallToken, decorator: Google::Apis::GamesV1::RecallToken::Representation
783
783
 
784
784
  end
785
785
  end
@@ -1201,7 +1201,7 @@ module Google
1201
1201
  class RetrieveDeveloperGamesLastPlayerTokenResponse
1202
1202
  # @private
1203
1203
  class Representation < Google::Apis::Core::JsonRepresentation
1204
- property :token, as: 'token', class: Google::Apis::GamesV1::RecallToken, decorator: Google::Apis::GamesV1::RecallToken::Representation
1204
+ property :game_player_token, as: 'gamePlayerToken', class: Google::Apis::GamesV1::GamePlayerToken, decorator: Google::Apis::GamesV1::GamePlayerToken::Representation
1205
1205
 
1206
1206
  end
1207
1207
  end
@@ -1209,7 +1209,7 @@ module Google
1209
1209
  class RetrieveGamesPlayerTokensResponse
1210
1210
  # @private
1211
1211
  class Representation < Google::Apis::Core::JsonRepresentation
1212
- collection :application_recall_tokens, as: 'applicationRecallTokens', class: Google::Apis::GamesV1::GamePlayerToken, decorator: Google::Apis::GamesV1::GamePlayerToken::Representation
1212
+ collection :game_player_tokens, as: 'gamePlayerTokens', class: Google::Apis::GamesV1::GamePlayerToken, decorator: Google::Apis::GamesV1::GamePlayerToken::Representation
1213
1213
 
1214
1214
  end
1215
1215
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-games_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.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: 2024-06-23 00:00:00.000000000 Z
11
+ date: 2024-07-25 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-games_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-games_v1/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-games_v1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-games_v1
63
63
  post_install_message:
64
64
  rdoc_options: []