google-apis-androidpublisher_v3 0.48.0 → 0.49.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: 2eeeae6c93cfc338504bc36f1a373049b2b568e5fe1098b2b0661ca51ab142c6
4
- data.tar.gz: abad32cd702e1ba994ff144013fb869646c063191f6b173f76c8eca0422f45b2
3
+ metadata.gz: a82cc5be2470ffdbd8bcc24e1ac364585c6ab1ffc5ee1e2aa978ae866222b2e5
4
+ data.tar.gz: 03e33acf821a36a2d2855928f75bea653e5bd45180cfaad4e92c32c6952dd93f
5
5
  SHA512:
6
- metadata.gz: 307a4240930eb41efcce6332f7da7d5d284c3ff05132533f2415a5f6d4ed82a4655820bdead20e09b37d6f8335841acc697114bdff231bfc17aa7f7a60b35abe
7
- data.tar.gz: 6d58535da2b35a03ef67031cd889087d5deec8663acec4b268e9612a969d521db1f431d50c80f806964b6cc7a043dcd7710234acbd4103f0f85aa010b86dbe7c
6
+ metadata.gz: 4a856f499bf2c172c27b5c5fb7b211529099c4dc0c0234a28a580cea0c3e4070e51cc261616b8ae85bbe854d70a7ffd5869a0772f04d4bcf4a43e0052231eb70
7
+ data.tar.gz: 7af6fc37261c3e07dff7f27f202bae043823331317afde775366c87a20dc4694e4fa94dcab545731f9645e37672703ce991856f353286cdd57e6a82557a6cd53
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.49.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230821
6
+
3
7
  ### v0.48.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230806
@@ -2590,6 +2590,13 @@ module Google
2590
2590
  # @return [String]
2591
2591
  attr_accessor :eea_withdrawal_right_type
2592
2592
 
2593
+ # Whether this in-app product is declared as a product representing a tokenized
2594
+ # digital asset.
2595
+ # Corresponds to the JSON property `isTokenizedDigitalAsset`
2596
+ # @return [Boolean]
2597
+ attr_accessor :is_tokenized_digital_asset
2598
+ alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
2599
+
2593
2600
  # A mapping from region code to tax rate details. The keys are region codes as
2594
2601
  # defined by Unicode's "CLDR".
2595
2602
  # Corresponds to the JSON property `taxRateInfoByRegionCode`
@@ -2603,6 +2610,7 @@ module Google
2603
2610
  # Update properties of this object
2604
2611
  def update!(**args)
2605
2612
  @eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
2613
+ @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
2606
2614
  @tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
2607
2615
  end
2608
2616
  end
@@ -4781,6 +4789,13 @@ module Google
4781
4789
  # @return [String]
4782
4790
  attr_accessor :eea_withdrawal_right_type
4783
4791
 
4792
+ # Whether this subscription is declared as a product representing a tokenized
4793
+ # digital asset.
4794
+ # Corresponds to the JSON property `isTokenizedDigitalAsset`
4795
+ # @return [Boolean]
4796
+ attr_accessor :is_tokenized_digital_asset
4797
+ alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
4798
+
4784
4799
  # A mapping from region code to tax rate details. The keys are region codes as
4785
4800
  # defined by Unicode's "CLDR".
4786
4801
  # Corresponds to the JSON property `taxRateInfoByRegionCode`
@@ -4794,10 +4809,45 @@ module Google
4794
4809
  # Update properties of this object
4795
4810
  def update!(**args)
4796
4811
  @eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
4812
+ @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
4797
4813
  @tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
4798
4814
  end
4799
4815
  end
4800
4816
 
4817
+ # Options for system APKs.
4818
+ class SystemApkOptions
4819
+ include Google::Apis::Core::Hashable
4820
+
4821
+ # Whether to use the rotated key for signing the system APK.
4822
+ # Corresponds to the JSON property `rotated`
4823
+ # @return [Boolean]
4824
+ attr_accessor :rotated
4825
+ alias_method :rotated?, :rotated
4826
+
4827
+ # Whether system APK was generated with uncompressed dex files.
4828
+ # Corresponds to the JSON property `uncompressedDexFiles`
4829
+ # @return [Boolean]
4830
+ attr_accessor :uncompressed_dex_files
4831
+ alias_method :uncompressed_dex_files?, :uncompressed_dex_files
4832
+
4833
+ # Whether system APK was generated with uncompressed native libraries.
4834
+ # Corresponds to the JSON property `uncompressedNativeLibraries`
4835
+ # @return [Boolean]
4836
+ attr_accessor :uncompressed_native_libraries
4837
+ alias_method :uncompressed_native_libraries?, :uncompressed_native_libraries
4838
+
4839
+ def initialize(**args)
4840
+ update!(**args)
4841
+ end
4842
+
4843
+ # Update properties of this object
4844
+ def update!(**args)
4845
+ @rotated = args[:rotated] if args.key?(:rotated)
4846
+ @uncompressed_dex_files = args[:uncompressed_dex_files] if args.key?(:uncompressed_dex_files)
4847
+ @uncompressed_native_libraries = args[:uncompressed_native_libraries] if args.key?(:uncompressed_native_libraries)
4848
+ end
4849
+ end
4850
+
4801
4851
  # Response to list previously created system APK variants.
4802
4852
  class SystemApksListResponse
4803
4853
  include Google::Apis::Core::Hashable
@@ -5527,6 +5577,11 @@ module Google
5527
5577
  # @return [Google::Apis::AndroidpublisherV3::DeviceSpec]
5528
5578
  attr_accessor :device_spec
5529
5579
 
5580
+ # Options for system APKs.
5581
+ # Corresponds to the JSON property `options`
5582
+ # @return [Google::Apis::AndroidpublisherV3::SystemApkOptions]
5583
+ attr_accessor :options
5584
+
5530
5585
  # Output only. The ID of a previously created system APK variant.
5531
5586
  # Corresponds to the JSON property `variantId`
5532
5587
  # @return [Fixnum]
@@ -5539,6 +5594,7 @@ module Google
5539
5594
  # Update properties of this object
5540
5595
  def update!(**args)
5541
5596
  @device_spec = args[:device_spec] if args.key?(:device_spec)
5597
+ @options = args[:options] if args.key?(:options)
5542
5598
  @variant_id = args[:variant_id] if args.key?(:variant_id)
5543
5599
  end
5544
5600
  end
@@ -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.48.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230806"
25
+ REVISION = "20230821"
26
26
  end
27
27
  end
28
28
  end
@@ -880,6 +880,12 @@ module Google
880
880
  include Google::Apis::Core::JsonObjectSupport
881
881
  end
882
882
 
883
+ class SystemApkOptions
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
883
889
  class SystemApksListResponse
884
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
885
891
 
@@ -1849,6 +1855,7 @@ module Google
1849
1855
  # @private
1850
1856
  class Representation < Google::Apis::Core::JsonRepresentation
1851
1857
  property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
1858
+ property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
1852
1859
  hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
1853
1860
 
1854
1861
  end
@@ -2467,11 +2474,21 @@ module Google
2467
2474
  # @private
2468
2475
  class Representation < Google::Apis::Core::JsonRepresentation
2469
2476
  property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
2477
+ property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
2470
2478
  hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
2471
2479
 
2472
2480
  end
2473
2481
  end
2474
2482
 
2483
+ class SystemApkOptions
2484
+ # @private
2485
+ class Representation < Google::Apis::Core::JsonRepresentation
2486
+ property :rotated, as: 'rotated'
2487
+ property :uncompressed_dex_files, as: 'uncompressedDexFiles'
2488
+ property :uncompressed_native_libraries, as: 'uncompressedNativeLibraries'
2489
+ end
2490
+ end
2491
+
2475
2492
  class SystemApksListResponse
2476
2493
  # @private
2477
2494
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2689,6 +2706,8 @@ module Google
2689
2706
  class Representation < Google::Apis::Core::JsonRepresentation
2690
2707
  property :device_spec, as: 'deviceSpec', class: Google::Apis::AndroidpublisherV3::DeviceSpec, decorator: Google::Apis::AndroidpublisherV3::DeviceSpec::Representation
2691
2708
 
2709
+ property :options, as: 'options', class: Google::Apis::AndroidpublisherV3::SystemApkOptions, decorator: Google::Apis::AndroidpublisherV3::SystemApkOptions::Representation
2710
+
2692
2711
  property :variant_id, as: 'variantId'
2693
2712
  end
2694
2713
  end
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.48.0
4
+ version: 0.49.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-08-13 00:00:00.000000000 Z
11
+ date: 2023-08-27 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.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.49.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: []
@@ -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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Android Developer API V3