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