mezon-js 2.8.69 → 2.8.71

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/api.gen.ts CHANGED
@@ -487,7 +487,7 @@ export interface ApiChannelDescription {
487
487
  //The parrent channel this message belongs to.
488
488
  parrent_id?: string;
489
489
  //
490
- status?: number;
490
+ is_online?: Array<boolean>;
491
491
  //The channel type.
492
492
  type?: number;
493
493
  //
@@ -496,6 +496,8 @@ export interface ApiChannelDescription {
496
496
  user_id?: Array<string>;
497
497
  //
498
498
  usernames?: string;
499
+ //
500
+ status?: number;
499
501
  }
500
502
 
501
503
  /** A message sent on a channel. */
package/dist/api.gen.d.ts CHANGED
@@ -281,11 +281,12 @@ export interface ApiChannelDescription {
281
281
  meeting_code?: string;
282
282
  meeting_uri?: string;
283
283
  parrent_id?: string;
284
- status?: number;
284
+ is_online?: Array<boolean>;
285
285
  type?: number;
286
286
  update_time_seconds?: number;
287
287
  user_id?: Array<string>;
288
288
  usernames?: string;
289
+ status?: number;
289
290
  }
290
291
  /** A message sent on a channel. */
291
292
  export interface ApiChannelMessage {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.8.69",
3
+ "version": "2.8.71",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },