mezon-js 2.12.41 → 2.12.42

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 CHANGED
@@ -159,6 +159,12 @@ export interface LastPinMessageEvent {
159
159
  operation: number;
160
160
  is_public: boolean;
161
161
  clan_id: string;
162
+ message_sender_avatar: string;
163
+ message_sender_id: string;
164
+ message_sender_username: string;
165
+ message_content: string;
166
+ message_attachment: string;
167
+ message_created_time: string;
162
168
  }
163
169
  export interface UnmuteEvent {
164
170
  channel_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.12.41",
3
+ "version": "2.12.42",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -262,6 +262,18 @@ export interface LastPinMessageEvent {
262
262
  is_public: boolean;
263
263
  // clan Id
264
264
  clan_id: string;
265
+ // avatar
266
+ message_sender_avatar: string;
267
+ // message sender id
268
+ message_sender_id: string;
269
+ // message sender username
270
+ message_sender_username: string;
271
+ // message content
272
+ message_content: string;
273
+ // attachment
274
+ message_attachment: string;
275
+ // create time
276
+ message_created_time: string;
265
277
  }
266
278
 
267
279
  export interface UnmuteEvent {