mezon-js 2.9.26 → 2.9.28

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
@@ -571,6 +571,8 @@ export interface ApiChannelDescription {
571
571
  //
572
572
  creator_name?: string;
573
573
  //
574
+ is_mute?: boolean;
575
+ //
574
576
  last_pin_message?: string;
575
577
  //
576
578
  last_seen_message?: ApiChannelMessageHeader;
@@ -653,7 +655,7 @@ export interface ApiChannelMessage {
653
655
  // channel mode
654
656
  mode?: number;
655
657
  // hide editted
656
- hideEditted?: boolean;
658
+ hide_editted?: boolean;
657
659
  }
658
660
 
659
661
  /** */
package/client.ts CHANGED
@@ -1429,6 +1429,7 @@ export class Client {
1429
1429
  clan_id: m.clan_id,
1430
1430
  create_time_seconds: m.create_time_seconds,
1431
1431
  update_time_seconds: m.update_time_seconds,
1432
+ hide_editted: m.hide_editted,
1432
1433
  });
1433
1434
  });
1434
1435
  return Promise.resolve(result);
package/dist/api.gen.d.ts CHANGED
@@ -334,6 +334,7 @@ export interface ApiChannelDescription {
334
334
  create_time_seconds?: number;
335
335
  creator_id?: string;
336
336
  creator_name?: string;
337
+ is_mute?: boolean;
337
338
  last_pin_message?: string;
338
339
  last_seen_message?: ApiChannelMessageHeader;
339
340
  last_sent_message?: ApiChannelMessageHeader;
@@ -376,7 +377,7 @@ export interface ApiChannelMessage {
376
377
  update_time_seconds?: number;
377
378
  username?: string;
378
379
  mode?: number;
379
- hideEditted?: boolean;
380
+ hide_editted?: boolean;
380
381
  }
381
382
  /** */
382
383
  export interface ApiChannelMessageHeader {
@@ -7050,7 +7050,8 @@ var Client = class {
7050
7050
  references,
7051
7051
  clan_id: m.clan_id,
7052
7052
  create_time_seconds: m.create_time_seconds,
7053
- update_time_seconds: m.update_time_seconds
7053
+ update_time_seconds: m.update_time_seconds,
7054
+ hide_editted: m.hide_editted
7054
7055
  });
7055
7056
  });
7056
7057
  return Promise.resolve(result);
@@ -7021,7 +7021,8 @@ var Client = class {
7021
7021
  references,
7022
7022
  clan_id: m.clan_id,
7023
7023
  create_time_seconds: m.create_time_seconds,
7024
- update_time_seconds: m.update_time_seconds
7024
+ update_time_seconds: m.update_time_seconds,
7025
+ hide_editted: m.hide_editted
7025
7026
  });
7026
7027
  });
7027
7028
  return Promise.resolve(result);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.9.26",
4
+ "version": "2.9.28",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"