google-apis-androidpublisher_v3 0.73.0 → 0.75.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8a4464b3567801f949251debfc290642f63541a51089328e3243b045430e6c5
|
4
|
+
data.tar.gz: 367839a7de29267cbc82363442a9c1b40102f46e3c4df79ae183f976785a139e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dabaa4f3f3cb12ab830c2c5208a2b5378433f9dd1d1e41714f135816feaf2d538a74db81e7369118ad77a7dc9aa9eec5a0eedc76c4707ef9c4518d29735809ca
|
7
|
+
data.tar.gz: 99d30cce30a34f9a11854d3236431a31f77dee8040c5369e64d9a84e973822ed81e94e11e7d18ce3ae4346d9f21da81016a4b3903336a963d5c4973d1a78d5f8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
2
2
|
|
3
|
+
### v0.75.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241125
|
6
|
+
|
7
|
+
### v0.74.0 (2024-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241016
|
10
|
+
|
3
11
|
### v0.73.0 (2024-10-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241003
|
@@ -1930,6 +1930,12 @@ module Google
|
|
1930
1930
|
# @return [Array<Google::Apis::AndroidpublisherV3::SystemFeature>]
|
1931
1931
|
attr_accessor :required_system_features
|
1932
1932
|
|
1933
|
+
# Optional. The SoCs included by this selector. Only works for Android S+
|
1934
|
+
# devices.
|
1935
|
+
# Corresponds to the JSON property `systemOnChips`
|
1936
|
+
# @return [Array<Google::Apis::AndroidpublisherV3::SystemOnChip>]
|
1937
|
+
attr_accessor :system_on_chips
|
1938
|
+
|
1933
1939
|
def initialize(**args)
|
1934
1940
|
update!(**args)
|
1935
1941
|
end
|
@@ -1941,6 +1947,7 @@ module Google
|
|
1941
1947
|
@forbidden_system_features = args[:forbidden_system_features] if args.key?(:forbidden_system_features)
|
1942
1948
|
@included_device_ids = args[:included_device_ids] if args.key?(:included_device_ids)
|
1943
1949
|
@required_system_features = args[:required_system_features] if args.key?(:required_system_features)
|
1950
|
+
@system_on_chips = args[:system_on_chips] if args.key?(:system_on_chips)
|
1944
1951
|
end
|
1945
1952
|
end
|
1946
1953
|
|
@@ -3949,6 +3956,19 @@ module Google
|
|
3949
3956
|
end
|
3950
3957
|
end
|
3951
3958
|
|
3959
|
+
# A single use promotion code.
|
3960
|
+
class OneTimeCode
|
3961
|
+
include Google::Apis::Core::Hashable
|
3962
|
+
|
3963
|
+
def initialize(**args)
|
3964
|
+
update!(**args)
|
3965
|
+
end
|
3966
|
+
|
3967
|
+
# Update properties of this object
|
3968
|
+
def update!(**args)
|
3969
|
+
end
|
3970
|
+
end
|
3971
|
+
|
3952
3972
|
# Represents a one-time transaction.
|
3953
3973
|
class OneTimeExternalTransaction
|
3954
3974
|
include Google::Apis::Core::Hashable
|
@@ -5234,6 +5254,31 @@ module Google
|
|
5234
5254
|
end
|
5235
5255
|
end
|
5236
5256
|
|
5257
|
+
# The promotion applied on this item when purchased.
|
5258
|
+
class SignupPromotion
|
5259
|
+
include Google::Apis::Core::Hashable
|
5260
|
+
|
5261
|
+
# A single use promotion code.
|
5262
|
+
# Corresponds to the JSON property `oneTimeCode`
|
5263
|
+
# @return [Google::Apis::AndroidpublisherV3::OneTimeCode]
|
5264
|
+
attr_accessor :one_time_code
|
5265
|
+
|
5266
|
+
# A multiple use, predefined promotion code.
|
5267
|
+
# Corresponds to the JSON property `vanityCode`
|
5268
|
+
# @return [Google::Apis::AndroidpublisherV3::VanityCode]
|
5269
|
+
attr_accessor :vanity_code
|
5270
|
+
|
5271
|
+
def initialize(**args)
|
5272
|
+
update!(**args)
|
5273
|
+
end
|
5274
|
+
|
5275
|
+
# Update properties of this object
|
5276
|
+
def update!(**args)
|
5277
|
+
@one_time_code = args[:one_time_code] if args.key?(:one_time_code)
|
5278
|
+
@vanity_code = args[:vanity_code] if args.key?(:vanity_code)
|
5279
|
+
end
|
5280
|
+
end
|
5281
|
+
|
5237
5282
|
# Holds data specific to Split APKs.
|
5238
5283
|
class SplitApkMetadata
|
5239
5284
|
include Google::Apis::Core::Hashable
|
@@ -6020,6 +6065,11 @@ module Google
|
|
6020
6065
|
# @return [String]
|
6021
6066
|
attr_accessor :product_id
|
6022
6067
|
|
6068
|
+
# The promotion applied on this item when purchased.
|
6069
|
+
# Corresponds to the JSON property `signupPromotion`
|
6070
|
+
# @return [Google::Apis::AndroidpublisherV3::SignupPromotion]
|
6071
|
+
attr_accessor :signup_promotion
|
6072
|
+
|
6023
6073
|
def initialize(**args)
|
6024
6074
|
update!(**args)
|
6025
6075
|
end
|
@@ -6032,6 +6082,7 @@ module Google
|
|
6032
6082
|
@offer_details = args[:offer_details] if args.key?(:offer_details)
|
6033
6083
|
@prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
|
6034
6084
|
@product_id = args[:product_id] if args.key?(:product_id)
|
6085
|
+
@signup_promotion = args[:signup_promotion] if args.key?(:signup_promotion)
|
6035
6086
|
end
|
6036
6087
|
end
|
6037
6088
|
|
@@ -6321,6 +6372,36 @@ module Google
|
|
6321
6372
|
end
|
6322
6373
|
end
|
6323
6374
|
|
6375
|
+
# Representation of a System-on-Chip (SoC) of an Android device. Can be used to
|
6376
|
+
# target S+ devices.
|
6377
|
+
class SystemOnChip
|
6378
|
+
include Google::Apis::Core::Hashable
|
6379
|
+
|
6380
|
+
# Required. The designer of the SoC, eg. "Google" Value of build property "ro.
|
6381
|
+
# soc.manufacturer" https://developer.android.com/reference/android/os/Build#
|
6382
|
+
# SOC_MANUFACTURER Required.
|
6383
|
+
# Corresponds to the JSON property `manufacturer`
|
6384
|
+
# @return [String]
|
6385
|
+
attr_accessor :manufacturer
|
6386
|
+
|
6387
|
+
# Required. The model of the SoC, eg. "Tensor" Value of build property "ro.soc.
|
6388
|
+
# model" https://developer.android.com/reference/android/os/Build#SOC_MODEL
|
6389
|
+
# Required.
|
6390
|
+
# Corresponds to the JSON property `model`
|
6391
|
+
# @return [String]
|
6392
|
+
attr_accessor :model
|
6393
|
+
|
6394
|
+
def initialize(**args)
|
6395
|
+
update!(**args)
|
6396
|
+
end
|
6397
|
+
|
6398
|
+
# Update properties of this object
|
6399
|
+
def update!(**args)
|
6400
|
+
@manufacturer = args[:manufacturer] if args.key?(:manufacturer)
|
6401
|
+
@model = args[:model] if args.key?(:model)
|
6402
|
+
end
|
6403
|
+
end
|
6404
|
+
|
6324
6405
|
# Targeting details for a recovery action such as regions, android sdk levels,
|
6325
6406
|
# app versions etc.
|
6326
6407
|
class Targeting
|
@@ -7287,6 +7368,25 @@ module Google
|
|
7287
7368
|
end
|
7288
7369
|
end
|
7289
7370
|
|
7371
|
+
# A multiple use, predefined promotion code.
|
7372
|
+
class VanityCode
|
7373
|
+
include Google::Apis::Core::Hashable
|
7374
|
+
|
7375
|
+
# The promotion code.
|
7376
|
+
# Corresponds to the JSON property `promotionCode`
|
7377
|
+
# @return [String]
|
7378
|
+
attr_accessor :promotion_code
|
7379
|
+
|
7380
|
+
def initialize(**args)
|
7381
|
+
update!(**args)
|
7382
|
+
end
|
7383
|
+
|
7384
|
+
# Update properties of this object
|
7385
|
+
def update!(**args)
|
7386
|
+
@promotion_code = args[:promotion_code] if args.key?(:promotion_code)
|
7387
|
+
end
|
7388
|
+
end
|
7389
|
+
|
7290
7390
|
# APK that is suitable for inclusion in a system image. The resource of
|
7291
7391
|
# SystemApksService.
|
7292
7392
|
class Variant
|
@@ -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.75.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 = "
|
25
|
+
REVISION = "20241125"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -790,6 +790,12 @@ module Google
|
|
790
790
|
include Google::Apis::Core::JsonObjectSupport
|
791
791
|
end
|
792
792
|
|
793
|
+
class OneTimeCode
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
|
+
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
797
|
+
end
|
798
|
+
|
793
799
|
class OneTimeExternalTransaction
|
794
800
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
801
|
|
@@ -1072,6 +1078,12 @@ module Google
|
|
1072
1078
|
include Google::Apis::Core::JsonObjectSupport
|
1073
1079
|
end
|
1074
1080
|
|
1081
|
+
class SignupPromotion
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
|
+
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
1085
|
+
end
|
1086
|
+
|
1075
1087
|
class SplitApkMetadata
|
1076
1088
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
1089
|
|
@@ -1216,6 +1228,12 @@ module Google
|
|
1216
1228
|
include Google::Apis::Core::JsonObjectSupport
|
1217
1229
|
end
|
1218
1230
|
|
1231
|
+
class SystemOnChip
|
1232
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1233
|
+
|
1234
|
+
include Google::Apis::Core::JsonObjectSupport
|
1235
|
+
end
|
1236
|
+
|
1219
1237
|
class Targeting
|
1220
1238
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1221
1239
|
|
@@ -1390,6 +1408,12 @@ module Google
|
|
1390
1408
|
include Google::Apis::Core::JsonObjectSupport
|
1391
1409
|
end
|
1392
1410
|
|
1411
|
+
class VanityCode
|
1412
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1413
|
+
|
1414
|
+
include Google::Apis::Core::JsonObjectSupport
|
1415
|
+
end
|
1416
|
+
|
1393
1417
|
class Variant
|
1394
1418
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1395
1419
|
|
@@ -2056,6 +2080,8 @@ module Google
|
|
2056
2080
|
|
2057
2081
|
collection :required_system_features, as: 'requiredSystemFeatures', class: Google::Apis::AndroidpublisherV3::SystemFeature, decorator: Google::Apis::AndroidpublisherV3::SystemFeature::Representation
|
2058
2082
|
|
2083
|
+
collection :system_on_chips, as: 'systemOnChips', class: Google::Apis::AndroidpublisherV3::SystemOnChip, decorator: Google::Apis::AndroidpublisherV3::SystemOnChip::Representation
|
2084
|
+
|
2059
2085
|
end
|
2060
2086
|
end
|
2061
2087
|
|
@@ -2644,6 +2670,12 @@ module Google
|
|
2644
2670
|
end
|
2645
2671
|
end
|
2646
2672
|
|
2673
|
+
class OneTimeCode
|
2674
|
+
# @private
|
2675
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2676
|
+
end
|
2677
|
+
end
|
2678
|
+
|
2647
2679
|
class OneTimeExternalTransaction
|
2648
2680
|
# @private
|
2649
2681
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3047,6 +3079,16 @@ module Google
|
|
3047
3079
|
end
|
3048
3080
|
end
|
3049
3081
|
|
3082
|
+
class SignupPromotion
|
3083
|
+
# @private
|
3084
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3085
|
+
property :one_time_code, as: 'oneTimeCode', class: Google::Apis::AndroidpublisherV3::OneTimeCode, decorator: Google::Apis::AndroidpublisherV3::OneTimeCode::Representation
|
3086
|
+
|
3087
|
+
property :vanity_code, as: 'vanityCode', class: Google::Apis::AndroidpublisherV3::VanityCode, decorator: Google::Apis::AndroidpublisherV3::VanityCode::Representation
|
3088
|
+
|
3089
|
+
end
|
3090
|
+
end
|
3091
|
+
|
3050
3092
|
class SplitApkMetadata
|
3051
3093
|
# @private
|
3052
3094
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3241,6 +3283,8 @@ module Google
|
|
3241
3283
|
property :prepaid_plan, as: 'prepaidPlan', class: Google::Apis::AndroidpublisherV3::PrepaidPlan, decorator: Google::Apis::AndroidpublisherV3::PrepaidPlan::Representation
|
3242
3284
|
|
3243
3285
|
property :product_id, as: 'productId'
|
3286
|
+
property :signup_promotion, as: 'signupPromotion', class: Google::Apis::AndroidpublisherV3::SignupPromotion, decorator: Google::Apis::AndroidpublisherV3::SignupPromotion::Representation
|
3287
|
+
|
3244
3288
|
end
|
3245
3289
|
end
|
3246
3290
|
|
@@ -3331,6 +3375,14 @@ module Google
|
|
3331
3375
|
end
|
3332
3376
|
end
|
3333
3377
|
|
3378
|
+
class SystemOnChip
|
3379
|
+
# @private
|
3380
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3381
|
+
property :manufacturer, as: 'manufacturer'
|
3382
|
+
property :model, as: 'model'
|
3383
|
+
end
|
3384
|
+
end
|
3385
|
+
|
3334
3386
|
class Targeting
|
3335
3387
|
# @private
|
3336
3388
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3621,6 +3673,13 @@ module Google
|
|
3621
3673
|
end
|
3622
3674
|
end
|
3623
3675
|
|
3676
|
+
class VanityCode
|
3677
|
+
# @private
|
3678
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3679
|
+
property :promotion_code, as: 'promotionCode'
|
3680
|
+
end
|
3681
|
+
end
|
3682
|
+
|
3624
3683
|
class Variant
|
3625
3684
|
# @private
|
3626
3685
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.75.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-
|
11
|
+
date: 2024-12-04 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.75.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.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Play Android Developer API V3
|