From 11d69491e0b732bcadb54c1f39d0f6ca17d2f75f Mon Sep 17 00:00:00 2001
From: GodderE2D <55918888+GodderE2D@users.noreply.github.com>
Date: Mon, 15 Aug 2022 23:53:11 +1000
Subject: [PATCH] docs: fix broken discord support link (#8485)
---
src/structures/StoreChannel.js | 2 +-
src/util/Constants.js | 2 +-
typings/index.d.ts | 8 ++++----
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/structures/StoreChannel.js b/src/structures/StoreChannel.js
index 3db1e40c2..4501fcbc0 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 4b2cba91c..6988c1ffa 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 bd8b15302..9f6bf8cdd 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 },