discord.js 15.0.0-dev.1762951248-e8217e335 → 15.0.0-dev.1762992116-837af56cf
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 +9 -9
- package/src/structures/GuildMember.js +1 -1
- package/src/structures/PermissionOverwrites.js +1 -1
- package/src/structures/Role.js +1 -1
- package/src/structures/ThreadChannel.js +1 -1
- package/src/structures/Webhook.js +1 -1
- package/typings/index.d.mts +2 -2
- package/typings/index.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "discord.js",
|
|
4
|
-
"version": "15.0.0-dev.
|
|
4
|
+
"version": "15.0.0-dev.1762992116-837af56cf",
|
|
5
5
|
"description": "A powerful library for interacting with the Discord API",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./typings/index.d.ts",
|
|
@@ -61,12 +61,12 @@
|
|
|
61
61
|
"magic-bytes.js": "^1.12.1",
|
|
62
62
|
"tslib": "^2.8.1",
|
|
63
63
|
"undici": "7.16.0",
|
|
64
|
-
"@discordjs/
|
|
65
|
-
"@discordjs/
|
|
66
|
-
"@discordjs/rest": "3.0.0-dev.
|
|
67
|
-
"@discordjs/
|
|
68
|
-
"@discordjs/
|
|
69
|
-
"@discordjs/
|
|
64
|
+
"@discordjs/builders": "2.0.0-dev.1762992116-837af56cf",
|
|
65
|
+
"@discordjs/formatters": "1.0.0-dev.1762992116-837af56cf",
|
|
66
|
+
"@discordjs/rest": "3.0.0-dev.1762992116-837af56cf",
|
|
67
|
+
"@discordjs/util": "2.0.0-dev.1762992116-837af56cf",
|
|
68
|
+
"@discordjs/ws": "3.0.0-dev.1762992116-837af56cf",
|
|
69
|
+
"@discordjs/collection": "3.0.0-dev.1762992116-837af56cf"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@favware/cliff-jumper": "^4.1.0",
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"tsd": "^0.33.0",
|
|
83
83
|
"turbo": "^2.5.8",
|
|
84
84
|
"typescript": "~5.9.3",
|
|
85
|
-
"@discordjs/api-extractor": "7.52.7",
|
|
86
85
|
"@discordjs/docgen": "0.12.1",
|
|
87
|
-
"@discordjs/scripts": "0.1.0"
|
|
86
|
+
"@discordjs/scripts": "0.1.0",
|
|
87
|
+
"@discordjs/api-extractor": "7.52.7"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=22.12.0"
|
package/src/structures/Role.js
CHANGED
package/typings/index.d.mts
CHANGED
|
@@ -3525,7 +3525,7 @@ export interface ThreadChannel<ThreadOnly extends boolean = boolean>
|
|
|
3525
3525
|
MessageChannelFields,
|
|
3526
3526
|
SendMethod<true> {}
|
|
3527
3527
|
export class ThreadChannel<ThreadOnly extends boolean = boolean> extends BaseChannel {
|
|
3528
|
-
private constructor(guild: Guild, data
|
|
3528
|
+
private constructor(guild: Guild, data: RawThreadChannelData, client?: Client<true>);
|
|
3529
3529
|
public archived: boolean | null;
|
|
3530
3530
|
public get archivedAt(): Date | null;
|
|
3531
3531
|
public archiveTimestamp: number | null;
|
|
@@ -3821,7 +3821,7 @@ export class VoiceState extends Base {
|
|
|
3821
3821
|
|
|
3822
3822
|
export interface Webhook<Type extends WebhookType = WebhookType> extends WebhookFields {}
|
|
3823
3823
|
export class Webhook<Type extends WebhookType = WebhookType> {
|
|
3824
|
-
private constructor(client: Client<true>, data
|
|
3824
|
+
private constructor(client: Client<true>, data: unknown);
|
|
3825
3825
|
public avatar: string | null;
|
|
3826
3826
|
public avatarURL(options?: ImageURLOptions): string | null;
|
|
3827
3827
|
public channelId: Snowflake;
|
package/typings/index.d.ts
CHANGED
|
@@ -3525,7 +3525,7 @@ export interface ThreadChannel<ThreadOnly extends boolean = boolean>
|
|
|
3525
3525
|
MessageChannelFields,
|
|
3526
3526
|
SendMethod<true> {}
|
|
3527
3527
|
export class ThreadChannel<ThreadOnly extends boolean = boolean> extends BaseChannel {
|
|
3528
|
-
private constructor(guild: Guild, data
|
|
3528
|
+
private constructor(guild: Guild, data: RawThreadChannelData, client?: Client<true>);
|
|
3529
3529
|
public archived: boolean | null;
|
|
3530
3530
|
public get archivedAt(): Date | null;
|
|
3531
3531
|
public archiveTimestamp: number | null;
|
|
@@ -3821,7 +3821,7 @@ export class VoiceState extends Base {
|
|
|
3821
3821
|
|
|
3822
3822
|
export interface Webhook<Type extends WebhookType = WebhookType> extends WebhookFields {}
|
|
3823
3823
|
export class Webhook<Type extends WebhookType = WebhookType> {
|
|
3824
|
-
private constructor(client: Client<true>, data
|
|
3824
|
+
private constructor(client: Client<true>, data: unknown);
|
|
3825
3825
|
public avatar: string | null;
|
|
3826
3826
|
public avatarURL(options?: ImageURLOptions): string | null;
|
|
3827
3827
|
public channelId: Snowflake;
|