Skip to content

Commit

Permalink
feat(APISubscription): add renewal_sku_ids
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza committed Dec 18, 2024
1 parent 20f44ac commit 281dd7d
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 281dd7d

Please sign in to comment.