Skip to content

Commit

Permalink
feat(APIStageInstance): add guild_scheduled_event_id
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Feb 28, 2022
1 parent fc8a916 commit a378fc3
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/stageInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export interface APIStageInstance {
* @deprecated
*/
discoverable_disabled: boolean;
/**
* The id of the scheduled event for this Stage instance
*/
guild_scheduled_event_id?: Snowflake;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/stageInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export interface APIStageInstance {
* @deprecated
*/
discoverable_disabled: boolean;
/**
* The id of the scheduled event for this Stage instance
*/
guild_scheduled_event_id?: Snowflake;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v10/stageInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export interface APIStageInstance {
* @deprecated
*/
discoverable_disabled: boolean;
/**
* The id of the scheduled event for this Stage instance
*/
guild_scheduled_event_id?: Snowflake;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/stageInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export interface APIStageInstance {
* @deprecated
*/
discoverable_disabled: boolean;
/**
* The id of the scheduled event for this Stage instance
*/
guild_scheduled_event_id?: Snowflake;
}

/**
Expand Down

0 comments on commit a378fc3

Please sign in to comment.