@timardex/cluemart-server-shared 1.0.155 → 1.0.156

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-TTG3LJVZ.mjs";
39
+ } from "../chunk-JDTOVJED.mjs";
40
40
  import "../chunk-3QS3WKRC.mjs";
41
41
  export {
42
42
  APP_SETTINGS_ID,
@@ -10014,18 +10014,18 @@ 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
10018
10017
  answer
10018
+ answerId
10019
10019
  correct
10020
10020
  }
10021
10021
  `;
10022
10022
  var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql`
10023
10023
  fragment MiniQuizQuestionFields on MiniQuizQuestionType {
10024
- id
10025
10024
  answers {
10026
10025
  ...MiniQuizAnswerFields
10027
10026
  }
10028
10027
  question
10028
+ questionId
10029
10029
  }
10030
10030
  ${MINI_QUIZ_ANSWER_FIELDS_FRAGMENT}
10031
10031
  `;
@@ -10874,15 +10874,15 @@ var EnumAdStatus = /* @__PURE__ */ ((EnumAdStatus2) => {
10874
10874
  EnumAdStatus2["EXPIRED"] = "Expired";
10875
10875
  return EnumAdStatus2;
10876
10876
  })(EnumAdStatus || {});
10877
- var EnumAdType = /* @__PURE__ */ ((EnumAdType3) => {
10878
- EnumAdType3["SPONSORED"] = "Sponsored";
10879
- EnumAdType3["FREE"] = "Free";
10880
- return EnumAdType3;
10877
+ var EnumAdType = /* @__PURE__ */ ((EnumAdType2) => {
10878
+ EnumAdType2["SPONSORED"] = "Sponsored";
10879
+ EnumAdType2["FREE"] = "Free";
10880
+ return EnumAdType2;
10881
10881
  })(EnumAdType || {});
10882
- var EnumAdStyle = /* @__PURE__ */ ((EnumAdStyle3) => {
10883
- EnumAdStyle3["BLOOM"] = "Bloom";
10884
- EnumAdStyle3["RISE"] = "Rise";
10885
- return EnumAdStyle3;
10882
+ var EnumAdStyle = /* @__PURE__ */ ((EnumAdStyle2) => {
10883
+ EnumAdStyle2["BLOOM"] = "Bloom";
10884
+ EnumAdStyle2["RISE"] = "Rise";
10885
+ return EnumAdStyle2;
10886
10886
  })(EnumAdStyle || {});
10887
10887
  var adResourceSchema = create$3({
10888
10888
  adDescription: create$6().nullable().trim().required("Ad description is required").max(150, "Ad description must be at most 150 characters"),
@@ -12593,16 +12593,16 @@ var MongooseSchema21 = import_mongoose22.default.Schema;
12593
12593
  var schemaMiniQuizAnswer = new MongooseSchema21(
12594
12594
  {
12595
12595
  answer: { required: true, type: String },
12596
- correct: { required: true, type: Boolean },
12597
- id: { required: true, type: String }
12596
+ answerId: { required: true, type: String },
12597
+ correct: { required: true, type: Boolean }
12598
12598
  },
12599
12599
  { _id: false }
12600
12600
  );
12601
12601
  var schemaMiniQuizQuestion = new MongooseSchema21(
12602
12602
  {
12603
12603
  answers: { required: true, type: [schemaMiniQuizAnswer] },
12604
- id: { required: true, type: String },
12605
- question: { required: true, type: String }
12604
+ question: { required: true, type: String },
12605
+ questionId: { required: true, type: String }
12606
12606
  },
12607
12607
  { _id: false }
12608
12608
  );