mezon-js 2.13.32 → 2.13.33
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 +1 -6
- package/dist/api.gen.d.ts +1 -3
- package/package.json +1 -1
package/api.gen.ts
CHANGED
|
@@ -2291,12 +2291,7 @@ export interface ApiRole {
|
|
|
2291
2291
|
|
|
2292
2292
|
/** A list of role description, usually a result of a list operation. */
|
|
2293
2293
|
export interface ApiRoleList {
|
|
2294
|
-
|
|
2295
|
-
cacheable_cursor?: string;
|
|
2296
|
-
//The cursor to send when retrieving the next page, if any.
|
|
2297
|
-
next_cursor?: string;
|
|
2298
|
-
//The cursor to send when retrieving the previous page, if any.
|
|
2299
|
-
prev_cursor?: string;
|
|
2294
|
+
max_level_permission?: number;
|
|
2300
2295
|
//A list of role.
|
|
2301
2296
|
roles?: Array<ApiRole>;
|
|
2302
2297
|
}
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -1310,9 +1310,7 @@ export interface ApiRole {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
/** A list of role description, usually a result of a list operation. */
|
|
1312
1312
|
export interface ApiRoleList {
|
|
1313
|
-
|
|
1314
|
-
next_cursor?: string;
|
|
1315
|
-
prev_cursor?: string;
|
|
1313
|
+
max_level_permission?: number;
|
|
1316
1314
|
roles?: Array<ApiRole>;
|
|
1317
1315
|
}
|
|
1318
1316
|
/** */
|