From 6168652fb86a3046db8b1c6d7ccd9a36efd3282c Mon Sep 17 00:00:00 2001 From: mufazalov Date: Tue, 4 Mar 2025 11:47:07 +0300 Subject: [PATCH] chore: update healthcheck types --- src/types/api/healthcheck.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 {