mezon-js 2.9.26 → 2.9.27

Sign up to get free protection for your applications and to get access to all the features.
package/api.gen.ts CHANGED
@@ -653,7 +653,7 @@ export interface ApiChannelMessage {
653
653
  // channel mode
654
654
  mode?: number;
655
655
  // hide editted
656
- hideEditted?: boolean;
656
+ hide_editted?: boolean;
657
657
  }
658
658
 
659
659
  /** */
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
@@ -376,7 +376,7 @@ export interface ApiChannelMessage {
376
376
  update_time_seconds?: number;
377
377
  username?: string;
378
378
  mode?: number;
379
- hideEditted?: boolean;
379
+ hide_editted?: boolean;
380
380
  }
381
381
  /** */
382
382
  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.27",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"