@timardex/cluemart-server-shared 1.0.129 → 1.0.131

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.
@@ -9918,6 +9918,7 @@ var GAME_HISTORY_FIELDS_FRAGMENT = gql`
9918
9918
  gameDate {
9919
9919
  ...GameDateFields
9920
9920
  }
9921
+ gameStatus
9921
9922
  gameType
9922
9923
  pointsEarned
9923
9924
  }
@@ -10770,6 +10771,12 @@ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
10770
10771
  EnumGameType2["DAILY_CLUE"] = "dailyClue";
10771
10772
  return EnumGameType2;
10772
10773
  })(EnumGameType || {});
10774
+ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
10775
+ EnumGameStatus2["GAME_COMPLETED"] = "GAME_COMPLETED";
10776
+ EnumGameStatus2["GAME_LEFT"] = "GAME_LEFT";
10777
+ EnumGameStatus2["GAME_IN_PROGRESS"] = "GAME_IN_PROGRESS";
10778
+ return EnumGameStatus2;
10779
+ })(EnumGameStatus || {});
10773
10780
 
10774
10781
  // src/mongoose/Ad.ts
10775
10782
  var import_mongoose = __toESM(require("mongoose"));
@@ -12060,6 +12067,11 @@ var gameDataDefinition = Object.fromEntries(
12060
12067
  var gameHistorySchema = new MongooseSchema19(
12061
12068
  {
12062
12069
  gameDate: { required: true, type: schemaGameDate },
12070
+ gameStatus: {
12071
+ enum: Object.values(EnumGameStatus),
12072
+ required: true,
12073
+ type: String
12074
+ },
12063
12075
  gameType: {
12064
12076
  enum: Object.values(EnumGameType),
12065
12077
  required: true,