mezon-js 2.7.30 → 2.7.31

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
@@ -262,6 +262,7 @@ export interface ChannelUpdatedEvent {
262
262
  channel_id: string;
263
263
  channel_label: string;
264
264
  channel_type: number;
265
+ status: number;
265
266
  }
266
267
  export interface ChannelCreatedEvent {
267
268
  clan_id: string;
@@ -271,6 +272,7 @@ export interface ChannelCreatedEvent {
271
272
  channel_id: string;
272
273
  channel_label: string;
273
274
  channel_type: number;
275
+ status: number;
274
276
  }
275
277
  export interface ChannelDeletedEvent {
276
278
  clan_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.30",
3
+ "version": "2.7.31",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -367,6 +367,8 @@ export interface ChannelUpdatedEvent {
367
367
  channel_label: string;
368
368
  // channel type
369
369
  channel_type: number;
370
+ // status
371
+ status: number;
370
372
  }
371
373
 
372
374
  export interface ChannelCreatedEvent {
@@ -384,6 +386,8 @@ export interface ChannelCreatedEvent {
384
386
  channel_label: string;
385
387
  // channel type
386
388
  channel_type: number;
389
+ // status
390
+ status: number;
387
391
  }
388
392
 
389
393
  export interface ChannelDeletedEvent {