disgroove 3.0.0-dev.2cf2b90 → 3.0.0-dev.474d332
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 +1 -0
- package/dist/lib/constants.js +1 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/lib/constants.d.ts
CHANGED
|
@@ -1272,6 +1272,7 @@ export declare const BitwisePermissionFlags: {
|
|
|
1272
1272
|
readonly SendPolls: bigint;
|
|
1273
1273
|
readonly UseExternalApps: bigint;
|
|
1274
1274
|
readonly PinMessages: bigint;
|
|
1275
|
+
readonly BypassSlowmode: bigint;
|
|
1275
1276
|
};
|
|
1276
1277
|
/** https://discord.com/developers/docs/topics/permissions#role-object-role-flags */
|
|
1277
1278
|
export declare enum RoleFlags {
|
package/dist/lib/constants.js
CHANGED
|
@@ -1364,6 +1364,7 @@ exports.BitwisePermissionFlags = {
|
|
|
1364
1364
|
SendPolls: 1n << 49n,
|
|
1365
1365
|
UseExternalApps: 1n << 50n,
|
|
1366
1366
|
PinMessages: 1n << 51n,
|
|
1367
|
+
BypassSlowmode: 1n << 52n,
|
|
1367
1368
|
};
|
|
1368
1369
|
/** https://discord.com/developers/docs/topics/permissions#role-object-role-flags */
|
|
1369
1370
|
var RoleFlags;
|
package/dist/package.json
CHANGED