Skip to content

Commit fb7c6b8

Browse files
authored
feat(APISubscription): add renewal_sku_ids (#1172)
1 parent 20f44ac commit fb7c6b8

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

deno/payloads/v10/monetization.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ export interface APISubscription {
177177
* List of entitlements granted for this subscription
178178
*/
179179
entitlement_ids: Snowflake[];
180+
/**
181+
* List of SKUs that this user will be subscribed to at renewal
182+
*/
183+
renewal_sku_ids: Snowflake[] | null;
180184
/**
181185
* Start of the current subscription period
182186
*/

deno/payloads/v9/monetization.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ export interface APISubscription {
177177
* List of entitlements granted for this subscription
178178
*/
179179
entitlement_ids: Snowflake[];
180+
/**
181+
* List of SKUs that this user will be subscribed to at renewal
182+
*/
183+
renewal_sku_ids: Snowflake[] | null;
180184
/**
181185
* Start of the current subscription period
182186
*/

payloads/v10/monetization.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ export interface APISubscription {
177177
* List of entitlements granted for this subscription
178178
*/
179179
entitlement_ids: Snowflake[];
180+
/**
181+
* List of SKUs that this user will be subscribed to at renewal
182+
*/
183+
renewal_sku_ids: Snowflake[] | null;
180184
/**
181185
* Start of the current subscription period
182186
*/

payloads/v9/monetization.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ export interface APISubscription {
177177
* List of entitlements granted for this subscription
178178
*/
179179
entitlement_ids: Snowflake[];
180+
/**
181+
* List of SKUs that this user will be subscribed to at renewal
182+
*/
183+
renewal_sku_ids: Snowflake[] | null;
180184
/**
181185
* Start of the current subscription period
182186
*/

0 commit comments

Comments
 (0)