mezon-js 2.13.42 → 2.13.43
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 +2 -0
- package/dist/api.gen.d.ts +2 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
|
@@ -24,6 +24,7 @@ export interface ChannelUserListChannelUser {
|
|
|
24
24
|
added_by?: string;
|
|
25
25
|
// is banned
|
|
26
26
|
is_banned?: boolean;
|
|
27
|
+
expired_ban_time?: number;
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
/** */
|
|
@@ -2291,6 +2292,7 @@ export interface ApiRole {
|
|
|
2291
2292
|
export interface ApiIsBannedResponse {
|
|
2292
2293
|
//
|
|
2293
2294
|
is_banned?: boolean;
|
|
2295
|
+
expired_ban_time?: number;
|
|
2294
2296
|
}
|
|
2295
2297
|
|
|
2296
2298
|
/** A list of role description, usually a result of a list operation. */
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface ChannelUserListChannelUser {
|
|
|
9
9
|
user_id?: string;
|
|
10
10
|
added_by?: string;
|
|
11
11
|
is_banned?: boolean;
|
|
12
|
+
expired_ban_time?: number;
|
|
12
13
|
}
|
|
13
14
|
/** */
|
|
14
15
|
export interface ApiBannedUser {
|
|
@@ -1310,6 +1311,7 @@ export interface ApiRole {
|
|
|
1310
1311
|
/** */
|
|
1311
1312
|
export interface ApiIsBannedResponse {
|
|
1312
1313
|
is_banned?: boolean;
|
|
1314
|
+
expired_ban_time?: number;
|
|
1313
1315
|
}
|
|
1314
1316
|
/** A list of role description, usually a result of a list operation. */
|
|
1315
1317
|
export interface ApiRoleList {
|