fix(server): not in album filter with context search (#7275)

This commit is contained in:
Alex
2024-02-20 20:44:34 -06:00
committed by GitHub
parent e33fd40b4c
commit bb5236ae65
7 changed files with 37 additions and 4 deletions

View File

@@ -3880,6 +3880,12 @@ export interface SmartSearchDto {
* @memberof SmartSearchDto
*/
'isMotion'?: boolean;
/**
*
* @type {boolean}
* @memberof SmartSearchDto
*/
'isNotInAlbum'?: boolean;
/**
*
* @type {boolean}

View File

@@ -656,6 +656,7 @@ export type SmartSearchDto = {
isExternal?: boolean;
isFavorite?: boolean;
isMotion?: boolean;
isNotInAlbum?: boolean;
isOffline?: boolean;
isReadOnly?: boolean;
isVisible?: boolean;