@acidify/core 0.9.4 → 0.9.5

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.
@@ -1904,8 +1904,10 @@ export declare class Bot /* implements CoroutineScope */ {
1904
1904
  getCsrfToken(): Promise<number>;
1905
1905
  sendFriendMessage(friendUin: bigint, build: (p0: BotOutgoingMessageBuilder) => void): Promise<BotOutgoingMessageResult>;
1906
1906
  sendFriendMessageRich(friendUin: bigint, clientSequence: bigint, random: number, build: (p0: BotOutgoingMessageBuilder) => void): Promise<BotOutgoingMessageResult>;
1907
+ sendFriendMessageBySegments(friendUin: bigint, clientSequence: bigint, random: number, segments: Array<BotOutgoingSegment>): Promise<BotOutgoingMessageResult>;
1907
1908
  sendGroupMessage(groupUin: bigint, build: (p0: BotOutgoingMessageBuilder) => void): Promise<BotOutgoingMessageResult>;
1908
1909
  sendGroupMessageRich(groupUin: bigint, clientSequence: bigint, random: number, build: (p0: BotOutgoingMessageBuilder) => void): Promise<BotOutgoingMessageResult>;
1910
+ sendGroupMessageBySegments(groupUin: bigint, clientSequence: bigint, random: number, segments: Array<BotOutgoingSegment>): Promise<BotOutgoingMessageResult>;
1909
1911
  recallFriendMessage(friendUin: bigint, sequence: bigint): Promise<void>;
1910
1912
  recallGroupMessage(groupUin: bigint, sequence: bigint): Promise<void>;
1911
1913
  getFriendHistoryMessages(friendUin: bigint, limit: number, startSequence?: Nullable<bigint>): Promise<BotHistoryMessages>;