feat(bot): add botBannerURL option to helpers.editBotProfile() (#4094)

This commit is contained in:
Awesome Stickz
2025-01-15 22:24:47 +05:30
committed by GitHub
parent 27808bea7d
commit 7fc1f12e4c
+3 -1
View File
@@ -862,7 +862,9 @@ export type BotHelpers<TProps extends TransformersDesiredProperties, TBehavior e
options: Partial<EditAutoModerationRuleOptions>,
reason?: string,
) => Promise<AutoModerationRule>
editBotProfile: (options: { username?: string; botAvatarURL?: string | null }) => Promise<SetupDesiredProps<User, TProps, TBehavior>>
editBotProfile: (options: { username?: string; botAvatarURL?: string | null; botBannerURL?: string | null }) => Promise<
SetupDesiredProps<User, TProps, TBehavior>
>
editChannel: (channelId: BigString, options: ModifyChannel, reason?: string) => Promise<SetupDesiredProps<Channel, TProps, TBehavior>>
editEmoji: (guildId: BigString, id: BigString, options: ModifyGuildEmoji, reason?: string) => Promise<SetupDesiredProps<Emoji, TProps, TBehavior>>
editApplicationEmoji: (id: BigString, options: ModifyApplicationEmoji) => Promise<SetupDesiredProps<Emoji, TProps, TBehavior>>