(
slug: IntegrationSlug,
)
| 1833 | }); |
| 1834 | |
| 1835 | const integrationsGetRecord = ( |
| 1836 | slug: IntegrationSlug, |
| 1837 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 1838 | findIntegrationRow(slug).pipe( |
| 1839 | Effect.map((row) => |
| 1840 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 1841 | ), |
| 1842 | ); |
| 1843 | |
| 1844 | const integrationsRegister = ( |
| 1845 | pluginId: string, |
no test coverage detected