mirror of
https://github.com/immich-app/immich.git
synced 2024-12-14 12:00:55 +02:00
68f52818ae
* separate facial clustering job * update api * fixed some tests * invert clustering * hdbscan * update api * remove commented code * wip dbscan * cleanup removed cluster endpoint remove commented code * fixes updated tests minor fixes and formatting fixed queuing refinements * scale search range based on library size * defer non-core faces * optimizations removed unused query option * assign faces individually for correctness fixed unit tests remove unused method * don't select face embedding update sql linting fixed ml typing * updated job mock * paginate people query * select face embeddings because typeorm * fix setting face detection concurrency * update sql formatting linting * simplify logic remove unused imports * more specific delete signature * more accurate typing for face stubs * add migration formatting * chore: better typing * don't select embedding by default remove unused import * updated sql * use normal try/catch * stricter concurrency typing and enforcement * update api * update job concurrency panel to show disabled queues formatting * check jobId in queueAll fix tests * remove outdated comment * better facial recognition icon * wording wording formatting * fixed tests * fix * formatting & sql * try to fix sql check * more detailed description * update sql * formatting * wording * update `minFaces` description --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
116 lines
3.9 KiB
Dart
Generated
116 lines
3.9 KiB
Dart
Generated
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.12
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
part of openapi.api;
|
|
|
|
|
|
class JobName {
|
|
/// Instantiate a new enum with the provided [value].
|
|
const JobName._(this.value);
|
|
|
|
/// The underlying value of this enum member.
|
|
final String value;
|
|
|
|
@override
|
|
String toString() => value;
|
|
|
|
String toJson() => value;
|
|
|
|
static const thumbnailGeneration = JobName._(r'thumbnailGeneration');
|
|
static const metadataExtraction = JobName._(r'metadataExtraction');
|
|
static const videoConversion = JobName._(r'videoConversion');
|
|
static const faceDetection = JobName._(r'faceDetection');
|
|
static const facialRecognition = JobName._(r'facialRecognition');
|
|
static const smartSearch = JobName._(r'smartSearch');
|
|
static const backgroundTask = JobName._(r'backgroundTask');
|
|
static const storageTemplateMigration = JobName._(r'storageTemplateMigration');
|
|
static const migration = JobName._(r'migration');
|
|
static const search = JobName._(r'search');
|
|
static const sidecar = JobName._(r'sidecar');
|
|
static const library_ = JobName._(r'library');
|
|
|
|
/// List of all possible values in this [enum][JobName].
|
|
static const values = <JobName>[
|
|
thumbnailGeneration,
|
|
metadataExtraction,
|
|
videoConversion,
|
|
faceDetection,
|
|
facialRecognition,
|
|
smartSearch,
|
|
backgroundTask,
|
|
storageTemplateMigration,
|
|
migration,
|
|
search,
|
|
sidecar,
|
|
library_,
|
|
];
|
|
|
|
static JobName? fromJson(dynamic value) => JobNameTypeTransformer().decode(value);
|
|
|
|
static List<JobName>? listFromJson(dynamic json, {bool growable = false,}) {
|
|
final result = <JobName>[];
|
|
if (json is List && json.isNotEmpty) {
|
|
for (final row in json) {
|
|
final value = JobName.fromJson(row);
|
|
if (value != null) {
|
|
result.add(value);
|
|
}
|
|
}
|
|
}
|
|
return result.toList(growable: growable);
|
|
}
|
|
}
|
|
|
|
/// Transformation class that can [encode] an instance of [JobName] to String,
|
|
/// and [decode] dynamic data back to [JobName].
|
|
class JobNameTypeTransformer {
|
|
factory JobNameTypeTransformer() => _instance ??= const JobNameTypeTransformer._();
|
|
|
|
const JobNameTypeTransformer._();
|
|
|
|
String encode(JobName data) => data.value;
|
|
|
|
/// Decodes a [dynamic value][data] to a JobName.
|
|
///
|
|
/// If [allowNull] is true and the [dynamic value][data] cannot be decoded successfully,
|
|
/// then null is returned. However, if [allowNull] is false and the [dynamic value][data]
|
|
/// cannot be decoded successfully, then an [UnimplementedError] is thrown.
|
|
///
|
|
/// The [allowNull] is very handy when an API changes and a new enum value is added or removed,
|
|
/// and users are still using an old app with the old code.
|
|
JobName? decode(dynamic data, {bool allowNull = true}) {
|
|
if (data != null) {
|
|
switch (data) {
|
|
case r'thumbnailGeneration': return JobName.thumbnailGeneration;
|
|
case r'metadataExtraction': return JobName.metadataExtraction;
|
|
case r'videoConversion': return JobName.videoConversion;
|
|
case r'faceDetection': return JobName.faceDetection;
|
|
case r'facialRecognition': return JobName.facialRecognition;
|
|
case r'smartSearch': return JobName.smartSearch;
|
|
case r'backgroundTask': return JobName.backgroundTask;
|
|
case r'storageTemplateMigration': return JobName.storageTemplateMigration;
|
|
case r'migration': return JobName.migration;
|
|
case r'search': return JobName.search;
|
|
case r'sidecar': return JobName.sidecar;
|
|
case r'library': return JobName.library_;
|
|
default:
|
|
if (!allowNull) {
|
|
throw ArgumentError('Unknown enum value to decode: $data');
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/// Singleton [JobNameTypeTransformer] instance.
|
|
static JobNameTypeTransformer? _instance;
|
|
}
|
|
|