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

View File

@@ -201,14 +201,20 @@ fi
return list_disks
class SeedType(enum.Enum):
class SeedType(enum.IntEnum):
"""
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
PublicSeed = 1
CustomerSeed = 2
PublicRelease = 3
DeveloperSeed: int = 0
PublicSeed: int = 1
CustomerSeed: int = 2
PublicRelease: int = 3
class RemoteInstallerCatalog: