diff --git a/shop/lib/types.ts b/shop/lib/types.ts index 4dda38a..38c3037 100644 --- a/shop/lib/types.ts +++ b/shop/lib/types.ts @@ -153,6 +153,7 @@ export type OrderSnapshot = { total: number last_license_date?: string | null price_multiplier?: number | null + end_customer?: any } // ─── DB-Zeile (orders-Tabelle) ──────────────────────────────────────────────── @@ -170,6 +171,8 @@ export type Order = { pdf_url: string | null status: 'pending' | 'active' | 'completed' | 'cancelled' | 'rejected' created_at: string + end_customer_data?: any + notes?: string | null } export type OrderWithRegisterName = Order & {