diff --git a/src/index.tsx b/src/index.tsx index 982fd0c..4abf085 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3795,10 +3795,10 @@ export type SessionCoachFeedbackGql = { }; export enum SessionCoachFeedbackResponseEnum { - AlreadyWorkingOnThis = "ALREADY_WORKING_ON_THIS", Helpful = "HELPFUL", NotEnoughEvidence = "NOT_ENOUGH_EVIDENCE", - WrongFocus = "WRONG_FOCUS", + NotInsightful = "NOT_INSIGHTFUL", + NotRelevant = "NOT_RELEVANT", } export type SessionCoachGql = { diff --git a/src/schema.gql b/src/schema.gql index dc4895e..45bc205 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -1407,8 +1407,8 @@ type SessionCoachFeedbackGQL { enum SessionCoachFeedbackResponseEnum { HELPFUL - WRONG_FOCUS - ALREADY_WORKING_ON_THIS + NOT_RELEVANT + NOT_INSIGHTFUL NOT_ENOUGH_EVIDENCE }