You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
483 B
13 lines
483 B
/** 测试用:用户已确认的 MotherShip 精确地址字段 */
|
|
export const MOTHERSHIP_PICKUP_CONFIRMED = {
|
|
mothership_option_id: "ms_test_pickup",
|
|
mothership_display_label: "1234 Warehouse Blvd, Los Angeles, CA 90001",
|
|
selected_from_mothership: true as const,
|
|
};
|
|
|
|
export const MOTHERSHIP_DELIVERY_CONFIRMED = {
|
|
mothership_option_id: "ms_test_delivery",
|
|
mothership_display_label: "5678 Distribution Dr, Dallas, TX 75201",
|
|
selected_from_mothership: true as const,
|
|
};
|