Skip to content
Snippets Groups Projects
Select Git revision
  • 99e03f8a66fc5291aeaccf6106a54d440997f1b9
  • main default protected
  • Issue/3133-subProjectsChanges
  • dev protected
  • Issue/2489-addNotificationManagement
  • Issue/3085-useNewApiClient
  • Issue/3043-DataStorageNrwResource
  • Issue/3011-maintenanceMode
  • Issue/2446-addingResponsibleOrganization
  • Issue/2900-removeInsituteField
  • Issue/2981-dataPubInDb
  • Issue/2881-messageController
  • Issue/2921-changesToDataPublicationFeature
  • Issue/2926-regAppLogin
  • Issue/2672-fixSfbPidPointing
  • Issue/2875-devcontainer
  • Issue/2401-advisoryServiceUI2
  • Issue/2445-extractedMetadata
  • Issue/2829-useHrefProperty
  • Issue/xxxx-configurableApiHostname
  • Issue/2627-addPidRecord
  • v3.16.0
  • v3.15.0
  • v3.14.0
  • v3.13.0
  • v3.12.0
  • v3.11.0
  • v3.10.0
  • v3.9.0
  • v3.8.0
  • v3.7.0
  • v3.6.0
  • v3.5.0
  • v3.4.3
  • v3.4.2
  • v3.4.1
  • v3.4.0
  • v3.3.2-package.0
  • v3.3.1
  • v3.3.0
  • v3.2.1
41 results

configuration.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    configuration.ts 3.15 KiB
    /* tslint:disable */
    /* eslint-disable */
    /**
     * Coscine.Api.Metadata
     * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     *
     * The version of the OpenAPI document: 2.1.1
     * 
     *
     * 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;
        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;
        /**
         * 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.baseOptions = param.baseOptions;
            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');
        }
    }