From ce7a6c85821797d0c33d207130b8da3e10f15558 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Fri, 20 Jan 2023 13:24:21 +0200 Subject: [PATCH] feat: ManifestBehaviorHints notifications property for new episodes Signed-off-by: Lachezar Lechev --- src/types/addon/manifest.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/addon/manifest.rs b/src/types/addon/manifest.rs index b2bb66bcc..dc9d89c11 100644 --- a/src/types/addon/manifest.rs +++ b/src/types/addon/manifest.rs @@ -285,4 +285,8 @@ pub struct ManifestBehaviorHints { pub configurable: bool, #[serde(default)] pub configuration_required: bool, + /// Whether or not the add-on supports notifications for new episodes. + // TODO: Define the new catalog for Add-ons + #[serde(default)] + pub new_episodes_notifications: bool, }