feat(awooop): 顯示修復候選升級合約
All checks were successful
Code Review / ai-code-review (push) Successful in 14s
CD Pipeline / tests (push) Successful in 1m44s
CD Pipeline / build-and-deploy (push) Successful in 4m50s
CD Pipeline / post-deploy-checks (push) Successful in 1m40s

This commit is contained in:
Your Name
2026-06-26 12:03:58 +08:00
parent 4b18a3d8c0
commit 0fec19c707
6 changed files with 477 additions and 1 deletions

View File

@@ -314,6 +314,52 @@ export interface AwoooPStatusChain {
owner_review_checklist?: string[];
forbidden_actions?: string[];
} | null;
repair_candidate_promotion?: {
schema_version?: string | null;
status?: string | null;
source?: string | null;
available?: boolean | null;
reason?: string | null;
approval_id?: string | null;
work_item_id?: string | null;
work_item_url?: string | null;
summary?: string | null;
runtime_execution_authorized?: boolean | null;
runtime_write_allowed?: boolean | null;
contract?: {
schema_version?: string | null;
status?: string | null;
lane?: string | null;
incident_id?: string | null;
project_id?: string | null;
source_work_item_id?: string | null;
source_work_item_url?: string | null;
route_id?: string | null;
repair_command_template?: string | null;
rollback_command_template?: string | null;
verifier_plan_template?: string[];
ready_count?: number | null;
total_count?: number | null;
blocked_count?: number | null;
ready_fields?: string[];
blocked_fields?: string[];
fields?: Array<{
field?: string | null;
label?: string | null;
status?: string | null;
source?: string | null;
value?: unknown;
runtime_execution_authorized?: boolean | null;
}>;
blockers?: string[];
runtime_write_allowed?: boolean | null;
runtime_execution_authorized?: boolean | null;
approval_required_before_execution?: boolean | null;
owner_review_required?: boolean | null;
forbidden_until_promoted?: string[];
next_steps?: string[];
} | null;
} | null;
source_refs?: {
inbound_total?: number | null;
outbound_total?: number | null;