/** * This is an auto generate file from fireback project. * You can use this in order to communicate in backend, it gives you available actions, * and their types * Module: commonprofile */ import * as commonprofile from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class CommonProfileActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isCommonProfileEntityEqual(a: commonprofile.CommonProfileEntity, b: commonprofile.CommonProfileEntity): boolean; static getCommonProfileEntityPrimaryKey(a: commonprofile.CommonProfileEntity): string; query(complexSqlAlike: string): CommonProfileActions; static fn(options: RemoteRequestOption): CommonProfileActions; static fnExec(fn: ExecApi): CommonProfileActions; uniqueId(id: string): CommonProfileActions; deep(deep?: boolean): CommonProfileActions; withPreloads(withPreloads: string): CommonProfileActions; sort(sortFields: string | string[]): CommonProfileActions; startIndex(offset: number): CommonProfileActions; itemsPerPage(limit: number): CommonProfileActions; get paramsAsString(): string; getCommonProfiles(): Promise>; getCommonProfileByUniqueId(uniqueId: string): Promise>; postCommonProfile(entity: commonprofile.CommonProfileEntity): Promise>; patchCommonProfile(entity: commonprofile.CommonProfileEntity): Promise>; patchCommonProfileDistinct(entity: commonprofile.CommonProfileEntity): Promise>; getCommonProfileDistinct(): Promise>; patchCommonProfiles(entity: core.BulkRecordRequest): Promise>; deleteCommonProfile(entity: core.DeleteRequest): Promise; }