260318:1401 Fix UUID #05
Build and Deploy / deploy (push) Failing after 11m8s

This commit is contained in:
admin
2026-03-18 14:01:32 +07:00
parent ba642e7e42
commit e5769269a8
37 changed files with 460 additions and 328 deletions
+5 -2
View File
@@ -8,7 +8,8 @@ export interface RFAItem {
}
export interface RFA {
id: number; // Shared PK with Correspondence
uuid: string; // ADR-019: from correspondence.uuid
id?: number; // Excluded from API responses (ADR-019)
rfaTypeId: number;
createdBy: number;
disciplineId?: number;
@@ -35,12 +36,14 @@ export interface RFA {
};
// Shared Correspondence Relation
correspondence?: {
id: number;
uuid: string;
id?: number; // Excluded from API responses (ADR-019)
correspondenceNumber: string;
projectId: number;
originatorId?: number;
createdAt?: string;
project?: {
uuid: string;
projectName: string;
projectCode: string;
};