nb-js-client 1.0.44 → 1.0.46
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/dist/index.d.ts +2 -0
- package/dist/types/permission.d.ts +1 -0
- package/dist/types/user.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -206,6 +206,7 @@ interface User {
|
|
|
206
206
|
status: UserStatus;
|
|
207
207
|
type: UserType;
|
|
208
208
|
role_id: number | null;
|
|
209
|
+
is_active: boolean;
|
|
209
210
|
phone?: string;
|
|
210
211
|
used_size?: number;
|
|
211
212
|
}
|
|
@@ -1043,6 +1044,7 @@ interface PayloadArchive {
|
|
|
1043
1044
|
interface Permission {
|
|
1044
1045
|
group_name: Lang;
|
|
1045
1046
|
permissions: PermissionItem[];
|
|
1047
|
+
group_description?: Lang;
|
|
1046
1048
|
}
|
|
1047
1049
|
interface PermissionItem {
|
|
1048
1050
|
id: number;
|
package/dist/types/user.d.ts
CHANGED