fix(apis): cast repo.save result pour résoudre l'overload TypeORM

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
z3n
2026-06-24 09:13:05 +00:00
parent 14e5821ec0
commit 2e9191e6a2

View File

@@ -51,7 +51,7 @@ export class ApisService {
contactTechnicalEntity: dto.contactTechnicalEntity,
contactTechnicalEmail: dto.contactTechnicalEmail,
});
const saved = await this.repo.save(entity);
const saved = await this.repo.save(entity) as ApiEntryEntity;
return toApiEntry(saved);
}