fix api build issues

This commit is contained in:
2025-12-25 13:40:38 +01:00
parent 722a185dd9
commit 3ceb837e15
32 changed files with 150 additions and 133 deletions

View File

@@ -3,7 +3,7 @@ import { IsString, IsOptional } from 'class-validator';
export class UploadMediaInputDTO {
@ApiProperty({ type: 'string', format: 'binary' })
file: any;
file: unknown;
@ApiProperty()
@IsString()

View File

@@ -11,7 +11,9 @@ export class UpdateAvatarPresenter implements UseCaseOutputPort<UpdateAvatarResu
this.model = null;
}
present(_result: UpdateAvatarResult): void {
present(result: UpdateAvatarResult): void {
void result;
this.model = {
success: true,
};