Skip to content

Commit

Permalink
Properly expose soundboard (#727)
Browse files Browse the repository at this point in the history
* export soundboard

* [ci skip] fmt
  • Loading branch information
Lexedia authored Nov 1, 2024
1 parent 5d60dcc commit f8be20f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/nyxx.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ export 'src/builders/application_command.dart'
export 'src/builders/interaction_response.dart' show InteractionResponseBuilder, ModalBuilder, InteractionCallbackType;
export 'src/builders/entitlement.dart' show TestEntitlementBuilder, TestEntitlementType;
export 'src/builders/application.dart' show ApplicationUpdateBuilder, ApplicationIntegrationTypeConfigurationBuilder;
export 'src/builders/sound.dart' show SoundBuilder;
export 'src/builders/soundboard.dart' show SoundboardSoundBuilder, SoundboardSoundUpdateBuilder;

export 'src/cache/cache.dart' show Cache, CacheConfig, CacheManager;

Expand Down Expand Up @@ -151,6 +153,7 @@ export 'src/models/message/attachment.dart' show Attachment, AttachmentFlags;
export 'src/models/message/author.dart' show MessageAuthor;
export 'src/models/message/channel_mention.dart' show ChannelMention;
export 'src/models/message/embed.dart' show Embed, EmbedAuthor, EmbedField, EmbedFooter, EmbedImage, EmbedProvider, EmbedThumbnail, EmbedVideo, EmbedType;
export 'src/models/soundboard/soundboard.dart' show PartialSoundboardSound, SoundboardSound;

export 'src/models/message/message.dart'
show
Expand Down Expand Up @@ -312,7 +315,9 @@ export 'src/models/gateway/events/message.dart'
export 'src/models/gateway/events/presence.dart' show PresenceUpdateEvent, TypingStartEvent, UserUpdateEvent;
export 'src/models/gateway/events/ready.dart' show ReadyEvent, ResumedEvent;
export 'src/models/gateway/events/stage_instance.dart' show StageInstanceCreateEvent, StageInstanceDeleteEvent, StageInstanceUpdateEvent;
export 'src/models/gateway/events/voice.dart' show VoiceServerUpdateEvent, VoiceStateUpdateEvent;
export 'src/models/gateway/events/voice.dart' show VoiceServerUpdateEvent, VoiceStateUpdateEvent, VoiceChannelEffectSendEvent, AnimationType;
export 'src/models/gateway/events/soundboard.dart'
show SoundboardSoundCreateEvent, SoundboardSoundDeleteEvent, SoundboardSoundUpdateEvent, SoundboardSoundsUpdateEvent;
export 'src/models/gateway/events/webhook.dart' show WebhooksUpdateEvent;
export 'src/models/gateway/events/entitlement.dart' show EntitlementCreateEvent, EntitlementDeleteEvent, EntitlementUpdateEvent;
export 'src/models/presence.dart'
Expand Down

0 comments on commit f8be20f

Please sign in to comment.