@timardex/cluemart-server-shared 1.0.153 → 1.0.154

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.mjs CHANGED
@@ -12412,14 +12412,20 @@ var schemaDailyClueGameData = new MongooseSchema20(
12412
12412
  // src/mongoose/game/MiniQuiz.ts
12413
12413
  import mongoose21 from "mongoose";
12414
12414
  var MongooseSchema21 = mongoose21.Schema;
12415
- var schemaMiniQuizAnswer = new MongooseSchema21({
12416
- answer: { required: true, type: String },
12417
- correct: { required: true, type: Boolean }
12418
- });
12419
- var schemaMiniQuizQuestion = new MongooseSchema21({
12420
- answers: { required: true, type: [schemaMiniQuizAnswer] },
12421
- question: { required: true, type: String }
12422
- });
12415
+ var schemaMiniQuizAnswer = new MongooseSchema21(
12416
+ {
12417
+ answer: { required: true, type: String },
12418
+ correct: { required: true, type: Boolean }
12419
+ },
12420
+ { _id: false }
12421
+ );
12422
+ var schemaMiniQuizQuestion = new MongooseSchema21(
12423
+ {
12424
+ answers: { required: true, type: [schemaMiniQuizAnswer] },
12425
+ question: { required: true, type: String }
12426
+ },
12427
+ { _id: false }
12428
+ );
12423
12429
  var schemaMiniQuizBaseGame = new MongooseSchema21(
12424
12430
  {
12425
12431
  questions: { required: true, type: [schemaMiniQuizQuestion] }