/** * 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 CustomerTypeActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isCustomerTypeEntityEqual(a: loyalty.CustomerTypeEntity, b: loyalty.CustomerTypeEntity): boolean; static getCustomerTypeEntityPrimaryKey(a: loyalty.CustomerTypeEntity): string; query(complexSqlAlike: string): CustomerTypeActions; static fn(options: RemoteRequestOption): CustomerTypeActions; static fnExec(fn: ExecApi): CustomerTypeActions; uniqueId(id: string): CustomerTypeActions; deep(deep?: boolean): CustomerTypeActions; withPreloads(withPreloads: string): CustomerTypeActions; sort(sortFields: string | string[]): CustomerTypeActions; startIndex(offset: number): CustomerTypeActions; itemsPerPage(limit: number): CustomerTypeActions; get paramsAsString(): string; getCustomerTypes(): Promise>; getCustomerTypeByUniqueId(uniqueId: string): Promise>; postCustomerType(entity: loyalty.CustomerTypeEntity): Promise>; patchCustomerType(entity: loyalty.CustomerTypeEntity): Promise>; patchCustomerTypes(entity: core.BulkRecordRequest): Promise>; deleteCustomerType(entity: core.DeleteRequest): Promise; }