( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 913 | }); |
| 914 | |
| 915 | const rowToIntegrationRecord = ( |
| 916 | row: IntegrationRow, |
| 917 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 918 | ): IntegrationRecord => ({ |
| 919 | ...rowToIntegration(row, authMethods), |
| 920 | config: decodeJsonColumn(row.config), |
| 921 | }); |
| 922 | |
| 923 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 924 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected