2024-08-02 16:52:35 +00:00
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
/**
|
|
|
|
* Leaflow Amber
|
|
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
|
|
*
|
|
|
|
* The version of the OpenAPI document: 1.0
|
2024-08-04 09:24:36 +00:00
|
|
|
*
|
2024-08-02 16:52:35 +00:00
|
|
|
*
|
|
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
|
|
* https://openapi-generator.tech
|
|
|
|
* Do not edit the class manually.
|
|
|
|
*/
|
|
|
|
|
2024-08-04 09:24:36 +00:00
|
|
|
|
2024-08-02 16:52:35 +00:00
|
|
|
import type { Configuration } from "./configuration";
|
|
|
|
import type { RequestArgs } from "./base";
|
2024-08-04 09:24:36 +00:00
|
|
|
import type { AxiosInstance, AxiosResponse } from 'axios';
|
2024-08-02 16:52:35 +00:00
|
|
|
import { RequiredError } from "./base";
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const DUMMY_BASE_URL = 'https://example.com'
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {
|
|
|
|
if (paramValue === null || paramValue === undefined) {
|
|
|
|
throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
|
|
}
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {
|
|
|
|
if (configuration && configuration.apiKey) {
|
|
|
|
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
|
|
? await configuration.apiKey(keyParamName)
|
|
|
|
: await configuration.apiKey;
|
|
|
|
object[keyParamName] = localVarApiKeyValue;
|
|
|
|
}
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const setBasicAuthToObject = function (object: any, configuration?: Configuration) {
|
|
|
|
if (configuration && (configuration.username || configuration.password)) {
|
|
|
|
object["auth"] = { username: configuration.username, password: configuration.password };
|
|
|
|
}
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {
|
|
|
|
if (configuration && configuration.accessToken) {
|
|
|
|
const accessToken = typeof configuration.accessToken === 'function'
|
|
|
|
? await configuration.accessToken()
|
|
|
|
: await configuration.accessToken;
|
|
|
|
object["Authorization"] = "Bearer " + accessToken;
|
|
|
|
}
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {
|
|
|
|
if (configuration && configuration.accessToken) {
|
|
|
|
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
|
|
|
|
? await configuration.accessToken(name, scopes)
|
|
|
|
: await configuration.accessToken;
|
|
|
|
object["Authorization"] = "Bearer " + localVarAccessTokenValue;
|
2024-08-04 08:54:16 +00:00
|
|
|
}
|
2024-08-04 09:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void {
|
|
|
|
if (parameter == null) return;
|
|
|
|
if (typeof parameter === "object") {
|
|
|
|
if (Array.isArray(parameter)) {
|
|
|
|
(parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Object.keys(parameter).forEach(currentKey =>
|
|
|
|
setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (urlSearchParams.has(key)) {
|
|
|
|
urlSearchParams.append(key, parameter);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
urlSearchParams.set(key, parameter);
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const setSearchParams = function (url: URL, ...objects: any[]) {
|
2024-08-04 09:24:36 +00:00
|
|
|
const searchParams = new URLSearchParams(url.search);
|
|
|
|
setFlattenedQueryParams(searchParams, objects);
|
|
|
|
url.search = searchParams.toString();
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {
|
|
|
|
const nonString = typeof value !== 'string';
|
|
|
|
const needsSerialization = nonString && configuration && configuration.isJsonMime
|
|
|
|
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
|
|
|
|
: nonString;
|
|
|
|
return needsSerialization
|
|
|
|
? JSON.stringify(value !== undefined ? value : {})
|
|
|
|
: (value || "");
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const toPathString = function (url: URL) {
|
2024-08-04 09:24:36 +00:00
|
|
|
return url.pathname + url.search + url.hash
|
|
|
|
}
|
2024-08-02 16:52:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
*/
|
2024-08-04 09:24:36 +00:00
|
|
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
|
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
|
const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url};
|
|
|
|
return axios.request<T, R>(axiosRequestArgs);
|
2024-08-02 16:52:35 +00:00
|
|
|
};
|
2024-08-04 09:24:36 +00:00
|
|
|
}
|