google-apis-androidpublisher_v3 0.71.0 → 0.73.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: 0f46b5f69fa99004746382185738bc0fbbda413fd193f0d72f51b38681e6a3a5
4
- data.tar.gz: 7950e0a29bb18ff12d6b5783283a91078279edaa75db9b5ceb0ababd6bc9390e
3
+ metadata.gz: 86c3bab8293cd804bd1e5fa19e1a66415ce7363a8f130d6dac6a21f6f1485870
4
+ data.tar.gz: 006d605e838a9088e136e2c940139dfb5e12e5005a7ec57a969726f1d662aa7a
5
5
  SHA512:
6
- metadata.gz: 730e3169d9420e722cb282ea957d9e499e1648cfab8ccc0c98ed4f5fdc47913b8df498b634f082087c16d5c9fd8cba6671d797603fab5b89d92ca8c9cfb28742
7
- data.tar.gz: 0e0b5a20ae55342cc579644cd7c5906f2dc353b795b3d66b03da648e17103b7fdf246988121768ef50651deb71df52b732910d89b16f426817bb0e6a314d3075
6
+ metadata.gz: 842030f2cdf9fde01003dc11b7b41ffe9c42e1987b2065e2ff2d6636c3f862eb39ae70e4b28bf3e0b23c180a1f5f984dda51adb1c010cf819c11cfbfd02fcb8f
7
+ data.tar.gz: 7b1beb83f07c28b2102c4e4f112749c85051dbd0b3bd358036315f473f2c2dcdd75363f30eafa6fe14e1665e4dd4ec9b1a53758d76c1577b8ae9b43089a42f6a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.73.0 (2024-10-13)
4
+
5
+ * Regenerated from discovery document revision 20241003
6
+
7
+ ### v0.72.0 (2024-09-22)
8
+
9
+ * Regenerated from discovery document revision 20240917
10
+
3
11
  ### v0.71.0 (2024-09-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20240912
@@ -2161,27 +2161,6 @@ module Google
2161
2161
  end
2162
2162
  end
2163
2163
 
2164
- # Details about the first time a user/device completed a transaction using
2165
- # external offers.
2166
- class ExternalOfferInitialAcquisitionDetails
2167
- include Google::Apis::Core::Hashable
2168
-
2169
- # Required. The external transaction id of the first completed purchase made by
2170
- # the user.
2171
- # Corresponds to the JSON property `externalTransactionId`
2172
- # @return [String]
2173
- attr_accessor :external_transaction_id
2174
-
2175
- def initialize(**args)
2176
- update!(**args)
2177
- end
2178
-
2179
- # Update properties of this object
2180
- def update!(**args)
2181
- @external_transaction_id = args[:external_transaction_id] if args.key?(:external_transaction_id)
2182
- end
2183
- end
2184
-
2185
2164
  # Details of an external subscription.
2186
2165
  class ExternalSubscription
2187
2166
  include Google::Apis::Core::Hashable
@@ -2221,12 +2200,6 @@ module Google
2221
2200
  # @return [Google::Apis::AndroidpublisherV3::Price]
2222
2201
  attr_accessor :current_tax_amount
2223
2202
 
2224
- # Details about the first time a user/device completed a transaction using
2225
- # external offers.
2226
- # Corresponds to the JSON property `externalOfferInitialAcquisitionDetails`
2227
- # @return [Google::Apis::AndroidpublisherV3::ExternalOfferInitialAcquisitionDetails]
2228
- attr_accessor :external_offer_initial_acquisition_details
2229
-
2230
2203
  # Output only. The id of this transaction. All transaction ids under the same
2231
2204
  # package name must be unique. Set when creating the external transaction.
2232
2205
  # Corresponds to the JSON property `externalTransactionId`
@@ -2302,7 +2275,6 @@ module Google
2302
2275
  @create_time = args[:create_time] if args.key?(:create_time)
2303
2276
  @current_pre_tax_amount = args[:current_pre_tax_amount] if args.key?(:current_pre_tax_amount)
2304
2277
  @current_tax_amount = args[:current_tax_amount] if args.key?(:current_tax_amount)
2305
- @external_offer_initial_acquisition_details = args[:external_offer_initial_acquisition_details] if args.key?(:external_offer_initial_acquisition_details)
2306
2278
  @external_transaction_id = args[:external_transaction_id] if args.key?(:external_transaction_id)
2307
2279
  @one_time_transaction = args[:one_time_transaction] if args.key?(:one_time_transaction)
2308
2280
  @original_pre_tax_amount = args[:original_pre_tax_amount] if args.key?(:original_pre_tax_amount)
@@ -5621,10 +5593,9 @@ module Google
5621
5593
  # @return [String]
5622
5594
  attr_accessor :package_name
5623
5595
 
5624
- # Required. The phases of this subscription offer. Must contain at least one
5625
- # entry, and may contain at most five. Users will always receive all these
5626
- # phases in the specified order. Phases may not be added, removed, or reordered
5627
- # after initial creation.
5596
+ # Required. The phases of this subscription offer. Must contain at least one and
5597
+ # at most two entries. Users will always receive all these phases in the
5598
+ # specified order.
5628
5599
  # Corresponds to the JSON property `phases`
5629
5600
  # @return [Array<Google::Apis::AndroidpublisherV3::SubscriptionOfferPhase>]
5630
5601
  attr_accessor :phases
@@ -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.71.0"
19
+ GEM_VERSION = "0.73.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240912"
25
+ REVISION = "20241003"
26
26
  end
27
27
  end
28
28
  end
@@ -484,12 +484,6 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
- class ExternalOfferInitialAcquisitionDetails
488
- class Representation < Google::Apis::Core::JsonRepresentation; end
489
-
490
- include Google::Apis::Core::JsonObjectSupport
491
- end
492
-
493
487
  class ExternalSubscription
494
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
489
 
@@ -2128,13 +2122,6 @@ module Google
2128
2122
  end
2129
2123
  end
2130
2124
 
2131
- class ExternalOfferInitialAcquisitionDetails
2132
- # @private
2133
- class Representation < Google::Apis::Core::JsonRepresentation
2134
- property :external_transaction_id, as: 'externalTransactionId'
2135
- end
2136
- end
2137
-
2138
2125
  class ExternalSubscription
2139
2126
  # @private
2140
2127
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2150,8 +2137,6 @@ module Google
2150
2137
 
2151
2138
  property :current_tax_amount, as: 'currentTaxAmount', class: Google::Apis::AndroidpublisherV3::Price, decorator: Google::Apis::AndroidpublisherV3::Price::Representation
2152
2139
 
2153
- property :external_offer_initial_acquisition_details, as: 'externalOfferInitialAcquisitionDetails', class: Google::Apis::AndroidpublisherV3::ExternalOfferInitialAcquisitionDetails, decorator: Google::Apis::AndroidpublisherV3::ExternalOfferInitialAcquisitionDetails::Representation
2154
-
2155
2140
  property :external_transaction_id, as: 'externalTransactionId'
2156
2141
  property :one_time_transaction, as: 'oneTimeTransaction', class: Google::Apis::AndroidpublisherV3::OneTimeExternalTransaction, decorator: Google::Apis::AndroidpublisherV3::OneTimeExternalTransaction::Representation
2157
2142
 
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.71.0
4
+ version: 0.73.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-09-15 00:00:00.000000000 Z
11
+ date: 2024-10-13 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.71.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.73.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.5.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Android Developer API V3