( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 974 | }); |
| 975 | |
| 976 | const rowToIntegrationRecord = ( |
| 977 | row: IntegrationRow, |
| 978 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 979 | ): IntegrationRecord => ({ |
| 980 | ...rowToIntegration(row, authMethods), |
| 981 | config: decodeJsonColumn(row.config), |
| 982 | }); |
| 983 | |
| 984 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 985 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected