mezon-js 2.9.88 → 2.9.89

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
@@ -287,6 +287,7 @@ export interface ChannelUpdatedEvent {
287
287
  meeting_code: string;
288
288
  is_error: boolean;
289
289
  app_url: string;
290
+ e2ee: number;
290
291
  }
291
292
  export interface ChannelCreatedEvent {
292
293
  clan_id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.9.88",
4
+ "version": "2.9.89",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -421,6 +421,8 @@ export interface ChannelUpdatedEvent {
421
421
  is_error: boolean;
422
422
  // app url
423
423
  app_url: string;
424
+ // e2ee
425
+ e2ee: number;
424
426
  }
425
427
 
426
428
  export interface ChannelCreatedEvent {