the reminder not showing content on the card at dashboard view and the quizes are hardcoded must move to the db make api's for it
120 lines
3.6 KiB
TypeScript
120 lines
3.6 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* The Plaid API
|
|
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
|
|
*
|
|
* The version of the OpenAPI document: 2020-09-14_1.617.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;
|
|
}
|
|
|
|
// Edited by Plaid, lines 16-25
|
|
interface PlaidEnvironment {
|
|
[env: string]: string;
|
|
}
|
|
|
|
export const PlaidEnvironments: PlaidEnvironment = {
|
|
production: 'https://production.plaid.com',
|
|
sandbox: 'https://sandbox.plaid.com',
|
|
};
|
|
|
|
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;
|
|
|
|
if(!this.baseOptions) this.baseOptions = {};
|
|
if(!this.baseOptions.headers) this.baseOptions.headers = {};
|
|
this.baseOptions.headers = {
|
|
['User-Agent']: `Plaid Node v31.0.0`,
|
|
['Plaid-Version']: '2020-09-14',
|
|
...this.baseOptions.headers,
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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');
|
|
}
|
|
}
|