@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.mjs CHANGED
@@ -9870,6 +9870,7 @@ var GAME_HISTORY_FIELDS_FRAGMENT = gql`
9870
9870
  gameDate {
9871
9871
  ...GameDateFields
9872
9872
  }
9873
+ gameStatus
9873
9874
  gameType
9874
9875
  pointsEarned
9875
9876
  }
@@ -10722,6 +10723,12 @@ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
10722
10723
  EnumGameType2["DAILY_CLUE"] = "dailyClue";
10723
10724
  return EnumGameType2;
10724
10725
  })(EnumGameType || {});
10726
+ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
10727
+ EnumGameStatus2["GAME_COMPLETED"] = "GAME_COMPLETED";
10728
+ EnumGameStatus2["GAME_LEFT"] = "GAME_LEFT";
10729
+ EnumGameStatus2["GAME_IN_PROGRESS"] = "GAME_IN_PROGRESS";
10730
+ return EnumGameStatus2;
10731
+ })(EnumGameStatus || {});
10725
10732
 
10726
10733
  // src/mongoose/Ad.ts
10727
10734
  import mongoose from "mongoose";
@@ -12012,6 +12019,11 @@ var gameDataDefinition = Object.fromEntries(
12012
12019
  var gameHistorySchema = new MongooseSchema19(
12013
12020
  {
12014
12021
  gameDate: { required: true, type: schemaGameDate },
12022
+ gameStatus: {
12023
+ enum: Object.values(EnumGameStatus),
12024
+ required: true,
12025
+ type: String
12026
+ },
12015
12027
  gameType: {
12016
12028
  enum: Object.values(EnumGameType),
12017
12029
  required: true,