@timardex/cluemart-shared 1.5.561 → 1.5.563

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.
@@ -3401,21 +3401,27 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
3401
3401
  `;
3402
3402
  var MINI_QUIZ_ANSWER_FIELDS_FRAGMENT = import_client55.gql`
3403
3403
  fragment MiniQuizAnswerFields on MiniQuizAnswerType {
3404
- id
3405
3404
  answer
3405
+ answerId
3406
3406
  correct
3407
3407
  }
3408
3408
  `;
3409
3409
  var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = import_client55.gql`
3410
3410
  fragment MiniQuizQuestionFields on MiniQuizQuestionType {
3411
- id
3412
3411
  answers {
3413
3412
  ...MiniQuizAnswerFields
3414
3413
  }
3415
3414
  question
3415
+ questionId
3416
3416
  }
3417
3417
  ${MINI_QUIZ_ANSWER_FIELDS_FRAGMENT}
3418
3418
  `;
3419
+ var MINI_QUIZ_ANSWERED_QUESTION_FIELDS_FRAGMENT = import_client55.gql`
3420
+ fragment MiniQuizAnsweredQuestionFields on MiniQuizAnsweredQuestionType {
3421
+ questionId
3422
+ selectedAnswerId
3423
+ }
3424
+ `;
3419
3425
  var MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
3420
3426
  fragment MiniQuizBaseGameFields on MiniQuizBaseGameType {
3421
3427
  questions {
@@ -3429,14 +3435,14 @@ var MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
3429
3435
  gameFields {
3430
3436
  ...MiniQuizBaseGameFields
3431
3437
  }
3432
- quizInfo {
3433
- ...MiniQuizQuestionFields
3438
+ answeredQuestions {
3439
+ ...MiniQuizAnsweredQuestionFields
3434
3440
  }
3435
3441
  points
3436
3442
  streak
3437
3443
  }
3438
3444
  ${MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT}
3439
- ${MINI_QUIZ_QUESTION_FIELDS_FRAGMENT}
3445
+ ${MINI_QUIZ_ANSWERED_QUESTION_FIELDS_FRAGMENT}
3440
3446
  `;
3441
3447
  var GAME_HISTORY_FIELDS_FRAGMENT = import_client55.gql`
3442
3448
  fragment GameHistoryFields on GameHistoryType {