()
| 151 | |
| 152 | /** All required actions flattened, deduped, sorted. */ |
| 153 | export function allRequiredActions(): string[] { |
| 154 | const set = new Set<string>(); |
| 155 | for (const group of Object.values(REQUIRED_ACTIONS)) { |
| 156 | for (const action of group) set.add(action); |
| 157 | } |
| 158 | return [...set].sort(); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Emit a single, broad `Allow *` policy doc. Resource is `*` because the |
no test coverage detected