feat(home-recommendation): AI 캐릭터 creatorId 응답을 추가한다

This commit is contained in:
2026-06-23 11:57:30 +09:00
parent 5d1290e114
commit f27074167a
4 changed files with 65 additions and 0 deletions

View File

@@ -286,6 +286,7 @@ class HomeRecommendationFacade(
private fun HomeAiCharacterRecommendationRecord.toItem() = HomeAiCharacterItem(
characterId = characterId,
creatorId = creatorId,
name = name,
description = description,
profileImage = imageUrl(cloudFrontHost, profileImage),

View File

@@ -71,6 +71,7 @@ data class HomeFirstAudioContentItem(
data class HomeAiCharacterItem(
val characterId: Long,
val creatorId: Long,
val name: String,
val description: String,
val profileImage: String?,