- Added new modules for SIM management, internet management, and call history to the BFF, improving service organization and modularity. - Updated environment validation schema to reflect changes in Salesforce event channels, ensuring accurate configuration. - Refactored router configuration to include new subscription-related modules, enhancing API routing clarity. - Cleaned up Salesforce integration by removing unused service files and optimizing event handling logic. - Improved support service by adding cache invalidation logic for case comments, ensuring real-time updates for users. - Updated domain schemas to remove deprecated fields and enhance validation for residence card verification, promoting data integrity. - Enhanced utility functions in the portal for better address formatting and confirmation prompts, improving user experience.
30 lines
617 B
TypeScript
30 lines
617 B
TypeScript
export { cn } from "./cn";
|
|
export { formatAddressLabel } from "./address";
|
|
export { confirmWithAddress } from "./confirm";
|
|
export {
|
|
formatIsoDate,
|
|
formatIsoRelative,
|
|
formatIsoMonthDay,
|
|
isSameDay,
|
|
isToday,
|
|
isYesterday,
|
|
type FormatDateFallbackOptions,
|
|
} from "./date";
|
|
export {
|
|
parseError,
|
|
getErrorMessage,
|
|
shouldLogout,
|
|
canRetry,
|
|
getErrorCode,
|
|
ErrorCode,
|
|
ErrorMessages,
|
|
type ParsedError,
|
|
type ErrorCodeType,
|
|
} from "./error-handling";
|
|
export {
|
|
buildPaymentMethodDisplay,
|
|
getPaymentMethodBrandLabel,
|
|
getPaymentMethodCardDisplay,
|
|
normalizeExpiryLabel,
|
|
} from "./payment-methods";
|