feat: expand launcher admin mock controls

This commit is contained in:
DCCONSTRUCTIONS
2026-05-01 21:56:58 +03:00
parent db0eabe7d7
commit 85aa322990
6 changed files with 1397 additions and 154 deletions
+4
View File
@@ -6,7 +6,11 @@ export interface Client {
type: ClientType;
name: string;
legalName?: string | null;
inn?: string | null;
status: ClientStatus;
contractStartsAt?: string | null;
contractEndsAt?: string | null;
paidUntil?: string | null;
demoEndsAt?: string | null;
contactName?: string | null;
contactEmail?: string | null;
+3
View File
@@ -12,6 +12,9 @@ export interface LauncherUser {
authentikUserId?: string | null;
email: string;
name: string;
phone?: string | null;
position?: string | null;
notes?: string | null;
avatarUrl?: string | null;
globalStatus: LauncherUserStatus;
createdAt: string;