fix: dev:generate-types on all test configs (#919)

This commit is contained in:
Dan Ribbens
2022-08-13 13:04:24 -04:00
committed by GitHub
parent 4115045c15
commit 145e1db05d
11 changed files with 114 additions and 55 deletions

View File

@@ -12,6 +12,7 @@ export interface Config {}
*/
export interface User {
id: string;
roles: ('admin' | 'editor' | 'moderator' | 'user' | 'viewer')[];
enableAPIKey?: boolean;
apiKey?: string;
apiKeyIndex?: string;
@@ -20,7 +21,6 @@ export interface User {
resetPasswordExpiration?: string;
loginAttempts?: number;
lockUntil?: string;
roles: ('admin' | 'editor' | 'moderator' | 'user' | 'viewer')[];
createdAt: string;
updatedAt: string;
}