UNPKG

@bitwild/rockets-auth

Version:

Rockets Auth - Complete authentication and authorization solution for NestJS with JWT, OAuth, OTP, role-based access control, and more

5 lines 415 B
import { PasswordPlainInterface } from '@concepta/nestjs-common'; import { RocketsAuthUserInterface } from './rockets-auth-user.interface'; export interface RocketsAuthUserCreatableInterface extends Pick<RocketsAuthUserInterface, 'username' | 'email'>, Partial<Pick<RocketsAuthUserInterface, 'active' | 'userMetadata'>>, PasswordPlainInterface { } //# sourceMappingURL=rockets-auth-user-creatable.interface.d.ts.map