@timardex/cluemart-server-shared 1.0.123 → 1.0.125

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.
@@ -9896,10 +9896,11 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
9896
9896
  }
9897
9897
  lastFoundDate
9898
9898
  points
9899
- letters {
9899
+ letterInfo {
9900
9900
  collected
9901
9901
  shuffled
9902
9902
  todaysLetter
9903
+ todaysPlacement
9903
9904
  }
9904
9905
  streak
9905
9906
  }
@@ -11993,7 +11994,8 @@ var schemaLetters = new MongooseSchema19(
11993
11994
  {
11994
11995
  collected: { required: false, type: [String] },
11995
11996
  shuffled: { required: true, type: [String] },
11996
- todaysLetter: { required: true, type: String }
11997
+ todaysLetter: { required: false, type: String },
11998
+ todaysPlacement: { required: true, type: String }
11997
11999
  },
11998
12000
  { _id: false }
11999
12001
  );
@@ -12001,7 +12003,7 @@ var schemaDailyClue = new MongooseSchema19(
12001
12003
  {
12002
12004
  gameFields: { required: true, type: schemaBaseGame },
12003
12005
  lastFoundDate: { default: null, required: false, type: Date },
12004
- letters: {
12006
+ letterInfo: {
12005
12007
  required: true,
12006
12008
  type: schemaLetters
12007
12009
  },