mezon-js 2.7.4 → 2.7.6
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 +1 -1
- package/dist/api.gen.d.ts +1 -1
- package/dist/socket.d.ts +2 -0
- package/package.json +1 -1
- package/socket.ts +4 -0
package/api.gen.ts
CHANGED
package/dist/api.gen.d.ts
CHANGED
package/dist/socket.d.ts
CHANGED
@@ -268,8 +268,10 @@ export interface ChannelCreatedEvent {
|
|
268
268
|
clan_id: string;
|
269
269
|
category_id: string;
|
270
270
|
creator_id: string;
|
271
|
+
parrent_id: string;
|
271
272
|
channel_id: string;
|
272
273
|
channel_label: string;
|
274
|
+
channel_type: number;
|
273
275
|
}
|
274
276
|
export interface ChannelDeletedEvent {
|
275
277
|
clan_id: string;
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -372,10 +372,14 @@ export interface ChannelCreatedEvent {
|
|
372
372
|
category_id: string;
|
373
373
|
// creator
|
374
374
|
creator_id: string;
|
375
|
+
// parrent_id
|
376
|
+
parrent_id: string;
|
375
377
|
// channel id
|
376
378
|
channel_id: string;
|
377
379
|
// channel label
|
378
380
|
channel_label: string;
|
381
|
+
// channel type
|
382
|
+
channel_type: number;
|
379
383
|
}
|
380
384
|
|
381
385
|
export interface ChannelDeletedEvent {
|