agregar sprint, has_impairment, tabla impairments + sync pendings KAPPA

This commit is contained in:
2026-05-27 23:03:14 -05:00
parent 5cc7cf309e
commit 278d2bf075
7 changed files with 220 additions and 52 deletions
+30
View File
@@ -46,6 +46,8 @@ export interface KappaUserStory {
status?: string
priority?: string
initiative: number | string
story_points?: number
sprint?: string
created_at?: string
}
@@ -151,6 +153,34 @@ export interface KappaEmployee {
created_at?: string
}
export interface KappaPending {
id: number
historia_title: string[]
created_at: string
updated_at: string
responsible: string
pending_activity: string
delivery_date: string
real_date: string | null
type: string
type_impediment: boolean
status_pending: string | null
status: boolean
pending_client_type: string | null
pending_general_client: boolean
solution_date: string | null
which: string
client: string | null
initiative: string | null
hu: number[]
initiatives_client: string[]
}
export interface KappaTypeImpediment {
id: number
name: string
}
export interface PaginatedResponse<T> {
count: number
next: string | null