mezon-js 2.8.42 → 2.8.44
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/api/api.ts +19515 -19515
- package/api.gen.ts +80 -1
- package/client.ts +24 -1
- package/dist/api.gen.d.ts +6 -1
- package/dist/client.d.ts +4 -1
- package/dist/mezon-js.cjs.js +82 -1
- package/dist/mezon-js.esm.mjs +82 -1
- package/dist/socket.d.ts +1 -1
- package/google/protobuf/timestamp.ts +220 -220
- package/google/protobuf/wrappers.ts +626 -626
- package/package.json +1 -1
- package/rtapi/realtime.ts +6670 -6670
- package/socket.ts +1 -1
- package/dist/api1.gen.d.ts +0 -1096
package/socket.ts
CHANGED
@@ -697,7 +697,7 @@ export interface Socket {
|
|
697
697
|
unfollowUsers(user_ids : string[]) : Promise<void>;
|
698
698
|
|
699
699
|
/** Update a chat message on a chat channel in the server. */
|
700
|
-
updateChatMessage(clan_id: string, channel_id: string, mode: number, message_id : string, content: any, mentions?: Array<ApiMessageMention>, attachments?: Array<ApiMessageAttachment>,
|
700
|
+
updateChatMessage(clan_id: string, channel_id: string, mode: number, message_id : string, content: any, mentions?: Array<ApiMessageMention>, attachments?: Array<ApiMessageAttachment>, hideEditted?: boolean) : Promise<ChannelMessageAck>;
|
701
701
|
|
702
702
|
/** Update the status for the current user online. */
|
703
703
|
updateStatus(status? : string) : Promise<void>;
|