(
slug: IntegrationSlug,
)
| 1860 | }); |
| 1861 | |
| 1862 | const integrationsGetRecord = ( |
| 1863 | slug: IntegrationSlug, |
| 1864 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 1865 | findIntegrationRow(slug).pipe( |
| 1866 | Effect.map((row) => |
| 1867 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 1868 | ), |
| 1869 | ); |
| 1870 | |
| 1871 | const integrationsRegister = ( |
| 1872 | pluginId: string, |
no test coverage detected