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 434 B
import { RocketsAuthUserCreatableInterface } from './rockets-auth-user-creatable.interface'; import { RocketsAuthUserInterface } from './rockets-auth-user.interface'; export interface RocketsAuthUserUpdatableInterface extends Pick<RocketsAuthUserInterface, 'id'>, Partial<Pick<RocketsAuthUserCreatableInterface, 'email' | 'username' | 'active' | 'userMetadata'>> { } //# sourceMappingURL=rockets-auth-user-updatable.interface.d.ts.map