/** * Section API * Get edgey with the Section API * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { Body } from '../models'; /** * DefaultApi - axios parameter creator * @export */ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => { /** * Clear internal cache for user * @param {number} userId The user identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ cacheClear: (userId: number, options?: any) => Promise; /** * Associate your user account with an external IDP * @param {Body} body Account create * @param {*} [options] Override http request option. * @throws {RequiredError} */ linkExternal: (body: Body, options?: any) => Promise; }; /** * DefaultApi - functional programming interface * @export */ export declare const DefaultApiFp: (configuration?: Configuration) => { /** * Clear internal cache for user * @param {number} userId The user identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ cacheClear(userId: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Associate your user account with an external IDP * @param {Body} body Account create * @param {*} [options] Override http request option. * @throws {RequiredError} */ linkExternal(body: Body, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * DefaultApi - factory interface * @export */ export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Clear internal cache for user * @param {number} userId The user identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} */ cacheClear(userId: number, options?: any): AxiosPromise; /** * Associate your user account with an external IDP * @param {Body} body Account create * @param {*} [options] Override http request option. * @throws {RequiredError} */ linkExternal(body: Body, options?: any): AxiosPromise; }; /** * DefaultApi - object-oriented interface * @export * @class DefaultApi * @extends {BaseAPI} */ export declare class DefaultApi extends BaseAPI { /** * Clear internal cache for user * @param {number} userId The user identifier number * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DefaultApi */ cacheClear(userId: number, options?: any): Promise>; /** * Associate your user account with an external IDP * @param {Body} body Account create * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof DefaultApi */ linkExternal(body: Body, options?: any): Promise>; }