mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:22:37 -04:00 
			
		
		
		
	replace usage of AssetResponseDto with Asset Add new class ExifInfo to store data from ExifResponseDto
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // Access token
 | |
| const String userInfoBox = "immichBoxUserInfo"; // Box
 | |
| const String accessTokenKey = "immichBoxAccessTokenKey"; // Key 1
 | |
| const String deviceIdKey = 'immichBoxDeviceIdKey'; // Key 2
 | |
| const String isLoggedInKey = 'immichIsLoggedInKey'; // Key 3
 | |
| const String serverEndpointKey = 'immichBoxServerEndpoint'; // Key 4
 | |
| const String assetEtagKey = 'immichAssetEtagKey'; // Key 5
 | |
| const String userIdKey = 'immichUserIdKey'; // Key 6
 | |
| 
 | |
| // Login Info
 | |
| const String hiveLoginInfoBox = "immichLoginInfoBox"; // Box
 | |
| const String savedLoginInfoKey = "immichSavedLoginInfoKey"; // Key 1
 | |
| 
 | |
| // Backup Info
 | |
| const String hiveBackupInfoBox = "immichBackupAlbumInfoBox"; // Box
 | |
| const String backupInfoKey = "immichBackupAlbumInfoKey"; // Key 1
 | |
| 
 | |
| // Github Release Info
 | |
| const String hiveGithubReleaseInfoBox = "immichGithubReleaseInfoBox"; // Box
 | |
| const String githubReleaseInfoKey = "immichGithubReleaseInfoKey"; // Key 1
 | |
| 
 | |
| // User Setting Info
 | |
| const String userSettingInfoBox = "immichUserSettingInfoBox";
 | |
| 
 | |
| // Background backup Info
 | |
| const String backgroundBackupInfoBox = "immichBackgroundBackupInfoBox"; // Box
 | |
| const String backupFailedSince = "immichBackupFailedSince"; // Key 1
 | |
| const String backupRequireWifi = "immichBackupRequireWifi"; // Key 2
 | |
| const String backupRequireCharging = "immichBackupRequireCharging"; // Key 3
 | |
| const String backupTriggerDelay = "immichBackupTriggerDelay"; // Key 4
 | |
| 
 | |
| // Duplicate asset
 | |
| const String duplicatedAssetsBox = "immichDuplicatedAssetsBox"; // Box
 | |
| const String duplicatedAssetsKey = "immichDuplicatedAssetsKey"; // Key 1
 | |
| 
 | |
| // In app logger
 | |
| const String immichLoggerBox = "immichInAppLogger"; // Box |