release: v3.3.0
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
## About
|
||||
|
||||
<strong>Welcome to `discord.js-selfbot-v13@v3.2`, based on `discord.js@13.17`</strong>
|
||||
<strong>Welcome to `discord.js-selfbot-v13@v3.3`, 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.
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
- [X] Interactions: Slash Commands, Buttons, Menu, Modal
|
||||
- [X] Captcha Handler (2captcha, capmonster, custom)
|
||||
- [X] Documentation
|
||||
- [x] Voice & [Video stream](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/293)
|
||||
- [x] Voice & Video stream
|
||||
- [ ] Everything
|
||||
|
||||
## Installation
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "discord.js-selfbot-v13",
|
||||
"version": "3.2.2",
|
||||
"version": "3.3.0",
|
||||
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
|
||||
"main": "./src/index.js",
|
||||
"types": "./typings/index.d.ts",
|
||||
|
||||
@@ -11,7 +11,6 @@ const BaseDispatcher = require('./BaseDispatcher');
|
||||
* const dispatcher = connection.playVideo('/home/hydrabolt/video.mp4', { fps: 60, preset: 'ultrafast' });
|
||||
* });
|
||||
* ```
|
||||
* @implements {VolumeInterface}
|
||||
* @extends {BaseDispatcher}
|
||||
*/
|
||||
class VideoDispatcher extends BaseDispatcher {
|
||||
|
||||
5
typings/index.d.ts
vendored
5
typings/index.d.ts
vendored
@@ -884,7 +884,10 @@ export class ClientVoiceManager {
|
||||
public adapters: Map<Snowflake, InternalDiscordGatewayAdapterLibraryMethods>;
|
||||
public connections: Collection<Snowflake, VoiceConnection>;
|
||||
|
||||
public joinChannel(channel: VoiceChannel | StageChannel | DMChannel | GroupDMChannel, config?: JoinChannelConfig): Promise<VoiceConnection>;
|
||||
public joinChannel(
|
||||
channel: VoiceChannel | StageChannel | DMChannel | GroupDMChannel,
|
||||
config?: JoinChannelConfig,
|
||||
): Promise<VoiceConnection>;
|
||||
}
|
||||
|
||||
export interface JoinChannelConfig {
|
||||
|
||||
Reference in New Issue
Block a user