mezon-js 2.13.57 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.57",
3
+ "version": "2.13.58",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },