docs: update privilege intents link (#1227)

This commit is contained in:
Jiralite
2025-04-28 16:19:09 +02:00
committed by GitHub
parent 771745c424
commit f5f850eb10
8 changed files with 28 additions and 28 deletions

View File

@@ -227,11 +227,11 @@ export enum ApplicationFlags {
*/
Embedded = 1 << 17,
/**
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content}
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content}
*/
GatewayMessageContent = 1 << 18,
/**
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content},
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content},
* found in Bot Settings
*/
GatewayMessageContentLimited = 1 << 19,

View File

@@ -522,7 +522,7 @@ export interface APIMessage {
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
content: string;
/**
@@ -578,7 +578,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
attachments: APIAttachment[];
/**
@@ -590,7 +590,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
embeds: APIEmbed[];
/**
@@ -685,7 +685,7 @@ export interface APIMessage {
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
components?: APIMessageTopLevelComponent[];
/**
@@ -725,7 +725,7 @@ export interface APIMessage {
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
poll?: APIPoll;
/**

View File

@@ -227,11 +227,11 @@ export enum ApplicationFlags {
*/
Embedded = 1 << 17,
/**
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content}
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content}
*/
GatewayMessageContent = 1 << 18,
/**
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content},
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content},
* found in Bot Settings
*/
GatewayMessageContentLimited = 1 << 19,

View File

@@ -521,7 +521,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
content: string;
/**
@@ -576,7 +576,7 @@ export interface APIMessage {
* The `MESSAGE_CONTENT` privileged gateway intent is required for verified applications to receive a non-empty value from this field
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
attachments: APIAttachment[];
/**
@@ -587,7 +587,7 @@ export interface APIMessage {
* The `MESSAGE_CONTENT` privileged gateway intent is required for verified applications to receive a non-empty value from this field
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
embeds: APIEmbed[];
/**
@@ -681,7 +681,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
components?: APIMessageTopLevelComponent[];
/**
@@ -720,7 +720,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
poll?: APIPoll;
/**

View File

@@ -227,11 +227,11 @@ export enum ApplicationFlags {
*/
Embedded = 1 << 17,
/**
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content}
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content}
*/
GatewayMessageContent = 1 << 18,
/**
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content},
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content},
* found in Bot Settings
*/
GatewayMessageContentLimited = 1 << 19,

View File

@@ -522,7 +522,7 @@ export interface APIMessage {
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
content: string;
/**
@@ -578,7 +578,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
attachments: APIAttachment[];
/**
@@ -590,7 +590,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
embeds: APIEmbed[];
/**
@@ -685,7 +685,7 @@ export interface APIMessage {
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
components?: APIMessageTopLevelComponent[];
/**
@@ -725,7 +725,7 @@ export interface APIMessage {
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
* You also need to specify the intent bit value (`1 << 15`) if you are connecting to the gateway
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
poll?: APIPoll;
/**

View File

@@ -227,11 +227,11 @@ export enum ApplicationFlags {
*/
Embedded = 1 << 17,
/**
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content}
* Intent required for bots in 100 or more servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content}
*/
GatewayMessageContent = 1 << 18,
/**
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/en-us/articles/4404772028055 | message content},
* Intent required for bots in under 100 servers to receive {@link https://support-dev.discord.com/hc/articles/6207308062871 | message content},
* found in Bot Settings
*/
GatewayMessageContentLimited = 1 << 19,

View File

@@ -521,7 +521,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
content: string;
/**
@@ -576,7 +576,7 @@ export interface APIMessage {
* The `MESSAGE_CONTENT` privileged gateway intent is required for verified applications to receive a non-empty value from this field
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
attachments: APIAttachment[];
/**
@@ -587,7 +587,7 @@ export interface APIMessage {
* The `MESSAGE_CONTENT` privileged gateway intent is required for verified applications to receive a non-empty value from this field
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
embeds: APIEmbed[];
/**
@@ -681,7 +681,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
components?: APIMessageTopLevelComponent[];
/**
@@ -720,7 +720,7 @@ export interface APIMessage {
*
* In the Discord Developers Portal, you need to enable the toggle of this intent of your application in **Bot \> Privileged Gateway Intents**.
*
* @see {@link https://support-dev.discord.com/hc/articles/4404772028055}
* @see {@link https://support-dev.discord.com/hc/articles/6207308062871}
*/
poll?: APIPoll;
/**