google-apis-androidpublisher_v3 0.60.0 → 0.61.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: 108bdb3cf8a1724ea2d0642e9f862ad8f940eee4d94d6329cf6d83df2540b6de
4
- data.tar.gz: 9a74871aaf093089e059132cda3984776505d69eb33ea3fc118e68d132886122
3
+ metadata.gz: 86b8c5723254984d7a805e3b29245ceeafdf89ef4e65ceb43a6c43ecc451d419
4
+ data.tar.gz: f6f84086f955b4091be6d837d3b4a875d13bbd05b768922f1bff1f10e139ba78
5
5
  SHA512:
6
- metadata.gz: 4afb301e0d57936d120f48b4e7f3915f90a9459fcb7b8b0f76fa054ae040ee9ac0319282201c9dd31a91060bba8acff719c81c68621c4da9bcfd1dc07452e7d9
7
- data.tar.gz: 01373f191fe2fc1585f0f1d682081cfc11c866fb757f31c49d85350f45f221d0e66cf0d851175c03266d689eb4feb736cfa3de64e9bbe3d52a9e6def74ee9eb3
6
+ metadata.gz: e5c24243f7e3dd8d4a40e53d9d46ea1ec54095fdff912113115512a03ce63c8d4f5ba2d2276fe79e6ca32a96cb3b00340d0eb747f64c83e278c7c59379ccb30d
7
+ data.tar.gz: dc6f781168ca5ba4110598ba2472b34baa4734f25dabba76b1e30527bb69640226d5d3afdf754f4c44c2f3250042f3a87507eedbe6bc3f089be7079e832df5d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.61.0 (2024-04-14)
4
+
5
+ * Regenerated from discovery document revision 20240409
6
+
3
7
  ### v0.60.0 (2024-03-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20240328
@@ -4181,8 +4181,8 @@ module Google
4181
4181
  # The type of purchase of the inapp product. This field is only set if this
4182
4182
  # purchase was not made using the standard in-app billing flow. Possible values
4183
4183
  # are: 0. Test (i.e. purchased from a license testing account) 1. Promo (i.e.
4184
- # purchased using a promo code) 2. Rewarded (i.e. from watching a video ad
4185
- # instead of paying)
4184
+ # purchased using a promo code). Does not include Play Points purchases. 2.
4185
+ # Rewarded (i.e. from watching a video ad instead of paying)
4186
4186
  # Corresponds to the JSON property `purchaseType`
4187
4187
  # @return [Fixnum]
4188
4188
  attr_accessor :purchase_type
@@ -6140,19 +6140,61 @@ module Google
6140
6140
  class TargetingRuleScope
6141
6141
  include Google::Apis::Core::Hashable
6142
6142
 
6143
+ # Represents the targeting rule scope corresponding to any subscription in the
6144
+ # parent app.
6145
+ # Corresponds to the JSON property `anySubscriptionInApp`
6146
+ # @return [Google::Apis::AndroidpublisherV3::TargetingRuleScopeAnySubscriptionInApp]
6147
+ attr_accessor :any_subscription_in_app
6148
+
6143
6149
  # The scope of the current targeting rule is the subscription with the specified
6144
6150
  # subscription ID. Must be a subscription within the same parent app.
6145
6151
  # Corresponds to the JSON property `specificSubscriptionInApp`
6146
6152
  # @return [String]
6147
6153
  attr_accessor :specific_subscription_in_app
6148
6154
 
6155
+ # Represents the targeting rule scope corresponding to the subscriptions in
6156
+ # which this offer is defined.
6157
+ # Corresponds to the JSON property `thisSubscription`
6158
+ # @return [Google::Apis::AndroidpublisherV3::TargetingRuleScopeThisSubscription]
6159
+ attr_accessor :this_subscription
6160
+
6149
6161
  def initialize(**args)
6150
6162
  update!(**args)
6151
6163
  end
6152
6164
 
6153
6165
  # Update properties of this object
6154
6166
  def update!(**args)
6167
+ @any_subscription_in_app = args[:any_subscription_in_app] if args.key?(:any_subscription_in_app)
6155
6168
  @specific_subscription_in_app = args[:specific_subscription_in_app] if args.key?(:specific_subscription_in_app)
6169
+ @this_subscription = args[:this_subscription] if args.key?(:this_subscription)
6170
+ end
6171
+ end
6172
+
6173
+ # Represents the targeting rule scope corresponding to any subscription in the
6174
+ # parent app.
6175
+ class TargetingRuleScopeAnySubscriptionInApp
6176
+ include Google::Apis::Core::Hashable
6177
+
6178
+ def initialize(**args)
6179
+ update!(**args)
6180
+ end
6181
+
6182
+ # Update properties of this object
6183
+ def update!(**args)
6184
+ end
6185
+ end
6186
+
6187
+ # Represents the targeting rule scope corresponding to the subscriptions in
6188
+ # which this offer is defined.
6189
+ class TargetingRuleScopeThisSubscription
6190
+ include Google::Apis::Core::Hashable
6191
+
6192
+ def initialize(**args)
6193
+ update!(**args)
6194
+ end
6195
+
6196
+ # Update properties of this object
6197
+ def update!(**args)
6156
6198
  end
6157
6199
  end
6158
6200
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroidpublisherV3
18
18
  # Version of the google-apis-androidpublisher_v3 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.61.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240328"
25
+ REVISION = "20240409"
26
26
  end
27
27
  end
28
28
  end
@@ -1186,6 +1186,18 @@ module Google
1186
1186
  include Google::Apis::Core::JsonObjectSupport
1187
1187
  end
1188
1188
 
1189
+ class TargetingRuleScopeAnySubscriptionInApp
1190
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1191
+
1192
+ include Google::Apis::Core::JsonObjectSupport
1193
+ end
1194
+
1195
+ class TargetingRuleScopeThisSubscription
1196
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1197
+
1198
+ include Google::Apis::Core::JsonObjectSupport
1199
+ end
1200
+
1189
1201
  class TargetingUpdate
1190
1202
  class Representation < Google::Apis::Core::JsonRepresentation; end
1191
1203
 
@@ -3225,7 +3237,23 @@ module Google
3225
3237
  class TargetingRuleScope
3226
3238
  # @private
3227
3239
  class Representation < Google::Apis::Core::JsonRepresentation
3240
+ property :any_subscription_in_app, as: 'anySubscriptionInApp', class: Google::Apis::AndroidpublisherV3::TargetingRuleScopeAnySubscriptionInApp, decorator: Google::Apis::AndroidpublisherV3::TargetingRuleScopeAnySubscriptionInApp::Representation
3241
+
3228
3242
  property :specific_subscription_in_app, as: 'specificSubscriptionInApp'
3243
+ property :this_subscription, as: 'thisSubscription', class: Google::Apis::AndroidpublisherV3::TargetingRuleScopeThisSubscription, decorator: Google::Apis::AndroidpublisherV3::TargetingRuleScopeThisSubscription::Representation
3244
+
3245
+ end
3246
+ end
3247
+
3248
+ class TargetingRuleScopeAnySubscriptionInApp
3249
+ # @private
3250
+ class Representation < Google::Apis::Core::JsonRepresentation
3251
+ end
3252
+ end
3253
+
3254
+ class TargetingRuleScopeThisSubscription
3255
+ # @private
3256
+ class Representation < Google::Apis::Core::JsonRepresentation
3229
3257
  end
3230
3258
  end
3231
3259
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidpublisher_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.61.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-03-31 00:00:00.000000000 Z
11
+ date: 2024-04-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-androidpublisher_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.61.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
63
63
  post_install_message:
64
64
  rdoc_options: []