UNPKG

@bitwild/rockets-auth

Version:

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

20 lines 636 B
import { RocketsAuthOtpSettingsInterface } from '../../domains/otp/interfaces/rockets-auth-otp-settings.interface'; export interface RocketsAuthSettingsInterface { role: { adminRoleName: string; defaultUserRoleName?: string; }; email: { from: string; baseUrl: string; tokenUrlFormatter?: (baseUrl: string, passcode: string) => string; templates: { sendOtp: { fileName: string; subject: string; }; }; }; otp: RocketsAuthOtpSettingsInterface; } //# sourceMappingURL=rockets-auth-settings.interface.d.ts.map