mezon-js 2.7.68 → 2.7.69

Sign up to get free protection for your applications and to get access to all the features.
package/dist/socket.d.ts CHANGED
@@ -79,6 +79,10 @@ export interface LastPinMessageEvent {
79
79
  channel_label: string;
80
80
  /** The unique ID of this message. */
81
81
  message_id: string;
82
+ /** user id */
83
+ user_id: string;
84
+ /** operation */
85
+ operation: number;
82
86
  }
83
87
  /** Last seen message by user */
84
88
  export interface LastSeenMessageEvent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.68",
3
+ "version": "2.7.69",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -98,6 +98,10 @@ export interface LastPinMessageEvent {
98
98
  channel_label: string;
99
99
  /** The unique ID of this message. */
100
100
  message_id: string;
101
+ /** user id */
102
+ user_id: string;
103
+ /** operation */
104
+ operation: number;
101
105
  }
102
106
 
103
107
  /** Last seen message by user */