( hasIntegration: boolean, conditionMet: boolean, )
| 10384 | } |
| 10385 | |
| 10386 | function prereqStatus( |
| 10387 | hasIntegration: boolean, |
| 10388 | conditionMet: boolean, |
| 10389 | ): FeishuSmokePlanStep["status"] { |
| 10390 | if (conditionMet) { |
| 10391 | return "done"; |
| 10392 | } |
| 10393 | return hasIntegration ? "pending" : "blocked"; |
| 10394 | } |
| 10395 | |
| 10396 | function collectSetupIssues( |
| 10397 | candidate: FeishuIntegrationReadiness | undefined, |
no outgoing calls
no test coverage detected