mezon-js 2.12.58 → 2.12.60
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 +3 -3
- package/client.ts +1 -1
- package/dist/api.gen.d.ts +3 -3
- package/dist/client.d.ts +1 -1
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -751,7 +751,7 @@ export interface ApiChannelDescription {
|
|
751
751
|
//
|
752
752
|
is_online?: Array<boolean>;
|
753
753
|
//
|
754
|
-
|
754
|
+
topic?: string;
|
755
755
|
//The channel type.
|
756
756
|
type?: number;
|
757
757
|
//
|
@@ -3306,7 +3306,7 @@ export interface ApiClanDiscoverRequest {
|
|
3306
3306
|
/** */
|
3307
3307
|
export interface ApiIsFollowerRequest {
|
3308
3308
|
//
|
3309
|
-
|
3309
|
+
follow_id?: string;
|
3310
3310
|
}
|
3311
3311
|
|
3312
3312
|
/** */
|
@@ -3314,7 +3314,7 @@ export interface ApiIsFollowerResponse {
|
|
3314
3314
|
//
|
3315
3315
|
is_follower?: boolean;
|
3316
3316
|
//
|
3317
|
-
|
3317
|
+
follow_id?: string;
|
3318
3318
|
}
|
3319
3319
|
|
3320
3320
|
export class MezonApi {
|
package/client.ts
CHANGED
package/dist/api.gen.d.ts
CHANGED
@@ -429,7 +429,7 @@ export interface ApiChannelDescription {
|
|
429
429
|
meeting_uri?: string;
|
430
430
|
parent_id?: string;
|
431
431
|
is_online?: Array<boolean>;
|
432
|
-
|
432
|
+
topic?: string;
|
433
433
|
type?: number;
|
434
434
|
update_time_seconds?: number;
|
435
435
|
user_id?: Array<string>;
|
@@ -1893,12 +1893,12 @@ export interface ApiClanDiscoverRequest {
|
|
1893
1893
|
}
|
1894
1894
|
/** */
|
1895
1895
|
export interface ApiIsFollowerRequest {
|
1896
|
-
|
1896
|
+
follow_id?: string;
|
1897
1897
|
}
|
1898
1898
|
/** */
|
1899
1899
|
export interface ApiIsFollowerResponse {
|
1900
1900
|
is_follower?: boolean;
|
1901
|
-
|
1901
|
+
follow_id?: string;
|
1902
1902
|
}
|
1903
1903
|
export declare class MezonApi {
|
1904
1904
|
readonly serverKey: string;
|
package/dist/client.d.ts
CHANGED