/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { CustomBackofficeDto } from '../models'; import { CustomBackofficePageDto } from '../models'; import { CustomBackofficeSearchResultPageDto } from '../models'; import { SearchRequestDto } from '../models'; /** * CustomBackofficeModulesApi - axios parameter creator * @export */ export declare const CustomBackofficeModulesApiAxiosParamCreator: (axiosClientConfiguration?: Configuration) => { /** * * @param {CustomBackofficeDto} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createCustomBackoffice: (customBackoffice: CustomBackofficeDto, translate?: string, options?: any) => Promise; /** * This is a very performant method for checking if a CustomBackoffice exists. * @summary Check if CustomBackoffice exists * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ customBackofficeExists: (id: string, options?: any) => Promise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteCustomBackoffice: (id: string, translate?: string, options?: any) => Promise; /** * * @param {Array} ids * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteManyCustomBackoffices: (ids: Array, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackoffice: (id: string, translate?: string, options?: any) => Promise; /** * * @param {number} [page] * @param {number} [size] * @param {string} [translate] * @param {boolean} [withReplacements] * @param {string} [sort] * @param {string} [search] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackoffices: (page?: number, size?: number, translate?: string, withReplacements?: boolean, sort?: string, search?: string, options?: any) => Promise; /** * * @param {number} [page] * @param {number} [size] * @param {string} [sort] * @param {string} [search] * @param {boolean} [withReplacements] * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackofficesCount: (page?: number, size?: number, sort?: string, search?: string, withReplacements?: boolean, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {any} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchCustomBackoffice: (id: string, customBackoffice: any, translate?: string, options?: any) => Promise; /** * * @param {SearchRequestDto} searchRequest * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ performCustomBackofficeSearch: (searchRequest: SearchRequestDto, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {CustomBackofficeDto} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ putCustomBackoffice: (id: string, customBackoffice: CustomBackofficeDto, translate?: string, options?: any) => Promise; }; /** * CustomBackofficeModulesApi - functional programming interface * @export */ export declare const CustomBackofficeModulesApiFp: (axiosClientConfiguration?: Configuration) => { /** * * @param {CustomBackofficeDto} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createCustomBackoffice(customBackoffice: CustomBackofficeDto, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This is a very performant method for checking if a CustomBackoffice exists. * @summary Check if CustomBackoffice exists * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ customBackofficeExists(id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteCustomBackoffice(id: string, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {Array} ids * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteManyCustomBackoffices(ids: Array, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackoffice(id: string, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {number} [page] * @param {number} [size] * @param {string} [translate] * @param {boolean} [withReplacements] * @param {string} [sort] * @param {string} [search] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackoffices(page?: number, size?: number, translate?: string, withReplacements?: boolean, sort?: string, search?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {number} [page] * @param {number} [size] * @param {string} [sort] * @param {string} [search] * @param {boolean} [withReplacements] * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackofficesCount(page?: number, size?: number, sort?: string, search?: string, withReplacements?: boolean, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} id * @param {any} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchCustomBackoffice(id: string, customBackoffice: any, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {SearchRequestDto} searchRequest * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ performCustomBackofficeSearch(searchRequest: SearchRequestDto, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} id * @param {CustomBackofficeDto} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ putCustomBackoffice(id: string, customBackoffice: CustomBackofficeDto, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * CustomBackofficeModulesApi - factory interface * @export */ export declare const CustomBackofficeModulesApiFactory: (axiosClientConfiguration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {CustomBackofficeDto} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createCustomBackoffice(customBackoffice: CustomBackofficeDto, translate?: string, options?: any): AxiosPromise; /** * This is a very performant method for checking if a CustomBackoffice exists. * @summary Check if CustomBackoffice exists * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ customBackofficeExists(id: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteCustomBackoffice(id: string, translate?: string, options?: any): AxiosPromise; /** * * @param {Array} ids * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteManyCustomBackoffices(ids: Array, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackoffice(id: string, translate?: string, options?: any): AxiosPromise; /** * * @param {number} [page] * @param {number} [size] * @param {string} [translate] * @param {boolean} [withReplacements] * @param {string} [sort] * @param {string} [search] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackoffices(page?: number, size?: number, translate?: string, withReplacements?: boolean, sort?: string, search?: string, options?: any): AxiosPromise; /** * * @param {number} [page] * @param {number} [size] * @param {string} [sort] * @param {string} [search] * @param {boolean} [withReplacements] * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCustomBackofficesCount(page?: number, size?: number, sort?: string, search?: string, withReplacements?: boolean, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {any} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchCustomBackoffice(id: string, customBackoffice: any, translate?: string, options?: any): AxiosPromise; /** * * @param {SearchRequestDto} searchRequest * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ performCustomBackofficeSearch(searchRequest: SearchRequestDto, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {CustomBackofficeDto} customBackoffice * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ putCustomBackoffice(id: string, customBackoffice: CustomBackofficeDto, translate?: string, options?: any): AxiosPromise; }; /** * Request parameters for createCustomBackoffice operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiCreateCustomBackofficeRequest */ export interface CustomBackofficeModulesApiCreateCustomBackofficeRequest { /** * * @type {CustomBackofficeDto} * @memberof CustomBackofficeModulesApiCreateCustomBackoffice */ readonly customBackoffice: CustomBackofficeDto; /** * * @type {string} * @memberof CustomBackofficeModulesApiCreateCustomBackoffice */ readonly translate?: string; } /** * Request parameters for customBackofficeExists operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiCustomBackofficeExistsRequest */ export interface CustomBackofficeModulesApiCustomBackofficeExistsRequest { /** * * @type {string} * @memberof CustomBackofficeModulesApiCustomBackofficeExists */ readonly id: string; } /** * Request parameters for deleteCustomBackoffice operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiDeleteCustomBackofficeRequest */ export interface CustomBackofficeModulesApiDeleteCustomBackofficeRequest { /** * * @type {string} * @memberof CustomBackofficeModulesApiDeleteCustomBackoffice */ readonly id: string; /** * * @type {string} * @memberof CustomBackofficeModulesApiDeleteCustomBackoffice */ readonly translate?: string; } /** * Request parameters for deleteManyCustomBackoffices operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiDeleteManyCustomBackofficesRequest */ export interface CustomBackofficeModulesApiDeleteManyCustomBackofficesRequest { /** * * @type {Array} * @memberof CustomBackofficeModulesApiDeleteManyCustomBackoffices */ readonly ids: Array; /** * * @type {string} * @memberof CustomBackofficeModulesApiDeleteManyCustomBackoffices */ readonly translate?: string; } /** * Request parameters for getCustomBackoffice operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiGetCustomBackofficeRequest */ export interface CustomBackofficeModulesApiGetCustomBackofficeRequest { /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackoffice */ readonly id: string; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackoffice */ readonly translate?: string; } /** * Request parameters for getCustomBackoffices operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiGetCustomBackofficesRequest */ export interface CustomBackofficeModulesApiGetCustomBackofficesRequest { /** * * @type {number} * @memberof CustomBackofficeModulesApiGetCustomBackoffices */ readonly page?: number; /** * * @type {number} * @memberof CustomBackofficeModulesApiGetCustomBackoffices */ readonly size?: number; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackoffices */ readonly translate?: string; /** * * @type {boolean} * @memberof CustomBackofficeModulesApiGetCustomBackoffices */ readonly withReplacements?: boolean; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackoffices */ readonly sort?: string; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackoffices */ readonly search?: string; } /** * Request parameters for getCustomBackofficesCount operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiGetCustomBackofficesCountRequest */ export interface CustomBackofficeModulesApiGetCustomBackofficesCountRequest { /** * * @type {number} * @memberof CustomBackofficeModulesApiGetCustomBackofficesCount */ readonly page?: number; /** * * @type {number} * @memberof CustomBackofficeModulesApiGetCustomBackofficesCount */ readonly size?: number; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackofficesCount */ readonly sort?: string; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackofficesCount */ readonly search?: string; /** * * @type {boolean} * @memberof CustomBackofficeModulesApiGetCustomBackofficesCount */ readonly withReplacements?: boolean; /** * * @type {string} * @memberof CustomBackofficeModulesApiGetCustomBackofficesCount */ readonly translate?: string; } /** * Request parameters for patchCustomBackoffice operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiPatchCustomBackofficeRequest */ export interface CustomBackofficeModulesApiPatchCustomBackofficeRequest { /** * * @type {string} * @memberof CustomBackofficeModulesApiPatchCustomBackoffice */ readonly id: string; /** * * @type {any} * @memberof CustomBackofficeModulesApiPatchCustomBackoffice */ readonly customBackoffice: any; /** * * @type {string} * @memberof CustomBackofficeModulesApiPatchCustomBackoffice */ readonly translate?: string; } /** * Request parameters for performCustomBackofficeSearch operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiPerformCustomBackofficeSearchRequest */ export interface CustomBackofficeModulesApiPerformCustomBackofficeSearchRequest { /** * * @type {SearchRequestDto} * @memberof CustomBackofficeModulesApiPerformCustomBackofficeSearch */ readonly searchRequest: SearchRequestDto; /** * * @type {string} * @memberof CustomBackofficeModulesApiPerformCustomBackofficeSearch */ readonly translate?: string; } /** * Request parameters for putCustomBackoffice operation in CustomBackofficeModulesApi. * @export * @interface CustomBackofficeModulesApiPutCustomBackofficeRequest */ export interface CustomBackofficeModulesApiPutCustomBackofficeRequest { /** * * @type {string} * @memberof CustomBackofficeModulesApiPutCustomBackoffice */ readonly id: string; /** * * @type {CustomBackofficeDto} * @memberof CustomBackofficeModulesApiPutCustomBackoffice */ readonly customBackoffice: CustomBackofficeDto; /** * * @type {string} * @memberof CustomBackofficeModulesApiPutCustomBackoffice */ readonly translate?: string; } /** * CustomBackofficeModulesApi - object-oriented interface * @export * @class CustomBackofficeModulesApi * @extends {BaseAPI} */ export declare class CustomBackofficeModulesApi extends BaseAPI { /** * * @param {CustomBackofficeModulesApiCreateCustomBackofficeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ createCustomBackoffice(requestParameters: CustomBackofficeModulesApiCreateCustomBackofficeRequest, options?: any): Promise>; /** * This is a very performant method for checking if a CustomBackoffice exists. * @summary Check if CustomBackoffice exists * @param {CustomBackofficeModulesApiCustomBackofficeExistsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ customBackofficeExists(requestParameters: CustomBackofficeModulesApiCustomBackofficeExistsRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiDeleteCustomBackofficeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ deleteCustomBackoffice(requestParameters: CustomBackofficeModulesApiDeleteCustomBackofficeRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiDeleteManyCustomBackofficesRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ deleteManyCustomBackoffices(requestParameters: CustomBackofficeModulesApiDeleteManyCustomBackofficesRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiGetCustomBackofficeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ getCustomBackoffice(requestParameters: CustomBackofficeModulesApiGetCustomBackofficeRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiGetCustomBackofficesRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ getCustomBackoffices(requestParameters?: CustomBackofficeModulesApiGetCustomBackofficesRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiGetCustomBackofficesCountRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ getCustomBackofficesCount(requestParameters?: CustomBackofficeModulesApiGetCustomBackofficesCountRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiPatchCustomBackofficeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ patchCustomBackoffice(requestParameters: CustomBackofficeModulesApiPatchCustomBackofficeRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiPerformCustomBackofficeSearchRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ performCustomBackofficeSearch(requestParameters: CustomBackofficeModulesApiPerformCustomBackofficeSearchRequest, options?: any): Promise>; /** * * @param {CustomBackofficeModulesApiPutCustomBackofficeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CustomBackofficeModulesApi */ putCustomBackoffice(requestParameters: CustomBackofficeModulesApiPutCustomBackofficeRequest, options?: any): Promise>; }