@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.
package/dist/index.mjs CHANGED
@@ -6188,8 +6188,18 @@ var LEAVE_GAME_MUTATION = gql34`
6188
6188
  }
6189
6189
  `;
6190
6190
  var UPDATE_DAILY_CLUE_MUTATION = gql34`
6191
- mutation updateDailyClueGame($_id: ID!, $foundLetter: String!) {
6192
- updateDailyClueGame(_id: $_id, foundLetter: $foundLetter) {
6191
+ mutation updateDailyClueGame(
6192
+ $_id: ID!
6193
+ $foundLetter: String!
6194
+ $gameType: GameTypeEnumType!
6195
+ $gameTypeId: ID!
6196
+ ) {
6197
+ updateDailyClueGame(
6198
+ _id: $_id
6199
+ foundLetter: $foundLetter
6200
+ gameType: $gameType
6201
+ gameTypeId: $gameTypeId
6202
+ ) {
6193
6203
  ...GameDocFields
6194
6204
  }
6195
6205
  }
@@ -6198,15 +6208,15 @@ var UPDATE_DAILY_CLUE_MUTATION = gql34`
6198
6208
  var UPDATE_MINI_QUIZ_MUTATION = gql34`
6199
6209
  mutation updateMiniQuizGame(
6200
6210
  $_id: ID!
6201
- $gameTypeId: ID!
6202
- $gameType: GameTypeEnumType!
6203
6211
  $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
6212
+ $gameType: GameTypeEnumType!
6213
+ $gameTypeId: ID!
6204
6214
  ) {
6205
6215
  updateMiniQuizGame(
6206
6216
  _id: $_id
6207
- gameTypeId: $gameTypeId
6208
- gameType: $gameType
6209
6217
  answeredQuestions: $answeredQuestions
6218
+ gameType: $gameType
6219
+ gameTypeId: $gameTypeId
6210
6220
  ) {
6211
6221
  ...GameDocFields
6212
6222
  }