mezon-js 2.10.49 → 2.10.50

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
@@ -129,6 +129,7 @@ export interface LastPinMessageEvent {
129
129
  /** operation */
130
130
  operation: number;
131
131
  is_public: boolean;
132
+ clan_id: string;
132
133
  }
133
134
  export interface UnmuteEvent {
134
135
  channel_id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.49",
4
+ "version": "2.10.50",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -187,6 +187,8 @@ export interface LastPinMessageEvent {
187
187
  operation: number;
188
188
  // Is public
189
189
  is_public: boolean;
190
+ // clan Id
191
+ clan_id: string;
190
192
  }
191
193
 
192
194
  export interface UnmuteEvent {