google-apis-androidpublisher_v3 0.2.0 → 0.3.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: 0da633b3a12016ac70a17f42760309987e22ee31f3c9b91396df1fc932b7ddd1
|
|
4
|
+
data.tar.gz: 9e4c2f1521ed75d273dfd6bf6351e168e6cd667f486ef17ce4446f2bef3ce6d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45219a4be086ada829fedd6c4d4dffb3311593b46a4a6cf9043ac05db39e8677a252d9a8c932bb33ed2161047082878ac951a082192c196a9d12a4bdb4c186e9
|
|
7
|
+
data.tar.gz: 9b5b0f1ea3cca758ee8bdd6eaae2ecc287149e5b0255a3f7e4c74c70d3e5dd70dc6acee84fb0af8a90f5f4c79e92acc699def94711a29ac80bcd25375cb69e34
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
|
2
2
|
|
|
3
|
+
### v0.3.0 (2021-04-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20210429
|
|
6
|
+
* Regenerated using generator version 0.2.0
|
|
7
|
+
|
|
3
8
|
### v0.2.0 (2021-03-04)
|
|
4
9
|
|
|
5
10
|
* Regenerated using generator version 0.1.2
|
|
@@ -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.3.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210429"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -54,6 +54,10 @@ module Google
|
|
|
54
54
|
# Package name of the app.
|
|
55
55
|
# @param [String] edit_id
|
|
56
56
|
# Identifier of the edit.
|
|
57
|
+
# @param [Boolean] changes_not_sent_for_review
|
|
58
|
+
# Indicates that the changes in this edit will not be reviewed until they are
|
|
59
|
+
# explicitly sent for review from the Google Play Console UI. These changes will
|
|
60
|
+
# be added to any other changes that are not yet sent for review.
|
|
57
61
|
# @param [String] fields
|
|
58
62
|
# Selector specifying which fields to include in a partial response.
|
|
59
63
|
# @param [String] quota_user
|
|
@@ -71,12 +75,13 @@ module Google
|
|
|
71
75
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
72
76
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
73
77
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
74
|
-
def commit_edit(package_name, edit_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
78
|
+
def commit_edit(package_name, edit_id, changes_not_sent_for_review: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
75
79
|
command = make_simple_command(:post, 'androidpublisher/v3/applications/{packageName}/edits/{editId}:commit', options)
|
|
76
80
|
command.response_representation = Google::Apis::AndroidpublisherV3::AppEdit::Representation
|
|
77
81
|
command.response_class = Google::Apis::AndroidpublisherV3::AppEdit
|
|
78
82
|
command.params['packageName'] = package_name unless package_name.nil?
|
|
79
83
|
command.params['editId'] = edit_id unless edit_id.nil?
|
|
84
|
+
command.query['changesNotSentForReview'] = changes_not_sent_for_review unless changes_not_sent_for_review.nil?
|
|
80
85
|
command.query['fields'] = fields unless fields.nil?
|
|
81
86
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
82
87
|
execute_or_queue_command(command, &block)
|
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.3.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: 2021-
|
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidpublisher_v3/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.3.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidpublisher_v3
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.2.
|
|
72
|
+
rubygems_version: 3.2.17
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Google Play Android Developer API V3
|