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
@@ -61,3 +61,18 @@ export interface GetAvailableActionsDto {
/** สถานะปัจจุบัน */
currentState: string;
}
// --- ADR-021: Workflow Transition with Step Attachments ---
export interface WorkflowTransitionWithAttachmentsDto {
/** ชื่อ Action (ต้องตรงกับ DSL) เช่น APPROVE, REJECT */
action: string;
/** ความเห็นประกอบการดำเนินการ */
comment?: string;
/** ข้อมูลเพิ่มเติม */
payload?: Record<string, unknown>;
/** รายการ publicId ของไฟล์แนบประจำ Step นี้ (max 20, ADR-016 Two-Phase upload) */
attachmentPublicIds?: string[];
}