( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 764 | }); |
| 765 | |
| 766 | const rowToIntegrationRecord = ( |
| 767 | row: IntegrationRow, |
| 768 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 769 | ): IntegrationRecord => ({ |
| 770 | ...rowToIntegration(row, authMethods), |
| 771 | config: decodeJsonColumn(row.config), |
| 772 | }); |
| 773 | |
| 774 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 775 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected