@acidify/core 0.3.1-beta.3 → 0.3.2-beta.2

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/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @acidify/core
2
+
3
+ Kotlin NTQQ protocol implementation, ported to JS.
4
+
5
+ - [GitHub](https://github.com/LagrangeDev/acidify)
6
+ - [项目主页](https://acidify.ntqqrev.org/)
7
+ - [使用文档](https://acidify.ntqqrev.org/core/nodejs)
@@ -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 AbstractEntity<BotFriendData> */ {
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 AbstractEntity<BotGroupData> */ {
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 AbstractEntity<BotGroupMemberData> */ {
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>;