mezon-js 2.12.65 → 2.12.67

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
@@ -180,6 +180,8 @@ export interface MezonUpdateClanDescBody {
180
180
  description?: string;
181
181
  // about
182
182
  about?: string;
183
+ // short url for community
184
+ short_url?: string;
183
185
  }
184
186
 
185
187
  /** */
@@ -3265,6 +3267,8 @@ export interface ApiClanDiscover {
3265
3267
  total_members?: number;
3266
3268
  //
3267
3269
  verified?: boolean;
3270
+ //
3271
+ short_url?: string;
3268
3272
  }
3269
3273
 
3270
3274
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -103,6 +103,7 @@ export interface MezonUpdateClanDescBody {
103
103
  community_banner?: string;
104
104
  description?: string;
105
105
  about?: string;
106
+ short_url?: string;
106
107
  }
107
108
  /** */
108
109
  export interface MezonUpdateClanDescProfileBody {
@@ -1867,6 +1868,7 @@ export interface ApiClanDiscover {
1867
1868
  online_members?: number;
1868
1869
  total_members?: number;
1869
1870
  verified?: boolean;
1871
+ short_url?: string;
1870
1872
  }
1871
1873
  /** */
1872
1874
  export interface ApiListForSaleItemsRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.12.65",
3
+ "version": "2.12.67",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },