Skip to content

Commit

Permalink
feat(RESTPostAPIStageInstanceJSONBody): add send_start_notification (
Browse files Browse the repository at this point in the history
  • Loading branch information
vvito7 committed Mar 29, 2022
1 parent 93eab11 commit b764e8d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/rest/v10/stageInstance.ts
Expand Up @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* @default GuildOnly
*/
privacy_level?: StageInstancePrivacyLevel;
/**
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v9/stageInstance.ts
Expand Up @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* @default GuildOnly
*/
privacy_level?: StageInstancePrivacyLevel;
/**
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v10/stageInstance.ts
Expand Up @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* @default GuildOnly
*/
privacy_level?: StageInstancePrivacyLevel;
/**
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v9/stageInstance.ts
Expand Up @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* @default GuildOnly
*/
privacy_level?: StageInstancePrivacyLevel;
/**
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean;
}

/**
Expand Down

0 comments on commit b764e8d

Please sign in to comment.