/** * 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: workspaces */ import * as workspaces from "../workspaces"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class NotificationConfigActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isNotificationConfigEntityEqual(a: workspaces.NotificationConfigEntity, b: workspaces.NotificationConfigEntity): boolean; static getNotificationConfigEntityPrimaryKey(a: workspaces.NotificationConfigEntity): string; query(complexSqlAlike: string): NotificationConfigActions; static fn(options: RemoteRequestOption): NotificationConfigActions; static fnExec(fn: ExecApi): NotificationConfigActions; uniqueId(id: string): NotificationConfigActions; deep(deep?: boolean): NotificationConfigActions; withPreloads(withPreloads: string): NotificationConfigActions; sort(sortFields: string | string[]): NotificationConfigActions; startIndex(offset: number): NotificationConfigActions; itemsPerPage(limit: number): NotificationConfigActions; get paramsAsString(): string; getNotificationConfigs(): Promise>; getNotificationConfigByUniqueId(uniqueId: string): Promise>; postNotificationConfig(entity: workspaces.NotificationConfigEntity): Promise>; patchNotificationConfig(entity: workspaces.NotificationConfigEntity): Promise>; patchNotificationConfigs(entity: core.BulkRecordRequest): Promise>; deleteNotificationConfig(entity: core.DeleteRequest): Promise; postNotificationTestmail(entity: workspaces.TestMailDto): Promise>; getNotificationWorkspaceConfig(): Promise>; patchNotificationWorkspaceConfig(entity: workspaces.NotificationConfigEntity): Promise>; }