MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / integrationsGetRecord

Function integrationsGetRecord

packages/core/sdk/src/executor.ts:1878–1885  ·  view source on GitHub ↗
(
      slug: IntegrationSlug,
    )

Source from the content-addressed store, hash-verified

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,

Callers 1

createExecutorFunction · 0.85

Calls 3

findIntegrationRowFunction · 0.85
rowToIntegrationRecordFunction · 0.85

Tested by

no test coverage detected