/** * 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: iot */ import * as iot from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class DataNodeActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isDataNodeEntityEqual(a: iot.DataNodeEntity, b: iot.DataNodeEntity): boolean; static getDataNodeEntityPrimaryKey(a: iot.DataNodeEntity): string; static isNodeDatumEntityEqual(a: iot.NodeDatumEntity, b: iot.NodeDatumEntity): boolean; static getNodeDatumEntityPrimaryKey(a: iot.NodeDatumEntity): string; query(complexSqlAlike: string): DataNodeActions; static fn(options: RemoteRequestOption): DataNodeActions; static fnExec(fn: ExecApi): DataNodeActions; uniqueId(id: string): DataNodeActions; deep(deep?: boolean): DataNodeActions; withPreloads(withPreloads: string): DataNodeActions; sort(sortFields: string | string[]): DataNodeActions; startIndex(offset: number): DataNodeActions; itemsPerPage(limit: number): DataNodeActions; get paramsAsString(): string; getDataNodes(): Promise>; getDataNodeByUniqueId(uniqueId: string): Promise>; postDataNode(entity: iot.DataNodeEntity): Promise>; patchDataNode(entity: iot.DataNodeEntity): Promise>; patchDataNodes(entity: core.BulkRecordRequest): Promise>; deleteDataNode(entity: core.DeleteRequest): Promise; postDataNodeWrite(entity: iot.WriteDatumDto): Promise>; }