690402:2046 fix correspondence ATG Gemini Flash
CI / CD Pipeline / build (push) Successful in 7m10s
CI / CD Pipeline / deploy (push) Failing after 10m1s

This commit is contained in:
2026-04-02 20:46:56 +07:00
parent 92a9b6898b
commit c188219e28
6 changed files with 98 additions and 20 deletions
+17 -5
View File
@@ -8,20 +8,32 @@ export interface DashboardStats {
}
export interface ActivityLog {
id: number;
id: string;
action: string;
entityType?: string;
entityId?: string;
details?: Record<string, unknown>;
createdAt: string;
username?: string;
user: {
name: string;
initials: string;
avatar?: string;
};
action: string;
description: string;
createdAt: string;
targetUrl: string;
description: string;
}
export interface PendingTask {
id: number;
publicId: string;
workflowCode: string;
currentState: string;
entityType: string;
entityId: string;
documentNumber: string;
subject: string;
assignedAt: string;
// Derived fields for UI
title: string;
description: string;
daysOverdue: number;