@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.
@@ -36,7 +36,7 @@ import {
36
36
  resourceRelationsSchema,
37
37
  termsAgreementSchema,
38
38
  userLicenseSchema
39
- } from "../chunk-LOP3RVHN.mjs";
39
+ } from "../chunk-TTG3LJVZ.mjs";
40
40
  import "../chunk-3QS3WKRC.mjs";
41
41
  export {
42
42
  APP_SETTINGS_ID,
@@ -10014,14 +10014,14 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
10014
10014
  `;
10015
10015
  var MINI_QUIZ_ANSWER_FIELDS_FRAGMENT = gql`
10016
10016
  fragment MiniQuizAnswerFields on MiniQuizAnswerType {
10017
- _id
10017
+ id
10018
10018
  answer
10019
10019
  correct
10020
10020
  }
10021
10021
  `;
10022
10022
  var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql`
10023
10023
  fragment MiniQuizQuestionFields on MiniQuizQuestionType {
10024
- _id
10024
+ id
10025
10025
  answers {
10026
10026
  ...MiniQuizAnswerFields
10027
10027
  }
@@ -12590,14 +12590,22 @@ var schemaDailyClueGameData = new MongooseSchema20(
12590
12590
  // src/mongoose/game/MiniQuiz.ts
12591
12591
  var import_mongoose22 = __toESM(require("mongoose"));
12592
12592
  var MongooseSchema21 = import_mongoose22.default.Schema;
12593
- var schemaMiniQuizAnswer = new MongooseSchema21({
12594
- answer: { required: true, type: String },
12595
- correct: { required: true, type: Boolean }
12596
- });
12597
- var schemaMiniQuizQuestion = new MongooseSchema21({
12598
- answers: { required: true, type: [schemaMiniQuizAnswer] },
12599
- question: { required: true, type: String }
12600
- });
12593
+ var schemaMiniQuizAnswer = new MongooseSchema21(
12594
+ {
12595
+ answer: { required: true, type: String },
12596
+ correct: { required: true, type: Boolean },
12597
+ id: { required: true, type: String }
12598
+ },
12599
+ { _id: false }
12600
+ );
12601
+ var schemaMiniQuizQuestion = new MongooseSchema21(
12602
+ {
12603
+ answers: { required: true, type: [schemaMiniQuizAnswer] },
12604
+ id: { required: true, type: String },
12605
+ question: { required: true, type: String }
12606
+ },
12607
+ { _id: false }
12608
+ );
12601
12609
  var schemaMiniQuizBaseGame = new MongooseSchema21(
12602
12610
  {
12603
12611
  questions: { required: true, type: [schemaMiniQuizQuestion] }