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 CHANGED
@@ -751,7 +751,7 @@ export interface ApiChannelDescription {
751
751
  //
752
752
  is_online?: Array<boolean>;
753
753
  //
754
- avatar_url?: string;
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
- username?: string;
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
- username?: string;
3317
+ follow_id?: string;
3318
3318
  }
3319
3319
 
3320
3320
  export class MezonApi {
package/client.ts CHANGED
@@ -478,7 +478,7 @@ export interface ApiUpdateChannelDescRequest {
478
478
  //
479
479
  e2ee?: number;
480
480
  //
481
- avatar_url?: string;
481
+ topic?: string;
482
482
  //
483
483
  age_restricted?: number;
484
484
  }
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
- avatar_url?: string;
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
- username?: string;
1896
+ follow_id?: string;
1897
1897
  }
1898
1898
  /** */
1899
1899
  export interface ApiIsFollowerResponse {
1900
1900
  is_follower?: boolean;
1901
- username?: string;
1901
+ follow_id?: string;
1902
1902
  }
1903
1903
  export declare class MezonApi {
1904
1904
  readonly serverKey: string;
package/dist/client.d.ts CHANGED
@@ -264,7 +264,7 @@ export interface ApiUpdateChannelDescRequest {
264
264
  /** The app url of channel */
265
265
  app_id: string | undefined;
266
266
  e2ee?: number;
267
- avatar_url?: string;
267
+ topic?: string;
268
268
  age_restricted?: number;
269
269
  }
270
270
  /** Add users to a channel. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.12.58",
3
+ "version": "2.12.60",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },