mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	* 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>
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.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
 | 
						|
 | 
						|
import 'package:openapi/api.dart';
 | 
						|
import 'package:test/test.dart';
 | 
						|
 | 
						|
// tests for AllJobStatusResponseDto
 | 
						|
void main() {
 | 
						|
  // final instance = AllJobStatusResponseDto();
 | 
						|
 | 
						|
  group('test AllJobStatusResponseDto', () {
 | 
						|
    // JobStatusDto backgroundTask
 | 
						|
    test('to test the property `backgroundTask`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto faceDetection
 | 
						|
    test('to test the property `faceDetection`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto facialRecognition
 | 
						|
    test('to test the property `facialRecognition`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto library_
 | 
						|
    test('to test the property `library_`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto metadataExtraction
 | 
						|
    test('to test the property `metadataExtraction`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto migration
 | 
						|
    test('to test the property `migration`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto search
 | 
						|
    test('to test the property `search`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto sidecar
 | 
						|
    test('to test the property `sidecar`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto smartSearch
 | 
						|
    test('to test the property `smartSearch`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto storageTemplateMigration
 | 
						|
    test('to test the property `storageTemplateMigration`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto thumbnailGeneration
 | 
						|
    test('to test the property `thumbnailGeneration`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // JobStatusDto videoConversion
 | 
						|
    test('to test the property `videoConversion`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
 | 
						|
  });
 | 
						|
 | 
						|
}
 |