feathers-authentication-management
Version:
Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication
26 lines (25 loc) • 1.42 kB
TypeScript
import setup from './setupAuthManagement';
import { addVerification, isVerified, removeVerification } from './hooks';
export default setup;
export declare const hooks: {
addVerification: typeof addVerification;
isVerified: typeof isVerified;
removeVerification: typeof removeVerification;
};
export { addVerification };
export { isVerified };
export { removeVerification };
export { AuthenticationManagementService } from './services/AuthenticationManagementService';
export { CheckUniqueService } from './services/CheckUniqueService';
export { IdentityChangeService } from './services/IdentityChangeService';
export { PasswordChangeService } from './services/PasswordChangeService';
export { ResendVerifySignupService } from './services/ResendVerifySignupService';
export { ResetPwdLongService } from './services/ResetPwdLongService';
export { ResetPwdShortService } from './services/ResetPwdShortService';
export { SendResetPwdService } from './services/SendResetPwdService';
export { VerifySignupLongService } from './services/VerifySignupLongService';
export { VerifySignupSetPasswordLongService } from './services/VerifySignupSetPasswordLongService';
export { VerifySignupSetPasswordShortService } from './services/VerifySignupSetPasswordShortService';
export { VerifySignupShortService } from './services/VerifySignupShortService';
export * from './types';
export { default as client } from './client';