agregar endpoint /epicdevelopment/ + store de epicas y HUs por proyecto

This commit is contained in:
2026-05-27 13:46:18 -05:00
parent 458c358688
commit 0f26506d54
4 changed files with 106 additions and 8 deletions
+23
View File
@@ -48,6 +48,29 @@ export interface KappaUserStory {
created_at?: string
}
export interface KappaEpicDevelopment {
id: number
code?: string
title?: string
name?: string
description?: string
status?: string
priority?: string
initiative?: number
initiative_name?: string
initiative_key?: string
assigned_to?: number | null
assigned_name?: string
story_points?: number
estimated_hours?: number
actual_hours?: number
start_date?: string
due_date?: string
completed_date?: string
created_at?: string
updated_at?: string
}
export interface KappaLogbookMaster {
id?: number
initiative: number | string