( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 802 | }); |
| 803 | |
| 804 | const rowToIntegrationRecord = ( |
| 805 | row: IntegrationRow, |
| 806 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 807 | ): IntegrationRecord => ({ |
| 808 | ...rowToIntegration(row, authMethods), |
| 809 | config: decodeJsonColumn(row.config), |
| 810 | }); |
| 811 | |
| 812 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 813 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected