mezon-js 2.9.88 → 2.9.90

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,9 @@ export interface ChannelUpdatedEvent {
287
287
  meeting_code: string;
288
288
  is_error: boolean;
289
289
  app_url: string;
290
+ e2ee: number;
291
+ topic: string;
292
+ age_restricted: number;
290
293
  }
291
294
  export interface ChannelCreatedEvent {
292
295
  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.90",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -421,6 +421,12 @@ export interface ChannelUpdatedEvent {
421
421
  is_error: boolean;
422
422
  // app url
423
423
  app_url: string;
424
+ // e2ee
425
+ e2ee: number;
426
+ //
427
+ topic: string;
428
+ //
429
+ age_restricted: number;
424
430
  }
425
431
 
426
432
  export interface ChannelCreatedEvent {