diff --git a/packages/bot/src/transformers/types.ts b/packages/bot/src/transformers/types.ts index e85deaff2..49fb1e5df 100644 --- a/packages/bot/src/transformers/types.ts +++ b/packages/bot/src/transformers/types.ts @@ -1814,7 +1814,13 @@ export interface Nameplate { export interface UserPrimaryGuild { /** The id of the primary guild */ identityGuildId?: bigint - /** Whether the user is displaying the primary guild's server tag. This can be undefined if the system clears the identity, e.g. because the server no longer supports tags. */ + /** + * Whether the user is displaying the primary guild's server tag. + * + * @remarks + * This can be `undefined` if the system clears the identity, e.g. because the server no longer supports tags. + * This will be `false` if the user manually removes their tag. + */ identityEnabled?: boolean /** The text of the user's server tag. Limited to 4 characters */ tag?: string diff --git a/packages/types/src/discord/user.ts b/packages/types/src/discord/user.ts index 9818dae53..f77c4d54f 100644 --- a/packages/types/src/discord/user.ts +++ b/packages/types/src/discord/user.ts @@ -75,7 +75,13 @@ export enum PremiumTypes { export interface DiscordUserPrimaryGuild { /** The id of the primary guild */ identity_guild_id: string | null - /** Whether the user is displaying the primary guild's server tag. This can be `null` if the system clears the identity, e.g. because the server no longer supports tags. */ + /** + * Whether the user is displaying the primary guild's server tag. + * + * @remarks + * This can be `null` if the system clears the identity, e.g. because the server no longer supports tags. + * This will be `false` if the user manually removes their tag. + */ identity_enabled: boolean | null /** The text of the user's server tag. Limited to 4 characters */ tag: string | null