Tiny Congress Frontend
    Preparing search index...

    Interface operations

    interface operations {
        get_build_info: {
            parameters: {
                cookie?: undefined;
                header?: undefined;
                path?: undefined;
                query?: undefined;
            };
            requestBody?: undefined;
            responses: {
                "200": {
                    content: {
                        "application/json": {
                            buildTime: string;
                            gitSha: string;
                            message?: string
                            | null;
                            version: string;
                        };
                    };
                    headers: { [name: string]: unknown };
                };
                "500": {
                    content: {
                        "application/json": {
                            detail: string;
                            extensions?: { code: string; field?: string | null }
                            | null;
                            instance?: string | null;
                            status: number;
                            title: string;
                            type: string;
                        };
                    };
                    headers: { [name: string]: unknown };
                };
            };
        };
    }
    Index

    Properties

    Properties

    get_build_info: {
        parameters: {
            cookie?: undefined;
            header?: undefined;
            path?: undefined;
            query?: undefined;
        };
        requestBody?: undefined;
        responses: {
            "200": {
                content: {
                    "application/json": {
                        buildTime: string;
                        gitSha: string;
                        message?: string
                        | null;
                        version: string;
                    };
                };
                headers: { [name: string]: unknown };
            };
            "500": {
                content: {
                    "application/json": {
                        detail: string;
                        extensions?: { code: string; field?: string | null }
                        | null;
                        instance?: string | null;
                        status: number;
                        title: string;
                        type: string;
                    };
                };
                headers: { [name: string]: unknown };
            };
        };
    }