mirror of
https://github.com/immich-app/immich.git
synced 2024-12-11 11:42:19 +02:00
deb1f970a8
* feat: quotas * chore: open api * chore: update status box and upload error message --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
17 lines
449 B
TypeScript
17 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,
|
|
}),
|
|
};
|