@maxim_mazurok/gapi.client.androidpublisher-v3 0.1.20250903 → 0.1.20250904
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.
- package/index.d.ts +11 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://androidpublisher.googleapis.com/$discovery/rest?version=v3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250904
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -239,6 +239,8 @@ declare namespace gapi.client {
|
|
|
239
239
|
installmentDetails?: InstallmentPlan;
|
|
240
240
|
/** The information of the last price change for the item since subscription signup. */
|
|
241
241
|
priceChangeDetails?: SubscriptionItemPriceChangeDetails;
|
|
242
|
+
/** The information of the latest price step-up consent. */
|
|
243
|
+
priceStepUpConsentDetails?: PriceStepUpConsentDetails;
|
|
242
244
|
/** The current recurring price of the auto renewing plan. Note that the price does not take into account discounts and does not include taxes for tax-exclusive pricing, please call orders.get API instead if transaction details are needed. */
|
|
243
245
|
recurringPrice?: Money;
|
|
244
246
|
}
|
|
@@ -1437,6 +1439,14 @@ declare namespace gapi.client {
|
|
|
1437
1439
|
/** Price in 1/million of the currency base unit, represented as a string. */
|
|
1438
1440
|
priceMicros?: string;
|
|
1439
1441
|
}
|
|
1442
|
+
interface PriceStepUpConsentDetails {
|
|
1443
|
+
/** The deadline by which the user must provide consent. If consent is not provided by this time, the subscription will be canceled. */
|
|
1444
|
+
consentDeadlineTime?: string;
|
|
1445
|
+
/** The new price which requires user consent. */
|
|
1446
|
+
newPrice?: Money;
|
|
1447
|
+
/** Output only. The state of the price step-up consent. */
|
|
1448
|
+
state?: string;
|
|
1449
|
+
}
|
|
1440
1450
|
interface ProcessedEvent {
|
|
1441
1451
|
/** The time when the order was processed. */
|
|
1442
1452
|
eventTime?: string;
|