(
slug: IntegrationSlug,
)
| 1951 | }); |
| 1952 | |
| 1953 | const integrationsGetRecord = ( |
| 1954 | slug: IntegrationSlug, |
| 1955 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 1956 | findIntegrationRow(slug).pipe( |
| 1957 | Effect.map((row) => |
| 1958 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 1959 | ), |
| 1960 | ); |
| 1961 | |
| 1962 | const integrationsRegister = ( |
| 1963 | pluginId: string, |
no test coverage detected