@timardex/cluemart-server-shared 1.0.153 → 1.0.155

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.
@@ -9949,14 +9949,14 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
9949
9949
  `;
9950
9950
  var MINI_QUIZ_ANSWER_FIELDS_FRAGMENT = gql`
9951
9951
  fragment MiniQuizAnswerFields on MiniQuizAnswerType {
9952
- _id
9952
+ id
9953
9953
  answer
9954
9954
  correct
9955
9955
  }
9956
9956
  `;
9957
9957
  var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql`
9958
9958
  fragment MiniQuizQuestionFields on MiniQuizQuestionType {
9959
- _id
9959
+ id
9960
9960
  answers {
9961
9961
  ...MiniQuizAnswerFields
9962
9962
  }
@@ -12391,14 +12391,22 @@ var schemaDailyClueGameData = new MongooseSchema20(
12391
12391
  // src/mongoose/game/MiniQuiz.ts
12392
12392
  import mongoose21 from "mongoose";
12393
12393
  var MongooseSchema21 = mongoose21.Schema;
12394
- var schemaMiniQuizAnswer = new MongooseSchema21({
12395
- answer: { required: true, type: String },
12396
- correct: { required: true, type: Boolean }
12397
- });
12398
- var schemaMiniQuizQuestion = new MongooseSchema21({
12399
- answers: { required: true, type: [schemaMiniQuizAnswer] },
12400
- question: { required: true, type: String }
12401
- });
12394
+ var schemaMiniQuizAnswer = new MongooseSchema21(
12395
+ {
12396
+ answer: { required: true, type: String },
12397
+ correct: { required: true, type: Boolean },
12398
+ id: { required: true, type: String }
12399
+ },
12400
+ { _id: false }
12401
+ );
12402
+ var schemaMiniQuizQuestion = new MongooseSchema21(
12403
+ {
12404
+ answers: { required: true, type: [schemaMiniQuizAnswer] },
12405
+ id: { required: true, type: String },
12406
+ question: { required: true, type: String }
12407
+ },
12408
+ { _id: false }
12409
+ );
12402
12410
  var schemaMiniQuizBaseGame = new MongooseSchema21(
12403
12411
  {
12404
12412
  questions: { required: true, type: [schemaMiniQuizQuestion] }
@@ -12574,4 +12582,4 @@ react/cjs/react.development.js:
12574
12582
  * LICENSE file in the root directory of this source tree.
12575
12583
  *)
12576
12584
  */
12577
- //# sourceMappingURL=chunk-LOP3RVHN.mjs.map
12585
+ //# sourceMappingURL=chunk-TTG3LJVZ.mjs.map