- Removed WhmcsLinkWorkflowService and integrated its functionality into new AccountCreationWorkflowService and AccountMigrationWorkflowService. - Introduced OtpEmailService for sending OTP emails, enhancing email handling in LoginOtpWorkflowService and VerificationWorkflowService. - Replaced NewCustomerSignupWorkflowService and SfCompletionWorkflowService with AccountCreationWorkflowService, consolidating account creation logic. - Updated GetStartedCoordinator to utilize new workflow services, improving clarity and maintainability of the authentication process. - Enhanced error handling and logging across workflows to provide better feedback during account creation and migration.
16 lines
724 B
TypeScript
16 lines
724 B
TypeScript
/**
|
|
* Token Infrastructure Services
|
|
*
|
|
* Provides JWT token management, storage, and revocation capabilities.
|
|
*/
|
|
|
|
export type { RefreshTokenPayload, DeviceInfo } from "./token.types.js";
|
|
export { AuthTokenService } from "./token.service.js";
|
|
export { TokenGeneratorService } from "./token-generator.service.js";
|
|
export { TokenRefreshService } from "./token-refresh.service.js";
|
|
export { JoseJwtService } from "./jose-jwt.service.js";
|
|
export { TokenBlacklistService } from "./token-blacklist.service.js";
|
|
export { TokenStorageService } from "./token-storage.service.js";
|
|
export { TokenRevocationService } from "./token-revocation.service.js";
|
|
export { PasswordResetTokenService } from "./password-reset-token.service.js";
|