From fa64ba772704d1a0bb7aab14a9cd9c0136fe9138 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Tue, 8 Sep 2026 10:27:32 -0300 Subject: [PATCH] fix(f4): align embedded INF status in act contract --- web-v2/src/lib/inspectionActF4Api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-v2/src/lib/inspectionActF4Api.ts b/web-v2/src/lib/inspectionActF4Api.ts index e42373f..e4da94c 100644 --- a/web-v2/src/lib/inspectionActF4Api.ts +++ b/web-v2/src/lib/inspectionActF4Api.ts @@ -6,7 +6,6 @@ import { type InspectionAssetSummary, type InspectionPerson, type InspectionReportPdfStatus, - type InspectionReportStatus, type InspectionVisitStatus, type PageMeta, } from './api'; @@ -35,6 +34,7 @@ export type InspectionActVersionEventF4 = export type InspectionActUrgencyF4 = 'URGENT' | 'NON_URGENT'; export type InspectionDeadlineDayTypeF4 = 'BUSINESS' | 'CALENDAR'; export type InspectionDeadlineBasisF4 = 'ACT_DATE' | 'GEDO_DATE'; +export type InspectionReportStatusF4 = 'WORKING' | 'OFFICIALIZED' | 'FROZEN' | 'CANCELLED'; export interface InspectionActListItemF4 { id: string; @@ -76,7 +76,7 @@ export interface InspectionActListItemF4 { report: null | { id: string; code: string; - status: InspectionReportStatus; + status: InspectionReportStatusF4; pdfStatus: InspectionReportPdfStatus; generatedAt: string; };