Skip to content

Commit

Permalink
feat(APISubscription): add renewal_sku_ids (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza authored Dec 18, 2024
1 parent 20f44ac commit fb7c6b8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v10/monetization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ export interface APISubscription {
* List of entitlements granted for this subscription
*/
entitlement_ids: Snowflake[];
/**
* List of SKUs that this user will be subscribed to at renewal
*/
renewal_sku_ids: Snowflake[] | null;
/**
* Start of the current subscription period
*/
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/monetization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ export interface APISubscription {
* List of entitlements granted for this subscription
*/
entitlement_ids: Snowflake[];
/**
* List of SKUs that this user will be subscribed to at renewal
*/
renewal_sku_ids: Snowflake[] | null;
/**
* Start of the current subscription period
*/
Expand Down
4 changes: 4 additions & 0 deletions payloads/v10/monetization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ export interface APISubscription {
* List of entitlements granted for this subscription
*/
entitlement_ids: Snowflake[];
/**
* List of SKUs that this user will be subscribed to at renewal
*/
renewal_sku_ids: Snowflake[] | null;
/**
* Start of the current subscription period
*/
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/monetization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ export interface APISubscription {
* List of entitlements granted for this subscription
*/
entitlement_ids: Snowflake[];
/**
* List of SKUs that this user will be subscribed to at renewal
*/
renewal_sku_ids: Snowflake[] | null;
/**
* Start of the current subscription period
*/
Expand Down

0 comments on commit fb7c6b8

Please sign in to comment.