mezon-js 2.8.69 → 2.8.71
Sign up to get free protection for your applications and to get access to all the features.
- package/api.gen.ts +3 -1
- package/dist/api.gen.d.ts +2 -1
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -487,7 +487,7 @@ export interface ApiChannelDescription {
|
|
487
487
|
//The parrent channel this message belongs to.
|
488
488
|
parrent_id?: string;
|
489
489
|
//
|
490
|
-
|
490
|
+
is_online?: Array<boolean>;
|
491
491
|
//The channel type.
|
492
492
|
type?: number;
|
493
493
|
//
|
@@ -496,6 +496,8 @@ export interface ApiChannelDescription {
|
|
496
496
|
user_id?: Array<string>;
|
497
497
|
//
|
498
498
|
usernames?: string;
|
499
|
+
//
|
500
|
+
status?: number;
|
499
501
|
}
|
500
502
|
|
501
503
|
/** A message sent on a channel. */
|
package/dist/api.gen.d.ts
CHANGED
@@ -281,11 +281,12 @@ export interface ApiChannelDescription {
|
|
281
281
|
meeting_code?: string;
|
282
282
|
meeting_uri?: string;
|
283
283
|
parrent_id?: string;
|
284
|
-
|
284
|
+
is_online?: Array<boolean>;
|
285
285
|
type?: number;
|
286
286
|
update_time_seconds?: number;
|
287
287
|
user_id?: Array<string>;
|
288
288
|
usernames?: string;
|
289
|
+
status?: number;
|
289
290
|
}
|
290
291
|
/** A message sent on a channel. */
|
291
292
|
export interface ApiChannelMessage {
|