refactor: add descriptive comments for various response payload interfaces

This commit is contained in:
Abhimanyu Saharan
2026-02-10 00:17:21 +05:30
parent 55d4c482bc
commit 79f7ad8ba3
111 changed files with 697 additions and 33 deletions

View File

@@ -28,6 +28,7 @@ import { customFetch } from "../../mutator";
type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
/**
* Lightweight liveness probe endpoint.
* @summary Health
*/
export type healthHealthGetResponse200 = {
@@ -189,6 +190,7 @@ export function useHealthHealthGet<
}
/**
* Alias liveness probe endpoint for platform compatibility.
* @summary Healthz
*/
export type healthzHealthzGetResponse200 = {
@@ -354,6 +356,7 @@ export function useHealthzHealthzGet<
}
/**
* Readiness probe endpoint for service orchestration checks.
* @summary Readyz
*/
export type readyzReadyzGetResponse200 = {