google-apis-androidpublisher_v3 0.103.0 → 0.104.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/androidpublisher_v3/classes.rb +6 -0
- data/lib/google/apis/androidpublisher_v3/gem_version.rb +2 -2
- data/lib/google/apis/androidpublisher_v3/representations.rb +1 -0
- data/lib/google/apis/androidpublisher_v3/service.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbebfeb75d4c0917279577a4c57074a3db8761b348449e3551542d16c26e8cfb
|
|
4
|
+
data.tar.gz: 829c08f54b1134c90b89ef9b5e42f91ab25de64de136eeb28a0339b6eae58184
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed4190bb678e01d2908200cd10c66259e0878657605bacf846d61ccd977499deef0b3744832a7794a53cd19a13fd6b15af917d0a38f673c739bc5a49dd6df4ea
|
|
7
|
+
data.tar.gz: 63a1783e32fdb15ae657cef38a889268844d35ce807b6e90a3dd8c0abcfbc68b4a35b75d66efddb099b7958d13f391280ff8ef0b64398cdb38247c1590d88e4a
|
data/CHANGELOG.md
CHANGED
|
@@ -3851,6 +3851,11 @@ module Google
|
|
|
3851
3851
|
class Image
|
|
3852
3852
|
include Google::Apis::Core::Hashable
|
|
3853
3853
|
|
|
3854
|
+
# Optional. Whether the image was generated by AI. Attested by the developer.
|
|
3855
|
+
# Corresponds to the JSON property `aiGeneratedState`
|
|
3856
|
+
# @return [String]
|
|
3857
|
+
attr_accessor :ai_generated_state
|
|
3858
|
+
|
|
3854
3859
|
# A unique id representing this image.
|
|
3855
3860
|
# Corresponds to the JSON property `id`
|
|
3856
3861
|
# @return [String]
|
|
@@ -3877,6 +3882,7 @@ module Google
|
|
|
3877
3882
|
|
|
3878
3883
|
# Update properties of this object
|
|
3879
3884
|
def update!(**args)
|
|
3885
|
+
@ai_generated_state = args[:ai_generated_state] if args.key?(:ai_generated_state)
|
|
3880
3886
|
@id = args[:id] if args.key?(:id)
|
|
3881
3887
|
@sha1 = args[:sha1] if args.key?(:sha1)
|
|
3882
3888
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
|
@@ -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.104.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260625"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3257,6 +3257,7 @@ module Google
|
|
|
3257
3257
|
class Image
|
|
3258
3258
|
# @private
|
|
3259
3259
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3260
|
+
property :ai_generated_state, as: 'aiGeneratedState'
|
|
3260
3261
|
property :id, as: 'id'
|
|
3261
3262
|
property :sha1, as: 'sha1'
|
|
3262
3263
|
property :sha256, as: 'sha256'
|
|
@@ -1293,6 +1293,8 @@ module Google
|
|
|
1293
1293
|
# no-op.
|
|
1294
1294
|
# @param [String] image_type
|
|
1295
1295
|
# Type of the Image.
|
|
1296
|
+
# @param [String] ai_generated_state
|
|
1297
|
+
# Optional. Whether the image was generated by AI. Attested by the developer.
|
|
1296
1298
|
# @param [String] fields
|
|
1297
1299
|
# Selector specifying which fields to include in a partial response.
|
|
1298
1300
|
# @param [String] quota_user
|
|
@@ -1314,7 +1316,7 @@ module Google
|
|
|
1314
1316
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1315
1317
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1316
1318
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1317
|
-
def upload_edit_image(package_name, edit_id, language, image_type, fields: nil, quota_user: nil, upload_source: nil, content_type: nil, options: nil, &block)
|
|
1319
|
+
def upload_edit_image(package_name, edit_id, language, image_type, ai_generated_state: nil, fields: nil, quota_user: nil, upload_source: nil, content_type: nil, options: nil, &block)
|
|
1318
1320
|
if upload_source.nil?
|
|
1319
1321
|
command = make_simple_command(:post, 'androidpublisher/v3/applications/{packageName}/edits/{editId}/listings/{language}/{imageType}', options)
|
|
1320
1322
|
else
|
|
@@ -1328,6 +1330,7 @@ module Google
|
|
|
1328
1330
|
command.params['editId'] = edit_id unless edit_id.nil?
|
|
1329
1331
|
command.params['language'] = language unless language.nil?
|
|
1330
1332
|
command.params['imageType'] = image_type unless image_type.nil?
|
|
1333
|
+
command.query['aiGeneratedState'] = ai_generated_state unless ai_generated_state.nil?
|
|
1331
1334
|
command.query['fields'] = fields unless fields.nil?
|
|
1332
1335
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1333
1336
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.104.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.104.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|