mezon-js 2.13.8 → 2.13.9

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
@@ -30,7 +30,7 @@ export interface Presence {
30
30
  /** The status of the user */
31
31
  status: string;
32
32
  is_mobile: boolean;
33
- metadata: string;
33
+ user_status: string;
34
34
  }
35
35
  export interface NotificationInfo {
36
36
  /** Category code for this notification. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.8",
3
+ "version": "2.13.9",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -86,8 +86,8 @@ export interface Presence {
86
86
  status: string;
87
87
  // User Mobile
88
88
  is_mobile: boolean;
89
- // Metadata
90
- metadata: string;
89
+ // user status
90
+ user_status: string;
91
91
  }
92
92
 
93
93
  export interface NotificationInfo {