From ce7f31065535171270751476df54f81888e046db Mon Sep 17 00:00:00 2001
From: Chris Pastl <christoph.pastl@fro.at>
Date: Tue, 9 Jul 2024 14:55:32 +0200
Subject: [PATCH] refactor: adapt local Show and Episode model

---
 src/aura_engine/scheduling/domain.py | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/src/aura_engine/scheduling/domain.py b/src/aura_engine/scheduling/domain.py
index a3f155ed..6da2db63 100644
--- a/src/aura_engine/scheduling/domain.py
+++ b/src/aura_engine/scheduling/domain.py
@@ -279,21 +279,14 @@ Show = NamedTuple(
     [
         ("id", str),
         ("name", str),
-        ("type", str),
-        ("cat", str),
-        ("funding_cat", str),
-        ("music_focus", str),
     ],
 )
 
 Episode = NamedTuple(
     "Episode",
     [
+        ("id", str),
         ("title", str),
-        ("hosts", list[str]),
-        ("languages", list[str]),
-        ("topics", list[str]),
-        ("memo", str),
     ],
 )
 
-- 
GitLab