/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { type FormatEnum } from '../models/FormatEnum'; import { type LangEnum } from '../models/LangEnum'; export interface SchemaRetrieveRequest { format?: FormatEnum; lang?: LangEnum; } /** * */ export declare class SchemaApi extends runtime.BaseAPI { /** * Creates request options for schemaRetrieve without sending the request */ schemaRetrieveRequestOpts(requestParameters: SchemaRetrieveRequest): Promise; /** * OpenApi3 schema for this API. Format can be selected via content negotiation. - YAML: application/vnd.oai.openapi - JSON: application/vnd.oai.openapi+json */ schemaRetrieveRaw(requestParameters: SchemaRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * OpenApi3 schema for this API. Format can be selected via content negotiation. - YAML: application/vnd.oai.openapi - JSON: application/vnd.oai.openapi+json */ schemaRetrieve(requestParameters?: SchemaRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<{ [key: string]: any; }>; } //# sourceMappingURL=SchemaApi.d.ts.map