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

Function integrationsGetRecord

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

Source from the content-addressed store, hash-verified

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,

Callers 1

createExecutorFunction · 0.85

Calls 3

findIntegrationRowFunction · 0.85
rowToIntegrationRecordFunction · 0.85

Tested by

no test coverage detected