@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.
@@ -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,12 @@ 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
+ EnumGameStatus2["GAME_IN_PROGRESS"] = "GAME_IN_PROGRESS";
10709
+ return EnumGameStatus2;
10710
+ })(EnumGameStatus || {});
10704
10711
 
10705
10712
  // src/mongoose/Ad.ts
10706
10713
  import mongoose from "mongoose";
@@ -11991,6 +11998,11 @@ var gameDataDefinition = Object.fromEntries(
11991
11998
  var gameHistorySchema = new MongooseSchema19(
11992
11999
  {
11993
12000
  gameDate: { required: true, type: schemaGameDate },
12001
+ gameStatus: {
12002
+ enum: Object.values(EnumGameStatus),
12003
+ required: true,
12004
+ type: String
12005
+ },
11994
12006
  gameType: {
11995
12007
  enum: Object.values(EnumGameType),
11996
12008
  required: true,
@@ -12080,4 +12092,4 @@ react/cjs/react.development.js:
12080
12092
  * LICENSE file in the root directory of this source tree.
12081
12093
  *)
12082
12094
  */
12083
- //# sourceMappingURL=chunk-KML6ZNTU.mjs.map
12095
+ //# sourceMappingURL=chunk-6WUH4RWX.mjs.map