mezon-js 2.10.25 → 2.10.26

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
@@ -637,7 +637,7 @@ export interface TalkPTTChannel {
637
637
  user_id: string;
638
638
  channel_id: string;
639
639
  clan_id: string;
640
- isTalk: boolean;
640
+ is_talk: boolean;
641
641
  }
642
642
  /** PTT Joined event */
643
643
  export interface PTTLeavedEvent {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.25",
4
+ "version": "2.10.26",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -894,7 +894,7 @@ export interface TalkPTTChannel {
894
894
  // clan id
895
895
  clan_id: string;
896
896
  // is talk
897
- isTalk: boolean;
897
+ is_talk: boolean;
898
898
  }
899
899
 
900
900
  /** PTT Joined event */