aboutsummaryrefslogtreecommitdiff
path: root/src/api/configuration.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/configuration.ts')
-rw-r--r--src/api/configuration.ts58
1 files changed, 45 insertions, 13 deletions
diff --git a/src/api/configuration.ts b/src/api/configuration.ts
index 6d621b1..d85e8c0 100644
--- a/src/api/configuration.ts
+++ b/src/api/configuration.ts
@@ -2,35 +2,35 @@
/* eslint-disable */
/**
* General Research Full Service Brokerage API
- * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * OpenAPI spec version: 1.1.0
+ * The version of the OpenAPI document: 1.1.0
*
*
- * NOTE: This class is auto generated by the swagger code generator program.
- * https://github.com/swagger-api/swagger-codegen.git
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
* Do not edit the class manually.
*/
+
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
*
@@ -38,7 +38,6 @@ export class Configuration {
* @memberof Configuration
*/
username?: string;
-
/**
* parameter for basic security
*
@@ -46,16 +45,13 @@ export class Configuration {
* @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
*
@@ -63,7 +59,13 @@ export class Configuration {
* @memberof Configuration
*/
basePath?: string;
-
+ /**
+ * override server index
+ *
+ * @type {number}
+ * @memberof Configuration
+ */
+ serverIndex?: number;
/**
* base options for axios calls
*
@@ -71,6 +73,14 @@ export class Configuration {
* @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;
@@ -78,6 +88,28 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
- this.baseOptions = param.baseOptions;
+ this.serverIndex = param.serverIndex;
+ this.baseOptions = {
+ ...param.baseOptions,
+ headers: {
+ ...param.baseOptions?.headers,
+ },
+ };
+ 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');
}
}