agregar modulo usuarios con AG Grid + tema shadcn + integracion KAPPA employees

This commit is contained in:
2026-05-26 08:02:50 -05:00
parent fbd128a19e
commit 04d9d6cabc
9 changed files with 413 additions and 0 deletions
+15
View File
@@ -101,6 +101,21 @@ export interface KappaRequirement {
name_requirement?: string
}
export interface KappaEmployee {
id: number
first_name?: string
last_name?: string
full_name?: string
email?: string
user?: number
initiative?: number | null
initiative_name?: string
initiative_key?: string
position?: string
is_active?: boolean
created_at?: string
}
export interface PaginatedResponse<T> {
count: number
next: string | null