seyfert 4.5.0 → 5.0.0

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 (230) hide show
  1. package/lib/api/Routes/cdn.d.ts +2 -2
  2. package/lib/api/Routes/guilds.d.ts +2 -2
  3. package/lib/api/Routes/invites.d.ts +2 -2
  4. package/lib/api/api.d.ts +20 -8
  5. package/lib/api/api.js +198 -44
  6. package/lib/api/shared.d.ts +30 -1
  7. package/lib/api/utils/constants.d.ts +1 -1
  8. package/lib/api/utils/constants.js +1 -1
  9. package/lib/api/utils/utils.d.ts +2 -1
  10. package/lib/api/utils/utils.js +1 -1
  11. package/lib/builders/Attachment.d.ts +1 -1
  12. package/lib/builders/Attachment.js +30 -8
  13. package/lib/builders/MediaGallery.d.ts +2 -2
  14. package/lib/builders/MediaGallery.js +10 -0
  15. package/lib/builders/Modal.d.ts +18 -8
  16. package/lib/builders/Modal.js +36 -7
  17. package/lib/builders/Poll.js +18 -0
  18. package/lib/builders/RadioGroup.d.ts +4 -3
  19. package/lib/builders/RadioGroup.js +24 -3
  20. package/lib/builders/SelectMenu.d.ts +8 -6
  21. package/lib/builders/SelectMenu.js +24 -3
  22. package/lib/builders/types.d.ts +3 -2
  23. package/lib/cache/adapters/default.d.ts +1 -1
  24. package/lib/cache/adapters/default.js +23 -26
  25. package/lib/cache/adapters/limited.d.ts +1 -0
  26. package/lib/cache/adapters/limited.js +47 -33
  27. package/lib/cache/index.d.ts +19 -25
  28. package/lib/cache/index.js +58 -6
  29. package/lib/cache/resources/bans.d.ts +1 -1
  30. package/lib/cache/resources/bans.js +4 -4
  31. package/lib/cache/resources/channels.d.ts +1 -1
  32. package/lib/cache/resources/channels.js +4 -4
  33. package/lib/cache/resources/default/base.d.ts +1 -1
  34. package/lib/cache/resources/default/base.js +8 -8
  35. package/lib/cache/resources/default/guild-based.d.ts +5 -5
  36. package/lib/cache/resources/default/guild-based.js +29 -16
  37. package/lib/cache/resources/default/guild-related.d.ts +5 -5
  38. package/lib/cache/resources/default/guild-related.js +14 -14
  39. package/lib/cache/resources/emojis.d.ts +1 -1
  40. package/lib/cache/resources/emojis.js +4 -4
  41. package/lib/cache/resources/guilds.js +28 -15
  42. package/lib/cache/resources/members.d.ts +1 -1
  43. package/lib/cache/resources/members.js +6 -6
  44. package/lib/cache/resources/messages.d.ts +7 -2
  45. package/lib/cache/resources/messages.js +43 -20
  46. package/lib/cache/resources/overwrites.d.ts +1 -1
  47. package/lib/cache/resources/overwrites.js +5 -8
  48. package/lib/cache/resources/roles.d.ts +1 -1
  49. package/lib/cache/resources/roles.js +4 -4
  50. package/lib/cache/resources/stickers.d.ts +1 -1
  51. package/lib/cache/resources/stickers.js +4 -4
  52. package/lib/cache/resources/users.js +4 -4
  53. package/lib/cache/resources/voice-states.d.ts +1 -1
  54. package/lib/cache/resources/voice-states.js +4 -4
  55. package/lib/client/base.d.ts +83 -24
  56. package/lib/client/base.js +594 -39
  57. package/lib/client/client.d.ts +28 -3
  58. package/lib/client/client.js +33 -9
  59. package/lib/client/collectors.d.ts +9 -8
  60. package/lib/client/collectors.js +19 -52
  61. package/lib/client/httpclient.d.ts +3 -0
  62. package/lib/client/index.d.ts +3 -1
  63. package/lib/client/index.js +4 -0
  64. package/lib/client/intents.d.ts +3 -0
  65. package/lib/client/intents.js +9 -0
  66. package/lib/client/plugins/api.d.ts +4 -0
  67. package/lib/client/plugins/api.js +550 -0
  68. package/lib/client/plugins/errors.d.ts +25 -0
  69. package/lib/client/plugins/errors.js +79 -0
  70. package/lib/client/plugins/order.d.ts +10 -0
  71. package/lib/client/plugins/order.js +32 -0
  72. package/lib/client/plugins/registry.d.ts +273 -0
  73. package/lib/client/plugins/registry.js +868 -0
  74. package/lib/client/plugins/shared.d.ts +23 -0
  75. package/lib/client/plugins/shared.js +193 -0
  76. package/lib/client/plugins/types.d.ts +398 -0
  77. package/lib/client/plugins/types.js +8 -0
  78. package/lib/client/plugins.d.ts +78 -0
  79. package/lib/client/plugins.js +558 -0
  80. package/lib/client/transformers.d.ts +33 -33
  81. package/lib/client/workerclient.d.ts +10 -1
  82. package/lib/client/workerclient.js +27 -17
  83. package/lib/collection.d.ts +10 -8
  84. package/lib/collection.js +19 -25
  85. package/lib/commands/applications/chat.d.ts +20 -18
  86. package/lib/commands/applications/chat.js +39 -14
  87. package/lib/commands/applications/chatcontext.d.ts +23 -15
  88. package/lib/commands/applications/chatcontext.js +23 -2
  89. package/lib/commands/applications/entryPoint.d.ts +4 -3
  90. package/lib/commands/applications/entryPoint.js +1 -1
  91. package/lib/commands/applications/entrycontext.d.ts +7 -9
  92. package/lib/commands/applications/entrycontext.js +3 -1
  93. package/lib/commands/applications/menu.d.ts +4 -3
  94. package/lib/commands/applications/menucontext.d.ts +7 -9
  95. package/lib/commands/applications/menucontext.js +3 -1
  96. package/lib/commands/applications/options.d.ts +23 -23
  97. package/lib/commands/applications/shared.d.ts +39 -17
  98. package/lib/commands/decorators.d.ts +50 -38
  99. package/lib/commands/decorators.js +15 -5
  100. package/lib/commands/handle.d.ts +19 -8
  101. package/lib/commands/handle.js +224 -143
  102. package/lib/commands/handler.d.ts +21 -8
  103. package/lib/commands/handler.js +157 -69
  104. package/lib/commands/index.d.ts +1 -0
  105. package/lib/commands/optionresolver.d.ts +2 -2
  106. package/lib/common/it/colors.js +12 -2
  107. package/lib/common/it/error.d.ts +9 -0
  108. package/lib/common/it/error.js +8 -0
  109. package/lib/common/it/fake-promise.d.ts +4 -0
  110. package/lib/common/it/fake-promise.js +10 -0
  111. package/lib/common/it/formatter.d.ts +14 -11
  112. package/lib/common/it/formatter.js +4 -3
  113. package/lib/common/it/logger.d.ts +7 -1
  114. package/lib/common/it/logger.js +24 -6
  115. package/lib/common/it/utils.d.ts +6 -8
  116. package/lib/common/it/utils.js +44 -42
  117. package/lib/common/shorters/application.d.ts +3 -3
  118. package/lib/common/shorters/application.js +3 -2
  119. package/lib/common/shorters/bans.d.ts +8 -4
  120. package/lib/common/shorters/bans.js +13 -5
  121. package/lib/common/shorters/channels.d.ts +4 -4
  122. package/lib/common/shorters/channels.js +4 -4
  123. package/lib/common/shorters/emojis.js +1 -0
  124. package/lib/common/shorters/guilds.d.ts +8 -8
  125. package/lib/common/shorters/guilds.js +14 -31
  126. package/lib/common/shorters/interaction.d.ts +1 -1
  127. package/lib/common/shorters/invites.d.ts +201 -201
  128. package/lib/common/shorters/members.d.ts +7 -7
  129. package/lib/common/shorters/members.js +13 -14
  130. package/lib/common/shorters/messages.d.ts +2 -2
  131. package/lib/common/shorters/soundboard.d.ts +5 -5
  132. package/lib/common/shorters/users.d.ts +1 -1
  133. package/lib/common/shorters/webhook.d.ts +3 -2
  134. package/lib/common/shorters/webhook.js +0 -7
  135. package/lib/common/types/options.d.ts +4 -0
  136. package/lib/common/types/util.d.ts +8 -0
  137. package/lib/common/types/write.d.ts +2 -1
  138. package/lib/components/BaseSelectMenuComponent.d.ts +1 -1
  139. package/lib/components/BaseSelectMenuComponent.js +1 -1
  140. package/lib/components/ButtonComponent.d.ts +3 -3
  141. package/lib/components/ChannelSelectMenuComponent.d.ts +2 -2
  142. package/lib/components/File.d.ts +1 -1
  143. package/lib/components/MediaGallery.d.ts +1 -1
  144. package/lib/components/MentionableSelectMenuComponent.d.ts +1 -1
  145. package/lib/components/RoleSelectMenuComponent.d.ts +1 -1
  146. package/lib/components/Separator.d.ts +1 -1
  147. package/lib/components/StringSelectMenuComponent.d.ts +1 -1
  148. package/lib/components/TextInputComponent.d.ts +1 -1
  149. package/lib/components/Thumbnail.d.ts +1 -1
  150. package/lib/components/UserSelectMenuComponent.d.ts +1 -1
  151. package/lib/components/componentcommand.d.ts +8 -7
  152. package/lib/components/componentcontext.d.ts +24 -36
  153. package/lib/components/componentcontext.js +7 -17
  154. package/lib/components/handler.d.ts +17 -7
  155. package/lib/components/handler.js +108 -49
  156. package/lib/components/index.d.ts +1 -0
  157. package/lib/components/index.js +1 -0
  158. package/lib/components/interactioncontext.d.ts +45 -0
  159. package/lib/components/interactioncontext.js +93 -0
  160. package/lib/components/modalcommand.d.ts +5 -4
  161. package/lib/components/modalcontext.d.ts +39 -20
  162. package/lib/components/modalcontext.js +59 -6
  163. package/lib/events/event.d.ts +9 -3
  164. package/lib/events/handler.d.ts +51 -6
  165. package/lib/events/handler.js +165 -36
  166. package/lib/events/hooks/application_command.d.ts +1 -1
  167. package/lib/events/hooks/auto_moderation.d.ts +2 -2
  168. package/lib/events/hooks/guild.d.ts +150 -150
  169. package/lib/events/hooks/interactions.d.ts +1 -1
  170. package/lib/events/hooks/invite.d.ts +20 -20
  171. package/lib/events/hooks/message.d.ts +27 -27
  172. package/lib/events/hooks/presence.d.ts +11 -11
  173. package/lib/events/hooks/soundboard.d.ts +6 -6
  174. package/lib/events/hooks/stage.d.ts +2 -2
  175. package/lib/events/hooks/subscriptions.d.ts +3 -3
  176. package/lib/events/hooks/thread.d.ts +30 -30
  177. package/lib/events/hooks/voice.d.ts +3 -4
  178. package/lib/events/hooks/voice.js +2 -1
  179. package/lib/events/utils.d.ts +4 -0
  180. package/lib/events/utils.js +59 -0
  181. package/lib/index.d.ts +9 -4
  182. package/lib/index.js +13 -8
  183. package/lib/langs/handler.d.ts +14 -11
  184. package/lib/langs/handler.js +46 -9
  185. package/lib/langs/router.d.ts +10 -3
  186. package/lib/structures/Application.d.ts +1 -1
  187. package/lib/structures/Emoji.d.ts +3 -3
  188. package/lib/structures/Emoji.js +2 -2
  189. package/lib/structures/Guild.d.ts +154 -154
  190. package/lib/structures/GuildBan.d.ts +4 -4
  191. package/lib/structures/GuildBan.js +3 -3
  192. package/lib/structures/GuildMember.d.ts +7 -7
  193. package/lib/structures/GuildMember.js +28 -7
  194. package/lib/structures/GuildRole.d.ts +1 -1
  195. package/lib/structures/GuildRole.js +2 -2
  196. package/lib/structures/Interaction.d.ts +11 -9
  197. package/lib/structures/Interaction.js +33 -12
  198. package/lib/structures/Message.d.ts +21 -14
  199. package/lib/structures/Message.js +29 -14
  200. package/lib/structures/User.d.ts +1 -1
  201. package/lib/structures/VoiceState.d.ts +4 -0
  202. package/lib/structures/VoiceState.js +13 -1
  203. package/lib/structures/Webhook.d.ts +9 -1
  204. package/lib/structures/Webhook.js +4 -1
  205. package/lib/structures/channels.d.ts +148 -134
  206. package/lib/structures/channels.js +27 -26
  207. package/lib/structures/extra/BitField.d.ts +4 -4
  208. package/lib/structures/extra/BitField.js +20 -4
  209. package/lib/structures/extra/DiscordBase.js +1 -1
  210. package/lib/structures/extra/Permissions.d.ts +2 -4
  211. package/lib/structures/extra/Permissions.js +1 -17
  212. package/lib/types/payloads/_interactions/responses.d.ts +2 -2
  213. package/lib/types/payloads/components.d.ts +4 -4
  214. package/lib/websocket/SharedTypes.d.ts +4 -4
  215. package/lib/websocket/constants/index.d.ts +1 -1
  216. package/lib/websocket/constants/index.js +3 -2
  217. package/lib/websocket/discord/events/memberUpdate.js +2 -2
  218. package/lib/websocket/discord/heartbeater.d.ts +1 -0
  219. package/lib/websocket/discord/heartbeater.js +7 -0
  220. package/lib/websocket/discord/shard.d.ts +2 -2
  221. package/lib/websocket/discord/shard.js +15 -13
  222. package/lib/websocket/discord/sharder.d.ts +8 -7
  223. package/lib/websocket/discord/sharder.js +25 -5
  224. package/lib/websocket/discord/shared.d.ts +19 -6
  225. package/lib/websocket/discord/socket/custom.js +5 -0
  226. package/lib/websocket/discord/worker.d.ts +1 -0
  227. package/lib/websocket/discord/worker.js +2 -0
  228. package/lib/websocket/discord/workermanager.d.ts +25 -11
  229. package/lib/websocket/discord/workermanager.js +41 -10
  230. package/package.json +12 -16
@@ -28,7 +28,7 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
28
28
  } | {
29
29
  key: "actions";
30
30
  newValue?: {
31
- type: import("../../types").AutoModerationActionType;
31
+ type: import("../..").AutoModerationActionType;
32
32
  metadata?: {
33
33
  channelId?: string | undefined;
34
34
  durationSeconds?: number | undefined;
@@ -36,7 +36,7 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
36
36
  } | undefined;
37
37
  }[] | undefined;
38
38
  oldValue?: {
39
- type: import("../../types").AutoModerationActionType;
39
+ type: import("../..").AutoModerationActionType;
40
40
  metadata?: {
41
41
  channelId?: string | undefined;
42
42
  durationSeconds?: number | undefined;
@@ -129,8 +129,8 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
129
129
  oldValue?: number | undefined;
130
130
  } | {
131
131
  key: "default_message_notifications";
132
- newValue?: import("../../types").GuildDefaultMessageNotifications | undefined;
133
- oldValue?: import("../../types").GuildDefaultMessageNotifications | undefined;
132
+ newValue?: import("../..").GuildDefaultMessageNotifications | undefined;
133
+ oldValue?: import("../..").GuildDefaultMessageNotifications | undefined;
134
134
  } | {
135
135
  key: "default_reaction_emoji";
136
136
  newValue?: {
@@ -175,12 +175,12 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
175
175
  oldValue?: boolean | undefined;
176
176
  } | {
177
177
  key: "entity_type";
178
- newValue?: import("../../types").GuildScheduledEventEntityType | undefined;
179
- oldValue?: import("../../types").GuildScheduledEventEntityType | undefined;
178
+ newValue?: import("../..").GuildScheduledEventEntityType | undefined;
179
+ oldValue?: import("../..").GuildScheduledEventEntityType | undefined;
180
180
  } | {
181
181
  key: "event_type";
182
- newValue?: import("../../types").AutoModerationRuleEventType | undefined;
183
- oldValue?: import("../../types").AutoModerationRuleEventType | undefined;
182
+ newValue?: import("../..").AutoModerationRuleEventType | undefined;
183
+ oldValue?: import("../..").AutoModerationRuleEventType | undefined;
184
184
  } | {
185
185
  key: "exempt_channels";
186
186
  newValue?: string[] | undefined;
@@ -191,24 +191,24 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
191
191
  oldValue?: string[] | undefined;
192
192
  } | {
193
193
  key: "expire_behavior";
194
- newValue?: import("../../types").IntegrationExpireBehavior | undefined;
195
- oldValue?: import("../../types").IntegrationExpireBehavior | undefined;
194
+ newValue?: import("../..").IntegrationExpireBehavior | undefined;
195
+ oldValue?: import("../..").IntegrationExpireBehavior | undefined;
196
196
  } | {
197
197
  key: "expire_grace_period";
198
198
  newValue?: number | undefined;
199
199
  oldValue?: number | undefined;
200
200
  } | {
201
201
  key: "explicit_content_filter";
202
- newValue?: import("../../types").GuildExplicitContentFilter | undefined;
203
- oldValue?: import("../../types").GuildExplicitContentFilter | undefined;
202
+ newValue?: import("../..").GuildExplicitContentFilter | undefined;
203
+ oldValue?: import("../..").GuildExplicitContentFilter | undefined;
204
204
  } | {
205
205
  key: "flags";
206
206
  newValue?: number | undefined;
207
207
  oldValue?: number | undefined;
208
208
  } | {
209
209
  key: "format_type";
210
- newValue?: import("../../types").StickerFormatType | undefined;
211
- oldValue?: import("../../types").StickerFormatType | undefined;
210
+ newValue?: import("../..").StickerFormatType | undefined;
211
+ oldValue?: import("../..").StickerFormatType | undefined;
212
212
  } | {
213
213
  key: "guild_id";
214
214
  newValue?: string | undefined;
@@ -255,8 +255,8 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
255
255
  oldValue?: boolean | undefined;
256
256
  } | {
257
257
  key: "mfa_level";
258
- newValue?: import("../../types").GuildMFALevel | undefined;
259
- oldValue?: import("../../types").GuildMFALevel | undefined;
258
+ newValue?: import("../..").GuildMFALevel | undefined;
259
+ oldValue?: import("../..").GuildMFALevel | undefined;
260
260
  } | {
261
261
  key: "mute";
262
262
  newValue?: boolean | undefined;
@@ -281,13 +281,13 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
281
281
  key: "permission_overwrites";
282
282
  newValue?: {
283
283
  id: string;
284
- type: import("../../types").OverwriteType;
284
+ type: import("../..").OverwriteType;
285
285
  allow: string;
286
286
  deny: string;
287
287
  }[] | undefined;
288
288
  oldValue?: {
289
289
  id: string;
290
- type: import("../../types").OverwriteType;
290
+ type: import("../..").OverwriteType;
291
291
  allow: string;
292
292
  deny: string;
293
293
  }[] | undefined;
@@ -309,8 +309,8 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
309
309
  oldValue?: boolean | undefined;
310
310
  } | {
311
311
  key: "privacy_level";
312
- newValue?: import("../../types").StageInstancePrivacyLevel | undefined;
313
- oldValue?: import("../../types").StageInstancePrivacyLevel | undefined;
312
+ newValue?: import("../..").StageInstancePrivacyLevel | undefined;
313
+ oldValue?: import("../..").StageInstancePrivacyLevel | undefined;
314
314
  } | {
315
315
  key: "prune_delete_days";
316
316
  newValue?: number | undefined;
@@ -341,12 +341,12 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
341
341
  oldValue?: string | undefined;
342
342
  } | {
343
343
  key: "status";
344
- newValue?: import("../../types").GuildScheduledEventStatus | undefined;
345
- oldValue?: import("../../types").GuildScheduledEventStatus | undefined;
344
+ newValue?: import("../..").GuildScheduledEventStatus | undefined;
345
+ oldValue?: import("../..").GuildScheduledEventStatus | undefined;
346
346
  } | {
347
347
  key: "system_channel_flags";
348
- newValue?: import("../../types").GuildSystemChannelFlags | undefined;
349
- oldValue?: import("../../types").GuildSystemChannelFlags | undefined;
348
+ newValue?: import("../..").GuildSystemChannelFlags | undefined;
349
+ oldValue?: import("../..").GuildSystemChannelFlags | undefined;
350
350
  } | {
351
351
  key: "system_channel_id";
352
352
  newValue?: string | undefined;
@@ -367,7 +367,7 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
367
367
  key: "trigger_metadata";
368
368
  newValue?: {
369
369
  keywordFilter?: string[] | undefined;
370
- presets?: import("../../types").AutoModerationRuleKeywordPresetType[] | undefined;
370
+ presets?: import("../..").AutoModerationRuleKeywordPresetType[] | undefined;
371
371
  allowList?: string[] | undefined;
372
372
  regexPatterns?: string[] | undefined;
373
373
  mentionTotalLimit?: number | undefined;
@@ -375,7 +375,7 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
375
375
  } | undefined;
376
376
  oldValue?: {
377
377
  keywordFilter?: string[] | undefined;
378
- presets?: import("../../types").AutoModerationRuleKeywordPresetType[] | undefined;
378
+ presets?: import("../..").AutoModerationRuleKeywordPresetType[] | undefined;
379
379
  allowList?: string[] | undefined;
380
380
  regexPatterns?: string[] | undefined;
381
381
  mentionTotalLimit?: number | undefined;
@@ -383,8 +383,8 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
383
383
  } | undefined;
384
384
  } | {
385
385
  key: "trigger_type";
386
- newValue?: import("../../types").AutoModerationRuleTriggerType | undefined;
387
- oldValue?: import("../../types").AutoModerationRuleTriggerType | undefined;
386
+ newValue?: import("../..").AutoModerationRuleTriggerType | undefined;
387
+ oldValue?: import("../..").AutoModerationRuleTriggerType | undefined;
388
388
  } | {
389
389
  key: "type";
390
390
  newValue?: string | number | undefined;
@@ -407,8 +407,8 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
407
407
  oldValue?: string | undefined;
408
408
  } | {
409
409
  key: "verification_level";
410
- newValue?: import("../../types").GuildVerificationLevel | undefined;
411
- oldValue?: import("../../types").GuildVerificationLevel | undefined;
410
+ newValue?: import("../..").GuildVerificationLevel | undefined;
411
+ oldValue?: import("../..").GuildVerificationLevel | undefined;
412
412
  } | {
413
413
  key: "volume";
414
414
  newValue?: number | undefined;
@@ -424,7 +424,7 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
424
424
  })[] | undefined;
425
425
  userId: string | null;
426
426
  id: string;
427
- actionType: import("../../types").AuditLogEvent;
427
+ actionType: import("../..").AuditLogEvent;
428
428
  options?: {
429
429
  autoModerationRuleName?: string | undefined;
430
430
  autoModerationRuleTriggerType?: "1" | "3" | "4" | "5" | "6" | undefined;
@@ -434,9 +434,9 @@ export declare const GUILD_AUDIT_LOG_ENTRY_CREATE: (_self: UsingClient, data: Ga
434
434
  messageId?: string | undefined;
435
435
  count?: string | undefined;
436
436
  id?: string | undefined;
437
- type?: import("../../types").AuditLogOptionsType | undefined;
437
+ type?: import("../..").AuditLogOptionsType | undefined;
438
438
  roleName?: string | undefined;
439
- integrationType?: import("../../types").APIGuildIntegrationType | undefined;
439
+ integrationType?: import("../..").APIGuildIntegrationType | undefined;
440
440
  status?: string | undefined;
441
441
  } | undefined;
442
442
  reason?: string | undefined;
@@ -474,9 +474,9 @@ export declare const GUILD_SCHEDULED_EVENT_CREATE: (_self: UsingClient, data: Ga
474
474
  description?: string | null | undefined;
475
475
  scheduledStartTime: string;
476
476
  scheduledEndTime: string | null;
477
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
478
- status: import("../../types").GuildScheduledEventStatus;
479
- entityType: import("../../types").GuildScheduledEventEntityType.StageInstance;
477
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
478
+ status: import("../..").GuildScheduledEventStatus;
479
+ entityType: import("../..").GuildScheduledEventEntityType.StageInstance;
480
480
  entityId: string | null;
481
481
  creator?: {
482
482
  id: string;
@@ -492,23 +492,23 @@ export declare const GUILD_SCHEDULED_EVENT_CREATE: (_self: UsingClient, data: Ga
492
492
  locale?: string | undefined;
493
493
  verified?: boolean | undefined;
494
494
  email?: string | null | undefined;
495
- flags?: import("../../types").UserFlags | undefined;
496
- premiumType?: import("../../types").UserPremiumType | undefined;
497
- publicFlags?: import("../../types").UserFlags | undefined;
498
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
499
- collectibles?: import("../../types").APICollectibles | null | undefined;
500
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
495
+ flags?: import("../..").UserFlags | undefined;
496
+ premiumType?: import("../..").UserPremiumType | undefined;
497
+ publicFlags?: import("../..").UserFlags | undefined;
498
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
499
+ collectibles?: import("../..").APICollectibles | null | undefined;
500
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
501
501
  } | undefined;
502
502
  userCount?: number | undefined;
503
503
  image?: string | null | undefined;
504
504
  recurrenceRule: {
505
505
  start: string;
506
506
  end: string | null;
507
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
507
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
508
508
  interval: number;
509
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
510
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
511
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
509
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
510
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
511
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
512
512
  byMonthDay: number[] | null;
513
513
  byYearDay: number[] | null;
514
514
  count: number | null;
@@ -523,9 +523,9 @@ export declare const GUILD_SCHEDULED_EVENT_CREATE: (_self: UsingClient, data: Ga
523
523
  description?: string | null | undefined;
524
524
  scheduledStartTime: string;
525
525
  scheduledEndTime: string | null;
526
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
527
- status: import("../../types").GuildScheduledEventStatus;
528
- entityType: import("../../types").GuildScheduledEventEntityType.Voice;
526
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
527
+ status: import("../..").GuildScheduledEventStatus;
528
+ entityType: import("../..").GuildScheduledEventEntityType.Voice;
529
529
  entityId: string | null;
530
530
  creator?: {
531
531
  id: string;
@@ -541,23 +541,23 @@ export declare const GUILD_SCHEDULED_EVENT_CREATE: (_self: UsingClient, data: Ga
541
541
  locale?: string | undefined;
542
542
  verified?: boolean | undefined;
543
543
  email?: string | null | undefined;
544
- flags?: import("../../types").UserFlags | undefined;
545
- premiumType?: import("../../types").UserPremiumType | undefined;
546
- publicFlags?: import("../../types").UserFlags | undefined;
547
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
548
- collectibles?: import("../../types").APICollectibles | null | undefined;
549
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
544
+ flags?: import("../..").UserFlags | undefined;
545
+ premiumType?: import("../..").UserPremiumType | undefined;
546
+ publicFlags?: import("../..").UserFlags | undefined;
547
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
548
+ collectibles?: import("../..").APICollectibles | null | undefined;
549
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
550
550
  } | undefined;
551
551
  userCount?: number | undefined;
552
552
  image?: string | null | undefined;
553
553
  recurrenceRule: {
554
554
  start: string;
555
555
  end: string | null;
556
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
556
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
557
557
  interval: number;
558
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
559
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
560
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
558
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
559
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
560
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
561
561
  byMonthDay: number[] | null;
562
562
  byYearDay: number[] | null;
563
563
  count: number | null;
@@ -574,9 +574,9 @@ export declare const GUILD_SCHEDULED_EVENT_CREATE: (_self: UsingClient, data: Ga
574
574
  description?: string | null | undefined;
575
575
  scheduledStartTime: string;
576
576
  scheduledEndTime: string | null;
577
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
578
- status: import("../../types").GuildScheduledEventStatus;
579
- entityType: import("../../types").GuildScheduledEventEntityType.External;
577
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
578
+ status: import("../..").GuildScheduledEventStatus;
579
+ entityType: import("../..").GuildScheduledEventEntityType.External;
580
580
  entityId: string | null;
581
581
  creator?: {
582
582
  id: string;
@@ -592,23 +592,23 @@ export declare const GUILD_SCHEDULED_EVENT_CREATE: (_self: UsingClient, data: Ga
592
592
  locale?: string | undefined;
593
593
  verified?: boolean | undefined;
594
594
  email?: string | null | undefined;
595
- flags?: import("../../types").UserFlags | undefined;
596
- premiumType?: import("../../types").UserPremiumType | undefined;
597
- publicFlags?: import("../../types").UserFlags | undefined;
598
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
599
- collectibles?: import("../../types").APICollectibles | null | undefined;
600
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
595
+ flags?: import("../..").UserFlags | undefined;
596
+ premiumType?: import("../..").UserPremiumType | undefined;
597
+ publicFlags?: import("../..").UserFlags | undefined;
598
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
599
+ collectibles?: import("../..").APICollectibles | null | undefined;
600
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
601
601
  } | undefined;
602
602
  userCount?: number | undefined;
603
603
  image?: string | null | undefined;
604
604
  recurrenceRule: {
605
605
  start: string;
606
606
  end: string | null;
607
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
607
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
608
608
  interval: number;
609
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
610
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
611
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
609
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
610
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
611
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
612
612
  byMonthDay: number[] | null;
613
613
  byYearDay: number[] | null;
614
614
  count: number | null;
@@ -624,9 +624,9 @@ export declare const GUILD_SCHEDULED_EVENT_UPDATE: (_self: UsingClient, data: Ga
624
624
  description?: string | null | undefined;
625
625
  scheduledStartTime: string;
626
626
  scheduledEndTime: string | null;
627
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
628
- status: import("../../types").GuildScheduledEventStatus;
629
- entityType: import("../../types").GuildScheduledEventEntityType.StageInstance;
627
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
628
+ status: import("../..").GuildScheduledEventStatus;
629
+ entityType: import("../..").GuildScheduledEventEntityType.StageInstance;
630
630
  entityId: string | null;
631
631
  creator?: {
632
632
  id: string;
@@ -642,23 +642,23 @@ export declare const GUILD_SCHEDULED_EVENT_UPDATE: (_self: UsingClient, data: Ga
642
642
  locale?: string | undefined;
643
643
  verified?: boolean | undefined;
644
644
  email?: string | null | undefined;
645
- flags?: import("../../types").UserFlags | undefined;
646
- premiumType?: import("../../types").UserPremiumType | undefined;
647
- publicFlags?: import("../../types").UserFlags | undefined;
648
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
649
- collectibles?: import("../../types").APICollectibles | null | undefined;
650
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
645
+ flags?: import("../..").UserFlags | undefined;
646
+ premiumType?: import("../..").UserPremiumType | undefined;
647
+ publicFlags?: import("../..").UserFlags | undefined;
648
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
649
+ collectibles?: import("../..").APICollectibles | null | undefined;
650
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
651
651
  } | undefined;
652
652
  userCount?: number | undefined;
653
653
  image?: string | null | undefined;
654
654
  recurrenceRule: {
655
655
  start: string;
656
656
  end: string | null;
657
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
657
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
658
658
  interval: number;
659
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
660
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
661
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
659
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
660
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
661
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
662
662
  byMonthDay: number[] | null;
663
663
  byYearDay: number[] | null;
664
664
  count: number | null;
@@ -673,9 +673,9 @@ export declare const GUILD_SCHEDULED_EVENT_UPDATE: (_self: UsingClient, data: Ga
673
673
  description?: string | null | undefined;
674
674
  scheduledStartTime: string;
675
675
  scheduledEndTime: string | null;
676
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
677
- status: import("../../types").GuildScheduledEventStatus;
678
- entityType: import("../../types").GuildScheduledEventEntityType.Voice;
676
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
677
+ status: import("../..").GuildScheduledEventStatus;
678
+ entityType: import("../..").GuildScheduledEventEntityType.Voice;
679
679
  entityId: string | null;
680
680
  creator?: {
681
681
  id: string;
@@ -691,23 +691,23 @@ export declare const GUILD_SCHEDULED_EVENT_UPDATE: (_self: UsingClient, data: Ga
691
691
  locale?: string | undefined;
692
692
  verified?: boolean | undefined;
693
693
  email?: string | null | undefined;
694
- flags?: import("../../types").UserFlags | undefined;
695
- premiumType?: import("../../types").UserPremiumType | undefined;
696
- publicFlags?: import("../../types").UserFlags | undefined;
697
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
698
- collectibles?: import("../../types").APICollectibles | null | undefined;
699
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
694
+ flags?: import("../..").UserFlags | undefined;
695
+ premiumType?: import("../..").UserPremiumType | undefined;
696
+ publicFlags?: import("../..").UserFlags | undefined;
697
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
698
+ collectibles?: import("../..").APICollectibles | null | undefined;
699
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
700
700
  } | undefined;
701
701
  userCount?: number | undefined;
702
702
  image?: string | null | undefined;
703
703
  recurrenceRule: {
704
704
  start: string;
705
705
  end: string | null;
706
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
706
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
707
707
  interval: number;
708
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
709
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
710
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
708
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
709
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
710
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
711
711
  byMonthDay: number[] | null;
712
712
  byYearDay: number[] | null;
713
713
  count: number | null;
@@ -724,9 +724,9 @@ export declare const GUILD_SCHEDULED_EVENT_UPDATE: (_self: UsingClient, data: Ga
724
724
  description?: string | null | undefined;
725
725
  scheduledStartTime: string;
726
726
  scheduledEndTime: string | null;
727
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
728
- status: import("../../types").GuildScheduledEventStatus;
729
- entityType: import("../../types").GuildScheduledEventEntityType.External;
727
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
728
+ status: import("../..").GuildScheduledEventStatus;
729
+ entityType: import("../..").GuildScheduledEventEntityType.External;
730
730
  entityId: string | null;
731
731
  creator?: {
732
732
  id: string;
@@ -742,23 +742,23 @@ export declare const GUILD_SCHEDULED_EVENT_UPDATE: (_self: UsingClient, data: Ga
742
742
  locale?: string | undefined;
743
743
  verified?: boolean | undefined;
744
744
  email?: string | null | undefined;
745
- flags?: import("../../types").UserFlags | undefined;
746
- premiumType?: import("../../types").UserPremiumType | undefined;
747
- publicFlags?: import("../../types").UserFlags | undefined;
748
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
749
- collectibles?: import("../../types").APICollectibles | null | undefined;
750
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
745
+ flags?: import("../..").UserFlags | undefined;
746
+ premiumType?: import("../..").UserPremiumType | undefined;
747
+ publicFlags?: import("../..").UserFlags | undefined;
748
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
749
+ collectibles?: import("../..").APICollectibles | null | undefined;
750
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
751
751
  } | undefined;
752
752
  userCount?: number | undefined;
753
753
  image?: string | null | undefined;
754
754
  recurrenceRule: {
755
755
  start: string;
756
756
  end: string | null;
757
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
757
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
758
758
  interval: number;
759
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
760
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
761
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
759
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
760
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
761
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
762
762
  byMonthDay: number[] | null;
763
763
  byYearDay: number[] | null;
764
764
  count: number | null;
@@ -774,9 +774,9 @@ export declare const GUILD_SCHEDULED_EVENT_DELETE: (_self: UsingClient, data: Ga
774
774
  description?: string | null | undefined;
775
775
  scheduledStartTime: string;
776
776
  scheduledEndTime: string | null;
777
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
778
- status: import("../../types").GuildScheduledEventStatus;
779
- entityType: import("../../types").GuildScheduledEventEntityType.StageInstance;
777
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
778
+ status: import("../..").GuildScheduledEventStatus;
779
+ entityType: import("../..").GuildScheduledEventEntityType.StageInstance;
780
780
  entityId: string | null;
781
781
  creator?: {
782
782
  id: string;
@@ -792,23 +792,23 @@ export declare const GUILD_SCHEDULED_EVENT_DELETE: (_self: UsingClient, data: Ga
792
792
  locale?: string | undefined;
793
793
  verified?: boolean | undefined;
794
794
  email?: string | null | undefined;
795
- flags?: import("../../types").UserFlags | undefined;
796
- premiumType?: import("../../types").UserPremiumType | undefined;
797
- publicFlags?: import("../../types").UserFlags | undefined;
798
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
799
- collectibles?: import("../../types").APICollectibles | null | undefined;
800
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
795
+ flags?: import("../..").UserFlags | undefined;
796
+ premiumType?: import("../..").UserPremiumType | undefined;
797
+ publicFlags?: import("../..").UserFlags | undefined;
798
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
799
+ collectibles?: import("../..").APICollectibles | null | undefined;
800
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
801
801
  } | undefined;
802
802
  userCount?: number | undefined;
803
803
  image?: string | null | undefined;
804
804
  recurrenceRule: {
805
805
  start: string;
806
806
  end: string | null;
807
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
807
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
808
808
  interval: number;
809
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
810
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
811
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
809
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
810
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
811
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
812
812
  byMonthDay: number[] | null;
813
813
  byYearDay: number[] | null;
814
814
  count: number | null;
@@ -823,9 +823,9 @@ export declare const GUILD_SCHEDULED_EVENT_DELETE: (_self: UsingClient, data: Ga
823
823
  description?: string | null | undefined;
824
824
  scheduledStartTime: string;
825
825
  scheduledEndTime: string | null;
826
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
827
- status: import("../../types").GuildScheduledEventStatus;
828
- entityType: import("../../types").GuildScheduledEventEntityType.Voice;
826
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
827
+ status: import("../..").GuildScheduledEventStatus;
828
+ entityType: import("../..").GuildScheduledEventEntityType.Voice;
829
829
  entityId: string | null;
830
830
  creator?: {
831
831
  id: string;
@@ -841,23 +841,23 @@ export declare const GUILD_SCHEDULED_EVENT_DELETE: (_self: UsingClient, data: Ga
841
841
  locale?: string | undefined;
842
842
  verified?: boolean | undefined;
843
843
  email?: string | null | undefined;
844
- flags?: import("../../types").UserFlags | undefined;
845
- premiumType?: import("../../types").UserPremiumType | undefined;
846
- publicFlags?: import("../../types").UserFlags | undefined;
847
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
848
- collectibles?: import("../../types").APICollectibles | null | undefined;
849
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
844
+ flags?: import("../..").UserFlags | undefined;
845
+ premiumType?: import("../..").UserPremiumType | undefined;
846
+ publicFlags?: import("../..").UserFlags | undefined;
847
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
848
+ collectibles?: import("../..").APICollectibles | null | undefined;
849
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
850
850
  } | undefined;
851
851
  userCount?: number | undefined;
852
852
  image?: string | null | undefined;
853
853
  recurrenceRule: {
854
854
  start: string;
855
855
  end: string | null;
856
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
856
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
857
857
  interval: number;
858
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
859
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
860
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
858
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
859
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
860
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
861
861
  byMonthDay: number[] | null;
862
862
  byYearDay: number[] | null;
863
863
  count: number | null;
@@ -874,9 +874,9 @@ export declare const GUILD_SCHEDULED_EVENT_DELETE: (_self: UsingClient, data: Ga
874
874
  description?: string | null | undefined;
875
875
  scheduledStartTime: string;
876
876
  scheduledEndTime: string | null;
877
- privacyLevel: import("../../types").GuildScheduledEventPrivacyLevel;
878
- status: import("../../types").GuildScheduledEventStatus;
879
- entityType: import("../../types").GuildScheduledEventEntityType.External;
877
+ privacyLevel: import("../..").GuildScheduledEventPrivacyLevel;
878
+ status: import("../..").GuildScheduledEventStatus;
879
+ entityType: import("../..").GuildScheduledEventEntityType.External;
880
880
  entityId: string | null;
881
881
  creator?: {
882
882
  id: string;
@@ -892,23 +892,23 @@ export declare const GUILD_SCHEDULED_EVENT_DELETE: (_self: UsingClient, data: Ga
892
892
  locale?: string | undefined;
893
893
  verified?: boolean | undefined;
894
894
  email?: string | null | undefined;
895
- flags?: import("../../types").UserFlags | undefined;
896
- premiumType?: import("../../types").UserPremiumType | undefined;
897
- publicFlags?: import("../../types").UserFlags | undefined;
898
- avatarDecorationData?: import("../../types").APIAvatarDecorationData | null | undefined;
899
- collectibles?: import("../../types").APICollectibles | null | undefined;
900
- primaryGuild?: import("../../types").APIUserPrimaryGuild | null | undefined;
895
+ flags?: import("../..").UserFlags | undefined;
896
+ premiumType?: import("../..").UserPremiumType | undefined;
897
+ publicFlags?: import("../..").UserFlags | undefined;
898
+ avatarDecorationData?: import("../..").APIAvatarDecorationData | null | undefined;
899
+ collectibles?: import("../..").APICollectibles | null | undefined;
900
+ primaryGuild?: import("../..").APIUserPrimaryGuild | null | undefined;
901
901
  } | undefined;
902
902
  userCount?: number | undefined;
903
903
  image?: string | null | undefined;
904
904
  recurrenceRule: {
905
905
  start: string;
906
906
  end: string | null;
907
- frequency: import("../../types").GuildScheduledEventRecurrenceRuleFrequency;
907
+ frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
908
908
  interval: number;
909
- byWeekday: import("../../types").GuildScheduledEventRecurrenceRuleWeekday[] | null;
910
- byNWeekday: import("../../types").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
911
- byMonth: import("../../types").GuildScheduledEventRecurrenceRuleMonth[] | null;
909
+ byWeekday: import("../..").GuildScheduledEventRecurrenceRuleWeekday[] | null;
910
+ byNWeekday: import("../..").GuildScheduledEventRecurrenceRuleNWeekday[] | null;
911
+ byMonth: import("../..").GuildScheduledEventRecurrenceRuleMonth[] | null;
912
912
  byMonthDay: number[] | null;
913
913
  byYearDay: number[] | null;
914
914
  count: number | null;
@@ -1,4 +1,4 @@
1
1
  import type { UsingClient } from '../../commands';
2
2
  import { BaseInteraction } from '../../structures';
3
3
  import type { GatewayInteractionCreateDispatchData } from '../../types';
4
- export declare const INTERACTION_CREATE: (self: UsingClient, data: GatewayInteractionCreateDispatchData) => import("../../structures").ModalSubmitInteraction<boolean> | import("../../structures").ButtonInteraction | import("../../structures").ChannelSelectMenuInteraction | import("../../structures").RoleSelectMenuInteraction | import("../../structures").MentionableSelectMenuInteraction | import("../../structures").UserSelectMenuInteraction | import("../../structures").StringSelectMenuInteraction<string[]> | import("../../structures").ChatInputCommandInteraction<boolean> | import("../../structures").UserCommandInteraction<boolean> | import("../../structures").MessageCommandInteraction<boolean> | import("../../structures").AutocompleteInteraction<boolean> | BaseInteraction<boolean, import("../../types").APIPingInteraction> | undefined;
4
+ export declare const INTERACTION_CREATE: (self: UsingClient, data: GatewayInteractionCreateDispatchData) => import("../..").ModalSubmitInteraction<boolean> | import("../..").ButtonInteraction | import("../..").ChannelSelectMenuInteraction | import("../..").RoleSelectMenuInteraction | import("../..").MentionableSelectMenuInteraction | import("../..").UserSelectMenuInteraction | import("../..").StringSelectMenuInteraction<string[]> | import("../..").ChatInputCommandInteraction<boolean> | import("../..").UserCommandInteraction<boolean> | import("../..").MessageCommandInteraction<boolean> | import("../..").AutocompleteInteraction<boolean, string | number> | BaseInteraction<boolean, import("../..").APIApplicationCommandInteraction>;