mezon-js 2.10.93 → 2.10.94

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
@@ -338,6 +338,7 @@ export interface ChannelCreatedEvent {
338
338
  channel_type: number;
339
339
  status: number;
340
340
  app_url: string;
341
+ clan_name: string;
341
342
  }
342
343
  export interface ChannelDeletedEvent {
343
344
  clan_id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.93",
4
+ "version": "2.10.94",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -505,6 +505,8 @@ export interface ChannelCreatedEvent {
505
505
  status: number;
506
506
  // app url
507
507
  app_url: string;
508
+ // clan_name
509
+ clan_name: string;
508
510
  }
509
511
 
510
512
  export interface ChannelDeletedEvent {