@timardex/cluemart-shared 1.5.702 → 1.5.703

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3883,9 +3883,16 @@ var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
3883
3883
  var UPDATE_MINI_QUIZ_MUTATION = import_client64.gql`
3884
3884
  mutation updateMiniQuizGame(
3885
3885
  $_id: ID!
3886
+ $gameTypeId: ID!
3887
+ $gameType: GameTypeEnumType!
3886
3888
  $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
3887
3889
  ) {
3888
- updateMiniQuizGame(_id: $_id, answeredQuestions: $answeredQuestions) {
3890
+ updateMiniQuizGame(
3891
+ _id: $_id
3892
+ gameTypeId: $gameTypeId
3893
+ gameType: $gameType
3894
+ answeredQuestions: $answeredQuestions
3895
+ ) {
3889
3896
  ...GameDocFields
3890
3897
  }
3891
3898
  }