Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of androidpublisher v3 client #19782

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
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28714,6 +28714,7 @@
"/androidpublisher:v3/ExternalTransaction/packageName": package_name
"/androidpublisher:v3/ExternalTransaction/recurringTransaction": recurring_transaction
"/androidpublisher:v3/ExternalTransaction/testPurchase": test_purchase
"/androidpublisher:v3/ExternalTransaction/transactionProgramCode": transaction_program_code
"/androidpublisher:v3/ExternalTransaction/transactionState": transaction_state
"/androidpublisher:v3/ExternalTransaction/transactionTime": transaction_time
"/androidpublisher:v3/ExternalTransaction/userTaxAddress": user_tax_address
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.66.0 (2024-06-26)

* Regenerated from discovery document revision 20240624

### v0.65.0 (2024-06-16)

* Regenerated from discovery document revision 20240610
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2239,6 +2239,17 @@ class ExternalTransaction
# @return [Google::Apis::AndroidpublisherV3::ExternalTransactionTestPurchase]
attr_accessor :test_purchase

# Optional. The transaction program code, used to help determine service fee for
# apps partcipating in special partner programs. This field can not be used for
# external offers transactions. Developers participating in the Play Media
# Experience Program (https://play.google.com/console/about/programs/
# mediaprogram/) must provide the program code when reporting alternative
# billing external transactions. If you are an eligible developer, please
# contact your BDM for more information on how to set this field.
# Corresponds to the JSON property `transactionProgramCode`
# @return [Fixnum]
attr_accessor :transaction_program_code

# Output only. The current state of the transaction.
# Corresponds to the JSON property `transactionState`
# @return [String]
Expand Down Expand Up @@ -2270,6 +2281,7 @@ def update!(**args)
@package_name = args[:package_name] if args.key?(:package_name)
@recurring_transaction = args[:recurring_transaction] if args.key?(:recurring_transaction)
@test_purchase = args[:test_purchase] if args.key?(:test_purchase)
@transaction_program_code = args[:transaction_program_code] if args.key?(:transaction_program_code)
@transaction_state = args[:transaction_state] if args.key?(:transaction_state)
@transaction_time = args[:transaction_time] if args.key?(:transaction_time)
@user_tax_address = args[:user_tax_address] if args.key?(:user_tax_address)
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.65.0"
GEM_VERSION = "0.66.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20240610"
REVISION = "20240624"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2143,6 +2143,7 @@ class Representation < Google::Apis::Core::JsonRepresentation

property :test_purchase, as: 'testPurchase', class: Google::Apis::AndroidpublisherV3::ExternalTransactionTestPurchase, decorator: Google::Apis::AndroidpublisherV3::ExternalTransactionTestPurchase::Representation

property :transaction_program_code, as: 'transactionProgramCode'
property :transaction_state, as: 'transactionState'
property :transaction_time, as: 'transactionTime'
property :user_tax_address, as: 'userTaxAddress', class: Google::Apis::AndroidpublisherV3::ExternalTransactionAddress, decorator: Google::Apis::AndroidpublisherV3::ExternalTransactionAddress::Representation
Expand Down
Loading