mezon-js 2.13.53 → 2.13.55

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
@@ -646,6 +646,10 @@ export interface ApiChannelAppResponse {
646
646
  id?: string;
647
647
  //
648
648
  app_url?: string;
649
+ //
650
+ app_name?: string;
651
+ //
652
+ app_logo?: string;
649
653
  }
650
654
 
651
655
  /** */
@@ -1665,16 +1669,18 @@ export interface ApiMessageAttachment {
1665
1669
  width?: number;
1666
1670
  //
1667
1671
  thumbnail?: string;
1668
- /** The channel this message belongs to. */
1672
+ // The channel this message belongs to.
1669
1673
  channel_id?: string;
1670
1674
  // The mode
1671
1675
  mode?: number;
1672
1676
  // The channel label
1673
1677
  channel_label?: string;
1674
- /** The message that user react */
1678
+ // The message that user react
1675
1679
  message_id?: string;
1676
- /** Message sender, usually a user ID. */
1680
+ // Message sender, usually a user ID.
1677
1681
  sender_id?: string;
1682
+ // duration for video in seconds
1683
+ duration?: number;
1678
1684
  }
1679
1685
 
1680
1686
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -373,6 +373,8 @@ export interface ApiChannelAppResponse {
373
373
  clan_id?: string;
374
374
  id?: string;
375
375
  app_url?: string;
376
+ app_name?: string;
377
+ app_logo?: string;
376
378
  }
377
379
  /** */
378
380
  export interface ApiChannelAttachment {
@@ -947,14 +949,12 @@ export interface ApiMessageAttachment {
947
949
  url?: string;
948
950
  width?: number;
949
951
  thumbnail?: string;
950
- /** The channel this message belongs to. */
951
952
  channel_id?: string;
952
953
  mode?: number;
953
954
  channel_label?: string;
954
- /** The message that user react */
955
955
  message_id?: string;
956
- /** Message sender, usually a user ID. */
957
956
  sender_id?: string;
957
+ duration?: number;
958
958
  }
959
959
  /** */
960
960
  export interface ApiMessageDeleted {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.53",
3
+ "version": "2.13.55",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },