/* tslint:disable */ /* eslint-disable */ /** * IDMesh-Dev * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 { Configuration } from './configuration'; // Some imports not used depending on template conditions // @ts-ignore import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; export const BASE_PATH = "http://localhost".replace(/\/+$/, ""); /** * * @export */ export const COLLECTION_FORMATS = { csv: ",", ssv: " ", tsv: "\t", pipes: "|", }; /** * * @export * @interface RequestArgs */ export interface RequestArgs { url: string; options: AxiosRequestConfig; } export interface SDKConfig { authMethod: 'aksk'; basePath: string; ak?: string; sk?: string; } /** * * @export * @class BaseAPI */ export class BaseAPI { constructor(protected sdkConfig: SDKConfig) { // } }; /** * * @export * @class RequiredError * @extends {Error} */ export class RequiredError extends Error { constructor(public field: string, msg?: string) { super(msg); this.name = "RequiredError" } } interface ServerMap { [key: string]: { url: string, description: string, }[]; } /** * * @export */ export const operationServerMap: ServerMap = { }