mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 18:47:09 -04:00 
			
		
		
		
	Revert "chore: version v1.139.1" This reverts commit 89533a858fffde0d4b40a349ad2cc49dbaa70fb1.
		
			
				
	
	
		
			125 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			125 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
| //
 | |
| // AUTO-GENERATED FILE, DO NOT MODIFY!
 | |
| //
 | |
| // @dart=2.18
 | |
| 
 | |
| // 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 duplicateDetection = JobName._(r'duplicateDetection');
 | |
|   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');
 | |
|   static const notifications = JobName._(r'notifications');
 | |
|   static const backupDatabase = JobName._(r'backupDatabase');
 | |
| 
 | |
|   /// List of all possible values in this [enum][JobName].
 | |
|   static const values = <JobName>[
 | |
|     thumbnailGeneration,
 | |
|     metadataExtraction,
 | |
|     videoConversion,
 | |
|     faceDetection,
 | |
|     facialRecognition,
 | |
|     smartSearch,
 | |
|     duplicateDetection,
 | |
|     backgroundTask,
 | |
|     storageTemplateMigration,
 | |
|     migration,
 | |
|     search,
 | |
|     sidecar,
 | |
|     library_,
 | |
|     notifications,
 | |
|     backupDatabase,
 | |
|   ];
 | |
| 
 | |
|   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'duplicateDetection': return JobName.duplicateDetection;
 | |
|         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_;
 | |
|         case r'notifications': return JobName.notifications;
 | |
|         case r'backupDatabase': return JobName.backupDatabase;
 | |
|         default:
 | |
|           if (!allowNull) {
 | |
|             throw ArgumentError('Unknown enum value to decode: $data');
 | |
|           }
 | |
|       }
 | |
|     }
 | |
|     return null;
 | |
|   }
 | |
| 
 | |
|   /// Singleton [JobNameTypeTransformer] instance.
 | |
|   static JobNameTypeTransformer? _instance;
 | |
| }
 | |
| 
 |