@ovencord/discord.js 14.16.15-dev.1 → 14.16.16

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.15-dev.1",
4
+ "version": "14.16.16",
5
5
  "description": "A powerful library for interacting with the Discord API",
6
6
  "scripts": {
7
7
  "test": "bun test",
@@ -41,10 +41,10 @@
41
41
  "@sapphire/snowflake": "3.5.5",
42
42
  "discord-api-types": "^0.38.36",
43
43
  "fast-deep-equal": "3.1.3",
44
- "@ovencord/builders": "1.11.5",
44
+ "@ovencord/builders": "1.11.5-dev.1",
45
45
  "@ovencord/collection": "2.1.1",
46
46
  "@ovencord/formatters": "0.6.1",
47
- "@ovencord/rest": "2.5.1",
47
+ "@ovencord/rest": "2.5.1-dev.1",
48
48
  "@ovencord/util": "1.1.1",
49
49
  "@ovencord/ws": "2.0.2"
50
50
  },
@@ -14,7 +14,6 @@ import { CachedManager } from './CachedManager.js';
14
14
  * @extends {CachedManager}
15
15
  */
16
16
  export class ApplicationCommandManager extends CachedManager {
17
- public client: any;
18
17
  public permissions: any;
19
18
  constructor(client, iterable) {
20
19
  super(client, ApplicationCommand, iterable);
@@ -18,7 +18,6 @@ let cacheWarningEmitted = false;
18
18
  * @extends {CachedManager}
19
19
  */
20
20
  export class ChannelManager extends CachedManager {
21
- public client: any;
22
21
  constructor(client, iterable) {
23
22
  super(client, BaseChannel, iterable);
24
23
  const defaultCaching =
@@ -12,7 +12,6 @@ import { CachedManager } from './CachedManager.js';
12
12
  * @extends {CachedManager}
13
13
  */
14
14
  export class EntitlementManager extends CachedManager {
15
- public client: any;
16
15
  constructor(client, iterable) {
17
16
  super(client, Entitlement, iterable);
18
17
  }
@@ -24,7 +24,6 @@ let cacheWarningEmitted = false;
24
24
  * @extends {CachedManager}
25
25
  */
26
26
  export class GuildManager extends CachedManager {
27
- public client: any;
28
27
  constructor(client, iterable) {
29
28
  super(client, Guild, iterable);
30
29
  if (!cacheWarningEmitted && this._cache.constructor.name !== 'Collection') {
@@ -12,7 +12,6 @@ import { CachedManager } from './CachedManager.js';
12
12
  * @extends {CachedManager}
13
13
  */
14
14
  export class SubscriptionManager extends CachedManager {
15
- public client: any;
16
15
  constructor(client, iterable) {
17
16
  super(client, Subscription, iterable);
18
17
  }