(
slug: IntegrationSlug,
)
| 1876 | }); |
| 1877 | |
| 1878 | const integrationsGetRecord = ( |
| 1879 | slug: IntegrationSlug, |
| 1880 | ): Effect.Effect<IntegrationRecord | null, StorageFailure> => |
| 1881 | findIntegrationRow(slug).pipe( |
| 1882 | Effect.map((row) => |
| 1883 | row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null, |
| 1884 | ), |
| 1885 | ); |
| 1886 | |
| 1887 | const integrationsRegister = ( |
| 1888 | pluginId: string, |
no test coverage detected