google-apis-androidpublisher_v3 0.28.0 → 0.30.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: 2a1370fd45fb65b018f172289dfb73b84fa911e09d9ac62a43720218fb5369a6
4
- data.tar.gz: b5c074626e4683ccad1d55dd25447a2211da882c715ae58ebc2a78d5914f0f80
3
+ metadata.gz: 5f87c1f51f9fe2b4b2baa481674f8d68045693dd4e6c14cef9924a12156f45c9
4
+ data.tar.gz: 8504c3c0960db052e3a3b7f66e0281f3ec518a1c8ea463580ccd58067fc24f3e
5
5
  SHA512:
6
- metadata.gz: dc63311d16e193fb21eab24b7512974e5d02e0a330c7f2385fd34b89278ea68ede3beadc7130e2a87579320766d9a1f2fb9fba20c7de3cd7a8c6753dd130c354
7
- data.tar.gz: f8b48073122274dc7e1a885075d55da9d11e56e129e92f48cf6e1a779c842d845e3fb0ca0a051f6c4962e243f2534a7b6a5d4a2c8649cd87add3ad6642f1807b
6
+ metadata.gz: e625802bbae6e27be90259ca93642c2061ebd016d399cb2c0a5700a44d50b6a028dabb541569d1cc520704a7a86ad5ae93224c9b22c3f1f32a2d580450f9f174
7
+ data.tar.gz: ddee45b721a3151616c02130ac6f7a4d20f12b5771f94040ca78548f964c9fb53dfe94b7d55652ba77e914da530649cd82df4e6209b358aae782ff6e26f99dd9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.30.0 (2022-10-29)
4
+
5
+ * Regenerated from discovery document revision 20221025
6
+ * Regenerated using generator version 0.11.0
7
+
8
+ ### v0.29.0 (2022-09-26)
9
+
10
+ * Regenerated from discovery document revision 20220926
11
+
3
12
  ### v0.28.0 (2022-09-22)
4
13
 
5
14
  * Regenerated from discovery document revision 20220920
@@ -2421,8 +2421,8 @@ module Google
2421
2421
  class PrepaidPlan
2422
2422
  include Google::Apis::Core::Hashable
2423
2423
 
2424
- # After this time, the subscription is allowed for a new top-up purchase. Not
2425
- # present if the subscription is already extended by a top-up purchase.
2424
+ # If present, this is the time after which top up purchases are allowed for the
2425
+ # prepaid plan. Will not be present for expired prepaid plans.
2426
2426
  # Corresponds to the JSON property `allowExtendAfterTime`
2427
2427
  # @return [String]
2428
2428
  attr_accessor :allow_extend_after_time
@@ -2747,6 +2747,14 @@ module Google
2747
2747
  attr_accessor :eligible_for_streaming_service_tax_rate
2748
2748
  alias_method :eligible_for_streaming_service_tax_rate?, :eligible_for_streaming_service_tax_rate
2749
2749
 
2750
+ # To collect communications or amusement taxes in the United States, choose the
2751
+ # appropriate tax category. By default Google will determine the collected rate
2752
+ # based on the buyer ZIP code. [Learn more](https://support.google.com/
2753
+ # googleplay/android-developer/answer/10463498#streaming_tax).
2754
+ # Corresponds to the JSON property `streamingTaxType`
2755
+ # @return [String]
2756
+ attr_accessor :streaming_tax_type
2757
+
2750
2758
  # Tax tier to specify reduced tax rate. Developers who sell digital news,
2751
2759
  # magazines, newspapers, books, or audiobooks in various regions may be eligible
2752
2760
  # for reduced tax rates. [Learn more](https://support.google.com/googleplay/
@@ -2762,6 +2770,7 @@ module Google
2762
2770
  # Update properties of this object
2763
2771
  def update!(**args)
2764
2772
  @eligible_for_streaming_service_tax_rate = args[:eligible_for_streaming_service_tax_rate] if args.key?(:eligible_for_streaming_service_tax_rate)
2773
+ @streaming_tax_type = args[:streaming_tax_type] if args.key?(:streaming_tax_type)
2765
2774
  @tax_tier = args[:tax_tier] if args.key?(:tax_tier)
2766
2775
  end
2767
2776
  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.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220920"
25
+ REVISION = "20221025"
26
26
  end
27
27
  end
28
28
  end
@@ -1629,6 +1629,7 @@ module Google
1629
1629
  # @private
1630
1630
  class Representation < Google::Apis::Core::JsonRepresentation
1631
1631
  property :eligible_for_streaming_service_tax_rate, as: 'eligibleForStreamingServiceTaxRate'
1632
+ property :streaming_tax_type, as: 'streamingTaxType'
1632
1633
  property :tax_tier, as: 'taxTier'
1633
1634
  end
1634
1635
  end
@@ -22,7 +22,9 @@ module Google
22
22
  module AndroidpublisherV3
23
23
  # Google Play Android Developer API
24
24
  #
25
- # Lets Android application developers access their Google Play accounts.
25
+ # Lets Android application developers access their Google Play accounts. At a
26
+ # high level, the expected workflow is to "insert" an Edit, make changes as
27
+ # necessary, and then "commit" it.
26
28
  #
27
29
  # @example
28
30
  # require 'google/apis/androidpublisher_v3'
@@ -21,7 +21,9 @@ module Google
21
21
  module Apis
22
22
  # Google Play Android Developer API
23
23
  #
24
- # Lets Android application developers access their Google Play accounts.
24
+ # Lets Android application developers access their Google Play accounts. At a
25
+ # high level, the expected workflow is to "insert" an Edit, make changes as
26
+ # necessary, and then "commit" it.
25
27
  #
26
28
  # @see https://developers.google.com/android-publisher
27
29
  module AndroidpublisherV3
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.28.0
4
+ version: 0.30.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: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.30.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: []