🚨 Announcing Vendure v2 Beta

User

User

Package: @vendure/core File: user.entity.ts

A User represents any authenticated user of the Vendure API. This includes both Administrators as well as registered Customers.

Signature

class User extends VendureEntity implements HasCustomFields, SoftDeletable {
  constructor(input?: DeepPartial<User>)
  @Column({ type: Date, nullable: true })
    deletedAt: Date | null;
  @Column()
    identifier: string;
  @OneToMany(
        type => AuthenticationMethod,
        method => method.user,
    )
    authenticationMethods: AuthenticationMethod[];
  @Column({ default: false })
    verified: boolean;
  @ManyToMany(type => Role)
    @JoinTable()
    roles: Role[];
  @Column({ type: Date, nullable: true })
    lastLogin: Date | null;
  @Column(type => CustomUserFields)
    customFields: CustomUserFields;
  getNativeAuthenticationMethod() => NativeAuthenticationMethod;
  getNativeAuthenticationMethod(strict?: boolean) => NativeAuthenticationMethod | undefined;
  getNativeAuthenticationMethod(strict?: boolean) => NativeAuthenticationMethod | undefined;
}

Extends

Implements

Members

constructor

method
type:
(input?: DeepPartial<User>) => User

deletedAt

property
type:
Date | null

identifier

property
type:
string

authenticationMethods

property

verified

property
type:
boolean

roles

property
type:
Role[]

lastLogin

property
type:
Date | null

customFields

property
type:
CustomUserFields

getNativeAuthenticationMethod

method

getNativeAuthenticationMethod

method
type:
(strict?: boolean) => NativeAuthenticationMethod | undefined

getNativeAuthenticationMethod

method
type:
(strict?: boolean) => NativeAuthenticationMethod | undefined