google-apis-androidpublisher_v3 0.75.0 → 0.77.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce4a6d9697dc0142477c72c54a479478151b70c82a7f1513e3e9c436c64359fa
|
4
|
+
data.tar.gz: a2ca284dc592421b506c34d410510cbc87fdf202af1038de6013462985ed349e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0449db71e070c1821912e8b81f7b27248f9f61d8b0e7a9fffb2f06655c049024c7e6b2ff067751f56ed5c306df0db4f6e98cf15a45b5d43743c4ff1b1af23131'
|
7
|
+
data.tar.gz: aaf5b3fe5b73b1b6e601667705cd9d6c45ab3ee269f217b6ca6c8b8f66470094bcec460aff6fc2e92e6eedd747ae58047b4603ceb4f09b50cdb5835fb659a8cf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
2
2
|
|
3
|
+
### v0.77.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250227
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.76.0 (2025-01-05)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250102
|
11
|
+
|
3
12
|
### v0.75.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241125
|
@@ -731,8 +731,9 @@ module Google
|
|
731
731
|
include Google::Apis::Core::Hashable
|
732
732
|
|
733
733
|
# Optional. Account hold period of the subscription, specified in ISO 8601
|
734
|
-
# format. Acceptable values must be in
|
735
|
-
#
|
734
|
+
# format. Acceptable values must be in days and between P0D and P60D. If not
|
735
|
+
# specified, the default value is P30D. The sum of gracePeriodDuration and
|
736
|
+
# accountHoldDuration must be between P30D and P60D days, inclusive.
|
736
737
|
# Corresponds to the JSON property `accountHoldDuration`
|
737
738
|
# @return [String]
|
738
739
|
attr_accessor :account_hold_duration
|
@@ -745,9 +746,10 @@ module Google
|
|
745
746
|
attr_accessor :billing_period_duration
|
746
747
|
|
747
748
|
# Grace period of the subscription, specified in ISO 8601 format. Acceptable
|
748
|
-
# values
|
749
|
-
#
|
750
|
-
#
|
749
|
+
# values must be in days and between P0D and the lesser of 30D and base plan
|
750
|
+
# billing period. If not specified, a default value will be used based on the
|
751
|
+
# billing period. The sum of gracePeriodDuration and accountHoldDuration must be
|
752
|
+
# between P30D and P60D days, inclusive.
|
751
753
|
# Corresponds to the JSON property `gracePeriodDuration`
|
752
754
|
# @return [String]
|
753
755
|
attr_accessor :grace_period_duration
|
@@ -820,6 +822,11 @@ module Google
|
|
820
822
|
# @return [Google::Apis::AndroidpublisherV3::SubscriptionItemPriceChangeDetails]
|
821
823
|
attr_accessor :price_change_details
|
822
824
|
|
825
|
+
# Represents an amount of money with its currency type.
|
826
|
+
# Corresponds to the JSON property `recurringPrice`
|
827
|
+
# @return [Google::Apis::AndroidpublisherV3::Money]
|
828
|
+
attr_accessor :recurring_price
|
829
|
+
|
823
830
|
def initialize(**args)
|
824
831
|
update!(**args)
|
825
832
|
end
|
@@ -829,6 +836,7 @@ module Google
|
|
829
836
|
@auto_renew_enabled = args[:auto_renew_enabled] if args.key?(:auto_renew_enabled)
|
830
837
|
@installment_details = args[:installment_details] if args.key?(:installment_details)
|
831
838
|
@price_change_details = args[:price_change_details] if args.key?(:price_change_details)
|
839
|
+
@recurring_price = args[:recurring_price] if args.key?(:recurring_price)
|
832
840
|
end
|
833
841
|
end
|
834
842
|
|
@@ -1366,6 +1374,11 @@ module Google
|
|
1366
1374
|
# @return [Hash<String,Google::Apis::AndroidpublisherV3::ConvertedRegionPrice>]
|
1367
1375
|
attr_accessor :converted_region_prices
|
1368
1376
|
|
1377
|
+
# The version of the available regions being used for the specified resource.
|
1378
|
+
# Corresponds to the JSON property `regionVersion`
|
1379
|
+
# @return [Google::Apis::AndroidpublisherV3::RegionsVersion]
|
1380
|
+
attr_accessor :region_version
|
1381
|
+
|
1369
1382
|
def initialize(**args)
|
1370
1383
|
update!(**args)
|
1371
1384
|
end
|
@@ -1374,6 +1387,7 @@ module Google
|
|
1374
1387
|
def update!(**args)
|
1375
1388
|
@converted_other_regions_price = args[:converted_other_regions_price] if args.key?(:converted_other_regions_price)
|
1376
1389
|
@converted_region_prices = args[:converted_region_prices] if args.key?(:converted_region_prices)
|
1390
|
+
@region_version = args[:region_version] if args.key?(:region_version)
|
1377
1391
|
end
|
1378
1392
|
end
|
1379
1393
|
|
@@ -3259,9 +3273,10 @@ module Google
|
|
3259
3273
|
class InstallmentsBasePlanType
|
3260
3274
|
include Google::Apis::Core::Hashable
|
3261
3275
|
|
3262
|
-
# Optional. Account hold period of the subscription, specified
|
3263
|
-
#
|
3264
|
-
#
|
3276
|
+
# Optional. Account hold period of the subscription, specified in ISO 8601
|
3277
|
+
# format. Acceptable values must be in days and between P0D and P60D. If not
|
3278
|
+
# specified, the default value is P30D. The sum of gracePeriodDuration and
|
3279
|
+
# accountHoldDuration must be between P30D and P60D days, inclusive.
|
3265
3280
|
# Corresponds to the JSON property `accountHoldDuration`
|
3266
3281
|
# @return [String]
|
3267
3282
|
attr_accessor :account_hold_duration
|
@@ -3280,9 +3295,10 @@ module Google
|
|
3280
3295
|
attr_accessor :committed_payments_count
|
3281
3296
|
|
3282
3297
|
# Grace period of the subscription, specified in ISO 8601 format. Acceptable
|
3283
|
-
# values
|
3284
|
-
#
|
3285
|
-
#
|
3298
|
+
# values must be in days and between P0D and the lesser of 30D and base plan
|
3299
|
+
# billing period. If not specified, a default value will be used based on the
|
3300
|
+
# billing period. The sum of gracePeriodDuration and accountHoldDuration must be
|
3301
|
+
# between P30D and P60D days, inclusive.
|
3286
3302
|
# Corresponds to the JSON property `gracePeriodDuration`
|
3287
3303
|
# @return [String]
|
3288
3304
|
attr_accessor :grace_period_duration
|
@@ -3936,7 +3952,7 @@ module Google
|
|
3936
3952
|
end
|
3937
3953
|
end
|
3938
3954
|
|
3939
|
-
# Represents a custom tag specified for
|
3955
|
+
# Represents a custom tag specified for a product offer.
|
3940
3956
|
class OfferTag
|
3941
3957
|
include Google::Apis::Core::Hashable
|
3942
3958
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.77.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250227"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1693,6 +1693,8 @@ module Google
|
|
1693
1693
|
|
1694
1694
|
property :price_change_details, as: 'priceChangeDetails', class: Google::Apis::AndroidpublisherV3::SubscriptionItemPriceChangeDetails, decorator: Google::Apis::AndroidpublisherV3::SubscriptionItemPriceChangeDetails::Representation
|
1695
1695
|
|
1696
|
+
property :recurring_price, as: 'recurringPrice', class: Google::Apis::AndroidpublisherV3::Money, decorator: Google::Apis::AndroidpublisherV3::Money::Representation
|
1697
|
+
|
1696
1698
|
end
|
1697
1699
|
end
|
1698
1700
|
|
@@ -1897,6 +1899,8 @@ module Google
|
|
1897
1899
|
|
1898
1900
|
hash :converted_region_prices, as: 'convertedRegionPrices', class: Google::Apis::AndroidpublisherV3::ConvertedRegionPrice, decorator: Google::Apis::AndroidpublisherV3::ConvertedRegionPrice::Representation
|
1899
1901
|
|
1902
|
+
property :region_version, as: 'regionVersion', class: Google::Apis::AndroidpublisherV3::RegionsVersion, decorator: Google::Apis::AndroidpublisherV3::RegionsVersion::Representation
|
1903
|
+
|
1900
1904
|
end
|
1901
1905
|
end
|
1902
1906
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-androidpublisher_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.77.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Google Play Android Developer API V3
|
82
79
|
test_files: []
|