mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 20:43:30 +01:00
src: add news and store channels, and missing guild props (#3168)
* src: Implement store and news channels! * src: Remove code dupe * src: Add missing guild properties * docs: Add a small notice that the channel type may also change * src: Remove re-creation of the MessageStore * lint: Unused Import * src: Requested changes for StoreChannels * typings: Fix typings * src: Moar guild updates * src: Set maximumPresence to the data prop, the already existent one, or default to 5000 * typings: afkChannel is a VC I keep confusing them, ffs Co-Authored-By: vladfrangu <kingdgrizzle@gmail.com> * docs: Document that maximumMembers and maximumPresences may be inaccurate before fetching * src Appels requested changes
This commit is contained in:
34
typings/index.d.ts
vendored
34
typings/index.d.ts
vendored
@@ -122,7 +122,7 @@ declare module 'discord.js' {
|
||||
public readonly createdTimestamp: number;
|
||||
public deleted: boolean;
|
||||
public id: Snowflake;
|
||||
public type: 'dm' | 'text' | 'voice' | 'category' | 'unknown';
|
||||
public type: 'dm' | 'text' | 'voice' | 'category' | 'news' | 'store' | 'unknown';
|
||||
public delete(reason?: string): Promise<Channel>;
|
||||
public fetch(): Promise<Channel>;
|
||||
public toString(): string;
|
||||
@@ -393,9 +393,7 @@ declare module 'discord.js' {
|
||||
private _sortedChannels(channel: Channel): Collection<Snowflake, GuildChannel>;
|
||||
private _memberSpeakUpdate(user: Snowflake, speaking: boolean): void;
|
||||
|
||||
protected setup(data: any): void;
|
||||
|
||||
public readonly afkChannel: VoiceChannel | null;
|
||||
public readonly afkChannel: VoiceChannel;
|
||||
public afkChannelID: Snowflake;
|
||||
public afkTimeout: number;
|
||||
public applicationID: Snowflake;
|
||||
@@ -432,13 +430,25 @@ declare module 'discord.js' {
|
||||
public readonly systemChannel: TextChannel | null;
|
||||
public systemChannelID: Snowflake;
|
||||
public verificationLevel: number;
|
||||
public maximumMembers: number;
|
||||
public maximumPresences: number;
|
||||
public vanityURLCode: string;
|
||||
public description: string;
|
||||
public banner: string;
|
||||
public widgetEnabled: boolean;
|
||||
public widgetChannelID: Snowflake;
|
||||
public readonly widgetChannel: TextChannel;
|
||||
public embedChannelID: Snowflake;
|
||||
public readonly embedChannel: TextChannel;
|
||||
public readonly verified: boolean;
|
||||
public readonly voiceConnection: VoiceConnection | null;
|
||||
public addMember(user: UserResolvable, options: AddGuildMemberOptions): Promise<GuildMember>;
|
||||
public bannerURL(options?: AvatarOptions): string;
|
||||
public createIntegration(data: IntegrationData, reason?: string): Promise<Guild>;
|
||||
public delete(): Promise<Guild>;
|
||||
public edit(data: GuildEditData, reason?: string): Promise<Guild>;
|
||||
public equals(guild: Guild): boolean;
|
||||
public fetch(): Promise<Guild>;
|
||||
public fetchAuditLogs(options?: GuildAuditLogsFetchOptions): Promise<GuildAuditLogs>;
|
||||
public fetchBans(): Promise<Collection<Snowflake, { user: User, reason: string }>>;
|
||||
public fetchIntegrations(): Promise<Collection<string, Integration>>;
|
||||
@@ -532,6 +542,11 @@ declare module 'discord.js' {
|
||||
public updateOverwrite(userOrRole: RoleResolvable | UserResolvable, options: PermissionOverwriteOption, reason?: string): Promise<GuildChannel>;
|
||||
}
|
||||
|
||||
export class StoreChannel extends GuildChannel {
|
||||
constructor(guild: Guild, data?: object);
|
||||
public nsfw: boolean;
|
||||
}
|
||||
|
||||
export class GuildEmoji extends Emoji {
|
||||
constructor(client: Client, data: object, guild: Guild);
|
||||
private _roles: string[];
|
||||
@@ -1064,6 +1079,17 @@ declare module 'discord.js' {
|
||||
public fetchWebhooks(): Promise<Collection<Snowflake, Webhook>>;
|
||||
}
|
||||
|
||||
export class NewsChannel extends TextBasedChannel(GuildChannel) {
|
||||
constructor(guild: Guild, data?: object);
|
||||
public readonly members: Collection<Snowflake, GuildMember>;
|
||||
public messages: MessageStore;
|
||||
public nsfw: boolean;
|
||||
public topic: string;
|
||||
public createWebhook(name: string, options?: { avatar?: BufferResolvable | Base64Resolvable, reason?: string }): Promise<Webhook>;
|
||||
public setNSFW(nsfw: boolean, reason?: string): Promise<NewsChannel>;
|
||||
public fetchWebhooks(): Promise<Collection<Snowflake, Webhook>>;
|
||||
}
|
||||
|
||||
export class User extends PartialTextBasedChannel(Base) {
|
||||
constructor(client: Client, data: object);
|
||||
public avatar: string | null;
|
||||
|
||||
Reference in New Issue
Block a user