690414:1113 Update README.md /.agents/skills, /.windsurf/workflows

This commit is contained in:
2026-04-14 11:13:42 +07:00
parent 02400fd88c
commit 6d45bdaeb5
194 changed files with 12708 additions and 8762 deletions
+5
View File
@@ -36,6 +36,10 @@ export interface Transmittal {
purpose?: TransmittalPurpose;
remarks?: string;
createdAt: string;
// ADR-021 / v1.8.7: Workflow context fields
workflowInstanceId?: string; // UUID ของ WorkflowInstance (null = Draft ยังไม่ submit)
workflowState?: string; // สถานะปัจจุบันใน Workflow เช่น IN_REVIEW, APPROVED
availableActions?: string[]; // Actions ที่ทำได้ ณ ขณะนี้ เช่น ['APPROVE', 'REJECT']
// Joined relations from API
items?: TransmittalItem[];
correspondence?: {
@@ -90,5 +94,6 @@ export interface SearchTransmittalDto {
page?: number;
limit?: number;
projectId?: number | string; // ADR-019: Accept UUID
purpose?: TransmittalPurpose; // v1.8.7: B3 purpose filter
search?: string;
}