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

Function integrationHealthCheckGet

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

Source from the content-addressed store, hash-verified

1960 // ------------------------------------------------------------------
1961
1962 const integrationHealthCheckGet = (
1963 slug: IntegrationSlug,
1964 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
1965 findIntegrationRow(slug).pipe(
1966 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
1967 );
1968
1969 const integrationHealthCheckCandidates = (
1970 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected