wip
This commit is contained in:
@@ -8532,6 +8532,9 @@
|
||||
"facialRecognition": {
|
||||
"$ref": "#/components/schemas/JobStatusDto"
|
||||
},
|
||||
"integrityDatabaseCheck": {
|
||||
"$ref": "#/components/schemas/JobStatusDto"
|
||||
},
|
||||
"library": {
|
||||
"$ref": "#/components/schemas/JobStatusDto"
|
||||
},
|
||||
@@ -8569,6 +8572,7 @@
|
||||
"duplicateDetection",
|
||||
"faceDetection",
|
||||
"facialRecognition",
|
||||
"integrityDatabaseCheck",
|
||||
"library",
|
||||
"metadataExtraction",
|
||||
"migration",
|
||||
@@ -10101,7 +10105,8 @@
|
||||
"sidecar",
|
||||
"library",
|
||||
"notifications",
|
||||
"backupDatabase"
|
||||
"backupDatabase",
|
||||
"integrityDatabaseCheck"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
@@ -10336,7 +10341,8 @@
|
||||
"user-cleanup",
|
||||
"memory-cleanup",
|
||||
"memory-create",
|
||||
"backup-database"
|
||||
"backup-database",
|
||||
"integrity-database-check"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
@@ -622,6 +622,7 @@ export type AllJobStatusResponseDto = {
|
||||
duplicateDetection: JobStatusDto;
|
||||
faceDetection: JobStatusDto;
|
||||
facialRecognition: JobStatusDto;
|
||||
integrityDatabaseCheck: JobStatusDto;
|
||||
library: JobStatusDto;
|
||||
metadataExtraction: JobStatusDto;
|
||||
migration: JobStatusDto;
|
||||
@@ -3789,7 +3790,8 @@ export enum ManualJobName {
|
||||
UserCleanup = "user-cleanup",
|
||||
MemoryCleanup = "memory-cleanup",
|
||||
MemoryCreate = "memory-create",
|
||||
BackupDatabase = "backup-database"
|
||||
BackupDatabase = "backup-database",
|
||||
IntegrityDatabaseCheck = "integrity-database-check"
|
||||
}
|
||||
export enum JobName {
|
||||
ThumbnailGeneration = "thumbnailGeneration",
|
||||
@@ -3806,7 +3808,8 @@ export enum JobName {
|
||||
Sidecar = "sidecar",
|
||||
Library = "library",
|
||||
Notifications = "notifications",
|
||||
BackupDatabase = "backupDatabase"
|
||||
BackupDatabase = "backupDatabase",
|
||||
IntegrityDatabaseCheck = "integrityDatabaseCheck"
|
||||
}
|
||||
export enum JobCommand {
|
||||
Start = "start",
|
||||
|
||||
Reference in New Issue
Block a user