-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
123 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
{{>licenseInfo}} | ||
|
||
import type { Configuration } from './configuration'; | ||
// Some imports not used depending on template conditions | ||
// @ts-ignore | ||
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; | ||
import globalAxios from 'axios'; | ||
|
||
export const BASE_PATH = "{{{basePath}}}".replace(/\/+$/, ""); | ||
|
||
globalAxios.defaults.headers.common['User-Agent'] = "OpenAPI-Generator{{#npmVersion}}/{{npmVersion}}{{/npmVersion}}/typescript-axios"; | ||
|
||
/** | ||
* | ||
* @export | ||
*/ | ||
export const COLLECTION_FORMATS = { | ||
csv: ",", | ||
ssv: " ", | ||
tsv: "\t", | ||
pipes: "|", | ||
}; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface RequestArgs | ||
*/ | ||
export interface RequestArgs { | ||
url: string; | ||
options: RawAxiosRequestConfig; | ||
} | ||
|
||
/** | ||
* | ||
* @export | ||
* @class BaseAPI | ||
*/ | ||
export class BaseAPI { | ||
protected configuration: Configuration | undefined; | ||
constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) { | ||
if (configuration) { | ||
this.configuration = configuration; | ||
this.basePath = configuration.basePath ?? basePath; | ||
} | ||
} | ||
}; | ||
|
||
/** | ||
* | ||
* @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 = { | ||
{{#apiInfo}} | ||
{{#apis}} | ||
{{#operations}} | ||
{{#operation}} | ||
{{#servers}} | ||
{{#-first}} | ||
"{{{classname}}}.{{{nickname}}}": [ | ||
{{/-first}} | ||
{ | ||
url: "{{{url}}}", | ||
description: "{{{description}}}{{^description}}No description provided{{/description}}", | ||
{{#variables}} | ||
{{#-first}} | ||
variables: { | ||
{{/-first}} | ||
{{{name}}}: { | ||
description: "{{{description}}}{{^description}}No description provided{{/description}}", | ||
default_value: "{{{defaultValue}}}", | ||
{{#enumValues}} | ||
{{#-first}} | ||
enum_values: [ | ||
{{/-first}} | ||
"{{{.}}}"{{^-last}},{{/-last}} | ||
{{#-last}} | ||
] | ||
{{/-last}} | ||
{{/enumValues}} | ||
}{{^-last}},{{/-last}} | ||
{{#-last}} | ||
} | ||
{{/-last}} | ||
{{/variables}} | ||
}{{^-last}},{{/-last}} | ||
{{#-last}} | ||
], | ||
{{/-last}} | ||
{{/servers}} | ||
{{/operation}} | ||
{{/operations}} | ||
{{/apis}} | ||
{{/apiInfo}} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters