From 5561dfa70842bf48b70ae62c27cd7a39e83a24f1 Mon Sep 17 00:00:00 2001 From: DanielS Date: Tue, 11 Aug 2026 23:27:38 +0200 Subject: [PATCH] fix(types): add optional license_number to OrderItem type definition --- shop/lib/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/shop/lib/types.ts b/shop/lib/types.ts index 8d431f9..4dda38a 100644 --- a/shop/lib/types.ts +++ b/shop/lib/types.ts @@ -137,6 +137,7 @@ export type OrderItem = { selected_modules: OrderModuleSnapshot[] item_total: number device_name?: string + license_number?: string } /**