@timardex/cluemart-shared 1.5.555 → 1.5.556

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.d.mts CHANGED
@@ -1129,7 +1129,7 @@ type DailyClueGameData = GlobalGameData & {
1129
1129
 
1130
1130
  type MiniQuizQuestion = {
1131
1131
  answers: {
1132
- value: string;
1132
+ answer: string;
1133
1133
  correct: boolean;
1134
1134
  }[];
1135
1135
  question: string;
package/dist/index.d.ts CHANGED
@@ -1129,7 +1129,7 @@ type DailyClueGameData = GlobalGameData & {
1129
1129
 
1130
1130
  type MiniQuizQuestion = {
1131
1131
  answers: {
1132
- value: string;
1132
+ answer: string;
1133
1133
  correct: boolean;
1134
1134
  }[];
1135
1135
  question: string;
package/dist/index.mjs CHANGED
@@ -5707,7 +5707,7 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
5707
5707
  var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql29`
5708
5708
  fragment MiniQuizQuestionFields on MiniQuizQuestionType {
5709
5709
  answers {
5710
- value
5710
+ answer
5711
5711
  correct
5712
5712
  }
5713
5713
  question