disgroove 2.1.2 → 2.1.3-dev.837d772
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/dist/lib/constants.d.ts
CHANGED
@@ -308,7 +308,12 @@ export declare enum MessageTypes {
|
|
308
308
|
StageEnd = 28,
|
309
309
|
StageSpeaker = 29,
|
310
310
|
StageTopic = 31,
|
311
|
-
GuildApplicationPremiumSubscription = 32
|
311
|
+
GuildApplicationPremiumSubscription = 32,
|
312
|
+
GuildIncidentAlertModeEnabled = 36,
|
313
|
+
GuildIncidentAlertModeDisabled = 37,
|
314
|
+
GuildIncidentReportRaid = 38,
|
315
|
+
GuildIncidentReportFalseAlarm = 39,
|
316
|
+
PurchaseNotification = 44
|
312
317
|
}
|
313
318
|
/** https://discord.com/developers/docs/resources/channel#message-object-message-activity-types */
|
314
319
|
export declare enum MessageActivityTypes {
|
@@ -1100,6 +1105,7 @@ export declare const BitwisePermissionFlags: {
|
|
1100
1105
|
readonly UseExternalSounds: bigint;
|
1101
1106
|
readonly SendVoiceMessages: bigint;
|
1102
1107
|
readonly SendPolls: bigint;
|
1108
|
+
readonly UseExternalApps: bigint;
|
1103
1109
|
};
|
1104
1110
|
/** https://discord.com/developers/docs/topics/permissions#role-object-role-flags */
|
1105
1111
|
export declare enum RoleFlags {
|
package/dist/lib/constants.js
CHANGED
@@ -338,6 +338,11 @@ var MessageTypes;
|
|
338
338
|
MessageTypes[MessageTypes["StageSpeaker"] = 29] = "StageSpeaker";
|
339
339
|
MessageTypes[MessageTypes["StageTopic"] = 31] = "StageTopic";
|
340
340
|
MessageTypes[MessageTypes["GuildApplicationPremiumSubscription"] = 32] = "GuildApplicationPremiumSubscription";
|
341
|
+
MessageTypes[MessageTypes["GuildIncidentAlertModeEnabled"] = 36] = "GuildIncidentAlertModeEnabled";
|
342
|
+
MessageTypes[MessageTypes["GuildIncidentAlertModeDisabled"] = 37] = "GuildIncidentAlertModeDisabled";
|
343
|
+
MessageTypes[MessageTypes["GuildIncidentReportRaid"] = 38] = "GuildIncidentReportRaid";
|
344
|
+
MessageTypes[MessageTypes["GuildIncidentReportFalseAlarm"] = 39] = "GuildIncidentReportFalseAlarm";
|
345
|
+
MessageTypes[MessageTypes["PurchaseNotification"] = 44] = "PurchaseNotification";
|
341
346
|
})(MessageTypes || (exports.MessageTypes = MessageTypes = {}));
|
342
347
|
/** https://discord.com/developers/docs/resources/channel#message-object-message-activity-types */
|
343
348
|
var MessageActivityTypes;
|
@@ -1177,6 +1182,7 @@ exports.BitwisePermissionFlags = {
|
|
1177
1182
|
UseExternalSounds: 1n << 45n,
|
1178
1183
|
SendVoiceMessages: 1n << 46n,
|
1179
1184
|
SendPolls: 1n << 49n,
|
1185
|
+
UseExternalApps: 1n << 50n,
|
1180
1186
|
};
|
1181
1187
|
/** https://discord.com/developers/docs/topics/permissions#role-object-role-flags */
|
1182
1188
|
var RoleFlags;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ActivityFlags, ActivityType, GuildMemberFlags, InviteTargetTypes, ReactionTypes, StatusTypes, TriggerTypes } from "../constants";
|
2
|
-
import type { RawApplication, RawAutoModerationAction, RawChannel, RawEmoji, RawGuildMember, RawThreadMember, RawUser, AutoModerationAction, ThreadMember, Channel, Emoji, User, GuildMember, RawVoiceState, RawStageInstance, RawGuildScheduledEvent, VoiceState, StageInstance, GuildScheduledEvent, Application } from ".";
|
2
|
+
import type { RawApplication, RawAutoModerationAction, RawChannel, RawEmoji, RawGuildMember, RawThreadMember, RawUser, AutoModerationAction, ThreadMember, Channel, Emoji, User, GuildMember, RawVoiceState, RawStageInstance, RawGuildScheduledEvent, VoiceState, StageInstance, GuildScheduledEvent, Application, RawAvatarDecorationData, AvatarDecorationData } from ".";
|
3
3
|
/** https://discord.com/developers/docs/topics/gateway-events#auto-moderation-action-execution-auto-moderation-action-execution-event-fields */
|
4
4
|
export interface RawAutoModerationActionExectionEventFields {
|
5
5
|
guild_id: string;
|
@@ -94,6 +94,7 @@ export interface RawGuildMemberUpdateEventFields {
|
|
94
94
|
pending?: boolean;
|
95
95
|
communication_disabled_until?: number | null;
|
96
96
|
flags?: GuildMemberFlags;
|
97
|
+
avatar_decoration_data?: RawAvatarDecorationData | null;
|
97
98
|
}
|
98
99
|
/** https://discord.com/developers/docs/topics/gateway-events#guild-members-chunk-guild-members-chunk-event-fields */
|
99
100
|
export interface RawGuildMembersChunkEventFields {
|
@@ -364,6 +365,7 @@ export interface GuildMemberUpdateEventFields {
|
|
364
365
|
pending?: boolean;
|
365
366
|
communicationDisabledUntil?: number | null;
|
366
367
|
flags?: GuildMemberFlags;
|
368
|
+
avatarDecorationData?: AvatarDecorationData | null;
|
367
369
|
}
|
368
370
|
export interface GuildMembersChunkEventFields {
|
369
371
|
guildId: string;
|
package/dist/lib/types/user.d.ts
CHANGED
@@ -20,6 +20,11 @@ export interface RawUser {
|
|
20
20
|
public_flags?: UserFlags;
|
21
21
|
avatar_decoration?: string | null;
|
22
22
|
}
|
23
|
+
/** https://discord.com/developers/docs/resources/user#avatar-decoration-data-object-avatar-decoration-data-structure */
|
24
|
+
export interface RawAvatarDecorationData {
|
25
|
+
asset: string;
|
26
|
+
sku_id: string;
|
27
|
+
}
|
23
28
|
/** https://discord.com/developers/docs/resources/user#connection-object-connection-structure */
|
24
29
|
export interface RawConnection {
|
25
30
|
id: string;
|
@@ -58,6 +63,10 @@ export interface User {
|
|
58
63
|
publicFlags?: UserFlags;
|
59
64
|
avatarDecoration?: string | null;
|
60
65
|
}
|
66
|
+
export interface AvatarDecorationData {
|
67
|
+
asset: string;
|
68
|
+
skuId: string;
|
69
|
+
}
|
61
70
|
export interface Connection {
|
62
71
|
id: string;
|
63
72
|
name: string;
|
package/dist/package.json
CHANGED