mezon-js 2.7.68 → 2.7.69
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/socket.d.ts +4 -0
- package/package.json +1 -1
- package/socket.ts +4 -0
package/dist/socket.d.ts
CHANGED
@@ -79,6 +79,10 @@ export interface LastPinMessageEvent {
|
|
79
79
|
channel_label: string;
|
80
80
|
/** The unique ID of this message. */
|
81
81
|
message_id: string;
|
82
|
+
/** user id */
|
83
|
+
user_id: string;
|
84
|
+
/** operation */
|
85
|
+
operation: number;
|
82
86
|
}
|
83
87
|
/** Last seen message by user */
|
84
88
|
export interface LastSeenMessageEvent {
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -98,6 +98,10 @@ export interface LastPinMessageEvent {
|
|
98
98
|
channel_label: string;
|
99
99
|
/** The unique ID of this message. */
|
100
100
|
message_id: string;
|
101
|
+
/** user id */
|
102
|
+
user_id: string;
|
103
|
+
/** operation */
|
104
|
+
operation: number;
|
101
105
|
}
|
102
106
|
|
103
107
|
/** Last seen message by user */
|