@timardex/cluemart-server-shared 1.0.147 → 1.0.148

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.
@@ -37,7 +37,7 @@ import {
37
37
  resourceRelationsSchema,
38
38
  termsAgreementSchema,
39
39
  userLicenseSchema
40
- } from "../chunk-4ZDEYFIM.mjs";
40
+ } from "../chunk-XT6SQI4D.mjs";
41
41
  import "../chunk-3QS3WKRC.mjs";
42
42
  export {
43
43
  APP_SETTINGS_ID,
@@ -6892,10 +6892,6 @@ var EnumSubscriptionStatus = /* @__PURE__ */ ((EnumSubscriptionStatus22) => {
6892
6892
  EnumSubscriptionStatus22["TRIALING"] = "trialing";
6893
6893
  return EnumSubscriptionStatus22;
6894
6894
  })(EnumSubscriptionStatus || {});
6895
- var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
6896
- EnumGameType2["DAILY_CLUE"] = "dailyClue";
6897
- return EnumGameType2;
6898
- })(EnumGameType || {});
6899
6895
  var OBJECT_ID_PATH_SEGMENT = "[a-f0-9]{24}";
6900
6896
  var OBJECT_ID_PATH_SEGMENT_END = `${OBJECT_ID_PATH_SEGMENT}$`;
6901
6897
  var gameScreenIdentifierList = [
@@ -9994,7 +9990,6 @@ var DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT = gql`
9994
9990
  ...GameDateFields
9995
9991
  }
9996
9992
  gameSolution
9997
- gameType
9998
9993
  }
9999
9994
  ${GAME_DATE_FIELDS_FRAGMENT}
10000
9995
  `;
@@ -10104,6 +10099,7 @@ var GET_GAME_LEADERBOARD = gql`
10104
10099
  `;
10105
10100
  var BASE_GAME_FIELDS_FRAGMENT = gql`
10106
10101
  fragment BaseGameFields on BaseGameType {
10102
+ gameType
10107
10103
  dailyClue {
10108
10104
  ...DailyClueBaseGameFields
10109
10105
  }
@@ -11103,6 +11099,10 @@ var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
11103
11099
  EnumGameStatus2["GAME_STARTED"] = "GAME_STARTED";
11104
11100
  return EnumGameStatus2;
11105
11101
  })(EnumGameStatus || {});
11102
+ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
11103
+ EnumGameType2["DAILY_CLUE"] = "dailyClue";
11104
+ return EnumGameType2;
11105
+ })(EnumGameType || {});
11106
11106
 
11107
11107
  // src/mongoose/Notification.ts
11108
11108
  var import_mongoose2 = __toESM(require("mongoose"));
@@ -12502,12 +12502,7 @@ var schemaLetters = new MongooseSchema19(
12502
12502
  var schemaDailyClueBaseGame = new MongooseSchema19(
12503
12503
  {
12504
12504
  gameDate: { required: true, type: schemaGameDate },
12505
- gameSolution: { required: true, type: String },
12506
- gameType: {
12507
- enum: Object.values(EnumGameType),
12508
- required: false,
12509
- type: String
12510
- }
12505
+ gameSolution: { required: true, type: String }
12511
12506
  },
12512
12507
  { _id: false }
12513
12508
  );