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

Function integrationHealthCheckGet

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

Source from the content-addressed store, hash-verified

2016 // ------------------------------------------------------------------
2017
2018 const integrationHealthCheckGet = (
2019 slug: IntegrationSlug,
2020 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
2021 findIntegrationRow(slug).pipe(
2022 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
2023 );
2024
2025 const integrationHealthCheckCandidates = (
2026 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected