mezon-js 2.9.76 → 2.9.77
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 +4 -0
- package/dist/api.gen.d.ts +2 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
|
@@ -153,6 +153,8 @@ export interface MezonUpdateClanDescBody {
|
|
|
153
153
|
logo?: string;
|
|
154
154
|
//
|
|
155
155
|
status?: number;
|
|
156
|
+
// Is onboarding.
|
|
157
|
+
is_onboarding?: boolean;
|
|
156
158
|
}
|
|
157
159
|
|
|
158
160
|
/** */
|
|
@@ -896,6 +898,8 @@ export interface ApiClanDesc {
|
|
|
896
898
|
status?: number;
|
|
897
899
|
//
|
|
898
900
|
badge_count?: number;
|
|
901
|
+
// Is onboarding.
|
|
902
|
+
is_onboarding?: boolean;
|
|
899
903
|
}
|
|
900
904
|
|
|
901
905
|
/** */
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ export interface MezonUpdateClanDescBody {
|
|
|
90
90
|
creator_id?: string;
|
|
91
91
|
logo?: string;
|
|
92
92
|
status?: number;
|
|
93
|
+
is_onboarding?: boolean;
|
|
93
94
|
}
|
|
94
95
|
/** */
|
|
95
96
|
export interface MezonUpdateClanDescProfileBody {
|
|
@@ -516,6 +517,7 @@ export interface ApiClanDesc {
|
|
|
516
517
|
logo?: string;
|
|
517
518
|
status?: number;
|
|
518
519
|
badge_count?: number;
|
|
520
|
+
is_onboarding?: boolean;
|
|
519
521
|
}
|
|
520
522
|
/** */
|
|
521
523
|
export interface ApiClanDescList {
|