mezon-js 2.7.48 → 2.7.49
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/socket.d.ts +2 -2
- package/package.json +1 -1
- package/socket.ts +2 -2
package/dist/socket.d.ts
CHANGED
@@ -49,9 +49,9 @@ export interface ClanJoin {
|
|
49
49
|
interface ChannelJoin {
|
50
50
|
channel_join: {
|
51
51
|
/** The id of the channel to join. */
|
52
|
-
|
52
|
+
channel_id: string;
|
53
53
|
/** The name of the channel to join. */
|
54
|
-
|
54
|
+
channel_label: string;
|
55
55
|
/** The channel type: 1 = Channel, 2 = Direct Message, 3 = Group. */
|
56
56
|
type: number;
|
57
57
|
/** Whether channel messages are persisted in the database. */
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -64,9 +64,9 @@ export interface ClanJoin {
|
|
64
64
|
interface ChannelJoin {
|
65
65
|
channel_join: {
|
66
66
|
/** The id of the channel to join. */
|
67
|
-
|
67
|
+
channel_id: string;
|
68
68
|
/** The name of the channel to join. */
|
69
|
-
|
69
|
+
channel_label: string;
|
70
70
|
/** The channel type: 1 = Channel, 2 = Direct Message, 3 = Group. */
|
71
71
|
type: number;
|
72
72
|
/** Whether channel messages are persisted in the database. */
|