Skip to content

Commit 5c90b7f

Browse files
authored
revert: chore: deprecate client options presence (#10426)
Revert "chore: deprecate client options presence (#10419)" This reverts commit 8f97d2b.
1 parent f623e7a commit 5c90b7f

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed

packages/discord.js/src/client/Client.js

+1-14
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ const Status = require('../util/Status');
3232
const Sweepers = require('../util/Sweepers');
3333

3434
let deprecationEmittedForPremiumStickerPacks = false;
35-
let deprecationEmittedForClientPresence = false;
3635

3736
/**
3837
* The main hub for interacting with the Discord API, and the starting point for any bot.
@@ -140,7 +139,7 @@ class Client extends BaseClient {
140139
* @private
141140
* @type {ClientPresence}
142141
*/
143-
this.presence = new ClientPresence(this, this.options.ws.presence ?? this.options.presence);
142+
this.presence = new ClientPresence(this, this.options.presence);
144143

145144
Object.defineProperty(this, 'token', { writable: true });
146145
if (!this.token && 'DISCORD_TOKEN' in process.env) {
@@ -220,15 +219,6 @@ class Client extends BaseClient {
220219
this.emit(Events.Debug, `Provided token: ${this._censoredToken}`);
221220

222221
if (this.options.presence) {
223-
if (!deprecationEmittedForClientPresence) {
224-
process.emitWarning(
225-
'ClientOptions#presence is deprecated and will be removed. Use ClientOptions#ws#presence instead.',
226-
'DeprecationWarning',
227-
);
228-
229-
deprecationEmittedForClientPresence = true;
230-
}
231-
232222
this.options.ws.presence = this.presence._parse(this.options.presence);
233223
}
234224

@@ -557,9 +547,6 @@ class Client extends BaseClient {
557547
if (typeof options.ws !== 'object' || options.ws === null) {
558548
throw new DiscordjsTypeError(ErrorCodes.ClientInvalidOption, 'ws', 'an object');
559549
}
560-
if (typeof options.ws.presence !== 'object' || options.ws.presence === null) {
561-
throw new DiscordjsTypeError(ErrorCodes.ClientInvalidOption, 'ws.presence', 'an object');
562-
}
563550
if (typeof options.rest !== 'object' || options.rest === null) {
564551
throw new DiscordjsTypeError(ErrorCodes.ClientInvalidOption, 'rest', 'an object');
565552
}

packages/discord.js/src/util/Options.js

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ const { version } = require('../../package.json');
9191
* only set this if you know what you are doing</warn>
9292
* @property {BuildStrategyFunction} [buildStrategy] Builds the strategy to use for sharding
9393
* @property {IdentifyThrottlerFunction} [buildIdentifyThrottler] Builds the identify throttler to use for sharding
94-
* @property {PresenceData} [presence={}] Presence data to use upon login
9594
*/
9695

9796
/**

packages/discord.js/typings/index.d.ts

-3
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ import {
181181
APISelectMenuDefaultValue,
182182
SelectMenuDefaultValueType,
183183
InviteType,
184-
GatewayPresenceUpdateData,
185184
} from 'discord-api-types/v10';
186185
import { ChildProcess } from 'node:child_process';
187186
import { EventEmitter } from 'node:events';
@@ -5305,7 +5304,6 @@ export interface ClientOptions {
53055304
allowedMentions?: MessageMentionOptions;
53065305
partials?: readonly Partials[];
53075306
failIfNotExists?: boolean;
5308-
/** @deprecated Use {@link ClientOptions.ws.presence} instead */
53095307
presence?: PresenceData;
53105308
intents: BitFieldResolvable<GatewayIntentsString, number>;
53115309
waitGuildTimeout?: number;
@@ -6878,7 +6876,6 @@ export interface WebhookMessageCreateOptions extends Omit<MessageCreateOptions,
68786876
export interface WebSocketOptions {
68796877
large_threshold?: number;
68806878
version?: number;
6881-
presence?: GatewayPresenceUpdateData;
68826879
buildStrategy?(manager: WSWebSocketManager): IShardingStrategy;
68836880
buildIdentifyThrottler?(manager: WSWebSocketManager): Awaitable<IIdentifyThrottler>;
68846881
}

0 commit comments

Comments
 (0)