@acidify/core 0.4.0 → 0.4.1
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/dist/acidify-acidify-core.d.ts +3 -3
- package/dist/acidify-acidify-core.js +8957 -8941
- package/package.json +1 -1
|
@@ -1654,10 +1654,10 @@ export declare class Bot /* implements CoroutineScope */ {
|
|
|
1654
1654
|
get uid(): string;
|
|
1655
1655
|
get isLoggedIn(): boolean;
|
|
1656
1656
|
unsafeSendPacket(cmd: string, payload: Int8Array, timeoutMillis?: bigint): Promise<SsoResponse>;
|
|
1657
|
-
qrCodeLogin(queryInterval
|
|
1658
|
-
online(): Promise<void>;
|
|
1657
|
+
qrCodeLogin(queryInterval: bigint | undefined, preloadContacts: boolean): Promise<void>;
|
|
1658
|
+
online(preloadContacts?: boolean): Promise<void>;
|
|
1659
1659
|
offline(): Promise<void>;
|
|
1660
|
-
login(): Promise<void>;
|
|
1660
|
+
login(queryInterval: bigint, preloadContacts: boolean): Promise<void>;
|
|
1661
1661
|
fetchUserInfoByUin(uin: bigint): Promise<BotUserInfo>;
|
|
1662
1662
|
fetchUserInfoByUid(uid: string): Promise<BotUserInfo>;
|
|
1663
1663
|
fetchFriends(): Promise<Array<BotFriendData>>;
|