diff --git a/dist/src/@Datastore/database-960185850346471505.json b/dist/src/@Datastore/database-960185850346471505.json
index 2c74db69..7a69e616 100644
--- a/dist/src/@Datastore/database-960185850346471505.json
+++ b/dist/src/@Datastore/database-960185850346471505.json
@@ -1,5 +1,5 @@
{
"sessionId": {
- "LAVALINK": "JbRiEOHpl2LbbIQB"
+ "LAVALINK": "a0BhFPXAGFqbCv4k"
}
}
\ No newline at end of file
diff --git a/dist/src/@Entities/MoonlinkNode.d.ts b/dist/src/@Entities/MoonlinkNode.d.ts
index 2e301361..8b42f43f 100644
--- a/dist/src/@Entities/MoonlinkNode.d.ts
+++ b/dist/src/@Entities/MoonlinkNode.d.ts
@@ -1,7 +1,7 @@
///
import { INode, INodeStats } from "../@Typings";
import { MoonlinkWebSocket } from "../@Services/MoonlinkWebSocket";
-import { MoonlinkRestFul, MoonlinkDatabase } from "../../index";
+import { MoonlinkRestFul } from "../../index";
export declare class MoonlinkNode {
private _manager;
private reconnectTimeout?;
@@ -12,32 +12,33 @@ export declare class MoonlinkNode {
host: string;
identifier?: string;
password: string;
- port: number | null;
+ port?: number;
secure: boolean;
- regions: string[] | null;
+ regions?: string[];
http: string;
rest: MoonlinkRestFul;
+ info?: Record;
+ version?: string;
resume?: boolean;
resumed?: boolean;
+ autoResume?: boolean;
resumeTimeout?: number;
sessionId: string;
socket: MoonlinkWebSocket | null;
- version: any;
state: string;
- stats: INodeStats;
- info: any;
+ stats: INodeStats | Record;
calls: number;
- db: MoonlinkDatabase;
constructor(node: INode);
get address(): string;
- check(node: INode): void | never;
+ check(node: INode): void;
request(endpoint: string, params: any): Promise