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

Function integrationHealthCheckGet

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

Source from the content-addressed store, hash-verified

2000 // ------------------------------------------------------------------
2001
2002 const integrationHealthCheckGet = (
2003 slug: IntegrationSlug,
2004 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
2005 findIntegrationRow(slug).pipe(
2006 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
2007 );
2008
2009 const integrationHealthCheckCandidates = (
2010 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected