agregar sprint, has_impairment, tabla impairments + sync pendings KAPPA
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user