/** * Audit Service * Collects data about events that occur in a system. This data can be used to track changes to the system, to identify security vulnerabilities, and to comply with regulations. The audit service typically collects data about the following: - User activity, such as logins, logouts, and file access - System events, such as database changes and file modifications - Security events, such as failed login attempts and unauthorized access * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { AxiosInstance, AxiosPromise } from 'axios'; import type { RequestArgs } from './base'; import type { Configuration } from './configuration'; /** * * @export */ export declare const DUMMY_BASE_URL = "https://example.com"; /** * * @throws {RequiredError} * @export */ export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void; /** * * @export */ export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise; /** * * @export */ export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void; /** * * @export */ export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise; /** * * @export */ export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise; /** * * @export */ export declare const setSearchParams: (url: URL, ...objects: any[]) => void; /** * * @export */ export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any; /** * * @export */ export declare const toPathString: (url: URL) => string; /** * A configured Axios request function. * * @export */ export type RequestFunction = (axios?: AxiosInstance, basePath?: string) => AxiosPromise; /** * * @export */ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => RequestFunction; //# sourceMappingURL=common.d.ts.map