mezon-js 2.13.56 → 2.13.58

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
@@ -3338,6 +3338,8 @@ export class Client {
3338
3338
  app_id: gu.app_id,
3339
3339
  clan_id: gu.clan_id,
3340
3340
  app_url: gu.app_url,
3341
+ app_name: gu.app_name,
3342
+ app_logo: gu.app_logo,
3341
3343
  });
3342
3344
  });
3343
3345
  return Promise.resolve(result);
@@ -10315,7 +10315,9 @@ var Client = class {
10315
10315
  channel_id: gu.channel_id,
10316
10316
  app_id: gu.app_id,
10317
10317
  clan_id: gu.clan_id,
10318
- app_url: gu.app_url
10318
+ app_url: gu.app_url,
10319
+ app_name: gu.app_name,
10320
+ app_logo: gu.app_logo
10319
10321
  });
10320
10322
  });
10321
10323
  return Promise.resolve(result);
@@ -10281,7 +10281,9 @@ var Client = class {
10281
10281
  channel_id: gu.channel_id,
10282
10282
  app_id: gu.app_id,
10283
10283
  clan_id: gu.clan_id,
10284
- app_url: gu.app_url
10284
+ app_url: gu.app_url,
10285
+ app_name: gu.app_name,
10286
+ app_logo: gu.app_logo
10285
10287
  });
10286
10288
  });
10287
10289
  return Promise.resolve(result);
package/dist/socket.d.ts CHANGED
@@ -106,6 +106,7 @@ export interface BannedUserEvent {
106
106
  banner_id: string;
107
107
  channel_id: string;
108
108
  clan_id: string;
109
+ ban_time: number;
109
110
  }
110
111
  export interface UserProfileRedis {
111
112
  /** User IDs to follow. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.56",
3
+ "version": "2.13.58",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -184,6 +184,7 @@ export interface BannedUserEvent {
184
184
  banner_id: string;
185
185
  channel_id: string;
186
186
  clan_id: string;
187
+ ban_time: number
187
188
  }
188
189
 
189
190
  export interface UserProfileRedis {