@timardex/cluemart-server-shared 1.0.124 → 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.
- package/dist/{chunk-DHH267QR.mjs → chunk-EETTPPCU.mjs} +6 -4
- package/dist/chunk-EETTPPCU.mjs.map +1 -0
- package/dist/index.cjs +5 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +5 -3
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +5 -3
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +1 -1
- package/package.json +9 -8
- package/dist/chunk-DHH267QR.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -9848,10 +9848,11 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
|
|
|
9848
9848
|
}
|
|
9849
9849
|
lastFoundDate
|
|
9850
9850
|
points
|
|
9851
|
-
|
|
9851
|
+
letterInfo {
|
|
9852
9852
|
collected
|
|
9853
9853
|
shuffled
|
|
9854
9854
|
todaysLetter
|
|
9855
|
+
todaysPlacement
|
|
9855
9856
|
}
|
|
9856
9857
|
streak
|
|
9857
9858
|
}
|
|
@@ -11945,7 +11946,8 @@ var schemaLetters = new MongooseSchema19(
|
|
|
11945
11946
|
{
|
|
11946
11947
|
collected: { required: false, type: [String] },
|
|
11947
11948
|
shuffled: { required: true, type: [String] },
|
|
11948
|
-
todaysLetter: { required: false, type: String }
|
|
11949
|
+
todaysLetter: { required: false, type: String },
|
|
11950
|
+
todaysPlacement: { required: true, type: String }
|
|
11949
11951
|
},
|
|
11950
11952
|
{ _id: false }
|
|
11951
11953
|
);
|
|
@@ -11953,7 +11955,7 @@ var schemaDailyClue = new MongooseSchema19(
|
|
|
11953
11955
|
{
|
|
11954
11956
|
gameFields: { required: true, type: schemaBaseGame },
|
|
11955
11957
|
lastFoundDate: { default: null, required: false, type: Date },
|
|
11956
|
-
|
|
11958
|
+
letterInfo: {
|
|
11957
11959
|
required: true,
|
|
11958
11960
|
type: schemaLetters
|
|
11959
11961
|
},
|