@timardex/cluemart-server-shared 1.0.151 → 1.0.152

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.
@@ -10028,14 +10028,10 @@ var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql`
10028
10028
  `;
10029
10029
  var MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT = gql`
10030
10030
  fragment MiniQuizBaseGameFields on MiniQuizBaseGameType {
10031
- gameDate {
10032
- ...GameDateFields
10033
- }
10034
10031
  questions {
10035
10032
  ...MiniQuizQuestionFields
10036
10033
  }
10037
10034
  }
10038
- ${GAME_DATE_FIELDS_FRAGMENT}
10039
10035
  ${MINI_QUIZ_QUESTION_FIELDS_FRAGMENT}
10040
10036
  `;
10041
10037
  var MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT = gql`
@@ -12462,7 +12458,6 @@ var schemaMiniQuizQuestions = new MongooseSchema21(
12462
12458
  );
12463
12459
  var schemaMiniQuizBaseGame = new MongooseSchema21(
12464
12460
  {
12465
- gameDate: { required: true, type: Date },
12466
12461
  questions: { required: true, type: [schemaMiniQuizQuestions] }
12467
12462
  },
12468
12463
  { _id: false }