(
slug: IntegrationSlug,
)
| 2274 | }); |
| 2275 | |
| 2276 | const integrationsGetRecord = ( |
| 2277 | slug: IntegrationSlug, |
| 2278 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 2279 | findIntegrationRow(slug).pipe( |
| 2280 | Effect.map((row) => |
| 2281 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 2282 | ), |
| 2283 | ); |
| 2284 | |
| 2285 | // Best-effort post-commit notification for `ExecutorConfig.onIntegrationChange`. |
| 2286 | // Routed through `afterCommit` so the observer sees only DURABLE changes: |
no test coverage detected