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

Function findIntegrationRow

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

Source from the content-addressed store, hash-verified

1736 // ------------------------------------------------------------------
1737
1738 const findIntegrationRow = (
1739 slug: IntegrationSlug,
1740 ): Effect.Effect<IntegrationRow | null, StorageFailure> =>
1741 core.findFirst("integration", {
1742 where: (b: AnyCb) => b("slug", "=", String(slug)),
1743 });
1744
1745 // Project a row's stored config into declared auth methods via the owning
1746 // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a

Callers 15

integrationsGetFunction · 0.85
integrationsGetRecordFunction · 0.85
integrationsRegisterFunction · 0.85
integrationsUpdatePublicFunction · 0.85
integrationsRemoveFunction · 0.85
connectionsCreateFunction · 0.85
mintOAuthConnectionFunction · 0.85
connectionsRemoveFunction · 0.85
connectionsRefreshFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected