(row: IntegrationRow)
| 1777 | // owns this storage (never the plugin config blob), so a plugin config |
| 1778 | // rewrite can never strip it and no plugin schema has to declare it. |
| 1779 | const describeHealthCheckForRow = (row: IntegrationRow): HealthCheckSpec | null => |
| 1780 | Option.getOrNull(decodeHealthCheckSpec(row.health_check)); |
| 1781 | |
| 1782 | // The health-check hooks are typed `Effect<_, unknown>` at the PluginSpec |
| 1783 | // boundary (each plugin owns its own error shape). Fold that channel into a |
no outgoing calls
no test coverage detected