@timardex/cluemart-shared 1.5.702 → 1.5.704

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