- Improved `accountService` to streamline user profile management, including enhanced fetching and updating mechanisms for profile and address information. - Updated `auth.store` to optimize client-side authentication state handling, ensuring a more robust login, signup, and session management process. - Centralized exports for authentication services in `auth/api/index.ts` for better organization and accessibility. - Enhanced overall service architecture by refining API services related to billing and checkout functionalities, promoting maintainability and clarity across the portal features.
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
/**
|
|
* Realtime Feature Module
|
|
* Real-time event listeners and WebSocket connections
|
|
*/
|
|
|
|
// Components
|
|
export { AccountEventsListener } from "./components/AccountEventsListener";
|