schema: update clan option source

This commit is contained in:
Johannes Kirschbauer
2025-06-26 13:00:23 +02:00
parent d9dda1825d
commit 66ee74e193
3 changed files with 15 additions and 5 deletions

View File

@@ -187,8 +187,6 @@ ClanMetaType = Unknown
ClanModulesType = dict[str, dict[str, Any] | list[Any] | bool | float | int | str | None]
ClanOutputsType = Output
ClanSecretsType = Secret
ClanSelfType = dict[str, Any] | list[Any] | bool | float | int | str
ClanSpecialargsType = dict[str, dict[str, Any] | list[Any] | bool | float | int | str | None]
ClanTemplatesType = Template
class Clan(TypedDict):
@@ -199,6 +197,4 @@ class Clan(TypedDict):
modules: NotRequired[ClanModulesType]
outputs: NotRequired[ClanOutputsType]
secrets: NotRequired[ClanSecretsType]
self: NotRequired[ClanSelfType]
specialArgs: NotRequired[ClanSpecialargsType]
templates: NotRequired[ClanTemplatesType]