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 CHANGED
@@ -54,3 +54,4 @@ client.connect();
54
54
  ```
55
55
 
56
56
  More examples on the [GitHub repository](https://github.com/XenKys/disgroove/tree/main/examples)
57
+ For support and more join the [Discord server](https://discord.gg/kunfRQgRyD)
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "disgroove",
3
- "version": "2.2.4-dev.9c07d33",
3
+ "version": "2.2.4-dev.dd7286b",
4
4
  "description": "A module to interface with Discord",
5
5
  "main": "./dist/lib/index.js",
6
6
  "types": "./dist/lib/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "disgroove",
3
- "version": "2.2.4-dev.9c07d33",
3
+ "version": "2.2.4-dev.dd7286b",
4
4
  "description": "A module to interface with Discord",
5
5
  "main": "./dist/lib/index.js",
6
6
  "types": "./dist/lib/index.d.ts",