mezon-js 2.7.98 → 2.7.99

Sign up to get free protection for your applications and to get access to all the features.
package/api.gen.ts CHANGED
@@ -22,6 +22,8 @@ export interface ChannelUserListChannelUser {
22
22
 
23
23
  /** A single user-role pair. */
24
24
  export interface ClanUserListClanUser {
25
+ //from the `nick_name` field in the `clan_desc_profile` table.
26
+ nick_name?: string;
25
27
  //Their relationship to the role.
26
28
  role_id?: string;
27
29
  //User.
package/dist/api.gen.d.ts CHANGED
@@ -9,6 +9,7 @@ export interface ChannelUserListChannelUser {
9
9
  }
10
10
  /** A single user-role pair. */
11
11
  export interface ClanUserListClanUser {
12
+ nick_name?: string;
12
13
  role_id?: string;
13
14
  user?: ApiUser;
14
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.98",
3
+ "version": "2.7.99",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },