/** * IDE API * Handle user environment * * OpenAPI spec version: 1.0.0 * Contact: dev@corley.it * * 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 { CreateProfile } from '../models'; import { PatchProfile } from '../models'; import { Profile } from '../models'; /** * ProfileApi - axios parameter creator * @export */ export declare const ProfileApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary Returns user profiles * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileGet: (options?: any) => Promise; /** * * @summary Delete an existing profile * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileIdDelete: (id: string, options?: any) => Promise; /** * * @summary Updates a profile * @param {PatchProfile} body * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileIdPatch: (body: PatchProfile, id: string, options?: any) => Promise; /** * * @summary Creates a new profile * @param {CreateProfile} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfilePost: (body: CreateProfile, options?: any) => Promise; }; /** * ProfileApi - functional programming interface * @export */ export declare const ProfileApiFp: (configuration?: Configuration) => { /** * * @summary Returns user profiles * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileGet(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; /** * * @summary Delete an existing profile * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileIdDelete(id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Updates a profile * @param {PatchProfile} body * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileIdPatch(body: PatchProfile, id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Creates a new profile * @param {CreateProfile} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfilePost(body: CreateProfile, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * ProfileApi - factory interface * @export */ export declare const ProfileApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary Returns user profiles * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileGet(options?: any): AxiosPromise>; /** * * @summary Delete an existing profile * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileIdDelete(id: string, options?: any): AxiosPromise; /** * * @summary Updates a profile * @param {PatchProfile} body * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfileIdPatch(body: PatchProfile, id: string, options?: any): AxiosPromise; /** * * @summary Creates a new profile * @param {CreateProfile} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ProfilePost(body: CreateProfile, options?: any): AxiosPromise; }; /** * ProfileApi - object-oriented interface * @export * @class ProfileApi * @extends {BaseAPI} */ export declare class ProfileApi extends BaseAPI { /** * * @summary Returns user profiles * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ProfileApi */ v1ProfileGet(options?: any): Promise>; /** * * @summary Delete an existing profile * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ProfileApi */ v1ProfileIdDelete(id: string, options?: any): Promise>; /** * * @summary Updates a profile * @param {PatchProfile} body * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ProfileApi */ v1ProfileIdPatch(body: PatchProfile, id: string, options?: any): Promise>; /** * * @summary Creates a new profile * @param {CreateProfile} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ProfileApi */ v1ProfilePost(body: CreateProfile, options?: any): Promise>; }