@maxim_mazurok/gapi.client.androidpublisher-v3 0.1.20251023 → 0.1.20251029
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 +10 -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: 20251029
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1304,6 +1304,8 @@ declare namespace gapi.client {
|
|
|
1304
1304
|
interface OneTimePurchaseDetails {
|
|
1305
1305
|
/** The offer ID of the one-time purchase offer. */
|
|
1306
1306
|
offerId?: string;
|
|
1307
|
+
/** The details of a pre-order purchase. Only set if it is a pre-order purchase. Note that this field will be set even after pre-order is fulfilled. */
|
|
1308
|
+
preorderDetails?: any;
|
|
1307
1309
|
/** ID of the purchase option. This field is set for both purchase options and variant offers. For purchase options, this ID identifies the purchase option itself. For variant offers, this ID refers to the associated purchase option, and in conjunction with offer_id it identifies the variant offer. */
|
|
1308
1310
|
purchaseOptionId?: string;
|
|
1309
1311
|
/** The number of items purchased (for multi-quantity item purchases). */
|
|
@@ -1423,6 +1425,11 @@ declare namespace gapi.client {
|
|
|
1423
1425
|
/** The number of Play Points applied in this order. E.g. for a 100 points for $2 coupon, this is 100. For coupon stacked with base offer, this is the total points spent across both. */
|
|
1424
1426
|
pointsSpent?: string;
|
|
1425
1427
|
}
|
|
1428
|
+
interface PreorderDetails {}
|
|
1429
|
+
interface PreorderOfferDetails {
|
|
1430
|
+
/** The time when a preordered item is released for a preorder purchase. */
|
|
1431
|
+
preorderReleaseTime?: string;
|
|
1432
|
+
}
|
|
1426
1433
|
interface PrepaidBasePlanType {
|
|
1427
1434
|
/** Required. Immutable. Subscription period, specified in ISO 8601 format. For a list of acceptable billing periods, refer to the help center. The duration is immutable after the base plan is created. */
|
|
1428
1435
|
billingPeriodDuration?: string;
|
|
@@ -1466,6 +1473,8 @@ declare namespace gapi.client {
|
|
|
1466
1473
|
offerTags?: string[];
|
|
1467
1474
|
/** The per-transaction offer token used to make this purchase line item. */
|
|
1468
1475
|
offerToken?: string;
|
|
1476
|
+
/** Offer details for a preorder offer. This will only be set for preorders. */
|
|
1477
|
+
preorderOfferDetails?: PreorderOfferDetails;
|
|
1469
1478
|
/** The purchase option ID. */
|
|
1470
1479
|
purchaseOptionId?: string;
|
|
1471
1480
|
/** The quantity associated with the purchase of the inapp product. */
|