/** * 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 workspaces from "../workspaces"; import * as passports from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class PassportActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isPassportEntityEqual(a: passports.PassportEntity, b: passports.PassportEntity): boolean; static getPassportEntityPrimaryKey(a: passports.PassportEntity): string; static isWorkspaceInviteEntityEqual(a: workspaces.WorkspaceInviteEntity, b: workspaces.WorkspaceInviteEntity): boolean; static getWorkspaceInviteEntityPrimaryKey(a: workspaces.WorkspaceInviteEntity): string; query(complexSqlAlike: string): PassportActions; static fn(options: RemoteRequestOption): PassportActions; static fnExec(fn: ExecApi): PassportActions; uniqueId(id: string): PassportActions; deep(deep?: boolean): PassportActions; withPreloads(withPreloads: string): PassportActions; sort(sortFields: string | string[]): PassportActions; startIndex(offset: number): PassportActions; itemsPerPage(limit: number): PassportActions; get paramsAsString(): string; getPassports(): Promise>; getPassportByUniqueId(uniqueId: string): Promise>; postPassport(entity: passports.PassportEntity): Promise>; patchPassportByUniqueId(uniqueId: string, entity: passports.PassportEntity): Promise>; deletePassport(entity: core.DeleteRequest): Promise; postPassportSignupEmail(entity: passports.EmailAccountSignupDto): Promise>; getWorkspacePublicjoinkeys(): Promise>; postWorkspacePublicjoinkey(entity: passports.PublicJoinKey): Promise>; getWorkspacePublicjoinkeyByUniqueId(uniqueId: string): Promise>; getWorkspacePublicJoinKeyInfoByUniqueId(uniqueId: string): Promise>; deleteWorkspacePublicjoinkey(entity: core.DeleteRequest): Promise; patchWorkspacePublicjoinkey(entity: passports.PublicJoinKey): Promise>; postPassportSigninEmail(entity: passports.EmailAccountSigninDto): Promise>; postPassportAuthorizeOs(entity: passports.EmailAccountSigninDto): Promise>; getWorkspacesInviteByUniqueId(uniqueId: string): Promise>; postPassportSignupPhoneNumber(entity: passports.PhoneNumberAccountCreationDto): Promise>; postPassportSignupPhoneNumberConfirm(entity: passports.PhoneNumberAccountCreationDto): Promise>; postPassportSigninPhoneNumber(entity: passports.PhoneNumberAccountCreationDto): Promise>; postConfirmEmailByUniqueId(uniqueId: string, entity: core.EmptyRequest): Promise>; postPassportRequestResetMailPassword(entity: passports.OtpAuthenticateDto): Promise>; postPassportAuthorize2(entity: passports.OtpAuthenticateDto): Promise>; postPassportResetMailPasswordByUniqueId(uniqueId: string, entity: passports.ResetEmailDto): Promise>; getPassportRequestResetMailPassword(): Promise>; getPassportResetMailPasswordInfoByUniqueId(uniqueId: string): Promise>; }