@bitwild/rockets-auth
Version:
Rockets Auth - Complete authentication and authorization solution for NestJS with JWT, OAuth, OTP, role-based access control, and more
10 lines • 635 B
TypeScript
import { RepositoryEntityOptionInterface, UserEntityInterface, UserPasswordHistoryEntityInterface, UserEntityInterface as UserMetadataEntityInterface } from '@concepta/nestjs-common';
export interface RocketsAuthEntitiesOptionsInterface {
entities: {
user: RepositoryEntityOptionInterface<UserEntityInterface>;
userPasswordHistory?: RepositoryEntityOptionInterface<UserPasswordHistoryEntityInterface>;
userMetadata?: RepositoryEntityOptionInterface<UserMetadataEntityInterface>;
userOtp: RepositoryEntityOptionInterface;
};
}
//# sourceMappingURL=rockets-auth-entities-options.interface.d.ts.map