mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			371 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			371 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export const fileStub = {
 | 
						|
  livePhotoStill: Object.freeze({
 | 
						|
    originalPath: 'fake_path/asset_1.jpeg',
 | 
						|
    checksum: Buffer.from('file hash', 'utf8'),
 | 
						|
    originalName: 'asset_1.jpeg',
 | 
						|
  }),
 | 
						|
  livePhotoMotion: Object.freeze({
 | 
						|
    originalPath: 'fake_path/asset_1.mp4',
 | 
						|
    checksum: Buffer.from('live photo file hash', 'utf8'),
 | 
						|
    originalName: 'asset_1.mp4',
 | 
						|
  }),
 | 
						|
};
 |