This repository has been archived on 2026-01-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Acad-IA/src/types/RefRow.ts

14 lines
419 B
TypeScript

export type RefRow = {
documentos_id: string
titulo_archivo: string | null
descripcion: string | null
s3_file_path: string | null // Added this property to match the API requirements.
tipo_contenido: string | null
fecha_subida: string | null
procesado: boolean | null
tags: string[] | null
fuente_autoridad: string | null
interno: boolean | null
instrucciones: string
created_by: string | null
}