2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* Orders Domain - Contract
|
|
|
|
|
*
|
2025-10-08 10:33:33 +09:00
|
|
|
* Business types and provider-specific mapping types.
|
|
|
|
|
* Validated types are derived from schemas (see schema.ts).
|
2025-10-03 14:26:55 +09:00
|
|
|
*/
|
|
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
import type { SalesforceProductFieldMap } from "../catalog/contract";
|
|
|
|
|
import type { SalesforceAccountFieldMap } from "../customer/contract";
|
|
|
|
|
import type { UserIdMapping } from "../mappings/contract";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 11:11:05 +09:00
|
|
|
// ============================================================================
|
|
|
|
|
// Order Type Constants
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Order types available in the system
|
|
|
|
|
*/
|
|
|
|
|
export const ORDER_TYPE = {
|
|
|
|
|
INTERNET: "Internet",
|
|
|
|
|
SIM: "SIM",
|
|
|
|
|
VPN: "VPN",
|
|
|
|
|
OTHER: "Other",
|
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
|
|
export type OrderTypeValue = (typeof ORDER_TYPE)[keyof typeof ORDER_TYPE];
|
|
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
// Order Status Constants
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Possible order statuses
|
|
|
|
|
*/
|
|
|
|
|
export const ORDER_STATUS = {
|
|
|
|
|
DRAFT: "Draft",
|
|
|
|
|
ACTIVATED: "Activated",
|
|
|
|
|
PENDING: "Pending",
|
|
|
|
|
FAILED: "Failed",
|
|
|
|
|
CANCELLED: "Cancelled",
|
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
|
|
export type OrderStatusValue = (typeof ORDER_STATUS)[keyof typeof ORDER_STATUS];
|
|
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
// Activation Type Constants
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Order activation types
|
|
|
|
|
*/
|
|
|
|
|
export const ACTIVATION_TYPE = {
|
|
|
|
|
IMMEDIATE: "Immediate",
|
|
|
|
|
SCHEDULED: "Scheduled",
|
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
|
|
export type ActivationTypeValue = (typeof ACTIVATION_TYPE)[keyof typeof ACTIVATION_TYPE];
|
|
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
// SIM Type Constants
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SIM card types
|
|
|
|
|
*/
|
|
|
|
|
export const SIM_TYPE = {
|
|
|
|
|
ESIM: "eSIM",
|
|
|
|
|
PHYSICAL: "Physical SIM",
|
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
|
|
export type SimTypeValue = (typeof SIM_TYPE)[keyof typeof SIM_TYPE];
|
|
|
|
|
|
2025-10-03 14:26:55 +09:00
|
|
|
// ============================================================================
|
2025-10-08 10:33:33 +09:00
|
|
|
// Business Types (used internally, not validated at API boundary)
|
2025-10-03 14:26:55 +09:00
|
|
|
// ============================================================================
|
|
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
/**
|
|
|
|
|
* Order creation type used for order creation flows
|
|
|
|
|
*/
|
|
|
|
|
export type OrderCreationType = "Internet" | "SIM" | "VPN" | "Other";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
/**
|
|
|
|
|
* Order status (string literal for flexibility)
|
|
|
|
|
*/
|
|
|
|
|
export type OrderStatus = string;
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
/**
|
|
|
|
|
* Order type (string literal for flexibility)
|
|
|
|
|
*/
|
|
|
|
|
export type OrderType = string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* User mapping for order creation (subset of UserIdMapping)
|
|
|
|
|
*/
|
|
|
|
|
export type UserMapping = Pick<UserIdMapping, "userId" | "whmcsClientId" | "sfAccountId">;
|
2025-10-03 14:26:55 +09:00
|
|
|
|
|
|
|
|
// ============================================================================
|
2025-10-08 10:33:33 +09:00
|
|
|
// Re-export Types from Schema (Schema-First Approach)
|
2025-10-03 14:26:55 +09:00
|
|
|
// ============================================================================
|
|
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
export type {
|
|
|
|
|
// Fulfillment order types
|
|
|
|
|
FulfillmentOrderProduct,
|
|
|
|
|
FulfillmentOrderItem,
|
|
|
|
|
FulfillmentOrderDetails,
|
|
|
|
|
// Order item types
|
|
|
|
|
OrderItemSummary,
|
|
|
|
|
OrderItemDetails,
|
|
|
|
|
// Order types
|
|
|
|
|
OrderSummary,
|
|
|
|
|
OrderDetails,
|
|
|
|
|
// Query and creation types
|
|
|
|
|
OrderQueryParams,
|
|
|
|
|
OrderConfigurationsAddress,
|
|
|
|
|
OrderConfigurations,
|
|
|
|
|
CreateOrderRequest,
|
|
|
|
|
OrderBusinessValidation,
|
|
|
|
|
SfOrderIdParam,
|
|
|
|
|
} from './schema';
|