@timardex/cluemart-server-shared 1.0.147 → 1.0.149

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.
@@ -6898,10 +6898,6 @@ var EnumSubscriptionStatus = /* @__PURE__ */ ((EnumSubscriptionStatus22) => {
6898
6898
  EnumSubscriptionStatus22["TRIALING"] = "trialing";
6899
6899
  return EnumSubscriptionStatus22;
6900
6900
  })(EnumSubscriptionStatus || {});
6901
- var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
6902
- EnumGameType2["DAILY_CLUE"] = "dailyClue";
6903
- return EnumGameType2;
6904
- })(EnumGameType || {});
6905
6901
  var OBJECT_ID_PATH_SEGMENT = "[a-f0-9]{24}";
6906
6902
  var OBJECT_ID_PATH_SEGMENT_END = `${OBJECT_ID_PATH_SEGMENT}$`;
6907
6903
  var gameScreenIdentifierList = [
@@ -10000,7 +9996,6 @@ var DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT = gql`
10000
9996
  ...GameDateFields
10001
9997
  }
10002
9998
  gameSolution
10003
- gameType
10004
9999
  }
10005
10000
  ${GAME_DATE_FIELDS_FRAGMENT}
10006
10001
  `;
@@ -10110,6 +10105,7 @@ var GET_GAME_LEADERBOARD = gql`
10110
10105
  `;
10111
10106
  var BASE_GAME_FIELDS_FRAGMENT = gql`
10112
10107
  fragment BaseGameFields on BaseGameType {
10108
+ gameType
10113
10109
  dailyClue {
10114
10110
  ...DailyClueBaseGameFields
10115
10111
  }
@@ -11109,6 +11105,10 @@ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
11109
11105
  EnumGameStatus2["GAME_STARTED"] = "GAME_STARTED";
11110
11106
  return EnumGameStatus2;
11111
11107
  })(EnumGameStatus || {});
11108
+ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
11109
+ EnumGameType2["DAILY_CLUE"] = "dailyClue";
11110
+ return EnumGameType2;
11111
+ })(EnumGameType || {});
11112
11112
 
11113
11113
  // src/mongoose/Ad.ts
11114
11114
  var import_mongoose = __toESM(require("mongoose"));
@@ -12374,12 +12374,7 @@ var schemaLetters = new MongooseSchema19(
12374
12374
  var schemaDailyClueBaseGame = new MongooseSchema19(
12375
12375
  {
12376
12376
  gameDate: { required: true, type: schemaGameDate },
12377
- gameSolution: { required: true, type: String },
12378
- gameType: {
12379
- enum: Object.values(EnumGameType),
12380
- required: false,
12381
- type: String
12382
- }
12377
+ gameSolution: { required: true, type: String }
12383
12378
  },
12384
12379
  { _id: false }
12385
12380
  );