Skip to content

Commit 11d6949

Browse files
authoredAug 15, 2022
docs: fix broken discord support link (#8485)
1 parent 30e89a4 commit 11d6949

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎src/structures/StoreChannel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const GuildChannel = require('./GuildChannel');
55
/**
66
* Represents a guild store channel on Discord.
77
* <warn>Store channels have been removed from Discord. See
8-
* [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479)
8+
* [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647)
99
* for more information.</warn>
1010
* @extends {GuildChannel}
1111
*/

‎src/util/Constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ exports.ActivityTypes = createEnum(['PLAYING', 'STREAMING', 'LISTENING', 'WATCHI
635635
* * `GUILD_NEWS` - a guild news channel
636636
* * `GUILD_STORE` - a guild store channel
637637
* <warn>Store channels are deprecated and will be removed from Discord in March 2022. See
638-
* [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479)
638+
* [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647)
639639
* for more information.</warn>
640640
* * `GUILD_NEWS_THREAD` - a guild news channel's public thread channel
641641
* * `GUILD_PUBLIC_THREAD` - a guild text channel's public thread channel

‎typings/index.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ export class CategoryChannel extends GuildChannel {
553553
name: string,
554554
options: CategoryCreateChannelOptions & { type: T },
555555
): Promise<MappedChannelCategoryTypes[T]>;
556-
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */
556+
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */
557557
public createChannel(
558558
name: string,
559559
options: CategoryCreateChannelOptions & { type: 'GUILD_STORE' | ChannelTypes.GUILD_STORE },
@@ -2339,12 +2339,12 @@ export class StickerPack extends Base {
23392339
public bannerURL(options?: StaticImageURLOptions): string | null;
23402340
}
23412341

2342-
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */
2342+
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */
23432343
export class StoreChannel extends GuildChannel {
23442344
private constructor(guild: Guild, data?: RawGuildChannelData, client?: Client);
23452345
public createInvite(options?: CreateInviteOptions): Promise<Invite>;
23462346
public fetchInvites(cache?: boolean): Promise<Collection<string, Invite>>;
2347-
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */
2347+
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */
23482348
public clone(options?: GuildChannelCloneOptions): Promise<this>;
23492349
public nsfw: boolean;
23502350
public type: 'GUILD_STORE';
@@ -3219,7 +3219,7 @@ export class GuildChannelManager extends CachedManager<Snowflake, GuildBasedChan
32193219
options: GuildChannelCreateOptions & { type: T },
32203220
): Promise<MappedGuildChannelTypes[T]>;
32213221

3222-
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/4414590563479) for more information */
3222+
/** @deprecated See [Self-serve Game Selling Deprecation](https://support-dev.discord.com/hc/en-us/articles/6309018858647) for more information */
32233223
public create(
32243224
name: string,
32253225
options: GuildChannelCreateOptions & { type: 'GUILD_STORE' | ChannelTypes.GUILD_STORE },

0 commit comments

Comments
 (0)
Please sign in to comment.