macos_installer_handler.py: Add Seed type information

This commit is contained in:
Mykola Grymalyuk
2023-03-18 16:26:18 -06:00
parent 0135d6cccf
commit 2986aea152
+11 -5
View File
@@ -201,14 +201,20 @@ fi
return list_disks return list_disks
class SeedType(enum.Enum): class SeedType(enum.IntEnum):
""" """
Enum for catalog types Enum for catalog types
Variants:
DeveloperSeed: Developer Beta (Part of the Apple Developer Program)
PublicSeed: Public Beta
CustomerSeed: AppleSeed Program (Generally mirrors DeveloperSeed)
PublicRelease: Public Release
""" """
DeveloperSeed = 0 DeveloperSeed: int = 0
PublicSeed = 1 PublicSeed: int = 1
CustomerSeed = 2 CustomerSeed: int = 2
PublicRelease = 3 PublicRelease: int = 3
class RemoteInstallerCatalog: class RemoteInstallerCatalog: