google-apis-games_v1 0.27.0 → 0.29.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: 600cf09e2fb7df8e89e99b7ddf932dc2636b4928e26ef4df6d0a8963f1806cf5
4
- data.tar.gz: c1075af08207ed4b53225ce12ced60f3a5ce117005def0cdb3b2024f46303bbf
3
+ metadata.gz: ea8b81bbfea95b549c0009ab9d064990b309742e7bde6b9012f81ed1c178a99a
4
+ data.tar.gz: 7fcd3418d5d60b309868081e5f1f140cb8cc69e0cecab200bf8af8077b8ff03c
5
5
  SHA512:
6
- metadata.gz: a54de6b8feafc8ccc6498115fef4614b9467b9611dc92ecde059bfca2e115e2851806dab1a5e1b3679d0bf192c329758f14a01fc9fa9c88db826d63671235101
7
- data.tar.gz: f761cb076f699c569b7b930fc86dff49cecb5f1ac48983a31dd3df90fa9bbdea35f4f05da9d444d734371a78ff8766e18e1fd0fd3c427b8f889cc9ec1c0feb03
6
+ metadata.gz: c98190482f1f68ac3b0e44eac1b66a66425a5cdfa4f16d9afdf7f948823cb8a0103a44e997dee20927f5c447ccef684ad01f5f00f27234f55ca2d7395407be9f
7
+ data.tar.gz: 06cbdbf868f4c6c07a6732615dc24dde29dc812a66d3487dca3df5555412f85c0ebcea44ee02152c88c6ea554a3ab9ada1e1a3067f84d98b3c02ad10d3f5499a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-games_v1
2
2
 
3
+ ### v0.29.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241209
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.28.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240701
11
+
3
12
  ### v0.27.0 (2024-06-23)
4
13
 
5
14
  * 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.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240618"
25
+ REVISION = "20241209"
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
@@ -22,7 +22,7 @@ module Google
22
22
  module GamesV1
23
23
  # Google Play Game Services
24
24
  #
25
- # The Google Play games service allows developers to enhance games with social
25
+ # The Google Play Games Service allows developers to enhance games with social
26
26
  # leaderboards, achievements, game state, sign-in with Google, and more.
27
27
  #
28
28
  # @example
@@ -21,7 +21,7 @@ module Google
21
21
  module Apis
22
22
  # Google Play Game Services
23
23
  #
24
- # The Google Play games service allows developers to enhance games with social
24
+ # The Google Play Games Service allows developers to enhance games with social
25
25
  # leaderboards, achievements, game state, sign-in with Google, and more.
26
26
  #
27
27
  # @see https://developers.google.com/games/
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.29.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-12-15 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.29.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Game Services V1