( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 902 | }); |
| 903 | |
| 904 | const rowToIntegrationRecord = ( |
| 905 | row: IntegrationRow, |
| 906 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 907 | ): IntegrationRecord => ({ |
| 908 | ...rowToIntegration(row, authMethods), |
| 909 | config: decodeJsonColumn(row.config), |
| 910 | }); |
| 911 | |
| 912 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 913 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected