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 Mar 3, 2022
1 parent fc8a916 commit 191c8ec
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
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
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
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
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 191c8ec

Please sign in to comment.