mirror of
https://github.com/zebrajr/immich.git
synced 2025-12-06 12:20:54 +01:00
fix(server): missing integer type (#20075)
This commit is contained in:
parent
166452640d
commit
496b0c7076
BIN
mobile/openapi/lib/model/sync_asset_face_v1.dart
generated
BIN
mobile/openapi/lib/model/sync_asset_face_v1.dart
generated
Binary file not shown.
|
|
@ -13805,25 +13805,25 @@
|
|||
"type": "string"
|
||||
},
|
||||
"boundingBoxX1": {
|
||||
"type": "number"
|
||||
"type": "integer"
|
||||
},
|
||||
"boundingBoxX2": {
|
||||
"type": "number"
|
||||
"type": "integer"
|
||||
},
|
||||
"boundingBoxY1": {
|
||||
"type": "number"
|
||||
"type": "integer"
|
||||
},
|
||||
"boundingBoxY2": {
|
||||
"type": "number"
|
||||
"type": "integer"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"imageHeight": {
|
||||
"type": "number"
|
||||
"type": "integer"
|
||||
},
|
||||
"imageWidth": {
|
||||
"type": "number"
|
||||
"type": "integer"
|
||||
},
|
||||
"personId": {
|
||||
"nullable": true,
|
||||
|
|
|
|||
|
|
@ -261,11 +261,17 @@ export class SyncAssetFaceV1 {
|
|||
id!: string;
|
||||
assetId!: string;
|
||||
personId!: string | null;
|
||||
@ApiProperty({ type: 'integer' })
|
||||
imageWidth!: number;
|
||||
@ApiProperty({ type: 'integer' })
|
||||
imageHeight!: number;
|
||||
@ApiProperty({ type: 'integer' })
|
||||
boundingBoxX1!: number;
|
||||
@ApiProperty({ type: 'integer' })
|
||||
boundingBoxY1!: number;
|
||||
@ApiProperty({ type: 'integer' })
|
||||
boundingBoxX2!: number;
|
||||
@ApiProperty({ type: 'integer' })
|
||||
boundingBoxY2!: number;
|
||||
sourceType!: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user