/* tslint:disable */ /* eslint-disable */ /** * Algol WC Wishlist * Algol WC Wishlist * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios'; import { Configuration } from '../configuration'; // Some imports not used depending on template conditions // @ts-ignore import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base'; import { Option } from '../models'; /** * SettingsApi - axios parameter creator * @export */ export const SettingsApiAxiosParamCreator = function (configuration?: Configuration) { return { /** * Get all settings * @param {*} [options] Override http request option. * @throws {RequiredError} */ getAllSettings: async (options: AxiosRequestConfig = {}): Promise => { const localVarPath = `/admin/settings`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, 'https://example.com'); let baseOptions; if (configuration) { baseOptions = configuration.baseOptions; } const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options}; const localVarHeaderParameter = {} as any; const localVarQueryParameter = {} as any; // authentication apiKey required if (configuration && configuration.apiKey) { const localVarApiKeyValue = typeof configuration.apiKey === 'function' ? await configuration.apiKey("X-WP-Nonce") : await configuration.apiKey; localVarHeaderParameter["X-WP-Nonce"] = localVarApiKeyValue; } const query = new URLSearchParams(localVarUrlObj.search); for (const key in localVarQueryParameter) { query.set(key, localVarQueryParameter[key]); } for (const key in options.params) { query.set(key, options.params[key]); } localVarUrlObj.search = (new URLSearchParams(query)).toString(); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; return { url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash, options: localVarRequestOptions, }; }, /** * Update settings * @param {any} body Options * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateAllSettings: async (body: any, options: AxiosRequestConfig = {}): Promise => { // verify required parameter 'body' is not null or undefined if (body === null || body === undefined) { throw new RequiredError('body','Required parameter body was null or undefined when calling updateAllSettings.'); } const localVarPath = `/admin/settings`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, 'https://example.com'); let baseOptions; if (configuration) { baseOptions = configuration.baseOptions; } const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options}; const localVarHeaderParameter = {} as any; const localVarQueryParameter = {} as any; // authentication apiKey required if (configuration && configuration.apiKey) { const localVarApiKeyValue = typeof configuration.apiKey === 'function' ? await configuration.apiKey("X-WP-Nonce") : await configuration.apiKey; localVarHeaderParameter["X-WP-Nonce"] = localVarApiKeyValue; } localVarHeaderParameter['Content-Type'] = 'application/json'; const query = new URLSearchParams(localVarUrlObj.search); for (const key in localVarQueryParameter) { query.set(key, localVarQueryParameter[key]); } for (const key in options.params) { query.set(key, options.params[key]); } localVarUrlObj.search = (new URLSearchParams(query)).toString(); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json'; localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || ""); return { url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash, options: localVarRequestOptions, }; }, } }; /** * SettingsApi - functional programming interface * @export */ export const SettingsApiFp = function(configuration?: Configuration) { return { /** * Get all settings * @param {*} [options] Override http request option. * @throws {RequiredError} */ async getAllSettings(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>> { const localVarAxiosArgs = await SettingsApiAxiosParamCreator(configuration).getAllSettings(options); return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => { const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url}; return axios.request(axiosRequestArgs); }; }, /** * Update settings * @param {any} body Options * @param {*} [options] Override http request option. * @throws {RequiredError} */ async updateAllSettings(body: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>> { const localVarAxiosArgs = await SettingsApiAxiosParamCreator(configuration).updateAllSettings(body, options); return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => { const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url}; return axios.request(axiosRequestArgs); }; }, } }; /** * SettingsApi - factory interface * @export */ export const SettingsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { return { /** * Get all settings * @param {*} [options] Override http request option. * @throws {RequiredError} */ async getAllSettings(options?: AxiosRequestConfig): Promise>> { return SettingsApiFp(configuration).getAllSettings(options).then((request) => request(axios, basePath)); }, /** * Update settings * @param {any} body Options * @param {*} [options] Override http request option. * @throws {RequiredError} */ async updateAllSettings(body: any, options?: AxiosRequestConfig): Promise>> { return SettingsApiFp(configuration).updateAllSettings(body, options).then((request) => request(axios, basePath)); }, }; }; /** * SettingsApi - object-oriented interface * @export * @class SettingsApi * @extends {BaseAPI} */ export class SettingsApi extends BaseAPI { /** * Get all settings * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SettingsApi */ public async getAllSettings(options?: AxiosRequestConfig) : Promise>> { return SettingsApiFp(this.configuration).getAllSettings(options).then((request) => request(this.axios, this.basePath)); } /** * Update settings * @param {any} body Options * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SettingsApi */ public async updateAllSettings(body: any, options?: AxiosRequestConfig) : Promise>> { return SettingsApiFp(this.configuration).updateAllSettings(body, options).then((request) => request(this.axios, this.basePath)); } }