( row: IntegrationRow, authMethods: readonly AuthMethodDescriptor[] = [], )
| 540 | }); |
| 541 | |
| 542 | const rowToIntegrationRecord = ( |
| 543 | row: IntegrationRow, |
| 544 | authMethods: readonly AuthMethodDescriptor[] = [], |
| 545 | ): IntegrationRecord => ({ |
| 546 | ...rowToIntegration(row, authMethods), |
| 547 | config: decodeJsonColumn(row.config), |
| 548 | }); |
| 549 | |
| 550 | const decodeLastHealth = Schema.decodeUnknownOption(HealthCheckResult); |
| 551 | const decodeHealthCheckSpec = Schema.decodeUnknownOption(HealthCheckSpec); |
no test coverage detected