File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -758,6 +758,7 @@ export interface CommandUser {
758758 username : string ;
759759 avatar : string | null ;
760760 avatar_decoration_data : AvatarDecorationData | null ;
761+ primary_guild ?: UserPrimaryGuild | null ;
761762 collectibles : UserCollectibles | null ;
762763 global_name : string | null ;
763764 discriminator : string ;
@@ -791,6 +792,13 @@ export interface UserNameplate {
791792 | 'white' ;
792793}
793794
795+ export interface UserPrimaryGuild {
796+ identity_guild_id : string | null ;
797+ identity_enabled : boolean | null ;
798+ tag : string | null ;
799+ badge : string | null ;
800+ }
801+
794802/** @private */
795803export interface ResolvedRole {
796804 color : number ;
Original file line number Diff line number Diff line change @@ -163,7 +163,8 @@ export function getDiscordEpoch(id: string) {
163163
164164/** The allowed mentions for a {@link Message}. */
165165export interface MessageAllowedMentions {
166- everyone : boolean ;
166+ everyone ?: boolean ;
167+ repliedUser ?: boolean ;
167168 roles ?: boolean | string [ ] ;
168169 users ?: boolean | string [ ] ;
169170}
@@ -174,6 +175,7 @@ export interface MessageAllowedMentions {
174175 */
175176export interface FormattedAllowedMentions {
176177 parse : ( 'everyone' | 'roles' | 'users' ) [ ] ;
178+ replied_user ?: boolean ;
177179 roles ?: string [ ] ;
178180 users ?: string [ ] ;
179181}
You can’t perform that action at this time.
0 commit comments