/** * 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 UserActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isUserEntityEqual(a: workspaces.UserEntity, b: workspaces.UserEntity): boolean; static getUserEntityPrimaryKey(a: workspaces.UserEntity): string; static isUserProfileEntityEqual(a: workspaces.UserProfileEntity, b: workspaces.UserProfileEntity): boolean; static getUserProfileEntityPrimaryKey(a: workspaces.UserProfileEntity): string; query(complexSqlAlike: string): UserActions; static fn(options: RemoteRequestOption): UserActions; static fnExec(fn: ExecApi): UserActions; uniqueId(id: string): UserActions; deep(deep?: boolean): UserActions; withPreloads(withPreloads: string): UserActions; sort(sortFields: string | string[]): UserActions; startIndex(offset: number): UserActions; itemsPerPage(limit: number): UserActions; get paramsAsString(): string; patchUser(entity: workspaces.UserEntity): Promise>; postUser(entity: workspaces.UserEntity): Promise>; deleteUser(entity: core.DeleteRequest): Promise; getUsers(): Promise>; getUserByUniqueId(uniqueId: string): Promise>; getExchangeKeyByUniqueId(uniqueId: string): Promise>; postAuthorization(entity: core.EmptyRequest): Promise>; getprofile(): Promise>; postprofile(entity: workspaces.UserProfileEntity): Promise>; deleteAuthRevoke(entity: core.DeleteRequest): Promise; postPreferences(entity: any): Promise; getPreferences(): Promise; }