Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-06-26 21:30:09 +02:00
parent 37f0d7c1c1
commit f44dd11b05
8 changed files with 32 additions and 23 deletions
-7
View File
@@ -262,13 +262,6 @@ class ItemExtension(BaseModel):
commit_date: str | int = Field(title="Commit Date", description="Extension Repository Commit Date")
enabled: bool = Field(title="Enabled", description="Flag specifying whether this extension is enabled")
class ItemFolder(BaseModel):
path: str = Field(title="Path", description="Full path to the folder")
label: str = Field(title="Label", description="Display label for the folder")
class ItemWildcard(BaseModel):
name: str = Field(title="Name", description="Wildcard basename (relative path with .txt stripped)")
class ItemScheduler(BaseModel):
name: str = Field(title="Name", description="Scheduler name")
cls: str = Field(title="Class", description="Scheduler class name")