/** * 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 { CompoundWidgetDto } from '../models'; import { CompoundWidgetPageDto } from '../models'; import { CompoundWidgetSearchResultPageDto } from '../models'; import { SearchRequestDto } from '../models'; /** * WidgetsApi - axios parameter creator * @export */ export declare const WidgetsApiAxiosParamCreator: (axiosClientConfiguration?: Configuration) => { /** * This is a very performant method for checking if a CompoundWidget exists. * @summary Check if CompoundWidget exists * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ compoundWidgetExists: (id: string, options?: any) => Promise; /** * * @param {CompoundWidgetDto} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createCompoundWidget: (compoundWidget: CompoundWidgetDto, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteCompoundWidget: (id: string, translate?: string, options?: any) => Promise; /** * * @param {Array} ids * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteManyCompoundWidgets: (ids: Array, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCompoundWidget: (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} */ getCompoundWidgets: (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} */ getCompoundWidgetsCount: (page?: number, size?: number, sort?: string, search?: string, withReplacements?: boolean, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {any} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchCompoundWidget: (id: string, compoundWidget: any, translate?: string, options?: any) => Promise; /** * * @param {SearchRequestDto} searchRequest * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ performCompoundWidgetSearch: (searchRequest: SearchRequestDto, translate?: string, options?: any) => Promise; /** * * @param {string} id * @param {CompoundWidgetDto} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ putCompoundWidget: (id: string, compoundWidget: CompoundWidgetDto, translate?: string, options?: any) => Promise; }; /** * WidgetsApi - functional programming interface * @export */ export declare const WidgetsApiFp: (axiosClientConfiguration?: Configuration) => { /** * This is a very performant method for checking if a CompoundWidget exists. * @summary Check if CompoundWidget exists * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ compoundWidgetExists(id: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {CompoundWidgetDto} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createCompoundWidget(compoundWidget: CompoundWidgetDto, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteCompoundWidget(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} */ deleteManyCompoundWidgets(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} */ getCompoundWidget(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} */ getCompoundWidgets(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} */ getCompoundWidgetsCount(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} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchCompoundWidget(id: string, compoundWidget: 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} */ performCompoundWidgetSearch(searchRequest: SearchRequestDto, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @param {string} id * @param {CompoundWidgetDto} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ putCompoundWidget(id: string, compoundWidget: CompoundWidgetDto, translate?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * WidgetsApi - factory interface * @export */ export declare const WidgetsApiFactory: (axiosClientConfiguration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * This is a very performant method for checking if a CompoundWidget exists. * @summary Check if CompoundWidget exists * @param {string} id * @param {*} [options] Override http request option. * @throws {RequiredError} */ compoundWidgetExists(id: string, options?: any): AxiosPromise; /** * * @param {CompoundWidgetDto} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createCompoundWidget(compoundWidget: CompoundWidgetDto, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteCompoundWidget(id: string, translate?: string, options?: any): AxiosPromise; /** * * @param {Array} ids * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteManyCompoundWidgets(ids: Array, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ getCompoundWidget(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} */ getCompoundWidgets(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} */ getCompoundWidgetsCount(page?: number, size?: number, sort?: string, search?: string, withReplacements?: boolean, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {any} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchCompoundWidget(id: string, compoundWidget: any, translate?: string, options?: any): AxiosPromise; /** * * @param {SearchRequestDto} searchRequest * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ performCompoundWidgetSearch(searchRequest: SearchRequestDto, translate?: string, options?: any): AxiosPromise; /** * * @param {string} id * @param {CompoundWidgetDto} compoundWidget * @param {string} [translate] * @param {*} [options] Override http request option. * @throws {RequiredError} */ putCompoundWidget(id: string, compoundWidget: CompoundWidgetDto, translate?: string, options?: any): AxiosPromise; }; /** * Request parameters for compoundWidgetExists operation in WidgetsApi. * @export * @interface WidgetsApiCompoundWidgetExistsRequest */ export interface WidgetsApiCompoundWidgetExistsRequest { /** * * @type {string} * @memberof WidgetsApiCompoundWidgetExists */ readonly id: string; } /** * Request parameters for createCompoundWidget operation in WidgetsApi. * @export * @interface WidgetsApiCreateCompoundWidgetRequest */ export interface WidgetsApiCreateCompoundWidgetRequest { /** * * @type {CompoundWidgetDto} * @memberof WidgetsApiCreateCompoundWidget */ readonly compoundWidget: CompoundWidgetDto; /** * * @type {string} * @memberof WidgetsApiCreateCompoundWidget */ readonly translate?: string; } /** * Request parameters for deleteCompoundWidget operation in WidgetsApi. * @export * @interface WidgetsApiDeleteCompoundWidgetRequest */ export interface WidgetsApiDeleteCompoundWidgetRequest { /** * * @type {string} * @memberof WidgetsApiDeleteCompoundWidget */ readonly id: string; /** * * @type {string} * @memberof WidgetsApiDeleteCompoundWidget */ readonly translate?: string; } /** * Request parameters for deleteManyCompoundWidgets operation in WidgetsApi. * @export * @interface WidgetsApiDeleteManyCompoundWidgetsRequest */ export interface WidgetsApiDeleteManyCompoundWidgetsRequest { /** * * @type {Array} * @memberof WidgetsApiDeleteManyCompoundWidgets */ readonly ids: Array; /** * * @type {string} * @memberof WidgetsApiDeleteManyCompoundWidgets */ readonly translate?: string; } /** * Request parameters for getCompoundWidget operation in WidgetsApi. * @export * @interface WidgetsApiGetCompoundWidgetRequest */ export interface WidgetsApiGetCompoundWidgetRequest { /** * * @type {string} * @memberof WidgetsApiGetCompoundWidget */ readonly id: string; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidget */ readonly translate?: string; } /** * Request parameters for getCompoundWidgets operation in WidgetsApi. * @export * @interface WidgetsApiGetCompoundWidgetsRequest */ export interface WidgetsApiGetCompoundWidgetsRequest { /** * * @type {number} * @memberof WidgetsApiGetCompoundWidgets */ readonly page?: number; /** * * @type {number} * @memberof WidgetsApiGetCompoundWidgets */ readonly size?: number; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidgets */ readonly translate?: string; /** * * @type {boolean} * @memberof WidgetsApiGetCompoundWidgets */ readonly withReplacements?: boolean; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidgets */ readonly sort?: string; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidgets */ readonly search?: string; } /** * Request parameters for getCompoundWidgetsCount operation in WidgetsApi. * @export * @interface WidgetsApiGetCompoundWidgetsCountRequest */ export interface WidgetsApiGetCompoundWidgetsCountRequest { /** * * @type {number} * @memberof WidgetsApiGetCompoundWidgetsCount */ readonly page?: number; /** * * @type {number} * @memberof WidgetsApiGetCompoundWidgetsCount */ readonly size?: number; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidgetsCount */ readonly sort?: string; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidgetsCount */ readonly search?: string; /** * * @type {boolean} * @memberof WidgetsApiGetCompoundWidgetsCount */ readonly withReplacements?: boolean; /** * * @type {string} * @memberof WidgetsApiGetCompoundWidgetsCount */ readonly translate?: string; } /** * Request parameters for patchCompoundWidget operation in WidgetsApi. * @export * @interface WidgetsApiPatchCompoundWidgetRequest */ export interface WidgetsApiPatchCompoundWidgetRequest { /** * * @type {string} * @memberof WidgetsApiPatchCompoundWidget */ readonly id: string; /** * * @type {any} * @memberof WidgetsApiPatchCompoundWidget */ readonly compoundWidget: any; /** * * @type {string} * @memberof WidgetsApiPatchCompoundWidget */ readonly translate?: string; } /** * Request parameters for performCompoundWidgetSearch operation in WidgetsApi. * @export * @interface WidgetsApiPerformCompoundWidgetSearchRequest */ export interface WidgetsApiPerformCompoundWidgetSearchRequest { /** * * @type {SearchRequestDto} * @memberof WidgetsApiPerformCompoundWidgetSearch */ readonly searchRequest: SearchRequestDto; /** * * @type {string} * @memberof WidgetsApiPerformCompoundWidgetSearch */ readonly translate?: string; } /** * Request parameters for putCompoundWidget operation in WidgetsApi. * @export * @interface WidgetsApiPutCompoundWidgetRequest */ export interface WidgetsApiPutCompoundWidgetRequest { /** * * @type {string} * @memberof WidgetsApiPutCompoundWidget */ readonly id: string; /** * * @type {CompoundWidgetDto} * @memberof WidgetsApiPutCompoundWidget */ readonly compoundWidget: CompoundWidgetDto; /** * * @type {string} * @memberof WidgetsApiPutCompoundWidget */ readonly translate?: string; } /** * WidgetsApi - object-oriented interface * @export * @class WidgetsApi * @extends {BaseAPI} */ export declare class WidgetsApi extends BaseAPI { /** * This is a very performant method for checking if a CompoundWidget exists. * @summary Check if CompoundWidget exists * @param {WidgetsApiCompoundWidgetExistsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ compoundWidgetExists(requestParameters: WidgetsApiCompoundWidgetExistsRequest, options?: any): Promise>; /** * * @param {WidgetsApiCreateCompoundWidgetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ createCompoundWidget(requestParameters: WidgetsApiCreateCompoundWidgetRequest, options?: any): Promise>; /** * * @param {WidgetsApiDeleteCompoundWidgetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ deleteCompoundWidget(requestParameters: WidgetsApiDeleteCompoundWidgetRequest, options?: any): Promise>; /** * * @param {WidgetsApiDeleteManyCompoundWidgetsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ deleteManyCompoundWidgets(requestParameters: WidgetsApiDeleteManyCompoundWidgetsRequest, options?: any): Promise>; /** * * @param {WidgetsApiGetCompoundWidgetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ getCompoundWidget(requestParameters: WidgetsApiGetCompoundWidgetRequest, options?: any): Promise>; /** * * @param {WidgetsApiGetCompoundWidgetsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ getCompoundWidgets(requestParameters?: WidgetsApiGetCompoundWidgetsRequest, options?: any): Promise>; /** * * @param {WidgetsApiGetCompoundWidgetsCountRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ getCompoundWidgetsCount(requestParameters?: WidgetsApiGetCompoundWidgetsCountRequest, options?: any): Promise>; /** * * @param {WidgetsApiPatchCompoundWidgetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ patchCompoundWidget(requestParameters: WidgetsApiPatchCompoundWidgetRequest, options?: any): Promise>; /** * * @param {WidgetsApiPerformCompoundWidgetSearchRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ performCompoundWidgetSearch(requestParameters: WidgetsApiPerformCompoundWidgetSearchRequest, options?: any): Promise>; /** * * @param {WidgetsApiPutCompoundWidgetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WidgetsApi */ putCompoundWidget(requestParameters: WidgetsApiPutCompoundWidgetRequest, options?: any): Promise>; }