mezon-js 2.8.7 → 2.8.8

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
@@ -971,9 +971,9 @@ export interface ApiMessageReaction {
971
971
  //
972
972
  action?: boolean;
973
973
  //
974
- emoji_id?: string;
974
+ emoji_id: string;
975
975
  //
976
- emoji?: string;
976
+ emoji: string;
977
977
  //
978
978
  id?: string;
979
979
  //
package/dist/api.gen.d.ts CHANGED
@@ -557,8 +557,8 @@ export interface ApiMessageMention {
557
557
  /** */
558
558
  export interface ApiMessageReaction {
559
559
  action?: boolean;
560
- emoji_id?: string;
561
- emoji?: string;
560
+ emoji_id: string;
561
+ emoji: string;
562
562
  id?: string;
563
563
  sender_id?: string;
564
564
  sender_name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.8.7",
3
+ "version": "2.8.8",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },