/** * 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: academy */ import * as academy from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class AcTaskActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isAcTaskEntityEqual(a: academy.AcTaskEntity, b: academy.AcTaskEntity): boolean; static getAcTaskEntityPrimaryKey(a: academy.AcTaskEntity): string; query(complexSqlAlike: string): AcTaskActions; static fn(options: RemoteRequestOption): AcTaskActions; static fnExec(fn: ExecApi): AcTaskActions; uniqueId(id: string): AcTaskActions; deep(deep?: boolean): AcTaskActions; withPreloads(withPreloads: string): AcTaskActions; sort(sortFields: string | string[]): AcTaskActions; startIndex(offset: number): AcTaskActions; itemsPerPage(limit: number): AcTaskActions; get paramsAsString(): string; getAcTasks(): Promise>; getAcTaskByUniqueId(uniqueId: string): Promise>; postAcTask(entity: academy.AcTaskEntity): Promise>; patchAcTask(entity: academy.AcTaskEntity): Promise>; patchAcTasks(entity: core.BulkRecordRequest): Promise>; deleteAcTask(entity: core.DeleteRequest): Promise; }