@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.
package/dist/index.mjs CHANGED
@@ -6198,9 +6198,16 @@ var UPDATE_DAILY_CLUE_MUTATION = gql34`
6198
6198
  var UPDATE_MINI_QUIZ_MUTATION = gql34`
6199
6199
  mutation updateMiniQuizGame(
6200
6200
  $_id: ID!
6201
+ $gameTypeId: ID!
6202
+ $gameType: GameTypeEnumType!
6201
6203
  $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
6202
6204
  ) {
6203
- updateMiniQuizGame(_id: $_id, answeredQuestions: $answeredQuestions) {
6205
+ updateMiniQuizGame(
6206
+ _id: $_id
6207
+ gameTypeId: $gameTypeId
6208
+ gameType: $gameType
6209
+ answeredQuestions: $answeredQuestions
6210
+ ) {
6204
6211
  ...GameDocFields
6205
6212
  }
6206
6213
  }