@timardex/cluemart-server-shared 1.0.129 → 1.0.130

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.
@@ -9849,6 +9849,7 @@ var GAME_HISTORY_FIELDS_FRAGMENT = gql`
9849
9849
  gameDate {
9850
9850
  ...GameDateFields
9851
9851
  }
9852
+ gameStatus
9852
9853
  gameType
9853
9854
  pointsEarned
9854
9855
  }
@@ -10701,6 +10702,11 @@ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
10701
10702
  EnumGameType2["DAILY_CLUE"] = "dailyClue";
10702
10703
  return EnumGameType2;
10703
10704
  })(EnumGameType || {});
10705
+ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
10706
+ EnumGameStatus2["GAME_COMPLETED"] = "GAME_COMPLETED";
10707
+ EnumGameStatus2["GAME_LEFT"] = "GAME_LEFT";
10708
+ return EnumGameStatus2;
10709
+ })(EnumGameStatus || {});
10704
10710
 
10705
10711
  // src/mongoose/Ad.ts
10706
10712
  import mongoose from "mongoose";
@@ -11991,6 +11997,11 @@ var gameDataDefinition = Object.fromEntries(
11991
11997
  var gameHistorySchema = new MongooseSchema19(
11992
11998
  {
11993
11999
  gameDate: { required: true, type: schemaGameDate },
12000
+ gameStatus: {
12001
+ enum: Object.values(EnumGameStatus),
12002
+ required: true,
12003
+ type: String
12004
+ },
11994
12005
  gameType: {
11995
12006
  enum: Object.values(EnumGameType),
11996
12007
  required: true,
@@ -12080,4 +12091,4 @@ react/cjs/react.development.js:
12080
12091
  * LICENSE file in the root directory of this source tree.
12081
12092
  *)
12082
12093
  */
12083
- //# sourceMappingURL=chunk-KML6ZNTU.mjs.map
12094
+ //# sourceMappingURL=chunk-YFZVVTXN.mjs.map