mezon-js 2.9.47 → 2.9.48

Sign up to get free protection for your applications and to get access to all the features.
package/dist/socket.d.ts CHANGED
@@ -29,6 +29,7 @@ export interface Presence {
29
29
  node: string;
30
30
  /** The status of the user */
31
31
  status: string;
32
+ is_mobile: boolean;
32
33
  }
33
34
  /** A response from a channel join operation. */
34
35
  export interface Channel {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.9.47",
4
+ "version": "2.9.48",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -36,6 +36,8 @@ export interface Presence {
36
36
  node: string;
37
37
  /** The status of the user */
38
38
  status: string;
39
+ //
40
+ is_mobile: boolean
39
41
  }
40
42
 
41
43
  /** A response from a channel join operation. */