mezon-js 2.8.59 → 2.8.61
Sign up to get free protection for your applications and to get access to all the features.
- package/api/api.ts +20099 -19515
- package/client.ts +2 -0
- package/dist/client.d.ts +1 -0
- package/dist/mezon-js.cjs.js +2 -1
- package/dist/mezon-js.esm.mjs +2 -1
- package/dist/socket.d.ts +1 -0
- package/google/protobuf/struct.ts +485 -0
- package/google/protobuf/timestamp.ts +220 -220
- package/google/protobuf/wrappers.ts +626 -626
- package/package.json +1 -1
- package/rtapi/realtime.ts +7751 -6670
- package/socket.ts +3 -0
package/socket.ts
CHANGED
@@ -109,6 +109,8 @@ export interface UserChannelAddedEvent {
|
|
109
109
|
clan_id: string;
|
110
110
|
// the channel type
|
111
111
|
channel_type: number;
|
112
|
+
// is public
|
113
|
+
is_public: boolean;
|
112
114
|
}
|
113
115
|
|
114
116
|
export interface AddUsers {
|
@@ -1061,6 +1063,7 @@ export class DefaultSocket implements Socket {
|
|
1061
1063
|
attachments: attachments,
|
1062
1064
|
references: references,
|
1063
1065
|
hideEditted: message.channel_message.hide_editted,
|
1066
|
+
isPublic: message.channel_message.is_public
|
1064
1067
|
};
|
1065
1068
|
this.onchannelmessage(e);
|
1066
1069
|
} else if (message.message_typing_event) {
|