/** * 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: passports */ import * as passports from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class PassportMethodActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isPassportMethodEntityEqual(a: passports.PassportMethodEntity, b: passports.PassportMethodEntity): boolean; static getPassportMethodEntityPrimaryKey(a: passports.PassportMethodEntity): string; query(complexSqlAlike: string): PassportMethodActions; static fn(options: RemoteRequestOption): PassportMethodActions; static fnExec(fn: ExecApi): PassportMethodActions; uniqueId(id: string): PassportMethodActions; deep(deep?: boolean): PassportMethodActions; withPreloads(withPreloads: string): PassportMethodActions; sort(sortFields: string | string[]): PassportMethodActions; startIndex(offset: number): PassportMethodActions; itemsPerPage(limit: number): PassportMethodActions; get paramsAsString(): string; getPassportMethods(): Promise>; getPassportMethodByUniqueId(uniqueId: string): Promise>; postPassportMethod(entity: passports.PassportMethodEntity): Promise>; patchPassportMethod(entity: passports.PassportMethodEntity): Promise>; patchPassportMethods(entity: core.BulkRecordRequest): Promise>; deletePassportMethod(entity: core.DeleteRequest): Promise; }