mezon-js 2.9.89 → 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
@@ -288,6 +288,8 @@ export interface ChannelUpdatedEvent {
288
288
  is_error: boolean;
289
289
  app_url: string;
290
290
  e2ee: number;
291
+ topic: string;
292
+ age_restricted: number;
291
293
  }
292
294
  export interface ChannelCreatedEvent {
293
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.89",
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
@@ -423,6 +423,10 @@ export interface ChannelUpdatedEvent {
423
423
  app_url: string;
424
424
  // e2ee
425
425
  e2ee: number;
426
+ //
427
+ topic: string;
428
+ //
429
+ age_restricted: number;
426
430
  }
427
431
 
428
432
  export interface ChannelCreatedEvent {