update api

This commit is contained in:
mertalev 2025-10-10 19:35:18 -04:00
parent 0ad983135c
commit b0aa68d83a
No known key found for this signature in database
GPG key ID: DF6ABC77AAD98C95
10 changed files with 142 additions and 141 deletions

View file

@ -30,7 +30,7 @@ class SystemConfigNightlyTasksDto {
bool missingThumbnails;
SystemConfigRemovePartialUploadsDto removeStaleUploads;
bool removeStaleUploads;
String startTime;
@ -85,7 +85,7 @@ class SystemConfigNightlyTasksDto {
databaseCleanup: mapValueOfType<bool>(json, r'databaseCleanup')!,
generateMemories: mapValueOfType<bool>(json, r'generateMemories')!,
missingThumbnails: mapValueOfType<bool>(json, r'missingThumbnails')!,
removeStaleUploads: SystemConfigRemovePartialUploadsDto.fromJson(json[r'removeStaleUploads'])!,
removeStaleUploads: mapValueOfType<bool>(json, r'removeStaleUploads')!,
startTime: mapValueOfType<String>(json, r'startTime')!,
syncQuotaUsage: mapValueOfType<bool>(json, r'syncQuotaUsage')!,
);