mezon-js 2.13.52 → 2.13.54
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 +5 -3
- package/dist/api.gen.d.ts +1 -3
- package/dist/socket.d.ts +1 -0
- package/package.json +1 -1
- package/socket.ts +2 -0
package/api.gen.ts
CHANGED
|
@@ -1665,16 +1665,18 @@ export interface ApiMessageAttachment {
|
|
|
1665
1665
|
width?: number;
|
|
1666
1666
|
//
|
|
1667
1667
|
thumbnail?: string;
|
|
1668
|
-
|
|
1668
|
+
// The channel this message belongs to.
|
|
1669
1669
|
channel_id?: string;
|
|
1670
1670
|
// The mode
|
|
1671
1671
|
mode?: number;
|
|
1672
1672
|
// The channel label
|
|
1673
1673
|
channel_label?: string;
|
|
1674
|
-
|
|
1674
|
+
// The message that user react
|
|
1675
1675
|
message_id?: string;
|
|
1676
|
-
|
|
1676
|
+
// Message sender, usually a user ID.
|
|
1677
1677
|
sender_id?: string;
|
|
1678
|
+
// duration for video in seconds
|
|
1679
|
+
duration?: number;
|
|
1678
1680
|
}
|
|
1679
1681
|
|
|
1680
1682
|
/** */
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -947,14 +947,12 @@ export interface ApiMessageAttachment {
|
|
|
947
947
|
url?: string;
|
|
948
948
|
width?: number;
|
|
949
949
|
thumbnail?: string;
|
|
950
|
-
/** The channel this message belongs to. */
|
|
951
950
|
channel_id?: string;
|
|
952
951
|
mode?: number;
|
|
953
952
|
channel_label?: string;
|
|
954
|
-
/** The message that user react */
|
|
955
953
|
message_id?: string;
|
|
956
|
-
/** Message sender, usually a user ID. */
|
|
957
954
|
sender_id?: string;
|
|
955
|
+
duration?: number;
|
|
958
956
|
}
|
|
959
957
|
/** */
|
|
960
958
|
export interface ApiMessageDeleted {
|
package/dist/socket.d.ts
CHANGED
package/package.json
CHANGED