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.
- package/lib/api/Routes/cdn.d.ts +2 -2
- package/lib/api/Routes/guilds.d.ts +2 -2
- package/lib/api/Routes/invites.d.ts +2 -2
- package/lib/api/api.d.ts +20 -8
- package/lib/api/api.js +198 -44
- package/lib/api/shared.d.ts +30 -1
- package/lib/api/utils/constants.d.ts +1 -1
- package/lib/api/utils/constants.js +1 -1
- package/lib/api/utils/utils.d.ts +2 -1
- package/lib/api/utils/utils.js +1 -1
- package/lib/builders/Attachment.d.ts +1 -1
- package/lib/builders/Attachment.js +30 -8
- package/lib/builders/MediaGallery.d.ts +2 -2
- package/lib/builders/MediaGallery.js +10 -0
- package/lib/builders/Modal.d.ts +18 -8
- package/lib/builders/Modal.js +36 -7
- package/lib/builders/Poll.js +18 -0
- package/lib/builders/RadioGroup.d.ts +4 -3
- package/lib/builders/RadioGroup.js +24 -3
- package/lib/builders/SelectMenu.d.ts +8 -6
- package/lib/builders/SelectMenu.js +24 -3
- package/lib/builders/types.d.ts +3 -2
- package/lib/cache/adapters/default.d.ts +1 -1
- package/lib/cache/adapters/default.js +23 -26
- package/lib/cache/adapters/limited.d.ts +1 -0
- package/lib/cache/adapters/limited.js +47 -33
- package/lib/cache/index.d.ts +19 -25
- package/lib/cache/index.js +58 -6
- package/lib/cache/resources/bans.d.ts +1 -1
- package/lib/cache/resources/bans.js +4 -4
- package/lib/cache/resources/channels.d.ts +1 -1
- package/lib/cache/resources/channels.js +4 -4
- package/lib/cache/resources/default/base.d.ts +1 -1
- package/lib/cache/resources/default/base.js +8 -8
- package/lib/cache/resources/default/guild-based.d.ts +5 -5
- package/lib/cache/resources/default/guild-based.js +29 -16
- package/lib/cache/resources/default/guild-related.d.ts +5 -5
- package/lib/cache/resources/default/guild-related.js +14 -14
- package/lib/cache/resources/emojis.d.ts +1 -1
- package/lib/cache/resources/emojis.js +4 -4
- package/lib/cache/resources/guilds.js +28 -15
- package/lib/cache/resources/members.d.ts +1 -1
- package/lib/cache/resources/members.js +6 -6
- package/lib/cache/resources/messages.d.ts +7 -2
- package/lib/cache/resources/messages.js +43 -20
- package/lib/cache/resources/overwrites.d.ts +1 -1
- package/lib/cache/resources/overwrites.js +5 -8
- package/lib/cache/resources/roles.d.ts +1 -1
- package/lib/cache/resources/roles.js +4 -4
- package/lib/cache/resources/stickers.d.ts +1 -1
- package/lib/cache/resources/stickers.js +4 -4
- package/lib/cache/resources/users.js +4 -4
- package/lib/cache/resources/voice-states.d.ts +1 -1
- package/lib/cache/resources/voice-states.js +4 -4
- package/lib/client/base.d.ts +83 -24
- package/lib/client/base.js +594 -39
- package/lib/client/client.d.ts +28 -3
- package/lib/client/client.js +33 -9
- package/lib/client/collectors.d.ts +9 -8
- package/lib/client/collectors.js +19 -52
- package/lib/client/httpclient.d.ts +3 -0
- package/lib/client/index.d.ts +3 -1
- package/lib/client/index.js +4 -0
- package/lib/client/intents.d.ts +3 -0
- package/lib/client/intents.js +9 -0
- package/lib/client/plugins/api.d.ts +4 -0
- package/lib/client/plugins/api.js +550 -0
- package/lib/client/plugins/errors.d.ts +25 -0
- package/lib/client/plugins/errors.js +79 -0
- package/lib/client/plugins/order.d.ts +10 -0
- package/lib/client/plugins/order.js +32 -0
- package/lib/client/plugins/registry.d.ts +273 -0
- package/lib/client/plugins/registry.js +868 -0
- package/lib/client/plugins/shared.d.ts +23 -0
- package/lib/client/plugins/shared.js +193 -0
- package/lib/client/plugins/types.d.ts +398 -0
- package/lib/client/plugins/types.js +8 -0
- package/lib/client/plugins.d.ts +78 -0
- package/lib/client/plugins.js +558 -0
- package/lib/client/transformers.d.ts +33 -33
- package/lib/client/workerclient.d.ts +10 -1
- package/lib/client/workerclient.js +27 -17
- package/lib/collection.d.ts +10 -8
- package/lib/collection.js +19 -25
- package/lib/commands/applications/chat.d.ts +20 -18
- package/lib/commands/applications/chat.js +39 -14
- package/lib/commands/applications/chatcontext.d.ts +23 -15
- package/lib/commands/applications/chatcontext.js +23 -2
- package/lib/commands/applications/entryPoint.d.ts +4 -3
- package/lib/commands/applications/entryPoint.js +1 -1
- package/lib/commands/applications/entrycontext.d.ts +7 -9
- package/lib/commands/applications/entrycontext.js +3 -1
- package/lib/commands/applications/menu.d.ts +4 -3
- package/lib/commands/applications/menucontext.d.ts +7 -9
- package/lib/commands/applications/menucontext.js +3 -1
- package/lib/commands/applications/options.d.ts +23 -23
- package/lib/commands/applications/shared.d.ts +39 -17
- package/lib/commands/decorators.d.ts +50 -38
- package/lib/commands/decorators.js +15 -5
- package/lib/commands/handle.d.ts +19 -8
- package/lib/commands/handle.js +224 -143
- package/lib/commands/handler.d.ts +21 -8
- package/lib/commands/handler.js +157 -69
- package/lib/commands/index.d.ts +1 -0
- package/lib/commands/optionresolver.d.ts +2 -2
- package/lib/common/it/colors.js +12 -2
- package/lib/common/it/error.d.ts +9 -0
- package/lib/common/it/error.js +8 -0
- package/lib/common/it/fake-promise.d.ts +4 -0
- package/lib/common/it/fake-promise.js +10 -0
- package/lib/common/it/formatter.d.ts +14 -11
- package/lib/common/it/formatter.js +4 -3
- package/lib/common/it/logger.d.ts +7 -1
- package/lib/common/it/logger.js +24 -6
- package/lib/common/it/utils.d.ts +6 -8
- package/lib/common/it/utils.js +44 -42
- package/lib/common/shorters/application.d.ts +3 -3
- package/lib/common/shorters/application.js +3 -2
- package/lib/common/shorters/bans.d.ts +8 -4
- package/lib/common/shorters/bans.js +13 -5
- package/lib/common/shorters/channels.d.ts +4 -4
- package/lib/common/shorters/channels.js +4 -4
- package/lib/common/shorters/emojis.js +1 -0
- package/lib/common/shorters/guilds.d.ts +8 -8
- package/lib/common/shorters/guilds.js +14 -31
- package/lib/common/shorters/interaction.d.ts +1 -1
- package/lib/common/shorters/invites.d.ts +201 -201
- package/lib/common/shorters/members.d.ts +7 -7
- package/lib/common/shorters/members.js +13 -14
- package/lib/common/shorters/messages.d.ts +2 -2
- package/lib/common/shorters/soundboard.d.ts +5 -5
- package/lib/common/shorters/users.d.ts +1 -1
- package/lib/common/shorters/webhook.d.ts +3 -2
- package/lib/common/shorters/webhook.js +0 -7
- package/lib/common/types/options.d.ts +4 -0
- package/lib/common/types/util.d.ts +8 -0
- package/lib/common/types/write.d.ts +2 -1
- package/lib/components/BaseSelectMenuComponent.d.ts +1 -1
- package/lib/components/BaseSelectMenuComponent.js +1 -1
- package/lib/components/ButtonComponent.d.ts +3 -3
- package/lib/components/ChannelSelectMenuComponent.d.ts +2 -2
- package/lib/components/File.d.ts +1 -1
- package/lib/components/MediaGallery.d.ts +1 -1
- package/lib/components/MentionableSelectMenuComponent.d.ts +1 -1
- package/lib/components/RoleSelectMenuComponent.d.ts +1 -1
- package/lib/components/Separator.d.ts +1 -1
- package/lib/components/StringSelectMenuComponent.d.ts +1 -1
- package/lib/components/TextInputComponent.d.ts +1 -1
- package/lib/components/Thumbnail.d.ts +1 -1
- package/lib/components/UserSelectMenuComponent.d.ts +1 -1
- package/lib/components/componentcommand.d.ts +8 -7
- package/lib/components/componentcontext.d.ts +24 -36
- package/lib/components/componentcontext.js +7 -17
- package/lib/components/handler.d.ts +17 -7
- package/lib/components/handler.js +108 -49
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +1 -0
- package/lib/components/interactioncontext.d.ts +45 -0
- package/lib/components/interactioncontext.js +93 -0
- package/lib/components/modalcommand.d.ts +5 -4
- package/lib/components/modalcontext.d.ts +39 -20
- package/lib/components/modalcontext.js +59 -6
- package/lib/events/event.d.ts +9 -3
- package/lib/events/handler.d.ts +51 -6
- package/lib/events/handler.js +165 -36
- package/lib/events/hooks/application_command.d.ts +1 -1
- package/lib/events/hooks/auto_moderation.d.ts +2 -2
- package/lib/events/hooks/guild.d.ts +150 -150
- package/lib/events/hooks/interactions.d.ts +1 -1
- package/lib/events/hooks/invite.d.ts +20 -20
- package/lib/events/hooks/message.d.ts +27 -27
- package/lib/events/hooks/presence.d.ts +11 -11
- package/lib/events/hooks/soundboard.d.ts +6 -6
- package/lib/events/hooks/stage.d.ts +2 -2
- package/lib/events/hooks/subscriptions.d.ts +3 -3
- package/lib/events/hooks/thread.d.ts +30 -30
- package/lib/events/hooks/voice.d.ts +3 -4
- package/lib/events/hooks/voice.js +2 -1
- package/lib/events/utils.d.ts +4 -0
- package/lib/events/utils.js +59 -0
- package/lib/index.d.ts +9 -4
- package/lib/index.js +13 -8
- package/lib/langs/handler.d.ts +14 -11
- package/lib/langs/handler.js +46 -9
- package/lib/langs/router.d.ts +10 -3
- package/lib/structures/Application.d.ts +1 -1
- package/lib/structures/Emoji.d.ts +3 -3
- package/lib/structures/Emoji.js +2 -2
- package/lib/structures/Guild.d.ts +154 -154
- package/lib/structures/GuildBan.d.ts +4 -4
- package/lib/structures/GuildBan.js +3 -3
- package/lib/structures/GuildMember.d.ts +7 -7
- package/lib/structures/GuildMember.js +28 -7
- package/lib/structures/GuildRole.d.ts +1 -1
- package/lib/structures/GuildRole.js +2 -2
- package/lib/structures/Interaction.d.ts +11 -9
- package/lib/structures/Interaction.js +33 -12
- package/lib/structures/Message.d.ts +21 -14
- package/lib/structures/Message.js +29 -14
- package/lib/structures/User.d.ts +1 -1
- package/lib/structures/VoiceState.d.ts +4 -0
- package/lib/structures/VoiceState.js +13 -1
- package/lib/structures/Webhook.d.ts +9 -1
- package/lib/structures/Webhook.js +4 -1
- package/lib/structures/channels.d.ts +148 -134
- package/lib/structures/channels.js +27 -26
- package/lib/structures/extra/BitField.d.ts +4 -4
- package/lib/structures/extra/BitField.js +20 -4
- package/lib/structures/extra/DiscordBase.js +1 -1
- package/lib/structures/extra/Permissions.d.ts +2 -4
- package/lib/structures/extra/Permissions.js +1 -17
- package/lib/types/payloads/_interactions/responses.d.ts +2 -2
- package/lib/types/payloads/components.d.ts +4 -4
- package/lib/websocket/SharedTypes.d.ts +4 -4
- package/lib/websocket/constants/index.d.ts +1 -1
- package/lib/websocket/constants/index.js +3 -2
- package/lib/websocket/discord/events/memberUpdate.js +2 -2
- package/lib/websocket/discord/heartbeater.d.ts +1 -0
- package/lib/websocket/discord/heartbeater.js +7 -0
- package/lib/websocket/discord/shard.d.ts +2 -2
- package/lib/websocket/discord/shard.js +15 -13
- package/lib/websocket/discord/sharder.d.ts +8 -7
- package/lib/websocket/discord/sharder.js +25 -5
- package/lib/websocket/discord/shared.d.ts +19 -6
- package/lib/websocket/discord/socket/custom.js +5 -0
- package/lib/websocket/discord/worker.d.ts +1 -0
- package/lib/websocket/discord/worker.js +2 -0
- package/lib/websocket/discord/workermanager.d.ts +25 -11
- package/lib/websocket/discord/workermanager.js +41 -10
- 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("
|
|
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("
|
|
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("
|
|
133
|
-
oldValue?: import("
|
|
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("
|
|
179
|
-
oldValue?: import("
|
|
178
|
+
newValue?: import("../..").GuildScheduledEventEntityType | undefined;
|
|
179
|
+
oldValue?: import("../..").GuildScheduledEventEntityType | undefined;
|
|
180
180
|
} | {
|
|
181
181
|
key: "event_type";
|
|
182
|
-
newValue?: import("
|
|
183
|
-
oldValue?: import("
|
|
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("
|
|
195
|
-
oldValue?: import("
|
|
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("
|
|
203
|
-
oldValue?: import("
|
|
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("
|
|
211
|
-
oldValue?: import("
|
|
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("
|
|
259
|
-
oldValue?: import("
|
|
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("
|
|
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("
|
|
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("
|
|
313
|
-
oldValue?: import("
|
|
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("
|
|
345
|
-
oldValue?: import("
|
|
344
|
+
newValue?: import("../..").GuildScheduledEventStatus | undefined;
|
|
345
|
+
oldValue?: import("../..").GuildScheduledEventStatus | undefined;
|
|
346
346
|
} | {
|
|
347
347
|
key: "system_channel_flags";
|
|
348
|
-
newValue?: import("
|
|
349
|
-
oldValue?: import("
|
|
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("
|
|
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("
|
|
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("
|
|
387
|
-
oldValue?: import("
|
|
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("
|
|
411
|
-
oldValue?: import("
|
|
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("
|
|
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("
|
|
437
|
+
type?: import("../..").AuditLogOptionsType | undefined;
|
|
438
438
|
roleName?: string | undefined;
|
|
439
|
-
integrationType?: import("
|
|
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("
|
|
478
|
-
status: import("
|
|
479
|
-
entityType: import("
|
|
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("
|
|
496
|
-
premiumType?: import("
|
|
497
|
-
publicFlags?: import("
|
|
498
|
-
avatarDecorationData?: import("
|
|
499
|
-
collectibles?: import("
|
|
500
|
-
primaryGuild?: import("
|
|
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("
|
|
507
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
508
508
|
interval: number;
|
|
509
|
-
byWeekday: import("
|
|
510
|
-
byNWeekday: import("
|
|
511
|
-
byMonth: import("
|
|
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("
|
|
527
|
-
status: import("
|
|
528
|
-
entityType: import("
|
|
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("
|
|
545
|
-
premiumType?: import("
|
|
546
|
-
publicFlags?: import("
|
|
547
|
-
avatarDecorationData?: import("
|
|
548
|
-
collectibles?: import("
|
|
549
|
-
primaryGuild?: import("
|
|
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("
|
|
556
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
557
557
|
interval: number;
|
|
558
|
-
byWeekday: import("
|
|
559
|
-
byNWeekday: import("
|
|
560
|
-
byMonth: import("
|
|
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("
|
|
578
|
-
status: import("
|
|
579
|
-
entityType: import("
|
|
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("
|
|
596
|
-
premiumType?: import("
|
|
597
|
-
publicFlags?: import("
|
|
598
|
-
avatarDecorationData?: import("
|
|
599
|
-
collectibles?: import("
|
|
600
|
-
primaryGuild?: import("
|
|
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("
|
|
607
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
608
608
|
interval: number;
|
|
609
|
-
byWeekday: import("
|
|
610
|
-
byNWeekday: import("
|
|
611
|
-
byMonth: import("
|
|
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("
|
|
628
|
-
status: import("
|
|
629
|
-
entityType: import("
|
|
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("
|
|
646
|
-
premiumType?: import("
|
|
647
|
-
publicFlags?: import("
|
|
648
|
-
avatarDecorationData?: import("
|
|
649
|
-
collectibles?: import("
|
|
650
|
-
primaryGuild?: import("
|
|
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("
|
|
657
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
658
658
|
interval: number;
|
|
659
|
-
byWeekday: import("
|
|
660
|
-
byNWeekday: import("
|
|
661
|
-
byMonth: import("
|
|
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("
|
|
677
|
-
status: import("
|
|
678
|
-
entityType: import("
|
|
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("
|
|
695
|
-
premiumType?: import("
|
|
696
|
-
publicFlags?: import("
|
|
697
|
-
avatarDecorationData?: import("
|
|
698
|
-
collectibles?: import("
|
|
699
|
-
primaryGuild?: import("
|
|
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("
|
|
706
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
707
707
|
interval: number;
|
|
708
|
-
byWeekday: import("
|
|
709
|
-
byNWeekday: import("
|
|
710
|
-
byMonth: import("
|
|
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("
|
|
728
|
-
status: import("
|
|
729
|
-
entityType: import("
|
|
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("
|
|
746
|
-
premiumType?: import("
|
|
747
|
-
publicFlags?: import("
|
|
748
|
-
avatarDecorationData?: import("
|
|
749
|
-
collectibles?: import("
|
|
750
|
-
primaryGuild?: import("
|
|
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("
|
|
757
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
758
758
|
interval: number;
|
|
759
|
-
byWeekday: import("
|
|
760
|
-
byNWeekday: import("
|
|
761
|
-
byMonth: import("
|
|
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("
|
|
778
|
-
status: import("
|
|
779
|
-
entityType: import("
|
|
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("
|
|
796
|
-
premiumType?: import("
|
|
797
|
-
publicFlags?: import("
|
|
798
|
-
avatarDecorationData?: import("
|
|
799
|
-
collectibles?: import("
|
|
800
|
-
primaryGuild?: import("
|
|
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("
|
|
807
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
808
808
|
interval: number;
|
|
809
|
-
byWeekday: import("
|
|
810
|
-
byNWeekday: import("
|
|
811
|
-
byMonth: import("
|
|
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("
|
|
827
|
-
status: import("
|
|
828
|
-
entityType: import("
|
|
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("
|
|
845
|
-
premiumType?: import("
|
|
846
|
-
publicFlags?: import("
|
|
847
|
-
avatarDecorationData?: import("
|
|
848
|
-
collectibles?: import("
|
|
849
|
-
primaryGuild?: import("
|
|
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("
|
|
856
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
857
857
|
interval: number;
|
|
858
|
-
byWeekday: import("
|
|
859
|
-
byNWeekday: import("
|
|
860
|
-
byMonth: import("
|
|
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("
|
|
878
|
-
status: import("
|
|
879
|
-
entityType: import("
|
|
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("
|
|
896
|
-
premiumType?: import("
|
|
897
|
-
publicFlags?: import("
|
|
898
|
-
avatarDecorationData?: import("
|
|
899
|
-
collectibles?: import("
|
|
900
|
-
primaryGuild?: import("
|
|
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("
|
|
907
|
+
frequency: import("../..").GuildScheduledEventRecurrenceRuleFrequency;
|
|
908
908
|
interval: number;
|
|
909
|
-
byWeekday: import("
|
|
910
|
-
byNWeekday: import("
|
|
911
|
-
byMonth: import("
|
|
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("
|
|
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>;
|