- Updated Prisma client generation command in Dockerfile to use version 6.14.0 for consistency. - Refactored SimDetailsCard component to improve type handling and UI elements, including re-exporting SimDetails for backwards compatibility. - Adjusted display logic for SIM details, including changes to how plan types and service dates are presented. - Enhanced button states in SimManagementSection for better clarity on invoice payment status. - Added reissueEsim method in sim-actions.service for handling eSIM reissue requests. - Introduced CatalogPriceInfo type in domain catalog for improved type definitions.
Portal Structure Overview
This app follows a feature-first architecture with a consolidated lib for shared utilities.
Structure:
src/
app/ # Next.js App Router
components/ # Design system (ui, layout, common)
features/ # Feature modules (auth, billing, subscriptions, ...)
lib/ # Core utils and services (api, query, env, utils, types)
providers/ # App-wide providers (e.g., QueryProvider)
styles/ # Global styles
Key changes:
- Merged former
core/andshared/intolib/. - Moved
components/providers/query-provider.tsxtoproviders/query-provider.tsx. - Introduced path aliases:
@/lib/*,@/providers/*.
Migration tips:
- Prefer importing from
@/lib/...going forward. - All
@/shared/*or@/core/*imports have been removed; use@/lib/*.