new lib version [CI SKIP]

This commit is contained in:
2020-12-30 18:01:24 +00:00
parent 33157c934e
commit 5b44c086f2
243 changed files with 3198 additions and 2011 deletions

34
dist/models/User.d.ts vendored
View File

@@ -1,17 +1,17 @@
export declare type User = {
id: number;
uuid: string;
email: string;
phone?: string;
username: string;
firstname: string;
middlename?: string;
lastname: string;
password: string;
permissions?: any;
groups?: any;
enabled: boolean;
refreshTokenCount: number;
profilePic?: string;
actions?: any;
};
export declare type User = {
uuid: string;
email: string;
phone?: string;
username: string;
firstname: string;
middlename?: string;
lastname: string;
password: string;
groups?: any;
enabled: boolean;
refreshTokenCount: number;
profilePic?: string;
resetRequestedTimestamp?: string;
actions?: any;
id: number;
};