mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02:00
e334443919
* initial pagination impl * use limit + offset instead of take + skip * wip web pagination * working infinite scroll * update api * formatting * fix rebase * search refactor * re-add runtime config for vector search * fix rebase * fixes * useless omitBy * unnecessary handling * add sql decorator for `searchAssets` * fixed search builder * fixed sql * remove mock method * linting * fixed pagination * fixed unit tests * formatting * fix e2e tests * re-flatten search builder * refactor endpoints * clean up dto * refinements * don't break everything just yet * update openapi spec & sql * update api * linting * update sql * fixes * optimize web code * fix typing * add page limit * make limit based on asset count * increase limit * simpler import
48 lines
1.0 KiB
Dart
Generated
48 lines
1.0 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 SearchAssetResponseDto
|
|
void main() {
|
|
// final instance = SearchAssetResponseDto();
|
|
|
|
group('test SearchAssetResponseDto', () {
|
|
// int count
|
|
test('to test the property `count`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<SearchFacetResponseDto> facets (default value: const [])
|
|
test('to test the property `facets`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<AssetResponseDto> items (default value: const [])
|
|
test('to test the property `items`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String nextPage
|
|
test('to test the property `nextPage`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int total
|
|
test('to test the property `total`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|