mezon-js 2.10.7 → 2.10.8

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
@@ -627,9 +627,6 @@ export interface JoinPTTChannel {
627
627
  }
628
628
  export interface TalkPTTChannel {
629
629
  channel_id: string;
630
- data_type: number;
631
- json_data: string;
632
- state: number;
633
630
  }
634
631
  /** PTT Joined event */
635
632
  export interface PTTLeavedEvent {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.7",
4
+ "version": "2.10.8",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -882,12 +882,6 @@ export interface JoinPTTChannel {
882
882
  export interface TalkPTTChannel {
883
883
  // channel id
884
884
  channel_id: string;
885
- // type offer, answer or candidate
886
- data_type: number;
887
- // offer
888
- json_data: string;
889
- // start or end
890
- state: number;
891
885
  }
892
886
 
893
887
  /** PTT Joined event */