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

Function integrationsGetRecord

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

Source from the content-addressed store, hash-verified

1951 });
1952
1953 const integrationsGetRecord = (
1954 slug: IntegrationSlug,
1955 ): Effect.Effect<IntegrationRecord | null, StorageFailure> =>
1956 findIntegrationRow(slug).pipe(
1957 Effect.map((row) =>
1958 row ? rowToIntegrationRecord(row, describeAuthMethodsForRow(row)) : null,
1959 ),
1960 );
1961
1962 const integrationsRegister = (
1963 pluginId: string,

Callers 1

createExecutorFunction · 0.85

Calls 3

findIntegrationRowFunction · 0.85
rowToIntegrationRecordFunction · 0.85

Tested by

no test coverage detected