/** * 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: loyalty */ import * as loyalty from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class PersonalCustomerActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isPersonalCustomerEntityEqual(a: loyalty.PersonalCustomerEntity, b: loyalty.PersonalCustomerEntity): boolean; static getPersonalCustomerEntityPrimaryKey(a: loyalty.PersonalCustomerEntity): string; query(complexSqlAlike: string): PersonalCustomerActions; static fn(options: RemoteRequestOption): PersonalCustomerActions; static fnExec(fn: ExecApi): PersonalCustomerActions; uniqueId(id: string): PersonalCustomerActions; deep(deep?: boolean): PersonalCustomerActions; withPreloads(withPreloads: string): PersonalCustomerActions; sort(sortFields: string | string[]): PersonalCustomerActions; startIndex(offset: number): PersonalCustomerActions; itemsPerPage(limit: number): PersonalCustomerActions; get paramsAsString(): string; getPersonalCustomers(): Promise>; getPersonalCustomerByUniqueId(uniqueId: string): Promise>; postPersonalCustomer(entity: loyalty.PersonalCustomerEntity): Promise>; patchPersonalCustomer(entity: loyalty.PersonalCustomerEntity): Promise>; patchPersonalCustomers(entity: core.BulkRecordRequest): Promise>; deletePersonalCustomer(entity: core.DeleteRequest): Promise; }