- Introduced new SIM management queue and processor to handle SIM-related tasks efficiently. - Added SIM activation fee handling in the checkout service, ensuring proper validation and inclusion in cart calculations. - Enhanced the SimCatalogService to retrieve and filter activation fees based on SKU, improving order validation. - Updated the checkout process to automatically add default activation fees when none are specified, improving user experience. - Refactored the ActivationForm component to display activation fees clearly during the SIM configuration process. - Improved error handling and logging across various services to provide better insights during operations. - Updated tests to cover new features and ensure reliability in the checkout and SIM management workflows.
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
export const QUEUE_NAMES = {
|
|
EMAIL: "email",
|
|
PROVISIONING: "provisioning",
|
|
RECONCILE: "reconcile",
|
|
SIM_MANAGEMENT: "sim-management",
|
|
} as const;
|
|
|
|
export type QueueName = (typeof QUEUE_NAMES)[keyof typeof QUEUE_NAMES];
|