Skip to content

Commit 6a02340

Browse files
yoshi-automationfeywind
authored andcommitted
feat(paymentsresellersubscription): update the API
#### paymentsresellersubscription:v1 The following keys were added: - schemas.SubscriptionLineItem.properties.name.description - schemas.SubscriptionLineItem.properties.name.type The following keys were changed: - schemas.Subscription.properties.processingState.enum - schemas.Subscription.properties.processingState.enumDescriptions
1 parent fb62d8b commit 6a02340

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

discovery/paymentsresellersubscription-v1.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@
523523
}
524524
}
525525
},
526-
"revision": "20250929",
526+
"revision": "20251005",
527527
"rootUrl": "https://paymentsresellersubscription.googleapis.com/",
528528
"schemas": {
529529
"Amount": {
@@ -1321,12 +1321,14 @@
13211321
"enum": [
13221322
"PROCESSING_STATE_UNSPECIFIED",
13231323
"PROCESSING_STATE_CANCELLING",
1324-
"PROCESSING_STATE_RECURRING"
1324+
"PROCESSING_STATE_RECURRING",
1325+
"PROCESSING_STATE_RESUMING"
13251326
],
13261327
"enumDescriptions": [
13271328
"The processing state is unspecified.",
13281329
"The subscription is being cancelled.",
1329-
"The subscription is recurring."
1330+
"The subscription is recurring.",
1331+
"The subscription is being resumed."
13301332
],
13311333
"readOnly": true,
13321334
"type": "string"
@@ -1490,6 +1492,10 @@
14901492
},
14911493
"type": "array"
14921494
},
1495+
"name": {
1496+
"description": "Identifier. Resource name of the line item. Format: partners/{partner}/subscriptions/{subscription}/lineItems/{lineItem}",
1497+
"type": "string"
1498+
},
14931499
"oneTimeRecurrenceDetails": {
14941500
"$ref": "SubscriptionLineItemOneTimeRecurrenceDetails",
14951501
"description": "Output only. Details only set for a ONE_TIME recurrence line item.",

src/apis/paymentsresellersubscription/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -744,6 +744,10 @@ export namespace paymentsresellersubscription_v1 {
744744
* Optional. The promotions applied on the line item. It can be: - an introductory pricing promotion. - a free trial promotion. This feature is not enabled. If used, the request will be rejected. When used as input in Create or Provision API, specify its resource name only.
745745
*/
746746
lineItemPromotionSpecs?: Schema$SubscriptionPromotionSpec[];
747+
/**
748+
* Identifier. Resource name of the line item. Format: partners/{partner\}/subscriptions/{subscription\}/lineItems/{lineItem\}
749+
*/
750+
name?: string | null;
747751
/**
748752
* Output only. Details only set for a ONE_TIME recurrence line item.
749753
*/

0 commit comments

Comments
 (0)