From b764e8dc1a92e254161f3a443e17148a81240b66 Mon Sep 17 00:00:00 2001 From: Vitor Date: Tue, 29 Mar 2022 19:28:25 +0100 Subject: [PATCH] feat(RESTPostAPIStageInstanceJSONBody): add `send_start_notification` (#378) --- deno/rest/v10/stageInstance.ts | 4 ++++ deno/rest/v9/stageInstance.ts | 4 ++++ rest/v10/stageInstance.ts | 4 ++++ rest/v9/stageInstance.ts | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/deno/rest/v10/stageInstance.ts b/deno/rest/v10/stageInstance.ts index 7929dd40..f2fcf104 100644 --- a/deno/rest/v10/stageInstance.ts +++ b/deno/rest/v10/stageInstance.ts @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody { * @default GuildOnly */ privacy_level?: StageInstancePrivacyLevel; + /** + * Notify @everyone that a stage instance has started + */ + send_start_notification?: boolean; } /** diff --git a/deno/rest/v9/stageInstance.ts b/deno/rest/v9/stageInstance.ts index 56295efd..1dc4e5ec 100644 --- a/deno/rest/v9/stageInstance.ts +++ b/deno/rest/v9/stageInstance.ts @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody { * @default GuildOnly */ privacy_level?: StageInstancePrivacyLevel; + /** + * Notify @everyone that a stage instance has started + */ + send_start_notification?: boolean; } /** diff --git a/rest/v10/stageInstance.ts b/rest/v10/stageInstance.ts index bcc405d7..c72056b6 100644 --- a/rest/v10/stageInstance.ts +++ b/rest/v10/stageInstance.ts @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody { * @default GuildOnly */ privacy_level?: StageInstancePrivacyLevel; + /** + * Notify @everyone that a stage instance has started + */ + send_start_notification?: boolean; } /** diff --git a/rest/v9/stageInstance.ts b/rest/v9/stageInstance.ts index 6b7dd0d8..02f0a3d3 100644 --- a/rest/v9/stageInstance.ts +++ b/rest/v9/stageInstance.ts @@ -20,6 +20,10 @@ export interface RESTPostAPIStageInstanceJSONBody { * @default GuildOnly */ privacy_level?: StageInstancePrivacyLevel; + /** + * Notify @everyone that a stage instance has started + */ + send_start_notification?: boolean; } /**