mezon-js 2.13.8 → 2.13.10

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/api.gen.ts CHANGED
@@ -3319,6 +3319,8 @@ export interface ApiClanDiscover {
3319
3319
  verified?: boolean;
3320
3320
  //
3321
3321
  short_url?: string;
3322
+ //
3323
+ create_time?: string;
3322
3324
  }
3323
3325
 
3324
3326
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -1898,6 +1898,7 @@ export interface ApiClanDiscover {
1898
1898
  total_members?: number;
1899
1899
  verified?: boolean;
1900
1900
  short_url?: string;
1901
+ create_time?: string;
1901
1902
  }
1902
1903
  /** */
1903
1904
  export interface ApiListForSaleItemsRequest {
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.10",
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 {