From e24ffadc4165246e1e6c69d3524e0c7f43b72c1d Mon Sep 17 00:00:00 2001 From: Jason Yoo Date: Sat, 17 Feb 2024 19:48:15 +0900 Subject: [PATCH] fix: build error --- proto/history.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/history.proto b/proto/history.proto index 2d2c6db..fef4399 100644 --- a/proto/history.proto +++ b/proto/history.proto @@ -7,14 +7,14 @@ import "feedback.proto"; enum HistoryType { HISTORY_TYPE_UNSPECIFIED = 0; HISTORY_TYPE_PRONUNCIATION = 1; - HISTORY_TYPE_ARTICULATION = 2; + HISTORY_TYPE_COMMUNICATION = 2; } message FeebackHistoryDTO { HistoryType type = 1; oneof feeback { PronunciationFeedbackDTO pronunciation = 2; - ArticulationFeedbackDTO articulation = 3; + CommunicationFeedbackDTO communication = 3; } }