mezon-js 2.12.59 → 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
@@ -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/dist/api.gen.d.ts CHANGED
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.12.59",
3
+ "version": "2.12.60",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },