The server no longer has files uploaded to it. Instead it is more accurate to refer to it as dealing with "previews" of PRs.
		
			
				
	
	
		
			17 lines
		
	
	
		
			445 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			445 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // Classes
 | |
| export class ChangedPrVisibilityEvent {
 | |
|   // Properties - Public, Static
 | |
|   public static type = 'pr.changedVisibility';
 | |
| 
 | |
|   // Constructor
 | |
|   constructor(public pr: number, public shas: string[], public isPublic: boolean) {}
 | |
| }
 | |
| 
 | |
| export class CreatedBuildEvent {
 | |
|   // Properties - Public, Static
 | |
|   public static type = 'build.created';
 | |
| 
 | |
|   // Constructor
 | |
|   constructor(public pr: number, public sha: string, public isPublic: boolean) {}
 | |
| }
 |