feat(bookings): show per-document upload/review audit and download icon on clearance detail

This commit is contained in:
Marshal
2026-08-20 04:03:27 +00:00
parent 8a2b9306dc
commit a58157a7ee
4 changed files with 46 additions and 0 deletions

View File

@@ -813,6 +813,12 @@ export interface ClearanceDocument {
file: { id: string; name: string; url: string } | null;
reviewStatus: DocumentReviewStatus | null;
note: string | null;
/** When the current file version was uploaded — a re-upload (query response) refreshes it. */
uploadedAt?: string | null;
/** When the latest review decision (approve/query) was recorded. */
reviewedAt?: string | null;
/** Display name of the staff member who recorded the decision. */
reviewedByName?: string | null;
}
/**