Skip to content

Commit

Permalink
chore: release v2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aiko-chan-ai committed Nov 13, 2023
1 parent 6c18660 commit 48ebad7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## About

<strong>Welcome to `discord.js-selfbot-v13@v2.14`, based on `discord.js@13.16`</strong>
<strong>Welcome to `discord.js-selfbot-v13@v2.15`, 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.

Expand Down
2 changes: 1 addition & 1 deletion docs/main.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discord.js-selfbot-v13",
"version": "2.14.12",
"version": "2.15.0",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/util/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Package = (exports.Package = require('../../package.json'));
const { Error, RangeError, TypeError } = require('../errors');

exports.defaultUA =
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) discord/1.0.9021 Chrome/108.0.5359.215 Electron/22.3.26 Safari/537.36';
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) discord/1.0.9023 Chrome/108.0.5359.215 Electron/22.3.26 Safari/537.36';

/**
* Max bulk deletable message age
Expand Down
7 changes: 4 additions & 3 deletions src/util/Options.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,17 @@ class Options extends null {
os: 'Windows',
browser: 'Discord Client',
release_channel: 'stable',
client_version: '1.0.9021',
client_version: '1.0.9023',
os_version: '10.0.19045',
os_arch: 'x64',
app_arch: 'ia32',
system_locale: 'en-US',
browser_user_agent: defaultUA,
browser_version: '22.3.26',
client_build_number: 240884,
native_build_number: 38954,
client_build_number: 244874,
native_build_number: 39515,
client_event_source: null,
design_id: 0,
},
compress: false,
client_state: {
Expand Down
5 changes: 4 additions & 1 deletion typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2020,7 +2020,10 @@ export type MessageChannelCollectorOptionsParams<
componentType?: T;
} & MessageChannelComponentCollectorOptions<MappedInteractionTypes<Cached>[T]>;

export type AwaitMessageCollectorOptionsParams<T extends MessageComponentTypeResolvable, Cached extends boolean = boolean> = {
export type AwaitMessageCollectorOptionsParams<
T extends MessageComponentTypeResolvable,
Cached extends boolean = boolean,
> = {
componentType?: T;
} & Pick<InteractionCollectorOptions<MappedInteractionTypes<Cached>[T]>, keyof AwaitMessageComponentOptions<any>>;

Expand Down

0 comments on commit 48ebad7

Please sign in to comment.