mezon-js 2.10.55 → 2.10.56
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/socket.d.ts +1 -0
- package/package.json +1 -1
- package/socket.ts +2 -0
package/dist/socket.d.ts
CHANGED
@@ -163,6 +163,7 @@ export interface UserProfileUpdatedEvent {
|
|
163
163
|
about_me: string;
|
164
164
|
channel_id: string;
|
165
165
|
clan_id: string;
|
166
|
+
encrypt_private_key: string;
|
166
167
|
}
|
167
168
|
/** An acknowledgement received in response to sending a message on a chat channel. */
|
168
169
|
export interface ChannelMessageAck {
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -242,6 +242,8 @@ export interface UserProfileUpdatedEvent {
|
|
242
242
|
channel_id: string;
|
243
243
|
// the clan_id
|
244
244
|
clan_id: string;
|
245
|
+
// the encrypt_private_key
|
246
|
+
encrypt_private_key: string;
|
245
247
|
}
|
246
248
|
|
247
249
|
/** An acknowledgement received in response to sending a message on a chat channel. */
|