mezon-js 2.10.58 → 2.10.59

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/client.ts CHANGED
@@ -315,7 +315,7 @@ export interface User {
315
315
  /** The location set by the user. */
316
316
  location?: string;
317
317
  /** Additional information stored as a JSON object. */
318
- metadata?: {};
318
+ metadata?: { status?: string; user_status?: string };
319
319
  /** Indicates whether the user is currently online. */
320
320
  online?: boolean;
321
321
  /** The Steam id in the user's account. */
package/dist/client.d.ts CHANGED
@@ -126,7 +126,10 @@ export interface User {
126
126
  /** The location set by the user. */
127
127
  location?: string;
128
128
  /** Additional information stored as a JSON object. */
129
- metadata?: {};
129
+ metadata?: {
130
+ status?: string;
131
+ user_status?: string;
132
+ };
130
133
  /** Indicates whether the user is currently online. */
131
134
  online?: boolean;
132
135
  /** The Steam id in the user's account. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.58",
4
+ "version": "2.10.59",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"