From cd3fba21130d666e363cfa873da572ddb6c6134c Mon Sep 17 00:00:00 2001 From: DanielS Date: Fri, 10 Jul 2026 00:23:37 +0200 Subject: [PATCH] fix: add device_name 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 9161ae6..8a9ddef 100644 --- a/shop/lib/types.ts +++ b/shop/lib/types.ts @@ -134,6 +134,7 @@ export type OrderItem = { billing_interval: BillingInterval selected_modules: OrderModuleSnapshot[] item_total: number + device_name?: string } /**