Skip to content

Commit 6d4518a

Browse files
yoshi-automationquirogas
authored andcommitted
feat(androidpublisher)!: update the API
BREAKING CHANGE: This release has breaking changes. #### androidpublisher:v3 The following keys were deleted: - resources.edits.methods.commit.parameters.inProgressReviewBehaviour.description - resources.edits.methods.commit.parameters.inProgressReviewBehaviour.enum - resources.edits.methods.commit.parameters.inProgressReviewBehaviour.enumDescriptions - resources.edits.methods.commit.parameters.inProgressReviewBehaviour.location - resources.edits.methods.commit.parameters.inProgressReviewBehaviour.type The following keys were added: - schemas.ManagedProductTaxAndComplianceSettings.properties.productTaxCategoryCode.description - schemas.ManagedProductTaxAndComplianceSettings.properties.productTaxCategoryCode.type - schemas.OneTimeProductTaxAndComplianceSettings.properties.productTaxCategoryCode.description - schemas.OneTimeProductTaxAndComplianceSettings.properties.productTaxCategoryCode.type - schemas.SubscriptionTaxAndComplianceSettings.properties.productTaxCategoryCode.description - schemas.SubscriptionTaxAndComplianceSettings.properties.productTaxCategoryCode.type
1 parent 8975bbe commit 6d4518a

File tree

2 files changed

+25
-22
lines changed

2 files changed

+25
-22
lines changed

discovery/androidpublisher-v3.json

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -429,21 +429,6 @@
429429
"required": true,
430430
"type": "string"
431431
},
432-
"inProgressReviewBehaviour": {
433-
"description": "Optional. The behavior of committing a new edit while a submission is already in review.",
434-
"enum": [
435-
"IN_PROGRESS_REVIEW_BEHAVIOUR_UNSPECIFIED",
436-
"CANCEL_IN_PROGRESS_AND_SUBMIT",
437-
"THROW_ERROR_IF_IN_PROGRESS"
438-
],
439-
"enumDescriptions": [
440-
"The behavior is not specified.",
441-
"The changes in review will be canceled, and the new changes will be sent for review. Thus resetting the review process.",
442-
"The commit will fail with an error if there are changes in review. If the edit doesn't result in a new submission being created then it won't throw an error even if there are changes in review."
443-
],
444-
"location": "query",
445-
"type": "string"
446-
},
447432
"packageName": {
448433
"description": "Package name of the app.",
449434
"location": "path",
@@ -5570,7 +5555,7 @@
55705555
}
55715556
}
55725557
},
5573-
"revision": "20251210",
5558+
"revision": "20251211",
55745559
"rootUrl": "https://androidpublisher.googleapis.com/",
55755560
"schemas": {
55765561
"Abi": {
@@ -9001,6 +8986,10 @@
90018986
"description": "Whether this in-app product is declared as a product representing a tokenized digital asset.",
90028987
"type": "boolean"
90038988
},
8989+
"productTaxCategoryCode": {
8990+
"description": "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.",
8991+
"type": "string"
8992+
},
90048993
"taxRateInfoByRegionCode": {
90058994
"additionalProperties": {
90068995
"$ref": "RegionalTaxRateInfo"
@@ -9661,6 +9650,10 @@
96619650
"description": "Whether this one-time product is declared as a product representing a tokenized digital asset.",
96629651
"type": "boolean"
96639652
},
9653+
"productTaxCategoryCode": {
9654+
"description": "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.",
9655+
"type": "string"
9656+
},
96649657
"regionalTaxConfigs": {
96659658
"description": "Regional tax configuration.",
96669659
"items": {
@@ -11885,6 +11878,10 @@
1188511878
"description": "Whether this subscription is declared as a product representing a tokenized digital asset.",
1188611879
"type": "boolean"
1188711880
},
11881+
"productTaxCategoryCode": {
11882+
"description": "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.",
11883+
"type": "string"
11884+
},
1188811885
"taxRateInfoByRegionCode": {
1188911886
"additionalProperties": {
1189011887
"$ref": "RegionalTaxRateInfo"

src/apis/androidpublisher/v3.ts

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2525,6 +2525,10 @@ export namespace androidpublisher_v3 {
25252525
* Whether this in-app product is declared as a product representing a tokenized digital asset.
25262526
*/
25272527
isTokenizedDigitalAsset?: boolean | null;
2528+
/**
2529+
* 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.
2530+
*/
2531+
productTaxCategoryCode?: string | null;
25282532
/**
25292533
* A mapping from region code to tax rate details. The keys are region codes as defined by Unicode's "CLDR".
25302534
*/
@@ -2977,6 +2981,10 @@ export namespace androidpublisher_v3 {
29772981
* Whether this one-time product is declared as a product representing a tokenized digital asset.
29782982
*/
29792983
isTokenizedDigitalAsset?: boolean | null;
2984+
/**
2985+
* 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.
2986+
*/
2987+
productTaxCategoryCode?: string | null;
29802988
/**
29812989
* Regional tax configuration.
29822990
*/
@@ -4548,6 +4556,10 @@ export namespace androidpublisher_v3 {
45484556
* Whether this subscription is declared as a product representing a tokenized digital asset.
45494557
*/
45504558
isTokenizedDigitalAsset?: boolean | null;
4559+
/**
4560+
* 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.
4561+
*/
4562+
productTaxCategoryCode?: string | null;
45514563
/**
45524564
* A mapping from region code to tax rate details. The keys are region codes as defined by Unicode's "CLDR".
45534565
*/
@@ -6820,8 +6832,6 @@ export namespace androidpublisher_v3 {
68206832
* changesNotSentForReview: 'placeholder-value',
68216833
* // Identifier of the edit.
68226834
* editId: 'placeholder-value',
6823-
* // Optional. The behavior of committing a new edit while a submission is already in review.
6824-
* inProgressReviewBehaviour: 'placeholder-value',
68256835
* // Package name of the app.
68266836
* packageName: 'placeholder-value',
68276837
* });
@@ -7497,10 +7507,6 @@ export namespace androidpublisher_v3 {
74977507
* Identifier of the edit.
74987508
*/
74997509
editId?: string;
7500-
/**
7501-
* Optional. The behavior of committing a new edit while a submission is already in review.
7502-
*/
7503-
inProgressReviewBehaviour?: string;
75047510
/**
75057511
* Package name of the app.
75067512
*/

0 commit comments

Comments
 (0)