disgroove 2.2.4-dev.9c07d33 → 2.2.4-dev.dd7286b
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/README.md +1 -0
- package/dist/lib/types/message.d.ts +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -77,7 +77,7 @@ export interface RawMessageReference {
|
|
77
77
|
}
|
78
78
|
/** https://discord.com/developers/docs/resources/message#message-snapshot-object-message-snapshot-structure */
|
79
79
|
export interface RawMessageSnapshot {
|
80
|
-
message: Pick<RawMessage, "type" | "content" | "embeds" | "attachments" | "timestamp" | "edited_timestamp" | "flags" | "mentions" | "mention_roles">;
|
80
|
+
message: Pick<RawMessage, "type" | "content" | "embeds" | "attachments" | "timestamp" | "edited_timestamp" | "flags" | "mentions" | "mention_roles" | "stickers" | "sticker_items" | "components">;
|
81
81
|
}
|
82
82
|
/** https://discord.com/developers/docs/resources/message#reaction-object-reaction-structure */
|
83
83
|
export interface RawReaction {
|
@@ -259,7 +259,7 @@ export interface MessageReference {
|
|
259
259
|
failIfNotExists?: boolean;
|
260
260
|
}
|
261
261
|
export interface MessageSnapshot {
|
262
|
-
message: Pick<Message, "type" | "content" | "embeds" | "attachments" | "timestamp" | "editedTimestamp" | "flags" | "mentions" | "mentionRoles">;
|
262
|
+
message: Pick<Message, "type" | "content" | "embeds" | "attachments" | "timestamp" | "editedTimestamp" | "flags" | "mentions" | "mentionRoles" | "stickers" | "stickerItems" | "components">;
|
263
263
|
}
|
264
264
|
export interface Reaction {
|
265
265
|
count: number;
|
package/dist/package.json
CHANGED