mezon-js 2.7.64 → 2.7.65

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
@@ -27,6 +27,8 @@ export interface Presence {
27
27
  username: string;
28
28
  /** The node the user is connected to. */
29
29
  node: string;
30
+ /** The status of the user */
31
+ status: string;
30
32
  }
31
33
  /** A response from a channel join operation. */
32
34
  export interface Channel {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.64",
3
+ "version": "2.7.65",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -34,6 +34,8 @@ export interface Presence {
34
34
  username: string;
35
35
  /** The node the user is connected to. */
36
36
  node: string;
37
+ /** The status of the user */
38
+ status: string;
37
39
  }
38
40
 
39
41
  /** A response from a channel join operation. */