Skip to content

Commit

Permalink
feat(APIStageInstance): add guild_scheduled_event_id (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Mar 9, 2022
1 parent 854aa36 commit d06d2d6
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 d06d2d6

Please sign in to comment.