mezon-js 2.7.5 → 2.7.6

Sign up to get free protection for your applications and to get access to all the features.
package/dist/socket.d.ts CHANGED
@@ -271,6 +271,7 @@ export interface ChannelCreatedEvent {
271
271
  parrent_id: string;
272
272
  channel_id: string;
273
273
  channel_label: string;
274
+ channel_type: number;
274
275
  }
275
276
  export interface ChannelDeletedEvent {
276
277
  clan_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -378,6 +378,8 @@ export interface ChannelCreatedEvent {
378
378
  channel_id: string;
379
379
  // channel label
380
380
  channel_label: string;
381
+ // channel type
382
+ channel_type: number;
381
383
  }
382
384
 
383
385
  export interface ChannelDeletedEvent {