@acidify/core 0.3.1-beta.2 → 0.3.2-beta.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 +5 -4
- package/dist/acidify-acidify-core.js +8075 -7931
- package/package.json +1 -1
|
@@ -127,7 +127,7 @@ export declare namespace SignResult {
|
|
|
127
127
|
const constructor: abstract new () => SignResult;
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
|
-
export declare class BotFriend /* extends
|
|
130
|
+
export declare class BotFriend /* extends BotEntity<BotFriendData> */ {
|
|
131
131
|
private constructor();
|
|
132
132
|
get uin(): bigint;
|
|
133
133
|
get uid(): string;
|
|
@@ -147,7 +147,7 @@ export declare namespace BotFriend {
|
|
|
147
147
|
const constructor: abstract new () => BotFriend;
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
|
-
export declare class BotGroup /* extends
|
|
150
|
+
export declare class BotGroup /* extends BotEntity<BotGroupData> */ {
|
|
151
151
|
private constructor();
|
|
152
152
|
get uin(): bigint;
|
|
153
153
|
get name(): string;
|
|
@@ -161,7 +161,7 @@ export declare namespace BotGroup {
|
|
|
161
161
|
const constructor: abstract new () => BotGroup;
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
|
-
export declare class BotGroupMember /* extends
|
|
164
|
+
export declare class BotGroupMember /* extends BotEntity<BotGroupMemberData> */ {
|
|
165
165
|
private constructor();
|
|
166
166
|
get group(): BotGroup;
|
|
167
167
|
get uin(): bigint;
|
|
@@ -1654,7 +1654,7 @@ export declare class Bot /* implements CoroutineScope */ {
|
|
|
1654
1654
|
setGroupWholeMute(groupUin: bigint, isMute: boolean): Promise<void>;
|
|
1655
1655
|
kickGroupMember(groupUin: bigint, memberUin: bigint, rejectAddRequest?: boolean, reason?: string): Promise<void>;
|
|
1656
1656
|
getGroupAnnouncements(groupUin: bigint): Promise<Array<BotGroupAnnouncement>>;
|
|
1657
|
-
sendGroupAnnouncement(groupUin: bigint, content: string, imageUrl?: Nullable<string>, showEditCard?: boolean, showTipWindow?: boolean, confirmRequired?: boolean): Promise<string>;
|
|
1657
|
+
sendGroupAnnouncement(groupUin: bigint, content: string, imageUrl?: Nullable<string>, showEditCard?: boolean, showTipWindow?: boolean, confirmRequired?: boolean, isPinned?: boolean): Promise<string>;
|
|
1658
1658
|
deleteGroupAnnouncement(groupUin: bigint, announcementId: string): Promise<void>;
|
|
1659
1659
|
getGroupEssenceMessages(groupUin: bigint, pageIndex: number, pageSize: number): Promise<BotEssenceMessageResult>;
|
|
1660
1660
|
setGroupEssenceMessage(groupUin: bigint, sequence: bigint, isSet: boolean): Promise<void>;
|
|
@@ -1802,6 +1802,7 @@ export declare class UrlSignProvider implements SignProvider {
|
|
|
1802
1802
|
constructor(scope: CoroutineScope, url: string, httpProxy?: Nullable<string>);
|
|
1803
1803
|
get scope(): CoroutineScope;
|
|
1804
1804
|
sign(cmd: string, seq: number, src: Int8Array): Promise<SignResult>;
|
|
1805
|
+
getAppInfo(): Promise<Nullable<AppInfo>>;
|
|
1805
1806
|
readonly __doNotUseOrImplementIt: SignProvider["__doNotUseOrImplementIt"];
|
|
1806
1807
|
}
|
|
1807
1808
|
export declare namespace UrlSignProvider {
|