@timardex/cluemart-shared 1.5.561 → 1.5.562

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,14 +1129,14 @@ type DailyClueGameData = GlobalGameData & {
1129
1129
  };
1130
1130
 
1131
1131
  type MiniQuizAnswer = {
1132
- id: string;
1132
+ answerId: string;
1133
1133
  answer: string;
1134
1134
  correct: boolean;
1135
1135
  };
1136
1136
  type MiniQuizQuestion = {
1137
- id: string;
1138
1137
  answers: MiniQuizAnswer[];
1139
1138
  question: string;
1139
+ questionId: string;
1140
1140
  };
1141
1141
  type MiniQuizBaseGame = {
1142
1142
  questions: MiniQuizQuestion[];
package/dist/index.d.ts CHANGED
@@ -1129,14 +1129,14 @@ type DailyClueGameData = GlobalGameData & {
1129
1129
  };
1130
1130
 
1131
1131
  type MiniQuizAnswer = {
1132
- id: string;
1132
+ answerId: string;
1133
1133
  answer: string;
1134
1134
  correct: boolean;
1135
1135
  };
1136
1136
  type MiniQuizQuestion = {
1137
- id: string;
1138
1137
  answers: MiniQuizAnswer[];
1139
1138
  question: string;
1139
+ questionId: string;
1140
1140
  };
1141
1141
  type MiniQuizBaseGame = {
1142
1142
  questions: MiniQuizQuestion[];
package/dist/index.mjs CHANGED
@@ -5706,18 +5706,18 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
5706
5706
  `;
5707
5707
  var MINI_QUIZ_ANSWER_FIELDS_FRAGMENT = gql29`
5708
5708
  fragment MiniQuizAnswerFields on MiniQuizAnswerType {
5709
- id
5710
5709
  answer
5710
+ answerId
5711
5711
  correct
5712
5712
  }
5713
5713
  `;
5714
5714
  var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql29`
5715
5715
  fragment MiniQuizQuestionFields on MiniQuizQuestionType {
5716
- id
5717
5716
  answers {
5718
5717
  ...MiniQuizAnswerFields
5719
5718
  }
5720
5719
  question
5720
+ questionId
5721
5721
  }
5722
5722
  ${MINI_QUIZ_ANSWER_FIELDS_FRAGMENT}
5723
5723
  `;