@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.
package/dist/index.cjs CHANGED
@@ -9928,6 +9928,7 @@ var GAME_HISTORY_FIELDS_FRAGMENT = gql`
9928
9928
  gameDate {
9929
9929
  ...GameDateFields
9930
9930
  }
9931
+ gameStatus
9931
9932
  gameType
9932
9933
  pointsEarned
9933
9934
  }
@@ -10780,6 +10781,12 @@ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
10780
10781
  EnumGameType2["DAILY_CLUE"] = "dailyClue";
10781
10782
  return EnumGameType2;
10782
10783
  })(EnumGameType || {});
10784
+ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
10785
+ EnumGameStatus2["GAME_COMPLETED"] = "GAME_COMPLETED";
10786
+ EnumGameStatus2["GAME_LEFT"] = "GAME_LEFT";
10787
+ EnumGameStatus2["GAME_IN_PROGRESS"] = "GAME_IN_PROGRESS";
10788
+ return EnumGameStatus2;
10789
+ })(EnumGameStatus || {});
10783
10790
 
10784
10791
  // src/mongoose/Ad.ts
10785
10792
  var import_mongoose = __toESM(require("mongoose"));
@@ -12070,6 +12077,11 @@ var gameDataDefinition = Object.fromEntries(
12070
12077
  var gameHistorySchema = new MongooseSchema19(
12071
12078
  {
12072
12079
  gameDate: { required: true, type: schemaGameDate },
12080
+ gameStatus: {
12081
+ enum: Object.values(EnumGameStatus),
12082
+ required: true,
12083
+ type: String
12084
+ },
12073
12085
  gameType: {
12074
12086
  enum: Object.values(EnumGameType),
12075
12087
  required: true,