mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
deb1f970a8
* feat: quotas * chore: open api * chore: update status box and upload error message --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
16 lines
449 B
TypeScript
16 lines
449 B
TypeScript
export const fileStub = {
|
|
livePhotoStill: Object.freeze({
|
|
uuid: 'random-uuid',
|
|
originalPath: 'fake_path/asset_1.jpeg',
|
|
checksum: Buffer.from('file hash', 'utf8'),
|
|
originalName: 'asset_1.jpeg',
|
|
size: 42,
|
|
}),
|
|
livePhotoMotion: Object.freeze({
|
|
uuid: 'random-uuid',
|
|
originalPath: 'fake_path/asset_1.mp4',
|
|
checksum: Buffer.from('live photo file hash', 'utf8'),
|
|
originalName: 'asset_1.mp4',
|
|
size: 69,
|
|
}),
|
|
};
|