dfx 0.97.5 → 0.97.7
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/Cache.d.ts +1 -4
- package/Cache.d.ts.map +1 -1
- package/DiscordGateway/Shard/StateStore.d.ts +1 -4
- package/DiscordGateway/Shard/StateStore.d.ts.map +1 -1
- package/DiscordGateway/Shard.d.ts +1 -1
- package/DiscordGateway/Sharder.d.ts +1 -1
- package/DiscordGateway.d.ts +1 -1
- package/DiscordREST.d.ts +1 -1
- package/Helpers/permissions.d.ts +2 -2
- package/Helpers/permissions.d.ts.map +1 -1
- package/Interactions/definitions.d.ts +5 -5
- package/Interactions/gateway.d.ts +1 -1
- package/gateway.d.ts +2 -2
- package/mjs/types.mjs +4 -1
- package/mjs/types.mjs.map +1 -1
- package/mjs/version.mjs +1 -1
- package/package.json +3 -3
- package/src/types.ts +5 -0
- package/src/version.ts +1 -1
- package/types.d.ts +6 -1
- package/types.d.ts.map +1 -1
- package/types.js +4 -1
- package/types.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/types.d.ts
CHANGED
|
@@ -2492,6 +2492,8 @@ export interface GuildMemberUpdateEvent {
|
|
|
2492
2492
|
readonly communication_disabled_until?: string | null;
|
|
2493
2493
|
/** Guild member flags represented as a bit set, defaults to 0 */
|
|
2494
2494
|
readonly flags?: number;
|
|
2495
|
+
/** Data for the member's guild avatar decoration */
|
|
2496
|
+
readonly avatar_decoration_data?: AvatarDecorationDatum | null;
|
|
2495
2497
|
}
|
|
2496
2498
|
export declare enum GuildNsfwLevel {
|
|
2497
2499
|
DEFAULT = 0,
|
|
@@ -3445,7 +3447,8 @@ export declare enum MessageType {
|
|
|
3445
3447
|
GUILD_INCIDENT_ALERT_MODE_ENABLED = 36,
|
|
3446
3448
|
GUILD_INCIDENT_ALERT_MODE_DISABLED = 37,
|
|
3447
3449
|
GUILD_INCIDENT_REPORT_RAID = 38,
|
|
3448
|
-
GUILD_INCIDENT_REPORT_FALSE_ALARM = 39
|
|
3450
|
+
GUILD_INCIDENT_REPORT_FALSE_ALARM = 39,
|
|
3451
|
+
PURCHASE_NOTIFICATION = 44
|
|
3449
3452
|
}
|
|
3450
3453
|
export type MessageUpdateEvent = MessageCreateEvent;
|
|
3451
3454
|
export declare enum MfaLevel {
|
|
@@ -3934,6 +3937,8 @@ export declare const PermissionFlag: {
|
|
|
3934
3937
|
readonly SEND_VOICE_MESSAGES: bigint;
|
|
3935
3938
|
/** Allows sending polls */
|
|
3936
3939
|
readonly SEND_POLLS: bigint;
|
|
3940
|
+
/** Allows user-installed apps to send public responses. When disabled, users will still be allowed to use their apps but the responses will be ephemeral. This only applies to apps not also installed to the server. */
|
|
3941
|
+
readonly USE_EXTERNAL_APPS: bigint;
|
|
3937
3942
|
};
|
|
3938
3943
|
export interface Poll {
|
|
3939
3944
|
/** The question of the poll. Only text is supported. */
|