fix: remove duplicate certificate fields in Company interface

This commit is contained in:
Galindo97
2026-02-20 10:12:42 -06:00
parent af99e43ee5
commit f9f6a17c4a

View File

@@ -249,27 +249,6 @@ export interface Company {
cfdi?: CompanyCFDI | null;
created_at: string | null;
updated_at: string | null;
// Flattened Certificate Fields
fiel_cer?: string | null;
fiel_key?: string | null;
fiel_pass?: string | null;
fiel_access?: string | null;
fiel_cer_exp?: number | null;
fiel_key_exp?: number | null;
cfdi_cert_cer?: string | null;
cfdi_cert_key?: string | null;
cfdi_cert_pass?: string | null;
cfdi_cert_access?: string | null;
cfdi_cert_cer_exp?: number | null;
cfdi_cert_key_exp?: number | null;
cancel_cer?: string | null;
cancel_key?: string | null;
cancel_pass?: string | null;
cancel_access?: string | null;
cancel_cer_exp?: number | null;
cancel_key_exp?: number | null;
}
export interface CompanyCreate {