diff --git a/src/types/api/healthcheck.ts b/src/types/api/healthcheck.ts index 11c3fca870..b0a9e0648d 100644 --- a/src/types/api/healthcheck.ts +++ b/src/types/api/healthcheck.ts @@ -57,10 +57,16 @@ interface LocationComputeTablet { count: number; } +interface LocationComputeSchema { + type?: string; + path?: string; +} + interface LocationCompute { - node: LocationNode; - pool: LocationComputePool; + node?: LocationNode; + pool?: LocationComputePool; tablet: LocationComputeTablet; + schema?: LocationComputeSchema; } interface LocationDatabase {