( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 965 | }); |
| 966 | |
| 967 | const rowToIntegrationRecord = ( |
| 968 | row: IntegrationRow, |
| 969 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 970 | ): IntegrationRecord => ({ |
| 971 | ...rowToIntegration(row, authMethods), |
| 972 | config: decodeJsonColumn(row.config), |
| 973 | }); |
| 974 | |
| 975 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 976 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected