32 lines
		
	
	
		
			968 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			32 lines
		
	
	
		
			968 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | /** | ||
|  |  * Certificate-related events emitted by certificate management components | ||
|  |  */ | ||
|  | export enum CertificateEvents { | ||
|  |   CERTIFICATE_ISSUED = 'certificate-issued', | ||
|  |   CERTIFICATE_RENEWED = 'certificate-renewed', | ||
|  |   CERTIFICATE_FAILED = 'certificate-failed', | ||
|  |   CERTIFICATE_EXPIRING = 'certificate-expiring', | ||
|  |   CERTIFICATE_APPLIED = 'certificate-applied', | ||
|  | } | ||
|  | 
 | ||
|  | /** | ||
|  |  * Port80Handler-specific events including certificate-related ones | ||
|  |  */ | ||
|  | export enum Port80HandlerEvents { | ||
|  |   CERTIFICATE_ISSUED = 'certificate-issued', | ||
|  |   CERTIFICATE_RENEWED = 'certificate-renewed', | ||
|  |   CERTIFICATE_FAILED = 'certificate-failed', | ||
|  |   CERTIFICATE_EXPIRING = 'certificate-expiring', | ||
|  |   MANAGER_STARTED = 'manager-started', | ||
|  |   MANAGER_STOPPED = 'manager-stopped', | ||
|  |   REQUEST_FORWARDED = 'request-forwarded', | ||
|  | } | ||
|  | 
 | ||
|  | /** | ||
|  |  * Certificate provider events | ||
|  |  */ | ||
|  | export enum CertProvisionerEvents { | ||
|  |   CERTIFICATE_ISSUED = 'certificate', | ||
|  |   CERTIFICATE_RENEWED = 'certificate', | ||
|  |   CERTIFICATE_FAILED = 'certificate-failed' | ||
|  | } |