Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42555,6 +42555,7 @@
"/androidpublisher:v3/Grant/name": name
"/androidpublisher:v3/Grant/packageName": package_name
"/androidpublisher:v3/Image": image
"/androidpublisher:v3/Image/aiGeneratedState": ai_generated_state
"/androidpublisher:v3/Image/id": id
"/androidpublisher:v3/Image/sha1": sha1
"/androidpublisher:v3/Image/sha256": sha256
Expand Down Expand Up @@ -43582,6 +43583,7 @@
"/androidpublisher:v3/androidpublisher.edits.images.list/language": language
"/androidpublisher:v3/androidpublisher.edits.images.list/packageName": package_name
"/androidpublisher:v3/androidpublisher.edits.images.upload": upload_edit_image
"/androidpublisher:v3/androidpublisher.edits.images.upload/aiGeneratedState": ai_generated_state
"/androidpublisher:v3/androidpublisher.edits.images.upload/editId": edit_id
"/androidpublisher:v3/androidpublisher.edits.images.upload/imageType": image_type
"/androidpublisher:v3/androidpublisher.edits.images.upload/language": language
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-androidpublisher_v3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-androidpublisher_v3

### v0.104.0 (2026-06-28)

* Regenerated from discovery document revision 20260625

### v0.103.0 (2026-06-14)

* Regenerated using generator version 0.19.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3851,6 +3851,11 @@ def update!(**args)
class Image
include Google::Apis::Core::Hashable

# Optional. Whether the image was generated by AI. Attested by the developer.
# Corresponds to the JSON property `aiGeneratedState`
# @return [String]
attr_accessor :ai_generated_state

# A unique id representing this image.
# Corresponds to the JSON property `id`
# @return [String]
Expand All @@ -3877,6 +3882,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@ai_generated_state = args[:ai_generated_state] if args.key?(:ai_generated_state)
@id = args[:id] if args.key?(:id)
@sha1 = args[:sha1] if args.key?(:sha1)
@sha256 = args[:sha256] if args.key?(:sha256)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module AndroidpublisherV3
# Version of the google-apis-androidpublisher_v3 gem
GEM_VERSION = "0.103.0"
GEM_VERSION = "0.104.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260528"
REVISION = "20260625"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -3257,6 +3257,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class Image
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :ai_generated_state, as: 'aiGeneratedState'
property :id, as: 'id'
property :sha1, as: 'sha1'
property :sha256, as: 'sha256'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1293,6 +1293,8 @@ def list_edit_images(package_name, edit_id, language, image_type, fields: nil, q
# no-op.
# @param [String] image_type
# Type of the Image.
# @param [String] ai_generated_state
# Optional. Whether the image was generated by AI. Attested by the developer.
# @param [String] fields
# Selector specifying which fields to include in a partial response.
# @param [String] quota_user
Expand All @@ -1314,7 +1316,7 @@ def list_edit_images(package_name, edit_id, language, image_type, fields: nil, q
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
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)
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)
if upload_source.nil?
command = make_simple_command(:post, 'androidpublisher/v3/applications/{packageName}/edits/{editId}/listings/{language}/{imageType}', options)
else
Expand All @@ -1328,6 +1330,7 @@ def upload_edit_image(package_name, edit_id, language, image_type, fields: nil,
command.params['editId'] = edit_id unless edit_id.nil?
command.params['language'] = language unless language.nil?
command.params['imageType'] = image_type unless image_type.nil?
command.query['aiGeneratedState'] = ai_generated_state unless ai_generated_state.nil?
command.query['fields'] = fields unless fields.nil?
command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block)
Expand Down
Loading