mezon-js 2.15.65 → 2.15.67

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/client.d.ts CHANGED
@@ -445,6 +445,7 @@ export declare class Client {
445
445
  reportMessageAbuse(session: ApiSession, messageId?: string, abuseType?: string): Promise<any>;
446
446
  updateMezonVoiceState(session: ApiSession, clanId?: string, channelId?: string, displayName?: string, roomName?: string, state?: number): Promise<any>;
447
447
  sendChannelMessage(session: ApiSession, clanId: string, channelId: string, mode: number, isPublic: boolean, content: any, mentions?: Array<ApiMessageMention>, attachments?: Array<ApiMessageAttachment>, references?: Array<ApiMessageRef>, anonymousMessage?: boolean, mentionEveryone?: boolean, avatar?: string, code?: number, topicId?: string): Promise<ChannelMessageAck>;
448
+ sendChannelMessageApi(session: ApiSession, clanId: string, channelId: string, mode: number, isPublic: boolean, content: any, mentions?: Array<ApiMessageMention>, attachments?: Array<ApiMessageAttachment>, references?: Array<ApiMessageRef>, anonymousMessage?: boolean, mentionEveryone?: boolean, avatar?: string, code?: number, topicId?: string): Promise<ChannelMessageAck>;
448
449
  updateChannelMessage(session: ApiSession, clanId: string, channelId: string, mode: number, isPublic: boolean, messageId: string, content: any, mentions?: Array<ApiMessageMention>, attachments?: Array<ApiMessageAttachment>, createTimeSeconds?: number, hideEditted?: boolean, topicId?: string, isUpdateMsgTopic?: boolean): Promise<any>;
449
450
  deleteChannelMessage(session: ApiSession, clanId: string, channelId: string, mode: number, isPublic: boolean, messageId: string, hasAttachment?: boolean, topicId?: string, mentions?: Uint8Array, references?: Uint8Array): Promise<any>;
450
451
  messageButtonClick(session: ApiSession, messageId?: string, channelId?: string, buttonId?: string, senderId?: string, userId?: string, extraData?: string): Promise<any>;