@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.
package/dist/index.cjs CHANGED
@@ -6908,10 +6908,6 @@ var EnumSubscriptionStatus = /* @__PURE__ */ ((EnumSubscriptionStatus22) => {
6908
6908
  EnumSubscriptionStatus22["TRIALING"] = "trialing";
6909
6909
  return EnumSubscriptionStatus22;
6910
6910
  })(EnumSubscriptionStatus || {});
6911
- var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
6912
- EnumGameType2["DAILY_CLUE"] = "dailyClue";
6913
- return EnumGameType2;
6914
- })(EnumGameType || {});
6915
6911
  var OBJECT_ID_PATH_SEGMENT = "[a-f0-9]{24}";
6916
6912
  var OBJECT_ID_PATH_SEGMENT_END = `${OBJECT_ID_PATH_SEGMENT}$`;
6917
6913
  var gameScreenIdentifierList = [
@@ -10010,7 +10006,6 @@ var DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT = gql`
10010
10006
  ...GameDateFields
10011
10007
  }
10012
10008
  gameSolution
10013
- gameType
10014
10009
  }
10015
10010
  ${GAME_DATE_FIELDS_FRAGMENT}
10016
10011
  `;
@@ -10120,6 +10115,7 @@ var GET_GAME_LEADERBOARD = gql`
10120
10115
  `;
10121
10116
  var BASE_GAME_FIELDS_FRAGMENT = gql`
10122
10117
  fragment BaseGameFields on BaseGameType {
10118
+ gameType
10123
10119
  dailyClue {
10124
10120
  ...DailyClueBaseGameFields
10125
10121
  }
@@ -11119,6 +11115,10 @@ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
11119
11115
  EnumGameStatus2["GAME_STARTED"] = "GAME_STARTED";
11120
11116
  return EnumGameStatus2;
11121
11117
  })(EnumGameStatus || {});
11118
+ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
11119
+ EnumGameType2["DAILY_CLUE"] = "dailyClue";
11120
+ return EnumGameType2;
11121
+ })(EnumGameType || {});
11122
11122
 
11123
11123
  // src/mongoose/Ad.ts
11124
11124
  var import_mongoose = __toESM(require("mongoose"));
@@ -12384,12 +12384,7 @@ var schemaLetters = new MongooseSchema19(
12384
12384
  var schemaDailyClueBaseGame = new MongooseSchema19(
12385
12385
  {
12386
12386
  gameDate: { required: true, type: schemaGameDate },
12387
- gameSolution: { required: true, type: String },
12388
- gameType: {
12389
- enum: Object.values(EnumGameType),
12390
- required: false,
12391
- type: String
12392
- }
12387
+ gameSolution: { required: true, type: String }
12393
12388
  },
12394
12389
  { _id: false }
12395
12390
  );