mezon-js 2.8.26 → 2.8.27

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
@@ -484,6 +484,7 @@ export interface ChannelDescription {
484
484
  channel_private?: number;
485
485
  meeting_code?: string;
486
486
  clan_name?: string;
487
+ parrent_id?: string;
487
488
  }
488
489
  export interface HashtagDmListEvent {
489
490
  user_id?: Array<string>;
@@ -498,6 +499,7 @@ export interface HashtagDm {
498
499
  meeting_code?: string;
499
500
  type?: number;
500
501
  channel_private?: number;
502
+ parrent_id?: string;
501
503
  }
502
504
  /** A socket connection to Mezon server. */
503
505
  export interface Socket {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.8.26",
3
+ "version": "2.8.27",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -697,6 +697,8 @@ export interface ChannelDescription {
697
697
  meeting_code?: string;
698
698
  //
699
699
  clan_name?: string;
700
+ //
701
+ parrent_id?: string;
700
702
  }
701
703
 
702
704
  // A list of Channel
@@ -725,6 +727,8 @@ export interface HashtagDm {
725
727
  type?: number;
726
728
  //
727
729
  channel_private?: number;
730
+ //
731
+ parrent_id?: string;
728
732
  }
729
733
 
730
734
  /** A socket connection to Mezon server. */