@timardex/cluemart-shared 1.5.703 → 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
@@ -6198,15 +6198,15 @@ 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!
6203
6201
  $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
6202
+ $gameType: GameTypeEnumType!
6203
+ $gameTypeId: ID!
6204
6204
  ) {
6205
6205
  updateMiniQuizGame(
6206
6206
  _id: $_id
6207
- gameTypeId: $gameTypeId
6208
- gameType: $gameType
6209
6207
  answeredQuestions: $answeredQuestions
6208
+ gameType: $gameType
6209
+ gameTypeId: $gameTypeId
6210
6210
  ) {
6211
6211
  ...GameDocFields
6212
6212
  }