seyfert 4.0.1-dev-20006088884.0 → 4.0.1-dev-20179130059.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.
@@ -52,6 +52,8 @@ export declare class PermissionsBitField extends BitField<typeof PermissionFlags
52
52
  readonly SendVoiceMessages: bigint;
53
53
  readonly SendPolls: bigint;
54
54
  readonly UseExternalApps: bigint;
55
+ readonly PinMessages: bigint;
56
+ readonly BypassSlowmode: bigint;
55
57
  };
56
58
  static All: bigint;
57
59
  constructor(bitfields?: BitFieldResolvable<typeof PermissionFlagsBits> | BitFieldResolvable<typeof PermissionFlagsBits>[]);
@@ -660,6 +660,18 @@ export declare const PermissionFlagsBits: {
660
660
  * Applies to channel types: Text, Voice, Stage
661
661
  */
662
662
  readonly UseExternalApps: bigint;
663
+ /**
664
+ * Allows pinning and unpinning messages
665
+ *
666
+ * Applies to channel types: Text
667
+ */
668
+ readonly PinMessages: bigint;
669
+ /**
670
+ * Allows bypassing slowmode restrictions
671
+ *
672
+ * Applies to channel types: Text, Voice, Stage
673
+ */
674
+ readonly BypassSlowmode: bigint;
663
675
  };
664
676
  /**
665
677
  * https://discord.com/developers/docs/resources/channel#channel-object-channel-types
@@ -645,6 +645,18 @@ exports.PermissionFlagsBits = {
645
645
  * Applies to channel types: Text, Voice, Stage
646
646
  */
647
647
  UseExternalApps: 1n << 50n,
648
+ /**
649
+ * Allows pinning and unpinning messages
650
+ *
651
+ * Applies to channel types: Text
652
+ */
653
+ PinMessages: 1n << 51n,
654
+ /**
655
+ * Allows bypassing slowmode restrictions
656
+ *
657
+ * Applies to channel types: Text, Voice, Stage
658
+ */
659
+ BypassSlowmode: 1n << 52n,
648
660
  };
649
661
  /**
650
662
  * Freeze the object of bits, preventing any modifications to it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seyfert",
3
- "version": "4.0.1-dev-20006088884.0",
3
+ "version": "4.0.1-dev-20179130059.0",
4
4
  "description": "The most advanced framework for discord bots",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",