mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Plex-API
|
|
* An Open API Spec for interacting with Plex.tv and Plex Servers
|
|
*
|
|
* The version of the OpenAPI document: 0.0.3
|
|
* Contact: Lukeslakemail@gmail.com
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
export class Configuration {
|
|
/**
|
|
* parameter for apiKey security
|
|
* @param name security name
|
|
* @memberof Configuration
|
|
*/
|
|
apiKey;
|
|
/**
|
|
* override base path
|
|
*
|
|
* @type {string}
|
|
* @memberof Configuration
|
|
*/
|
|
basePath;
|
|
/**
|
|
* base options for axios calls
|
|
*
|
|
* @type {any}
|
|
* @memberof Configuration
|
|
*/
|
|
baseOptions;
|
|
/**
|
|
* 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;
|
|
/**
|
|
* axios retry configuration
|
|
*
|
|
* @type {IAxiosRetryConfig}
|
|
* @memberof Configuration
|
|
*/
|
|
retriesConfig;
|
|
constructor(param = {}) {
|
|
this.apiKey = param.apiKey;
|
|
this.basePath = param.basePath;
|
|
}
|
|
/**
|
|
* 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.
|
|
*/
|
|
isJsonMime(mime) {
|
|
const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
|
|
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
|
|
}
|
|
}
|
|
//# sourceMappingURL=configuration.js.map
|