Skip to content

Commit

Permalink
Commit from GitHub Actions (Export and compile structures)
Browse files Browse the repository at this point in the history
  • Loading branch information
Starman3787 committed Dec 28, 2024
1 parent 711e89c commit 8f6db8e
Show file tree
Hide file tree
Showing 40 changed files with 2,379 additions and 2,347 deletions.
4 changes: 2 additions & 2 deletions dist/src/structures/AuditLog.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ declare class AuditLog {
* @param {Client} client The client instance.
* @param {Object} data Audit log data from Discord.
* @param {Object} options Additional options for this structure.
* @param {Array<Object>?} options.users Resolved users who are involved with the audit log entries.
* @param {Array<Object>?} [options.users] Resolved users who are involved with the audit log entries.
* @param {String} options.guildId The ID of the guild that this audit log belongs to.
*/
constructor(client: Client, data: any, { users, guildId }?: {
users: Array<any> | null;
users?: Array<any> | null;
guildId: string;
});
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/AuditLog.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/src/structures/CategoryChannel.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ declare class CategoryChannel {
* @param {Object} data The raw channel data.
* @param {Object} options The additional options for this structure.
* @param {String} options.guildId The ID of the guild that this channel belongs to.
* @param {Boolean} options.nocache Whether this channel should be cached or not.
* @param {Boolean?} [options.nocache] Whether this channel should be cached or not.
*/
constructor(client: Client, data: any, { guildId, nocache }?: {
guildId: string;
nocache: boolean;
nocache?: boolean | null;
});
/**
* The ID of the channel.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/CategoryChannel.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/src/structures/Emoji.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ declare class Emoji {
* @param {Object} data The raw emoji data from Discord.
* @param {Object} options The options for this emoji.
* @param {String} options.guildId The id of the guild that the emoji belongs to.
* @param {Boolean?} options.nocache Whether this emoji should be cached or not.
* @param {Boolean?} [options.nocache] Whether this emoji should be cached or not.
*/
constructor(client: Client, data: any, { guildId, nocache }?: {
guildId: string;
nocache: boolean | null;
nocache?: boolean | null;
});
/**
* Whether the emoji requires colons.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/Emoji.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/structures/Guild.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ declare class Guild {
* @param {Client} client The client instance.
* @param {Object} data Raw guild data.
* @param {Object?} options The additional options for this structure.
* @param {Boolean?} options.nocache Whether this guild should be cached or not.
* @param {Boolean?} [options.nocache] Whether this guild should be cached or not.
* @see {@link https://discord.com/developers/docs/resources/guild#guild-object}
*/
constructor(client: Client, data: any, { nocache }?: any | null);
Expand Down
4 changes: 2 additions & 2 deletions dist/src/structures/Invite.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ declare class Invite {
* @param {Object} data The raw invite data from Discord.
* @param {Object} options Additional options for this structure.
* @param {String} options.guildId The id of the guild that the invite belongs to.
* @param {Boolean?} options.nocache Whether this invite should be cached or not.
* @param {Boolean?} [options.nocache] Whether this invite should be cached or not.
* @see {@link https://discord.com/developers/docs/resources/invite#invite-object-invite-structure}
*/
constructor(client: Client, data: any, { guildId, nocache }?: {
guildId: string;
nocache: boolean | null;
nocache?: boolean | null;
});
/**
* The id of the channel the invite is directed to.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/Invite.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/src/structures/Member.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ declare class Member {
* @param {Object} options Additional options for the member.
* @param {String} options.userId The id of the member.
* @param {String} options.guildId The id of the guild that the member belongs to.
* @param {User?} options.user A user object for this member.
* @param {Boolean?} options.nocache Whether this member should be cached.
* @param {User?} [options.user] A user object for this member.
* @param {Boolean?} [options.nocache] Whether this member should be cached.
*/
constructor(client: Client, data: any, { userId, guildId, user, nocache }?: {
userId: string;
guildId: string;
user: User | null;
nocache: boolean | null;
user?: User | null;
nocache?: boolean | null;
});
/**
* The id of the member.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/Member.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/src/structures/Message.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,15 +138,15 @@ declare class Message {
* @param {Object} options Additional options for this structure.
* @param {String} options.channelId The id of the channel that the message belongs to.
* @param {String} options.guildId The id of the guild that the channel belongs to.
* @param {Boolean?} options.nocache Whether this message should be cached or not.
* @param {Boolean?} options.ignoreExisting Whether to ignore existing messages in the cache.
* @param {Boolean?} [options.nocache] Whether this message should be cached or not.
* @param {Boolean?} [options.ignoreExisting] Whether to ignore existing messages in the cache.
* @see {@link https://discord.com/developers/docs/resources/channel#message-object}
*/
constructor(client: Client, data: any, { channelId, guildId, nocache, ignoreExisting }?: {
channelId: string;
guildId: string;
nocache: boolean | null;
ignoreExisting: boolean | null;
nocache?: boolean | null;
ignoreExisting?: boolean | null;
});
/**
* The timestamp for when this message was last edited.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/Message.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8f6db8e

Please sign in to comment.