@timardex/cluemart-shared 1.5.703 → 1.5.705

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.
@@ -3873,8 +3873,18 @@ var LEAVE_GAME_MUTATION = import_client64.gql`
3873
3873
  }
3874
3874
  `;
3875
3875
  var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
3876
- mutation updateDailyClueGame($_id: ID!, $foundLetter: String!) {
3877
- updateDailyClueGame(_id: $_id, foundLetter: $foundLetter) {
3876
+ mutation updateDailyClueGame(
3877
+ $_id: ID!
3878
+ $foundLetter: String!
3879
+ $gameType: GameTypeEnumType!
3880
+ $gameTypeId: ID!
3881
+ ) {
3882
+ updateDailyClueGame(
3883
+ _id: $_id
3884
+ foundLetter: $foundLetter
3885
+ gameType: $gameType
3886
+ gameTypeId: $gameTypeId
3887
+ ) {
3878
3888
  ...GameDocFields
3879
3889
  }
3880
3890
  }
@@ -3883,15 +3893,15 @@ var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
3883
3893
  var UPDATE_MINI_QUIZ_MUTATION = import_client64.gql`
3884
3894
  mutation updateMiniQuizGame(
3885
3895
  $_id: ID!
3886
- $gameTypeId: ID!
3887
- $gameType: GameTypeEnumType!
3888
3896
  $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
3897
+ $gameType: GameTypeEnumType!
3898
+ $gameTypeId: ID!
3889
3899
  ) {
3890
3900
  updateMiniQuizGame(
3891
3901
  _id: $_id
3892
- gameTypeId: $gameTypeId
3893
- gameType: $gameType
3894
3902
  answeredQuestions: $answeredQuestions
3903
+ gameType: $gameType
3904
+ gameTypeId: $gameTypeId
3895
3905
  ) {
3896
3906
  ...GameDocFields
3897
3907
  }