Diagnosis info for a failed block
| 116 | |
| 117 | /** Diagnosis info for a failed block */ |
| 118 | interface BlockDiagnosis { |
| 119 | blockId: string |
| 120 | blockLabel: string |
| 121 | upstream: Array<{ |
| 122 | id: string |
| 123 | label: string |
| 124 | variables: string[] |
| 125 | }> |
| 126 | relatedIssues: Array<{ |
| 127 | code: string |
| 128 | message: string |
| 129 | severity: 'error' | 'warning' |
| 130 | }> |
| 131 | usedVariables: string[] |
| 132 | } |
| 133 | |
| 134 | /** Block info with context (for --context flag) */ |
| 135 | interface BlockWithContext extends BlockResult { |
nothing calls this directly
no outgoing calls
no test coverage detected