mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* fix: nightly reverse geocoding task checking for mapbox * refactor: remove file size from image processor and queue data * feat: add missing exif nightly job * Remove filesize requirement in assetUploadedProcessorName queue insertion Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
import { AssetEntity } from '@app/database/entities/asset.entity';
|
|
|
|
export interface IAssetUploadedJob {
|
|
/**
|
|
* The Asset entity that was saved in the database
|
|
*/
|
|
asset: AssetEntity;
|
|
|
|
/**
|
|
* Original file name
|
|
*/
|
|
fileName: string;
|
|
}
|