chore: release v3.2.0

This commit is contained in:
Elysia
2024-07-03 22:56:00 +07:00
parent f072795cb6
commit d0a97f6b24
4 changed files with 78 additions and 75 deletions

View File

@@ -7,7 +7,7 @@
## About ## About
<strong>Welcome to `discord.js-selfbot-v13@v3.1`, based on `discord.js@13.17`</strong> <strong>Welcome to `discord.js-selfbot-v13@v3.2`, based on `discord.js@13.17`</strong>
- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9. - discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.
@@ -102,12 +102,10 @@ Github Discussion: [Here](https://github.com/aiko-chan-ai/discord.js-selfbot-v13
## Credits ## Credits
- [Discord.js](https://github.com/discordjs/discord.js) - [Discord.js](https://github.com/discordjs/discord.js)
## <strong><img src="https://cdn.discordapp.com/attachments/820557032016969751/952436539118456882/flag-vietnam_1f1fb-1f1f3.png" alt="." width="20" height="20"/> Other project(s) ## <strong>Other project(s)
- 📘 [***aiko-chan-ai/DiscordBotClient***](https://github.com/aiko-chan-ai/DiscordBotClient) <br/> - 📘 [***aiko-chan-ai/DiscordBotClient***](https://github.com/aiko-chan-ai/DiscordBotClient) <br/>
A patched version of discord, with bot login support A patched version of discord, with bot login support
- 📕 [***aiko-chan-ai/Discord-Markdown***](https://github.com/aiko-chan-ai/Discord-Markdown) <br/>
Better Markdown to text chat Discord.
## Star History ## Star History

1
docs/main.json Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{ {
"name": "discord.js-selfbot-v13", "name": "discord.js-selfbot-v13",
"version": "3.1.4", "version": "3.2.0",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]", "description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js", "main": "./src/index.js",
"types": "./typings/index.d.ts", "types": "./typings/index.d.ts",
@@ -54,15 +54,15 @@
"@aikochan2k6/qrcode-terminal": "^0.12.1", "@aikochan2k6/qrcode-terminal": "^0.12.1",
"@discordjs/builders": "^1.6.3", "@discordjs/builders": "^1.6.3",
"@discordjs/collection": "^1.5.3", "@discordjs/collection": "^1.5.3",
"@sapphire/async-queue": "^1.5.1", "@sapphire/async-queue": "^1.5.2",
"@sapphire/shapeshift": "^3.9.5", "@sapphire/shapeshift": "^3.9.5",
"@types/node-fetch": "^2.6.10", "@types/node-fetch": "^2.6.11",
"@types/ws": "^8.5.10", "@types/ws": "^8.5.10",
"discord-api-types": "^0.37.61", "discord-api-types": "^0.37.61",
"fetch-cookie": "^2.1.0", "fetch-cookie": "^2.1.0",
"form-data": "^4.0.0", "form-data": "^4.0.0",
"node-fetch": "^2.6.9", "node-fetch": "^2.6.9",
"tough-cookie": "^4.1.3", "tough-cookie": "^4.1.4",
"ws": "^8.16.0" "ws": "^8.16.0"
}, },
"engines": { "engines": {

6
typings/index.d.ts vendored
View File

@@ -1885,7 +1885,11 @@ export class Message<Cached extends boolean = boolean> extends Base {
public report(breadcrumbs: number[], elements?: object): Promise<{ report_id: Snowflake }>; public report(breadcrumbs: number[], elements?: object): Promise<{ report_id: Snowflake }>;
public vote(...ids: number[]): Promise<void>; public vote(...ids: number[]): Promise<void>;
public endPoll(): Promise<RawMessageData>; public endPoll(): Promise<RawMessageData>;
public getAnswerVoter(answerId: number, afterUserId?: Snowflake, limit?: number): Promise<{ users: Partial<RawUserData> }>; public getAnswerVoter(
answerId: number,
afterUserId?: Snowflake,
limit?: number,
): Promise<{ users: Partial<RawUserData> }>;
} }
export class CallState extends Base { export class CallState extends Base {