File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 88 AddonsSecurityOptions ,
99 AddonsStats ,
1010 AddonStage ,
11+ AddonStartup ,
1112 AddonState ,
1213 AddonsUninstall ,
1314 AppArmor ,
132133 "RootInfo" ,
133134 "AvailableUpdate" ,
134135 "AddonStage" ,
136+ "AddonStartup" ,
135137 "AddonBoot" ,
136138 "AddonBootConfig" ,
137139 "CpuArch" ,
Original file line number Diff line number Diff line change @@ -99,6 +99,16 @@ class AddonState(StrEnum):
9999 ERROR = "error"
100100
101101
102+ class AddonStartup (StrEnum ):
103+ """AddonStartup type."""
104+
105+ INITIALIZE = "initialize"
106+ SYSTEM = "system"
107+ SERVICES = "services"
108+ APPLICATION = "application"
109+ ONCE = "once"
110+
111+
102112# --- OBJECTS ----
103113
104114
@@ -232,6 +242,7 @@ class InstalledAddonComplete(
232242 udev : bool
233243 video : bool
234244 audio : bool
245+ startup : AddonStartup
235246 services : list [str ]
236247 discovery : list [str ]
237248 translations : dict [str , Any ]
You can’t perform that action at this time.
0 commit comments