/** * 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 LoyaltyCustomerActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isLoyaltyCustomerEntityEqual(a: loyalty.LoyaltyCustomerEntity, b: loyalty.LoyaltyCustomerEntity): boolean; static getLoyaltyCustomerEntityPrimaryKey(a: loyalty.LoyaltyCustomerEntity): string; query(complexSqlAlike: string): LoyaltyCustomerActions; static fn(options: RemoteRequestOption): LoyaltyCustomerActions; static fnExec(fn: ExecApi): LoyaltyCustomerActions; uniqueId(id: string): LoyaltyCustomerActions; deep(deep?: boolean): LoyaltyCustomerActions; withPreloads(withPreloads: string): LoyaltyCustomerActions; sort(sortFields: string | string[]): LoyaltyCustomerActions; startIndex(offset: number): LoyaltyCustomerActions; itemsPerPage(limit: number): LoyaltyCustomerActions; get paramsAsString(): string; getLoyaltyCustomers(): Promise>; getLoyaltyCustomerByUniqueId(uniqueId: string): Promise>; postLoyaltyCustomer(entity: loyalty.LoyaltyCustomerEntity): Promise>; patchLoyaltyCustomer(entity: loyalty.LoyaltyCustomerEntity): Promise>; patchLoyaltyCustomers(entity: core.BulkRecordRequest): Promise>; deleteLoyaltyCustomer(entity: core.DeleteRequest): Promise; }