@ovencord/discord.js 14.16.7 → 14.16.8

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ovencord/discord.js",
4
- "version": "14.16.7",
4
+ "version": "14.16.8",
5
5
  "description": "A powerful library for interacting with the Discord API",
6
6
  "scripts": {
7
7
  "test": "bun test",
package/src/index.ts CHANGED
@@ -10,7 +10,7 @@ export { ShardingManager } from './sharding/ShardingManager.js';
10
10
  export { DiscordjsError } from './errors/DJSError.js';
11
11
  export { DiscordjsTypeError } from './errors/DJSError.js';
12
12
  export { DiscordjsRangeError } from './errors/DJSError.js';
13
- exports.DiscordjsErrorCodes = require('./errors/ErrorCodes.js').ErrorCodes;
13
+ export { ErrorCodes as DiscordjsErrorCodes } from './errors/ErrorCodes.js';
14
14
 
15
15
  // Utilities
16
16
  export { ActivityFlagsBitField } from './util/ActivityFlagsBitField.js';
@@ -3,8 +3,9 @@ import { ChannelType, MessageType, ComponentType, ImageFormat, StickerFormatType
3
3
  /**
4
4
  * Max bulk deletable message age
5
5
  *
6
- * @typedef {number} MaxBulkDeletableMessageAge
6
+ * @type {number}
7
7
  */
8
+ export const MaxBulkDeletableMessageAge = 1_209_600_000;
8
9
 
9
10
 
10
11
  /**