From 2f98fd62348a0d21a0e2af886d2c687674f95d0c Mon Sep 17 00:00:00 2001 From: ncoronel Date: Thu, 17 Sep 2026 16:02:21 -0300 Subject: [PATCH] feat(tenant): add header_type property to Tenant interface --- src/app/core/services/tenant.interface.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/core/services/tenant.interface.ts b/src/app/core/services/tenant.interface.ts index 6073760..78a6021 100644 --- a/src/app/core/services/tenant.interface.ts +++ b/src/app/core/services/tenant.interface.ts @@ -122,6 +122,7 @@ export interface Tenant { header_bg_image?: string | null; footer_bg_image?: string | null; storefront_website_type_code?: string | null; + header_type?: 'standard' | 'immersive'; event_date_text?: string | null; extras?: WebsiteExtras; event?: TenantEvent | null;