mezon-js 2.12.81 → 2.12.83
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
|
@@ -374,6 +374,8 @@ export interface ApiAccount {
|
|
|
374
374
|
verify_time?: string;
|
|
375
375
|
//The user's wallet data.
|
|
376
376
|
wallet?: number;
|
|
377
|
+
//Password is setted
|
|
378
|
+
password_setted?: boolean;
|
|
377
379
|
}
|
|
378
380
|
|
|
379
381
|
/** Send a app token to the server. Used with authenticate/link/unlink. */
|
|
@@ -1218,6 +1220,8 @@ export interface ApiCreateRoleRequest {
|
|
|
1218
1220
|
|
|
1219
1221
|
/** Delete a channel the user has access to. */
|
|
1220
1222
|
export interface ApiDeleteChannelDescRequest {
|
|
1223
|
+
//The clan id
|
|
1224
|
+
clan_id?: string;
|
|
1221
1225
|
//The id of a channel.
|
|
1222
1226
|
channel_id?: string;
|
|
1223
1227
|
}
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -213,6 +213,7 @@ export interface ApiAccount {
|
|
|
213
213
|
user?: ApiUser;
|
|
214
214
|
verify_time?: string;
|
|
215
215
|
wallet?: number;
|
|
216
|
+
password_setted?: boolean;
|
|
216
217
|
}
|
|
217
218
|
/** Send a app token to the server. Used with authenticate/link/unlink. */
|
|
218
219
|
export interface ApiAccountApp {
|
|
@@ -687,6 +688,7 @@ export interface ApiCreateRoleRequest {
|
|
|
687
688
|
}
|
|
688
689
|
/** Delete a channel the user has access to. */
|
|
689
690
|
export interface ApiDeleteChannelDescRequest {
|
|
691
|
+
clan_id?: string;
|
|
690
692
|
channel_id?: string;
|
|
691
693
|
}
|
|
692
694
|
/** */
|