@maxim_mazurok/gapi.client.androidpublisher-v3 0.1.20251216 → 0.1.20260106
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 +13 -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: 20260106
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1130,6 +1130,8 @@ declare namespace gapi.client {
|
|
|
1130
1130
|
isTokenizedDigitalAsset?: boolean;
|
|
1131
1131
|
/** Product tax category code to assign to the in-app product. Product tax category determines the transaction tax rates applied to the product. Refer to the [Help Center article](https://support.google.com/googleplay/android-developer/answer/16408159) for more information. */
|
|
1132
1132
|
productTaxCategoryCode?: string;
|
|
1133
|
+
/** Regional age rating information. Currently this field is only supported for region code `US`. */
|
|
1134
|
+
regionalProductAgeRatingInfos?: RegionalProductAgeRatingInfo[];
|
|
1133
1135
|
/** A mapping from region code to tax rate details. The keys are region codes as defined by Unicode's "CLDR". */
|
|
1134
1136
|
taxRateInfoByRegionCode?: {[P in string]: RegionalTaxRateInfo};
|
|
1135
1137
|
}
|
|
@@ -1343,6 +1345,8 @@ declare namespace gapi.client {
|
|
|
1343
1345
|
isTokenizedDigitalAsset?: boolean;
|
|
1344
1346
|
/** Product tax category code to assign to the one-time product. Product tax category determines the transaction tax rates applied to the product. Refer to the [Help Center article](https://support.google.com/googleplay/android-developer/answer/16408159) for more information. */
|
|
1345
1347
|
productTaxCategoryCode?: string;
|
|
1348
|
+
/** Regional age rating information. Currently this field is only supported for region code `US`. */
|
|
1349
|
+
regionalProductAgeRatingInfos?: RegionalProductAgeRatingInfo[];
|
|
1346
1350
|
/** Regional tax configuration. */
|
|
1347
1351
|
regionalTaxConfigs?: RegionalTaxConfig[];
|
|
1348
1352
|
}
|
|
@@ -1657,6 +1661,12 @@ declare namespace gapi.client {
|
|
|
1657
1661
|
/** Required. Region code this configuration applies to, as defined by ISO 3166-2, e.g. "US". */
|
|
1658
1662
|
regionCode?: string;
|
|
1659
1663
|
}
|
|
1664
|
+
interface RegionalProductAgeRatingInfo {
|
|
1665
|
+
/** The age rating tier of a product for the given region. */
|
|
1666
|
+
productAgeRatingTier?: string;
|
|
1667
|
+
/** Region code this configuration applies to, as defined by ISO 3166-2, e.g. "US". */
|
|
1668
|
+
regionCode?: string;
|
|
1669
|
+
}
|
|
1660
1670
|
interface RegionalSubscriptionOfferConfig {
|
|
1661
1671
|
/** Whether the subscription offer in the specified region is available for new subscribers. Existing subscribers will not have their subscription cancelled if this value is set to false. If not specified, this will default to false. */
|
|
1662
1672
|
newSubscriberAvailability?: boolean;
|
|
@@ -2076,6 +2086,8 @@ declare namespace gapi.client {
|
|
|
2076
2086
|
isTokenizedDigitalAsset?: boolean;
|
|
2077
2087
|
/** Product tax category code to assign to the subscription. Product tax category determines the transaction tax rates applied to the subscription. Refer to the [Help Center article](https://support.google.com/googleplay/android-developer/answer/16408159) for more information. */
|
|
2078
2088
|
productTaxCategoryCode?: string;
|
|
2089
|
+
/** Regional age rating information. Currently this field is only supported for region code `US`. */
|
|
2090
|
+
regionalProductAgeRatingInfos?: RegionalProductAgeRatingInfo[];
|
|
2079
2091
|
/** A mapping from region code to tax rate details. The keys are region codes as defined by Unicode's "CLDR". */
|
|
2080
2092
|
taxRateInfoByRegionCode?: {[P in string]: RegionalTaxRateInfo};
|
|
2081
2093
|
}
|