diff --git a/src/structures/StoreChannel.js b/src/structures/StoreChannel.js index 3db1e40c2bbd..4501fcbc0874 100644 --- a/src/structures/StoreChannel.js +++ b/src/structures/StoreChannel.js @@ -5,7 +5,7 @@ const GuildChannel = require('./GuildChannel'); /** * Represents a guild store channel on Discord. * Store channels have been removed from Discord. See - * [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) + * [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) * for more information. * @extends {GuildChannel} */ diff --git a/src/util/Constants.js b/src/util/Constants.js index 4b2cba91c261..6988c1ffadaf 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -635,7 +635,7 @@ exports.ActivityTypes = createEnum(['PLAYING', 'STREAMING', 'LISTENING', 'WATCHI * * `GUILD_NEWS` - a guild news channel * * `GUILD_STORE` - a guild store channel * Store channels are deprecated and will be removed from Discord in March 2022. See - * [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) + * [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) * for more information. * * `GUILD_NEWS_THREAD` - a guild news channel's public thread channel * * `GUILD_PUBLIC_THREAD` - a guild text channel's public thread channel diff --git a/typings/index.d.ts b/typings/index.d.ts index bd8b15302198..9f6bf8cdd703 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -553,7 +553,7 @@ export class CategoryChannel extends GuildChannel { name: string, options: CategoryCreateChannelOptions & { type: T }, ): Promise; - /** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */ + /** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */ public createChannel( name: string, options: CategoryCreateChannelOptions & { type: 'GUILD_STORE' | ChannelTypes.GUILD_STORE }, @@ -2339,12 +2339,12 @@ export class StickerPack extends Base { public bannerURL(options?: StaticImageURLOptions): string | null; } -/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */ +/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */ export class StoreChannel extends GuildChannel { private constructor(guild: Guild, data?: RawGuildChannelData, client?: Client); public createInvite(options?: CreateInviteOptions): Promise; public fetchInvites(cache?: boolean): Promise>; - /** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */ + /** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */ public clone(options?: GuildChannelCloneOptions): Promise; public nsfw: boolean; public type: 'GUILD_STORE'; @@ -3219,7 +3219,7 @@ export class GuildChannelManager extends CachedManager; - /** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */ + /** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */ public create( name: string, options: GuildChannelCreateOptions & { type: 'GUILD_STORE' | ChannelTypes.GUILD_STORE },