Skip to content

Commit ecef5b4

Browse files
feat(RESTPostAPIStageInstanceJSONBody): add guild_scheduled_event_id (#656)
1 parent c71258c commit ecef5b4

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

deno/rest/v10/stageInstance.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
2323
* Notify @everyone that a stage instance has started
2424
*/
2525
send_start_notification?: boolean | undefined;
26+
/**
27+
* The guild scheduled event associated with this stage instance
28+
*/
29+
guild_scheduled_event_id?: Snowflake | undefined;
2630
}
2731

2832
/**

deno/rest/v9/stageInstance.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
2323
* Notify @everyone that a stage instance has started
2424
*/
2525
send_start_notification?: boolean | undefined;
26+
/**
27+
* The guild scheduled event associated with this stage instance
28+
*/
29+
guild_scheduled_event_id?: Snowflake | undefined;
2630
}
2731

2832
/**

rest/v10/stageInstance.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
2323
* Notify @everyone that a stage instance has started
2424
*/
2525
send_start_notification?: boolean | undefined;
26+
/**
27+
* The guild scheduled event associated with this stage instance
28+
*/
29+
guild_scheduled_event_id?: Snowflake | undefined;
2630
}
2731

2832
/**

rest/v9/stageInstance.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
2323
* Notify @everyone that a stage instance has started
2424
*/
2525
send_start_notification?: boolean | undefined;
26+
/**
27+
* The guild scheduled event associated with this stage instance
28+
*/
29+
guild_scheduled_event_id?: Snowflake | undefined;
2630
}
2731

2832
/**

0 commit comments

Comments
 (0)