(
slug: IntegrationSlug,
)
| 2854 | }); |
| 2855 | |
| 2856 | const integrationsGetRecord = ( |
| 2857 | slug: IntegrationSlug, |
| 2858 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 2859 | findIntegrationRow(slug).pipe( |
| 2860 | Effect.map((row) => |
| 2861 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 2862 | ), |
| 2863 | ); |
| 2864 | |
| 2865 | // Best-effort post-commit notification for `ExecutorConfig.onIntegrationChange`. |
| 2866 | // Routed through `afterCommit` so the observer sees only DURABLE changes: |
no test coverage detected