feat: update documentation links to new domain (#4767)

* feat: update documentation links to new domain

* fix some links in the docs
This commit is contained in:
Fleny
2026-02-16 07:46:51 +05:30
committed by GitHub
parent 0e34445d68
commit a4a5f172d4
64 changed files with 784 additions and 784 deletions
@@ -76,7 +76,7 @@ export const GuildToggle = {
invitesDisabled: 1n << 29n,
/** Whether the guild has access to set an invite splash background */
inviteSplash: 1n << 5n,
/** Whether the guild has enabled [Membership Screening](https://discord.com/developers/docs/resources/guild#membership-screening-object) */
/** Whether the guild has enabled [Membership Screening](https://docs.discord.com/developers/resources/guild#membership-screening-object) */
memberVerificationGateEnabled: 1n << 19n,
/** Whether the guild has more soundboard sound slot */
moreSoundboard: 1n << 24n,
@@ -274,7 +274,7 @@ export class GuildToggles extends ToggleBitfieldBigint {
return this.has('welcomeScreenEnabled');
}
/** Whether the guild has enabled [Membership Screening](https://discord.com/developers/docs/resources/guild#membership-screening-object) */
/** Whether the guild has enabled [Membership Screening](https://docs.discord.com/developers/resources/guild#membership-screening-object) */
get memberVerificationGateEnabled(): boolean {
return this.has('memberVerificationGateEnabled');
}
+6 -6
View File
@@ -1734,7 +1734,7 @@ export interface InviteStageInstance {
}
export interface Sticker {
/** [Id of the sticker](https://discord.com/developers/docs/reference#image-formatting) */
/** [Id of the sticker](https://docs.discord.com/developers/reference#image-formatting) */
id: bigint;
/** Id of the pack the sticker is from */
packId?: bigint;
@@ -1744,9 +1744,9 @@ export interface Sticker {
description: string;
/** a unicode emoji representing the sticker's expression */
tags: string;
/** [type of sticker](https://discord.com/developers/docs/resources/sticker#sticker-object-sticker-types) */
/** [type of sticker](https://docs.discord.com/developers/resources/sticker#sticker-object-sticker-types) */
type: StickerTypes;
/** [Type of sticker format](https://discord.com/developers/docs/resources/sticker#sticker-object-sticker-format-types) */
/** [Type of sticker format](https://docs.discord.com/developers/resources/sticker#sticker-object-sticker-format-types) */
formatType: StickerFormatTypes;
/** Whether or not the sticker is available */
available?: boolean;
@@ -2003,7 +2003,7 @@ export interface Subscription {
country?: string;
}
/** https://discord.com/developers/docs/resources/soundboard#soundboard-sound-object-soundboard-sound-structure */
/** https://docs.discord.com/developers/resources/soundboard#soundboard-sound-object-soundboard-sound-structure */
export interface SoundboardSound {
/** The name of this sound */
name: string;
@@ -2023,7 +2023,7 @@ export interface SoundboardSound {
user?: User;
}
/** https://discord.com/developers/docs/resources/lobby#lobby-object-lobby-structure */
/** https://docs.discord.com/developers/resources/lobby#lobby-object-lobby-structure */
export interface Lobby {
/** The id of this channel */
id: bigint;
@@ -2037,7 +2037,7 @@ export interface Lobby {
linkedChannel?: Channel;
}
/** https://discord.com/developers/docs/resources/lobby#lobby-member-object-lobby-member-structure */
/** https://docs.discord.com/developers/resources/lobby#lobby-member-object-lobby-member-structure */
export interface LobbyMember {
/** The id of the user */
id: bigint;