mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-19 13:03:31 +01:00
chore: deprecate client options presence (#10419)
* chore: deprecate client options presence * chore: deprecate in typings * fix: actually use the new prop * chore: nit Co-authored-by: Almeida <almeidx@pm.me> * fix: use correct prop --------- Co-authored-by: Almeida <almeidx@pm.me> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
3
packages/discord.js/typings/index.d.ts
vendored
3
packages/discord.js/typings/index.d.ts
vendored
@@ -181,6 +181,7 @@ import {
|
||||
APISelectMenuDefaultValue,
|
||||
SelectMenuDefaultValueType,
|
||||
InviteType,
|
||||
GatewayPresenceUpdateData,
|
||||
} from 'discord-api-types/v10';
|
||||
import { ChildProcess } from 'node:child_process';
|
||||
import { EventEmitter } from 'node:events';
|
||||
@@ -5304,6 +5305,7 @@ export interface ClientOptions {
|
||||
allowedMentions?: MessageMentionOptions;
|
||||
partials?: readonly Partials[];
|
||||
failIfNotExists?: boolean;
|
||||
/** @deprecated Use {@link ClientOptions.ws.presence} instead */
|
||||
presence?: PresenceData;
|
||||
intents: BitFieldResolvable<GatewayIntentsString, number>;
|
||||
waitGuildTimeout?: number;
|
||||
@@ -6876,6 +6878,7 @@ export interface WebhookMessageCreateOptions extends Omit<MessageCreateOptions,
|
||||
export interface WebSocketOptions {
|
||||
large_threshold?: number;
|
||||
version?: number;
|
||||
presence?: GatewayPresenceUpdateData;
|
||||
buildStrategy?(manager: WSWebSocketManager): IShardingStrategy;
|
||||
buildIdentifyThrottler?(manager: WSWebSocketManager): Awaitable<IIdentifyThrottler>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user