Tiny Congress Frontend
    Preparing search index...

    This file was auto-generated by openapi-typescript. Do not make direct changes to the file.

    interface paths {
        "/build-info": {
            delete?: undefined;
            get: {
                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 };
                    };
                };
            };
            head?: undefined;
            options?: undefined;
            parameters: {
                cookie?: undefined;
                header?: undefined;
                path?: undefined;
                query?: undefined;
            };
            patch?: undefined;
            post?: undefined;
            put?: undefined;
            trace?: undefined;
        };
    }
    Index

    Properties

    Properties

    "/build-info": {
        delete?: undefined;
        get: {
            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 };
                };
            };
        };
        head?: undefined;
        options?: undefined;
        parameters: {
            cookie?: undefined;
            header?: undefined;
            path?: undefined;
            query?: undefined;
        };
        patch?: undefined;
        post?: undefined;
        put?: undefined;
        trace?: undefined;
    }

    Type Declaration

    • Optionaldelete?: undefined
    • get: {
          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 };
              };
          };
      }

      Get build information

      Returns metadata about the running service including version, git SHA, and build time.

      # Errors
      
      Returns `ProblemDetails` on internal server errors.
      
      • parameters: { cookie?: undefined; header?: undefined; path?: undefined; query?: undefined }
      • OptionalrequestBody?: 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 };
            };
        }
        • 200: {
              content: {
                  "application/json": {
                      buildTime: string;
                      gitSha: string;
                      message?: string | null;
                      version: string;
                  };
              };
              headers: { [name: string]: unknown };
          }

          Build information retrieved successfully

        • 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 };
          }

          Internal server error

    • Optionalhead?: undefined
    • Optionaloptions?: undefined
    • parameters: { cookie?: undefined; header?: undefined; path?: undefined; query?: undefined }
    • Optionalpatch?: undefined
    • Optionalpost?: undefined
    • Optionalput?: undefined
    • Optionaltrace?: undefined