Skip to content

Commit

Permalink
SWI-6691 Update to v7.10.0 (#51)
Browse files Browse the repository at this point in the history
* SWI-6691 Update to v7.10.0

* remove old template and regenerate
  • Loading branch information
ckoegel authored Dec 6, 2024
1 parent 4c43e0f commit 2867ba3
Show file tree
Hide file tree
Showing 7 changed files with 114 additions and 590 deletions.
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.9.0
7.10.0
2 changes: 0 additions & 2 deletions base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ import globalAxios from 'axios';

export const BASE_PATH = "http://localhost".replace(/\/+$/, "");

globalAxios.defaults.headers.common['User-Agent'] = "OpenAPI-Generator/1.0.0-dev/typescript-axios";

/**
*
* @export
Expand Down
8 changes: 7 additions & 1 deletion configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ export class Configuration {
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.serverIndex = param.serverIndex;
this.baseOptions = param.baseOptions;
this.baseOptions = {
...param.baseOptions,
headers: {
...param.baseOptions?.headers,
'User-Agent': "OpenAPI-Generator/1.0.0-dev/typescript-axios"
}
};
this.formDataCtor = param.formDataCtor;
}

Expand Down
467 changes: 0 additions & 467 deletions custom_templates/apiInner.mustache

This file was deleted.

118 changes: 0 additions & 118 deletions custom_templates/baseApi.mustache

This file was deleted.

105 changes: 105 additions & 0 deletions custom_templates/configuration.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
/* tslint:disable */
/* eslint-disable */
{{>licenseInfo}}

export interface ConfigurationParameters {
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
username?: string;
password?: string;
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
basePath?: string;
serverIndex?: number;
baseOptions?: any;
formDataCtor?: new () => any;
}

export class Configuration {
/**
* parameter for apiKey security
* @param name security name
* @memberof Configuration
*/
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
/**
* parameter for basic security
*
* @type {string}
* @memberof Configuration
*/
username?: string;
/**
* parameter for basic security
*
* @type {string}
* @memberof Configuration
*/
password?: string;
/**
* parameter for oauth2 security
* @param name security name
* @param scopes oauth2 scope
* @memberof Configuration
*/
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
/**
* override base path
*
* @type {string}
* @memberof Configuration
*/
basePath?: string;
/**
* override server index
*
* @type {number}
* @memberof Configuration
*/
serverIndex?: number;
/**
* base options for axios calls
*
* @type {any}
* @memberof Configuration
*/
baseOptions?: any;
/**
* The FormData constructor that will be used to create multipart form data
* requests. You can inject this here so that execution environments that
* do not support the FormData class can still run the generated client.
*
* @type {new () => FormData}
*/
formDataCtor?: new () => any;

constructor(param: ConfigurationParameters = {}) {
this.apiKey = param.apiKey;
this.username = param.username;
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.serverIndex = param.serverIndex;
this.baseOptions = {
...param.baseOptions,
headers: {
...param.baseOptions?.headers,
'User-Agent': "OpenAPI-Generator{{#npmVersion}}/{{npmVersion}}{{/npmVersion}}/typescript-axios"
}
};
this.formDataCtor = param.formDataCtor;
}

/**
* Check if the given MIME is a JSON MIME.
* JSON MIME examples:
* application/json
* application/json; charset=UTF8
* APPLICATION/JSON
* application/vnd.company+json
* @param mime - MIME (Multipurpose Internet Mail Extensions)
* @return True if the given MIME is JSON, false otherwise.
*/
public isJsonMime(mime: string): boolean {
const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
}
}
2 changes: 1 addition & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.9.0"
"version": "7.10.0"
}
}

0 comments on commit 2867ba3

Please sign in to comment.