( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 772 | }); |
| 773 | |
| 774 | const rowToIntegrationRecord = ( |
| 775 | row: IntegrationRow, |
| 776 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 777 | ): IntegrationRecord => ({ |
| 778 | ...rowToIntegration(row, authMethods), |
| 779 | config: decodeJsonColumn(row.config), |
| 780 | }); |
| 781 | |
| 782 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 783 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected