You are given raw vehicle delivery timeline data with duplicate status events and missing milestone dates. Write a PostgreSQL query that returns one row per delivery for Lucid Air and Lucid Gravity vehicles, keeping only the latest record for each (delivery_id, event_type) pair, then summarizing the cleaned timeline. Your output should include the vehicle model, delivery center, order date, confirmed delivery date, the number of distinct event types captured, and a delivery status flag that marks a record as incomplete_timeline when either the order date or confirmed delivery date is missing.
Use the delivery center table so the result includes center names even if some deliveries have no matching cleaned event rows.