pr feedback

This commit is contained in:
martabal
2024-05-12 17:25:49 +02:00
parent 7ced61e67d
commit 0f6e665d99
13 changed files with 74 additions and 32 deletions

View File

@@ -9014,19 +9014,19 @@
},
"PeopleWithFacesResponseDto": {
"properties": {
"faces": {
"numberOfFaces": {
"type": "integer"
},
"visiblePeople": {
"items": {
"$ref": "#/components/schemas/PersonWithFacesResponseDto"
},
"type": "array"
},
"numberOfFaces": {
"type": "integer"
}
},
"required": [
"faces",
"numberOfFaces"
"numberOfFaces",
"visiblePeople"
],
"type": "object"
},

View File

@@ -101,8 +101,8 @@ export type PersonWithFacesResponseDto = {
thumbnailPath: string;
};
export type PeopleWithFacesResponseDto = {
faces: PersonWithFacesResponseDto[];
numberOfFaces: number;
visiblePeople: PersonWithFacesResponseDto[];
};
export type SmartInfoResponseDto = {
objects?: string[] | null;