@@ -194,7 +194,11 @@ export enum GatewayIntentBits {
194194 * @deprecated This is the old name for {@apilink GatewayIntentBits#GuildModeration}
195195 */
196196 GuildBans = GuildModeration ,
197- GuildEmojisAndStickers = 1 << 3 ,
197+ GuildExpressions = 1 << 3 ,
198+ /**
199+ * @deprecated This is the old name for {@apilink GatewayIntentBits#GuildExpressions}
200+ */
201+ GuildEmojisAndStickers = GuildExpressions ,
198202 GuildIntegrations = 1 << 4 ,
199203 GuildWebhooks = 1 << 5 ,
200204 GuildInvites = 1 << 6 ,
@@ -253,6 +257,7 @@ export enum GatewayDispatchEvents {
253257 GuildSoundboardSoundDelete = 'GUILD_SOUNDBOARD_SOUND_DELETE' ,
254258 GuildSoundboardSoundsUpdate = 'GUILD_SOUNDBOARD_SOUNDS_UPDATE' ,
255259 GuildSoundboardSoundUpdate = 'GUILD_SOUNDBOARD_SOUND_UPDATE' ,
260+ SoundboardSounds = 'SOUNDBOARD_SOUNDS' ,
256261 GuildStickersUpdate = 'GUILD_STICKERS_UPDATE' ,
257262 GuildUpdate = 'GUILD_UPDATE' ,
258263 IntegrationCreate = 'INTEGRATION_CREATE' ,
@@ -362,6 +367,7 @@ export type GatewayDispatchPayload =
362367 | GatewayPresenceUpdateDispatch
363368 | GatewayReadyDispatch
364369 | GatewayResumedDispatch
370+ | GatewaySoundboardSoundsDispatch
365371 | GatewayStageInstanceCreateDispatch
366372 | GatewayStageInstanceDeleteDispatch
367373 | GatewayStageInstanceUpdateDispatch
@@ -903,9 +909,17 @@ export interface GatewayGuildCreateDispatchData extends APIGuild {
903909 *
904910 * **This field is only sent within the [GUILD_CREATE](https://discord.com/developers/docs/topics/gateway-events#guild-create) event**
905911 *
906- * https://discord.com/developers/docs/resources/guild-scheduled-event#guild-scheduled-event-object
912+ * See https://discord.com/developers/docs/resources/guild-scheduled-event#guild-scheduled-event-object
907913 */
908914 guild_scheduled_events : APIGuildScheduledEvent [ ] ;
915+ /**
916+ * The soundboard sounds in the guild
917+ *
918+ * **This field is only sent within the [GUILD_CREATE](https://discord.com/developers/docs/topics/gateway-events#guild-create) event**
919+ *
920+ * See https://discord.com/developers/docs/resources/soundboard#soundboard-sound-object
921+ */
922+ soundboard_sounds : APISoundboardSound [ ] ;
909923}
910924
911925/**
@@ -1374,6 +1388,28 @@ export interface GatewayGuildSoundboardSoundsUpdateDispatchData {
13741388 guild_id : Snowflake ;
13751389}
13761390
1391+ /**
1392+ * https://discord.com/developers/docs/events/gateway-events#soundboard-sounds
1393+ */
1394+ export type GatewaySoundboardSoundsDispatch = DataPayload <
1395+ GatewayDispatchEvents . SoundboardSounds ,
1396+ GatewaySoundboardSoundsDispatchData
1397+ > ;
1398+
1399+ /**
1400+ * https://discord.com/developers/docs/events/gateway-events#soundboard-sounds
1401+ */
1402+ export interface GatewaySoundboardSoundsDispatchData {
1403+ /**
1404+ * The guild's soundboard sounds
1405+ */
1406+ soundboard_sounds : APISoundboardSound [ ] ;
1407+ /**
1408+ * The id of the guild
1409+ */
1410+ guild_id : Snowflake ;
1411+ }
1412+
13771413/**
13781414 * https://discord.com/developers/docs/topics/gateway-events#integration-create
13791415 */
0 commit comments