(
slug: IntegrationSlug,
)
| 2288 | }); |
| 2289 | |
| 2290 | const integrationsGetRecord = ( |
| 2291 | slug: IntegrationSlug, |
| 2292 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 2293 | findIntegrationRow(slug).pipe( |
| 2294 | Effect.map((row) => |
| 2295 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 2296 | ), |
| 2297 | ); |
| 2298 | |
| 2299 | // Best-effort post-commit notification for `ExecutorConfig.onIntegrationChange`. |
| 2300 | // Routed through `afterCommit` so the observer sees only DURABLE changes: |
no test coverage detected