disgroove 1.3.1-dev.6068992 → 1.3.1-dev.71905cd

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/Client.d.ts +1 -2
  2. package/dist/Client.js +0 -2
  3. package/dist/Client.js.map +1 -1
  4. package/dist/constants.d.ts +1 -0
  5. package/dist/constants.js +1 -0
  6. package/dist/constants.js.map +1 -1
  7. package/dist/gateway/Shard.js +3 -68
  8. package/dist/gateway/Shard.js.map +1 -1
  9. package/dist/gateway/ShardsManager.d.ts +1 -2
  10. package/dist/gateway/ShardsManager.js +1 -2
  11. package/dist/gateway/ShardsManager.js.map +1 -1
  12. package/dist/rest/RequestsManager.js +1 -1
  13. package/dist/structures/Application.d.ts +35 -209
  14. package/dist/structures/Application.js +16 -16
  15. package/dist/structures/Application.js.map +1 -1
  16. package/dist/structures/ApplicationCommand.d.ts +3 -32
  17. package/dist/structures/ApplicationCommand.js.map +1 -1
  18. package/dist/structures/AuditLog.d.ts +8 -9
  19. package/dist/structures/AuditLog.js +42 -71
  20. package/dist/structures/AuditLog.js.map +1 -1
  21. package/dist/structures/ClientApplication.d.ts +34 -208
  22. package/dist/structures/ClientApplication.js +16 -16
  23. package/dist/structures/ClientApplication.js.map +1 -1
  24. package/dist/structures/Guild.d.ts +28 -116
  25. package/dist/structures/Guild.js +32 -93
  26. package/dist/structures/Guild.js.map +1 -1
  27. package/dist/structures/Interaction.js +6 -7
  28. package/dist/structures/Interaction.js.map +1 -1
  29. package/dist/structures/Message.js +6 -7
  30. package/dist/structures/Message.js.map +1 -1
  31. package/dist/types/audit-log.d.ts +8 -9
  32. package/dist/types/gateway-events.d.ts +7 -8
  33. package/dist/types/guild.d.ts +2 -3
  34. package/dist/types/interaction.d.ts +6 -7
  35. package/dist/utils/Util.d.ts +3 -1
  36. package/dist/utils/Util.js +30 -0
  37. package/dist/utils/Util.js.map +1 -1
  38. package/dist/utils/index.d.ts +0 -1
  39. package/dist/utils/index.js +0 -1
  40. package/dist/utils/index.js.map +1 -1
  41. package/package.json +1 -1
  42. package/test/index.ts +72 -0
  43. package/test/voice1.ts +67 -0
  44. package/test/voice2.ts +60 -0
@@ -1,7 +1,7 @@
1
1
  import { Base, User, ApplicationCommand, Team, Guild, TestEntitlement, Entitlement, SKU } from ".";
2
- import type { JSONInstallParams, JSONGuildApplicationCommandPermissions, RawApplication, JSONApplication, JSONApplicationCommandOptionChoice, JSONApplicationRoleConnectionMetadata } from "../types";
2
+ import type { JSONInstallParams, JSONGuildApplicationCommandPermissions, RawApplication, JSONApplication, JSONApplicationRoleConnectionMetadata, JSONApplicationCommandOption } from "../types";
3
3
  import type { Client } from "../Client";
4
- import type { ApplicationCommandOptionType, ApplicationCommandTypes, ApplicationFlags, ChannelTypes, Locale } from "../constants";
4
+ import type { ApplicationCommandTypes, ApplicationFlags, Locale } from "../constants";
5
5
  /** https://discord.com/developers/docs/resources/application */
6
6
  export declare class Application extends Base {
7
7
  protected raw: RawApplication;
@@ -31,128 +31,13 @@ export declare class Application extends Base {
31
31
  customInstallURL?: string;
32
32
  constructor(data: RawApplication, client: Client);
33
33
  protected patch(data: RawApplication): void;
34
- /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands */
35
- bulkEditGlobalApplicationCommands(commands: Array<{
36
- id?: string;
37
- name: string;
38
- nameLocalizations?: Partial<Record<Locale, string>> | null;
39
- description?: string;
40
- descriptionLocalizations?: Partial<Record<Locale, string>> | null;
41
- options?: Array<{
42
- type: ApplicationCommandOptionType;
43
- name: string;
44
- nameLocalizations?: Partial<Record<Locale, string>>;
45
- description: string;
46
- descriptionLocalizations?: Partial<Record<Locale, string>>;
47
- required?: boolean;
48
- choices?: Array<JSONApplicationCommandOptionChoice>;
49
- options?: Array<{
50
- type: ApplicationCommandOptionType;
51
- name: string;
52
- nameLocalizations?: Partial<Record<Locale, string>>;
53
- description: string;
54
- descriptionLocalizations?: Partial<Record<Locale, string>>;
55
- required?: boolean;
56
- choices?: Array<JSONApplicationCommandOptionChoice>;
57
- channelTypes?: Array<ChannelTypes>;
58
- minValue?: number;
59
- maxValue?: number;
60
- minLength?: number;
61
- maxLength?: number;
62
- autocomplete?: boolean;
63
- }>;
64
- channelTypes?: Array<ChannelTypes>;
65
- minValue?: number;
66
- maxValue?: number;
67
- minLength?: number;
68
- maxLength?: number;
69
- autocomplete?: boolean;
70
- }>;
71
- defaultMemberPermissions?: string | null;
72
- dmPermission?: boolean;
73
- defaultPermission?: boolean | null;
74
- type?: ApplicationCommandTypes;
75
- nsfw?: boolean;
76
- }>): Promise<Array<ApplicationCommand>>;
77
- /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-guild-application-commands */
78
- bulkEditGuildApplicationCommands(guildId: string, commands: Array<{
79
- id?: string;
80
- name?: string;
81
- nameLocalizations?: Partial<Record<Locale, string>> | null;
82
- description?: string;
83
- descriptionLocalizations?: Partial<Record<Locale, string>> | null;
84
- options?: Array<{
85
- type: ApplicationCommandOptionType;
86
- name: string;
87
- nameLocalizations?: Partial<Record<Locale, string>>;
88
- description: string;
89
- descriptionLocalizations?: Partial<Record<Locale, string>>;
90
- required?: boolean;
91
- choices?: Array<JSONApplicationCommandOptionChoice>;
92
- options?: Array<{
93
- type: ApplicationCommandOptionType;
94
- name: string;
95
- nameLocalizations?: Partial<Record<Locale, string>>;
96
- description: string;
97
- descriptionLocalizations?: Partial<Record<Locale, string>>;
98
- required?: boolean;
99
- choices?: Array<JSONApplicationCommandOptionChoice>;
100
- channelTypes?: Array<ChannelTypes>;
101
- minValue?: number;
102
- maxValue?: number;
103
- minLength?: number;
104
- maxLength?: number;
105
- autocomplete?: boolean;
106
- }>;
107
- channelTypes?: Array<ChannelTypes>;
108
- minValue?: number;
109
- maxValue?: number;
110
- minLength?: number;
111
- maxLength?: number;
112
- autocomplete?: boolean;
113
- }>;
114
- defaultMemberPermissions?: string | null;
115
- dmPermission?: boolean;
116
- defaultPermission?: boolean | null;
117
- type: ApplicationCommandTypes;
118
- nsfw?: boolean;
119
- }>): Promise<Array<ApplicationCommand>>;
120
34
  /** https://discord.com/developers/docs/interactions/application-commands#create-global-application-command */
121
35
  createGlobalApplicationCommand(options: {
122
36
  name: string;
123
37
  nameLocalizations?: Partial<Record<Locale, string>> | null;
124
38
  description?: string;
125
39
  descriptionLocalizations?: Partial<Record<Locale, string>> | null;
126
- options?: Array<{
127
- type: ApplicationCommandOptionType;
128
- name: string;
129
- nameLocalizations?: Partial<Record<Locale, string>>;
130
- description: string;
131
- descriptionLocalizations?: Partial<Record<Locale, string>>;
132
- required?: boolean;
133
- choices?: Array<JSONApplicationCommandOptionChoice>;
134
- options?: Array<{
135
- type: ApplicationCommandOptionType;
136
- name: string;
137
- nameLocalizations?: Partial<Record<Locale, string>>;
138
- description: string;
139
- descriptionLocalizations?: Partial<Record<Locale, string>>;
140
- required?: boolean;
141
- choices?: Array<JSONApplicationCommandOptionChoice>;
142
- channelTypes?: Array<ChannelTypes>;
143
- minValue?: number;
144
- maxValue?: number;
145
- minLength?: number;
146
- maxLength?: number;
147
- autocomplete?: boolean;
148
- }>;
149
- channelTypes?: Array<ChannelTypes>;
150
- minValue?: number;
151
- maxValue?: number;
152
- minLength?: number;
153
- maxLength?: number;
154
- autocomplete?: boolean;
155
- }>;
40
+ options?: Array<JSONApplicationCommandOption>;
156
41
  defaultMemberPermissions?: string | null;
157
42
  dmPermission?: boolean;
158
43
  defaultPermission?: boolean | null;
@@ -161,40 +46,11 @@ export declare class Application extends Base {
161
46
  }): Promise<ApplicationCommand>;
162
47
  /** https://discord.com/developers/docs/interactions/application-commands#create-guild-application-command */
163
48
  createGuildApplicationCommand(guildId: string, options: {
164
- name?: string;
49
+ name: string;
165
50
  nameLocalizations?: Partial<Record<Locale, string>> | null;
166
51
  description?: string;
167
52
  descriptionLocalizations?: Partial<Record<Locale, string>> | null;
168
- options?: Array<{
169
- type: ApplicationCommandOptionType;
170
- name: string;
171
- nameLocalizations?: Partial<Record<Locale, string>>;
172
- description: string;
173
- descriptionLocalizations?: Partial<Record<Locale, string>>;
174
- required?: boolean;
175
- choices?: Array<JSONApplicationCommandOptionChoice>;
176
- options?: Array<{
177
- type: ApplicationCommandOptionType;
178
- name: string;
179
- nameLocalizations?: Partial<Record<Locale, string>>;
180
- description: string;
181
- descriptionLocalizations?: Partial<Record<Locale, string>>;
182
- required?: boolean;
183
- choices?: Array<JSONApplicationCommandOptionChoice>;
184
- channelTypes?: Array<ChannelTypes>;
185
- minValue?: number;
186
- maxValue?: number;
187
- minLength?: number;
188
- maxLength?: number;
189
- autocomplete?: boolean;
190
- }>;
191
- channelTypes?: Array<ChannelTypes>;
192
- minValue?: number;
193
- maxValue?: number;
194
- minLength?: number;
195
- maxLength?: number;
196
- autocomplete?: boolean;
197
- }>;
53
+ options?: Array<JSONApplicationCommandOption>;
198
54
  defaultMemberPermissions?: string | null;
199
55
  dmPermission?: boolean;
200
56
  defaultPermission?: boolean | null;
@@ -235,36 +91,7 @@ export declare class Application extends Base {
235
91
  nameLocalizations?: Partial<Record<Locale, string>> | null;
236
92
  description?: string;
237
93
  descriptionLocalizations?: Partial<Record<Locale, string>> | null;
238
- options?: Array<{
239
- type: ApplicationCommandOptionType;
240
- name: string;
241
- nameLocalizations?: Partial<Record<Locale, string>>;
242
- description: string;
243
- descriptionLocalizations?: Partial<Record<Locale, string>>;
244
- required?: boolean;
245
- choices?: Array<JSONApplicationCommandOptionChoice>;
246
- options?: Array<{
247
- type: ApplicationCommandOptionType;
248
- name: string;
249
- nameLocalizations?: Partial<Record<Locale, string>>;
250
- description: string;
251
- descriptionLocalizations?: Partial<Record<Locale, string>>;
252
- required?: boolean;
253
- choices?: Array<JSONApplicationCommandOptionChoice>;
254
- channelTypes?: Array<ChannelTypes>;
255
- minValue?: number;
256
- maxValue?: number;
257
- minLength?: number;
258
- maxLength?: number;
259
- autocomplete?: boolean;
260
- }>;
261
- channelTypes?: Array<ChannelTypes>;
262
- minValue?: number;
263
- maxValue?: number;
264
- minLength?: number;
265
- maxLength?: number;
266
- autocomplete?: boolean;
267
- }>;
94
+ options?: Array<JSONApplicationCommandOption>;
268
95
  defaultMemberPermissions?: string | null;
269
96
  defaultPermission?: boolean | null;
270
97
  dmPermission?: boolean;
@@ -276,36 +103,7 @@ export declare class Application extends Base {
276
103
  nameLocalizations?: Partial<Record<Locale, string>> | null;
277
104
  description?: string;
278
105
  descriptionLocalizations?: Partial<Record<Locale, string>> | null;
279
- options?: Array<{
280
- type: ApplicationCommandOptionType;
281
- name: string;
282
- nameLocalizations?: Partial<Record<Locale, string>>;
283
- description: string;
284
- descriptionLocalizations?: Partial<Record<Locale, string>>;
285
- required?: boolean;
286
- choices?: Array<JSONApplicationCommandOptionChoice>;
287
- options?: Array<{
288
- type: ApplicationCommandOptionType;
289
- name: string;
290
- nameLocalizations?: Partial<Record<Locale, string>>;
291
- description: string;
292
- descriptionLocalizations?: Partial<Record<Locale, string>>;
293
- required?: boolean;
294
- choices?: Array<JSONApplicationCommandOptionChoice>;
295
- channelTypes?: Array<ChannelTypes>;
296
- minValue?: number;
297
- maxValue?: number;
298
- minLength?: number;
299
- maxLength?: number;
300
- autocomplete?: boolean;
301
- }>;
302
- channelTypes?: Array<ChannelTypes>;
303
- minValue?: number;
304
- maxValue?: number;
305
- minLength?: number;
306
- maxLength?: number;
307
- autocomplete?: boolean;
308
- }>;
106
+ options?: Array<JSONApplicationCommandOption>;
309
107
  defaultMemberPermissions?: string | null;
310
108
  defaultPermission?: boolean | null;
311
109
  dmPermission?: boolean;
@@ -341,6 +139,34 @@ export declare class Application extends Base {
341
139
  getApplicationRoleConnectionMetadataRecords(): Promise<Array<JSONApplicationRoleConnectionMetadata>>;
342
140
  /** https://discord.com/developers/docs/monetization/skus#list-skus */
343
141
  getSKUs(): Promise<Array<SKU>>;
142
+ /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands */
143
+ setGlobalApplicationCommands(commands: Array<{
144
+ id?: string;
145
+ name: string;
146
+ nameLocalizations?: Partial<Record<Locale, string>> | null;
147
+ description?: string;
148
+ descriptionLocalizations?: Partial<Record<Locale, string>> | null;
149
+ options?: Array<JSONApplicationCommandOption>;
150
+ defaultMemberPermissions?: string | null;
151
+ dmPermission?: boolean;
152
+ defaultPermission?: boolean | null;
153
+ type?: ApplicationCommandTypes;
154
+ nsfw?: boolean;
155
+ }>): Promise<Array<ApplicationCommand>>;
156
+ /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-guild-application-commands */
157
+ setGuildApplicationCommands(guildId: string, commands: Array<{
158
+ id?: string;
159
+ name: string;
160
+ nameLocalizations?: Partial<Record<Locale, string>> | null;
161
+ description?: string;
162
+ descriptionLocalizations?: Partial<Record<Locale, string>> | null;
163
+ options?: Array<JSONApplicationCommandOption>;
164
+ defaultMemberPermissions?: string | null;
165
+ dmPermission?: boolean;
166
+ defaultPermission?: boolean | null;
167
+ type: ApplicationCommandTypes;
168
+ nsfw?: boolean;
169
+ }>): Promise<Array<ApplicationCommand>>;
344
170
  /** https://discord.com/developers/docs/resources/application-role-connection-metadata#update-application-role-connection-metadata-records */
345
171
  updateApplicationRoleConnectionMetadataRecords(): Promise<Array<JSONApplicationRoleConnectionMetadata>>;
346
172
  toRaw(): RawApplication;
@@ -79,22 +79,6 @@ class Application extends _1.Base {
79
79
  if (data.custom_install_url !== undefined)
80
80
  this.customInstallURL = data.custom_install_url;
81
81
  }
82
- /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands */
83
- async bulkEditGlobalApplicationCommands(commands) {
84
- return this.client.rest
85
- .put(rest_1.Endpoints.applicationCommands(this.id), {
86
- json: commands.map((command) => this.client.util.applicationCommandToRaw(command)),
87
- })
88
- .then((response) => response.map((data) => new _1.ApplicationCommand(data, this.client)));
89
- }
90
- /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-guild-application-commands */
91
- async bulkEditGuildApplicationCommands(guildId, commands) {
92
- return this.client.rest
93
- .put(rest_1.Endpoints.applicationGuildCommands(this.id, guildId), {
94
- json: commands.map((command) => this.client.util.applicationCommandToRaw(command)),
95
- })
96
- .then((response) => response.map((data) => new _1.ApplicationCommand(data, this.client)));
97
- }
98
82
  /** https://discord.com/developers/docs/interactions/application-commands#create-global-application-command */
99
83
  async createGlobalApplicationCommand(options) {
100
84
  return new _1.ApplicationCommand(await this.client.rest.post(rest_1.Endpoints.applicationCommands(this.id), {
@@ -278,6 +262,22 @@ class Application extends _1.Base {
278
262
  .get(rest_1.Endpoints.applicationSKUs(this.id))
279
263
  .then((response) => response.map((data) => new _1.SKU(data, this.client)));
280
264
  }
265
+ /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands */
266
+ async setGlobalApplicationCommands(commands) {
267
+ return this.client.rest
268
+ .put(rest_1.Endpoints.applicationCommands(this.id), {
269
+ json: commands.map((command) => this.client.util.applicationCommandToRaw(command)),
270
+ })
271
+ .then((response) => response.map((data) => new _1.ApplicationCommand(data, this.client)));
272
+ }
273
+ /** https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-guild-application-commands */
274
+ async setGuildApplicationCommands(guildId, commands) {
275
+ return this.client.rest
276
+ .put(rest_1.Endpoints.applicationGuildCommands(this.id, guildId), {
277
+ json: commands.map((command) => this.client.util.applicationCommandToRaw(command)),
278
+ })
279
+ .then((response) => response.map((data) => new _1.ApplicationCommand(data, this.client)));
280
+ }
281
281
  /** https://discord.com/developers/docs/resources/application-role-connection-metadata#update-application-role-connection-metadata-records */
282
282
  async updateApplicationRoleConnectionMetadataRecords() {
283
283
  return this.client.rest
@@ -1 +1 @@
1
- {"version":3,"file":"Application.js","sourceRoot":"","sources":["../../src/structures/Application.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Application.js","sourceRoot":"","sources":["../../src/structures/Application.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import type { Client } from "../Client";
2
- import type { JSONApplicationCommand, JSONApplicationCommandOption, JSONApplicationCommandOptionChoice, JSONApplicationCommandPermission, JSONGuildApplicationCommandPermissions, RawApplicationCommand } from "../types";
3
- import type { ApplicationCommandOptionType, ApplicationCommandTypes, ChannelTypes, Locale } from "../constants";
2
+ import type { JSONApplicationCommand, JSONApplicationCommandOption, JSONApplicationCommandPermission, JSONGuildApplicationCommandPermissions, RawApplicationCommand } from "../types";
3
+ import type { ApplicationCommandTypes, Locale } from "../constants";
4
4
  import { Base } from ".";
5
5
  /** https://discord.com/developers/docs/interactions/application-commands */
6
6
  export declare class ApplicationCommand extends Base {
@@ -28,36 +28,7 @@ export declare class ApplicationCommand extends Base {
28
28
  nameLocalizations?: Partial<Record<Locale, string>> | null;
29
29
  description?: string;
30
30
  descriptionLocalizations?: Partial<Record<Locale, string>> | null;
31
- options?: Array<{
32
- type: ApplicationCommandOptionType;
33
- name: string;
34
- nameLocalizations?: Partial<Record<Locale, string>>;
35
- description: string;
36
- descriptionLocalizations?: Partial<Record<Locale, string>>;
37
- required?: boolean;
38
- choices?: Array<JSONApplicationCommandOptionChoice>;
39
- options: Array<{
40
- type: ApplicationCommandOptionType;
41
- name: string;
42
- nameLocalizations?: Partial<Record<Locale, string>>;
43
- description: string;
44
- descriptionLocalizations?: Partial<Record<Locale, string>>;
45
- required?: boolean;
46
- choices?: Array<JSONApplicationCommandOptionChoice>;
47
- channelTypes?: Array<ChannelTypes>;
48
- minValue?: number;
49
- maxValue?: number;
50
- minLength?: number;
51
- maxLength?: number;
52
- autocomplete?: boolean;
53
- }>;
54
- channelTypes?: Array<ChannelTypes>;
55
- minValue?: number;
56
- maxValue?: number;
57
- minLength?: number;
58
- maxLength?: number;
59
- autocomplete?: boolean;
60
- }>;
31
+ options?: Array<JSONApplicationCommandOption>;
61
32
  defaultMemberPermissions?: string | null;
62
33
  defaultPermission?: boolean | null;
63
34
  dmPermission?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ApplicationCommand.js","sourceRoot":"","sources":["../../src/structures/ApplicationCommand.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ApplicationCommand.js","sourceRoot":"","sources":["../../src/structures/ApplicationCommand.ts"],"names":[],"mappings":"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"}
@@ -1,19 +1,18 @@
1
1
  import { ApplicationCommand, AutoModerationRule, Channel, GuildScheduledEvent, Integration, User, Webhook } from ".";
2
2
  import type { Client } from "../Client";
3
3
  import type { JSONAuditLog, JSONAuditLogEntry, RawAuditLog } from "../types";
4
- import { Collection } from "../utils";
5
4
  /** https://discord.com/developers/docs/resources/audit-log */
6
5
  export declare class AuditLog {
7
6
  private client;
8
7
  private raw;
9
- applicationCommands: Collection<string, ApplicationCommand>;
10
- auditLogEntries: Collection<string, JSONAuditLogEntry>;
11
- autoModerationRules: Collection<string, AutoModerationRule>;
12
- guildScheduledEvents: Collection<string, GuildScheduledEvent>;
13
- integrations: Collection<string, Integration>;
14
- threads: Collection<string, Channel>;
15
- users: Collection<string, User>;
16
- webhooks: Collection<string, Webhook>;
8
+ applicationCommands: Array<ApplicationCommand>;
9
+ auditLogEntries: Array<JSONAuditLogEntry>;
10
+ autoModerationRules: Array<AutoModerationRule>;
11
+ guildScheduledEvents: Array<GuildScheduledEvent>;
12
+ integrations: Array<Integration>;
13
+ threads: Array<Channel>;
14
+ users: Array<User>;
15
+ webhooks: Array<Webhook>;
17
16
  constructor(data: RawAuditLog, client: Client);
18
17
  toString(): string;
19
18
  toRaw(): RawAuditLog;
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AuditLog = void 0;
4
4
  const _1 = require(".");
5
- const utils_1 = require("../utils");
6
5
  /** https://discord.com/developers/docs/resources/audit-log */
7
6
  class AuditLog {
8
7
  client;
@@ -18,57 +17,41 @@ class AuditLog {
18
17
  constructor(data, client) {
19
18
  this.client = client;
20
19
  this.raw = data;
21
- this.applicationCommands = new utils_1.Collection();
22
- this.auditLogEntries = new utils_1.Collection();
23
- this.autoModerationRules = new utils_1.Collection();
24
- this.guildScheduledEvents = new utils_1.Collection();
25
- this.integrations = new utils_1.Collection();
26
- this.threads = new utils_1.Collection();
27
- this.users = new utils_1.Collection();
28
- this.webhooks = new utils_1.Collection();
29
- for (const applicationCommand of data.application_commands)
30
- this.applicationCommands.set(applicationCommand.id, new _1.ApplicationCommand(applicationCommand, this.client));
31
- for (const auditLogEntry of data.audit_log_entries)
32
- this.auditLogEntries.set(auditLogEntry.id, {
33
- targetId: auditLogEntry.target_id,
34
- changes: auditLogEntry.changes?.map((change) => ({
35
- newValue: change.new_value,
36
- oldValue: change.old_value,
37
- key: change.key,
38
- })),
39
- userId: auditLogEntry.user_id,
40
- id: auditLogEntry.id,
41
- actionType: auditLogEntry.action_type,
42
- options: auditLogEntry.options !== undefined
43
- ? {
44
- applicationId: auditLogEntry.options.application_id,
45
- autoModerationRuleName: auditLogEntry.options.auto_moderation_rule_name,
46
- autoModerationRuleTriggerType: auditLogEntry.options.auto_moderation_rule_trigger_type,
47
- channelId: auditLogEntry.options.channel_id,
48
- count: auditLogEntry.options.count,
49
- deleteMemberDays: auditLogEntry.options.delete_member_days,
50
- id: auditLogEntry.options.id,
51
- membersRemoved: auditLogEntry.options.members_removed,
52
- messageId: auditLogEntry.options.message_id,
53
- roleName: auditLogEntry.options.role_name,
54
- type: auditLogEntry.options.type,
55
- integrationType: auditLogEntry.options.integration_type,
56
- }
57
- : undefined,
58
- reason: auditLogEntry.reason,
59
- });
60
- for (const autoModerationRule of data.auto_moderation_rules)
61
- this.autoModerationRules.set(autoModerationRule.id, new _1.AutoModerationRule(autoModerationRule, this.client));
62
- for (const guildScheduledEvent of data.guild_scheduled_events)
63
- this.guildScheduledEvents.set(guildScheduledEvent.id, new _1.GuildScheduledEvent(guildScheduledEvent, this.client));
64
- for (const integration of data.integrations)
65
- this.integrations.set(integration.id, new _1.Integration(integration, this.client));
66
- for (const thread of data.threads)
67
- this.threads.set(thread.id, new _1.Channel(thread, this.client));
68
- for (const user of data.users)
69
- this.users.set(user.id, new _1.User(user, this.client));
70
- for (const webhook of data.webhooks)
71
- this.webhooks.set(webhook.id, new _1.Webhook(webhook, this.client));
20
+ this.applicationCommands = data.application_commands.map((applicationCommand) => new _1.ApplicationCommand(applicationCommand, this.client));
21
+ this.auditLogEntries = data.audit_log_entries.map((auditLogEntry) => ({
22
+ targetId: auditLogEntry.target_id,
23
+ changes: auditLogEntry.changes?.map((change) => ({
24
+ newValue: change.new_value,
25
+ oldValue: change.old_value,
26
+ key: change.key,
27
+ })),
28
+ userId: auditLogEntry.user_id,
29
+ id: auditLogEntry.id,
30
+ actionType: auditLogEntry.action_type,
31
+ options: auditLogEntry.options !== undefined
32
+ ? {
33
+ applicationId: auditLogEntry.options.application_id,
34
+ autoModerationRuleName: auditLogEntry.options.auto_moderation_rule_name,
35
+ autoModerationRuleTriggerType: auditLogEntry.options.auto_moderation_rule_trigger_type,
36
+ channelId: auditLogEntry.options.channel_id,
37
+ count: auditLogEntry.options.count,
38
+ deleteMemberDays: auditLogEntry.options.delete_member_days,
39
+ id: auditLogEntry.options.id,
40
+ membersRemoved: auditLogEntry.options.members_removed,
41
+ messageId: auditLogEntry.options.message_id,
42
+ roleName: auditLogEntry.options.role_name,
43
+ type: auditLogEntry.options.type,
44
+ integrationType: auditLogEntry.options.integration_type,
45
+ }
46
+ : undefined,
47
+ reason: auditLogEntry.reason,
48
+ }));
49
+ this.autoModerationRules = data.auto_moderation_rules.map((autoModerationRule) => new _1.AutoModerationRule(autoModerationRule, this.client));
50
+ this.guildScheduledEvents = data.guild_scheduled_events.map((guildScheduledEvent) => new _1.GuildScheduledEvent(guildScheduledEvent, this.client));
51
+ this.integrations = data.integrations.map((integration) => new _1.Integration(integration, this.client));
52
+ this.threads = data.threads.map((thread) => new _1.Channel(thread, this.client));
53
+ this.users = data.users.map((user) => new _1.User(user, this.client));
54
+ this.webhooks = data.webhooks.map((webhook) => new _1.Webhook(webhook, this.client));
72
55
  }
73
56
  toString() {
74
57
  return `[${this.constructor.name}]`;
@@ -78,26 +61,14 @@ class AuditLog {
78
61
  }
79
62
  toJSON() {
80
63
  return {
81
- applicationCommands: new utils_1.Collection(this.applicationCommands?.map((applicationCommand) => [
82
- applicationCommand.id,
83
- applicationCommand.toJSON(),
84
- ])),
64
+ applicationCommands: this.applicationCommands.map((applicationCommand) => applicationCommand.toJSON()),
85
65
  auditLogEntries: this.auditLogEntries,
86
- autoModerationRules: new utils_1.Collection(this.autoModerationRules?.map((autoModerationRule) => [
87
- autoModerationRule.id,
88
- autoModerationRule.toJSON(),
89
- ])),
90
- guildScheduledEvents: new utils_1.Collection(this.guildScheduledEvents?.map((guildScheduledEvent) => [
91
- guildScheduledEvent.id,
92
- guildScheduledEvent.toJSON(),
93
- ])),
94
- integrations: new utils_1.Collection(this.integrations?.map((integration) => [
95
- integration.id,
96
- integration.toJSON(),
97
- ])),
98
- threads: new utils_1.Collection(this.threads?.map((thread) => [thread.id, thread.toJSON()])),
99
- users: new utils_1.Collection(this.users?.map((user) => [user.id, user.toJSON()])),
100
- webhooks: new utils_1.Collection(this.webhooks?.map((webhook) => [webhook.id, webhook.toJSON()])),
66
+ autoModerationRules: this.autoModerationRules.map((autoModerationRule) => autoModerationRule.toJSON()),
67
+ guildScheduledEvents: this.guildScheduledEvents.map((guildScheduledEvent) => guildScheduledEvent.toJSON()),
68
+ integrations: this.integrations.map((integration) => integration.toJSON()),
69
+ threads: this.threads.map((thread) => thread.toJSON()),
70
+ users: this.users.map((user) => user.toJSON()),
71
+ webhooks: this.webhooks.map((webhook) => webhook.toJSON()),
101
72
  };
102
73
  }
103
74
  }