@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.
package/dist/index.cjs CHANGED
@@ -10038,14 +10038,10 @@ var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql`
10038
10038
  `;
10039
10039
  var MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT = gql`
10040
10040
  fragment MiniQuizBaseGameFields on MiniQuizBaseGameType {
10041
- gameDate {
10042
- ...GameDateFields
10043
- }
10044
10041
  questions {
10045
10042
  ...MiniQuizQuestionFields
10046
10043
  }
10047
10044
  }
10048
- ${GAME_DATE_FIELDS_FRAGMENT}
10049
10045
  ${MINI_QUIZ_QUESTION_FIELDS_FRAGMENT}
10050
10046
  `;
10051
10047
  var MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT = gql`
@@ -12472,7 +12468,6 @@ var schemaMiniQuizQuestions = new MongooseSchema21(
12472
12468
  );
12473
12469
  var schemaMiniQuizBaseGame = new MongooseSchema21(
12474
12470
  {
12475
- gameDate: { required: true, type: Date },
12476
12471
  questions: { required: true, type: [schemaMiniQuizQuestions] }
12477
12472
  },
12478
12473
  { _id: false }