google-apis-androidpublisher_v3 0.99.0 → 0.101.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: 6c8b3b1560b23a04eda424425b033563d6cf0da58835f21c1e31922ba92e3cb7
4
- data.tar.gz: 6005cf91e8660ec40ef392e1599227d9bf4dcbc2acf42ac4e10e2b35d22a957d
3
+ metadata.gz: 33f51599b9f3efc7bff6e13dfd2c6c450e44665f17a51f49a2a85001a7b4f06d
4
+ data.tar.gz: 67e449d83a89b96d6433e9cac9792850ad58c7a556b56a9429ee75ee1584b544
5
5
  SHA512:
6
- metadata.gz: 9d391d8263288c73761da00ca07c038c8cbcf7f93c199b0397525f8e779b67407f2e5b3df75fa38c4380869f7d4aa0558d5190b0fcc3c86ae807b192c0650542
7
- data.tar.gz: bba0d31390c86efc0685c179e85a8db0007363b551c1324e86d2f67cc95464cbaf176036b8907f2b6baea2d99bf31534797554811f909f83b035fa7e3d9de3f3
6
+ metadata.gz: 4e80f6b9038054515b53174ae298dccffd1a2a6a798a322a7c208a01e31935d13ab2176868641626c1701d32285d98e106d3b15749dc07de5dabcf6b183d0f5f
7
+ data.tar.gz: cc023f7d9f71a8f0e5d7c4dbcde167350a5df9f6ae3342f3f8810d1040eccad174c4857f02c94fb71a868cf1d32bf1fd4c4f50466b15cc9aeeae6f0dbade6b0f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.101.0 (2026-05-24)
4
+
5
+ * Regenerated from discovery document revision 20260519
6
+
7
+ ### v0.100.0 (2026-05-10)
8
+
9
+ * Regenerated from discovery document revision 20260506
10
+
3
11
  ### v0.99.0 (2026-04-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20260416
@@ -3499,7 +3499,7 @@ module Google
3499
3499
  end
3500
3500
 
3501
3501
  # Download metadata for split, standalone and universal APKs, as well as asset
3502
- # pack slices, signed with a given key.
3502
+ # pack slices, signed with a given key. Next ID: 10
3503
3503
  class GeneratedApksPerSigningKey
3504
3504
  include Google::Apis::Core::Hashable
3505
3505
 
@@ -3544,6 +3544,24 @@ module Google
3544
3544
  # @return [Google::Apis::AndroidpublisherV3::TargetingInfo]
3545
3545
  attr_accessor :targeting_info
3546
3546
 
3547
+ # List of generated split APKs without automatic protection, signed with a key
3548
+ # corresponding to certificate_sha256_hash. This field is only present if the
3549
+ # app uses automatic protection. In this case, `generated_split_apks` contains
3550
+ # APKs with automatic protection enabled, whereas this field contains APKs
3551
+ # without automatic protection.
3552
+ # Corresponds to the JSON property `unprotectedGeneratedSplitApks`
3553
+ # @return [Array<Google::Apis::AndroidpublisherV3::GeneratedSplitApk>]
3554
+ attr_accessor :unprotected_generated_split_apks
3555
+
3556
+ # List of generated standalone APKs without automatic protection, signed with a
3557
+ # key corresponding to certificate_sha256_hash. This field is only present if
3558
+ # the app uses automatic protection. In this case, `generated_standalone_apks`
3559
+ # contains APKs with automatic protection enabled, whereas this field contains
3560
+ # APKs without automatic protection.
3561
+ # Corresponds to the JSON property `unprotectedGeneratedStandaloneApks`
3562
+ # @return [Array<Google::Apis::AndroidpublisherV3::GeneratedStandaloneApk>]
3563
+ attr_accessor :unprotected_generated_standalone_apks
3564
+
3547
3565
  def initialize(**args)
3548
3566
  update!(**args)
3549
3567
  end
@@ -3557,6 +3575,8 @@ module Google
3557
3575
  @generated_standalone_apks = args[:generated_standalone_apks] if args.key?(:generated_standalone_apks)
3558
3576
  @generated_universal_apk = args[:generated_universal_apk] if args.key?(:generated_universal_apk)
3559
3577
  @targeting_info = args[:targeting_info] if args.key?(:targeting_info)
3578
+ @unprotected_generated_split_apks = args[:unprotected_generated_split_apks] if args.key?(:unprotected_generated_split_apks)
3579
+ @unprotected_generated_standalone_apks = args[:unprotected_generated_standalone_apks] if args.key?(:unprotected_generated_standalone_apks)
3560
3580
  end
3561
3581
  end
3562
3582
 
@@ -4052,6 +4072,25 @@ module Google
4052
4072
  end
4053
4073
  end
4054
4074
 
4075
+ # Additional context around subscriptions in IN_GRACE_PERIOD state.
4076
+ class InGracePeriodStateContext
4077
+ include Google::Apis::Core::Hashable
4078
+
4079
+ # Context related to renewal declined scenario.
4080
+ # Corresponds to the JSON property `renewalDeclined`
4081
+ # @return [Google::Apis::AndroidpublisherV3::RenewalDeclinedContext]
4082
+ attr_accessor :renewal_declined
4083
+
4084
+ def initialize(**args)
4085
+ update!(**args)
4086
+ end
4087
+
4088
+ # Update properties of this object
4089
+ def update!(**args)
4090
+ @renewal_declined = args[:renewal_declined] if args.key?(:renewal_declined)
4091
+ end
4092
+ end
4093
+
4055
4094
  # Request to delete multiple in-app products.
4056
4095
  class InappproductsBatchDeleteRequest
4057
4096
  include Google::Apis::Core::Hashable
@@ -5331,6 +5370,25 @@ module Google
5331
5370
  end
5332
5371
  end
5333
5372
 
5373
+ # Additional context around subscriptions in ON_HOLD state.
5374
+ class OnHoldStateContext
5375
+ include Google::Apis::Core::Hashable
5376
+
5377
+ # Context related to renewal declined scenario.
5378
+ # Corresponds to the JSON property `renewalDeclined`
5379
+ # @return [Google::Apis::AndroidpublisherV3::RenewalDeclinedContext]
5380
+ attr_accessor :renewal_declined
5381
+
5382
+ def initialize(**args)
5383
+ update!(**args)
5384
+ end
5385
+
5386
+ # Update properties of this object
5387
+ def update!(**args)
5388
+ @renewal_declined = args[:renewal_declined] if args.key?(:renewal_declined)
5389
+ end
5390
+ end
5391
+
5334
5392
  # A single use promotion code.
5335
5393
  class OneTimeCode
5336
5394
  include Google::Apis::Core::Hashable
@@ -7651,6 +7709,25 @@ module Google
7651
7709
  end
7652
7710
  end
7653
7711
 
7712
+ # Context related to renewal declined scenario.
7713
+ class RenewalDeclinedContext
7714
+ include Google::Apis::Core::Hashable
7715
+
7716
+ # Required. The ID of the pending or failed order causing the state.
7717
+ # Corresponds to the JSON property `pendingOrderId`
7718
+ # @return [String]
7719
+ attr_accessor :pending_order_id
7720
+
7721
+ def initialize(**args)
7722
+ update!(**args)
7723
+ end
7724
+
7725
+ # Update properties of this object
7726
+ def update!(**args)
7727
+ @pending_order_id = args[:pending_order_id] if args.key?(:pending_order_id)
7728
+ end
7729
+ end
7730
+
7654
7731
  # Offer details information related to a rental line item.
7655
7732
  class RentOfferDetails
7656
7733
  include Google::Apis::Core::Hashable
@@ -8379,8 +8456,8 @@ module Google
8379
8456
  # @return [String]
8380
8457
  attr_accessor :offer_id
8381
8458
 
8382
- # The pricing phase for the billing period funded by this order. Deprecated. Use
8383
- # offer_phase_details instead.
8459
+ # Deprecated: Use offer_phase_details instead. The pricing phase for the billing
8460
+ # period funded by this order.
8384
8461
  # Corresponds to the JSON property `offerPhase`
8385
8462
  # @return [String]
8386
8463
  attr_accessor :offer_phase
@@ -8686,8 +8763,8 @@ module Google
8686
8763
  end
8687
8764
  end
8688
8765
 
8689
- # A SubscriptionPurchase resource indicates the status of a user's subscription
8690
- # purchase.
8766
+ # Deprecated: Use SubscriptionPurchaseV2 instead. A SubscriptionPurchase
8767
+ # resource indicates the status of a user's subscription purchase.
8691
8768
  class SubscriptionPurchase
8692
8769
  include Google::Apis::Core::Hashable
8693
8770
 
@@ -9036,6 +9113,11 @@ module Google
9036
9113
  # @return [Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers]
9037
9114
  attr_accessor :external_account_identifiers
9038
9115
 
9116
+ # Additional context around subscriptions in IN_GRACE_PERIOD state.
9117
+ # Corresponds to the JSON property `inGracePeriodStateContext`
9118
+ # @return [Google::Apis::AndroidpublisherV3::InGracePeriodStateContext]
9119
+ attr_accessor :in_grace_period_state_context
9120
+
9039
9121
  # This kind represents a SubscriptionPurchaseV2 object in the androidpublisher
9040
9122
  # service.
9041
9123
  # Corresponds to the JSON property `kind`
@@ -9067,6 +9149,11 @@ module Google
9067
9149
  # @return [String]
9068
9150
  attr_accessor :linked_purchase_token
9069
9151
 
9152
+ # Additional context around subscriptions in ON_HOLD state.
9153
+ # Corresponds to the JSON property `onHoldStateContext`
9154
+ # @return [Google::Apis::AndroidpublisherV3::OnHoldStateContext]
9155
+ attr_accessor :on_hold_state_context
9156
+
9070
9157
  # Information specific to an out of app purchase.
9071
9158
  # Corresponds to the JSON property `outOfAppPurchaseContext`
9072
9159
  # @return [Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext]
@@ -9114,10 +9201,12 @@ module Google
9114
9201
  @canceled_state_context = args[:canceled_state_context] if args.key?(:canceled_state_context)
9115
9202
  @etag = args[:etag] if args.key?(:etag)
9116
9203
  @external_account_identifiers = args[:external_account_identifiers] if args.key?(:external_account_identifiers)
9204
+ @in_grace_period_state_context = args[:in_grace_period_state_context] if args.key?(:in_grace_period_state_context)
9117
9205
  @kind = args[:kind] if args.key?(:kind)
9118
9206
  @latest_order_id = args[:latest_order_id] if args.key?(:latest_order_id)
9119
9207
  @line_items = args[:line_items] if args.key?(:line_items)
9120
9208
  @linked_purchase_token = args[:linked_purchase_token] if args.key?(:linked_purchase_token)
9209
+ @on_hold_state_context = args[:on_hold_state_context] if args.key?(:on_hold_state_context)
9121
9210
  @out_of_app_purchase_context = args[:out_of_app_purchase_context] if args.key?(:out_of_app_purchase_context)
9122
9211
  @paused_state_context = args[:paused_state_context] if args.key?(:paused_state_context)
9123
9212
  @region_code = args[:region_code] if args.key?(:region_code)
@@ -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.99.0"
19
+ GEM_VERSION = "0.101.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260416"
25
+ REVISION = "20260519"
26
26
  end
27
27
  end
28
28
  end
@@ -850,6 +850,12 @@ module Google
850
850
  include Google::Apis::Core::JsonObjectSupport
851
851
  end
852
852
 
853
+ class InGracePeriodStateContext
854
+ class Representation < Google::Apis::Core::JsonRepresentation; end
855
+
856
+ include Google::Apis::Core::JsonObjectSupport
857
+ end
858
+
853
859
  class InappproductsBatchDeleteRequest
854
860
  class Representation < Google::Apis::Core::JsonRepresentation; end
855
861
 
@@ -1090,6 +1096,12 @@ module Google
1090
1096
  include Google::Apis::Core::JsonObjectSupport
1091
1097
  end
1092
1098
 
1099
+ class OnHoldStateContext
1100
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1101
+
1102
+ include Google::Apis::Core::JsonObjectSupport
1103
+ end
1104
+
1093
1105
  class OneTimeCode
1094
1106
  class Representation < Google::Apis::Core::JsonRepresentation; end
1095
1107
 
@@ -1492,6 +1504,12 @@ module Google
1492
1504
  include Google::Apis::Core::JsonObjectSupport
1493
1505
  end
1494
1506
 
1507
+ class RenewalDeclinedContext
1508
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1509
+
1510
+ include Google::Apis::Core::JsonObjectSupport
1511
+ end
1512
+
1495
1513
  class RentOfferDetails
1496
1514
  class Representation < Google::Apis::Core::JsonRepresentation; end
1497
1515
 
@@ -3155,6 +3173,10 @@ module Google
3155
3173
 
3156
3174
  property :targeting_info, as: 'targetingInfo', class: Google::Apis::AndroidpublisherV3::TargetingInfo, decorator: Google::Apis::AndroidpublisherV3::TargetingInfo::Representation
3157
3175
 
3176
+ collection :unprotected_generated_split_apks, as: 'unprotectedGeneratedSplitApks', class: Google::Apis::AndroidpublisherV3::GeneratedSplitApk, decorator: Google::Apis::AndroidpublisherV3::GeneratedSplitApk::Representation
3177
+
3178
+ collection :unprotected_generated_standalone_apks, as: 'unprotectedGeneratedStandaloneApks', class: Google::Apis::AndroidpublisherV3::GeneratedStandaloneApk, decorator: Google::Apis::AndroidpublisherV3::GeneratedStandaloneApk::Representation
3179
+
3158
3180
  end
3159
3181
  end
3160
3182
 
@@ -3299,6 +3321,14 @@ module Google
3299
3321
  end
3300
3322
  end
3301
3323
 
3324
+ class InGracePeriodStateContext
3325
+ # @private
3326
+ class Representation < Google::Apis::Core::JsonRepresentation
3327
+ property :renewal_declined, as: 'renewalDeclined', class: Google::Apis::AndroidpublisherV3::RenewalDeclinedContext, decorator: Google::Apis::AndroidpublisherV3::RenewalDeclinedContext::Representation
3328
+
3329
+ end
3330
+ end
3331
+
3302
3332
  class InappproductsBatchDeleteRequest
3303
3333
  # @private
3304
3334
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3693,6 +3723,14 @@ module Google
3693
3723
  end
3694
3724
  end
3695
3725
 
3726
+ class OnHoldStateContext
3727
+ # @private
3728
+ class Representation < Google::Apis::Core::JsonRepresentation
3729
+ property :renewal_declined, as: 'renewalDeclined', class: Google::Apis::AndroidpublisherV3::RenewalDeclinedContext, decorator: Google::Apis::AndroidpublisherV3::RenewalDeclinedContext::Representation
3730
+
3731
+ end
3732
+ end
3733
+
3696
3734
  class OneTimeCode
3697
3735
  # @private
3698
3736
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4367,6 +4405,13 @@ module Google
4367
4405
  end
4368
4406
  end
4369
4407
 
4408
+ class RenewalDeclinedContext
4409
+ # @private
4410
+ class Representation < Google::Apis::Core::JsonRepresentation
4411
+ property :pending_order_id, as: 'pendingOrderId'
4412
+ end
4413
+ end
4414
+
4370
4415
  class RentOfferDetails
4371
4416
  # @private
4372
4417
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4769,11 +4814,15 @@ module Google
4769
4814
  property :etag, as: 'etag'
4770
4815
  property :external_account_identifiers, as: 'externalAccountIdentifiers', class: Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers, decorator: Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers::Representation
4771
4816
 
4817
+ property :in_grace_period_state_context, as: 'inGracePeriodStateContext', class: Google::Apis::AndroidpublisherV3::InGracePeriodStateContext, decorator: Google::Apis::AndroidpublisherV3::InGracePeriodStateContext::Representation
4818
+
4772
4819
  property :kind, as: 'kind'
4773
4820
  property :latest_order_id, as: 'latestOrderId'
4774
4821
  collection :line_items, as: 'lineItems', class: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem, decorator: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem::Representation
4775
4822
 
4776
4823
  property :linked_purchase_token, as: 'linkedPurchaseToken'
4824
+ property :on_hold_state_context, as: 'onHoldStateContext', class: Google::Apis::AndroidpublisherV3::OnHoldStateContext, decorator: Google::Apis::AndroidpublisherV3::OnHoldStateContext::Representation
4825
+
4777
4826
  property :out_of_app_purchase_context, as: 'outOfAppPurchaseContext', class: Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext, decorator: Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext::Representation
4778
4827
 
4779
4828
  property :paused_state_context, as: 'pausedStateContext', class: Google::Apis::AndroidpublisherV3::PausedStateContext, decorator: Google::Apis::AndroidpublisherV3::PausedStateContext::Representation
@@ -4670,9 +4670,10 @@ module Google
4670
4670
  execute_or_queue_command(command, &block)
4671
4671
  end
4672
4672
 
4673
- # Cancels a user's subscription purchase. The subscription remains valid until
4674
- # its expiration time. Newer version is available at purchases.subscriptionsv2.
4675
- # cancel for better client library support.
4673
+ # Deprecated: Use purchases.subscriptionsv2.cancel instead. Cancels a user's
4674
+ # subscription purchase. The subscription remains valid until its expiration
4675
+ # time. Newer version is available at purchases.subscriptionsv2.cancel for
4676
+ # better client library support.
4676
4677
  # @param [String] package_name
4677
4678
  # The package name of the application for which this subscription was purchased (
4678
4679
  # for example, 'com.some.thing').
@@ -4709,7 +4710,8 @@ module Google
4709
4710
  execute_or_queue_command(command, &block)
4710
4711
  end
4711
4712
 
4712
- # Defers a user's subscription purchase until a specified future expiration time.
4713
+ # Deprecated: Use purchases.subscriptionsv2.defer instead. Defers a user's
4714
+ # subscription purchase until a specified future expiration time.
4713
4715
  # @param [String] package_name
4714
4716
  # The package name of the application for which this subscription was purchased (
4715
4717
  # for example, 'com.some.thing').
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidpublisher_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.99.0
4
+ version: 0.101.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.99.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.101.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
62
62
  rdoc_options: []
63
63
  require_paths: