@timardex/cluemart-server-shared 1.0.124 → 1.0.126
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-74OLF5ZW.mjs} +6 -4
- package/dist/chunk-74OLF5ZW.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.cjs
CHANGED
|
@@ -9906,10 +9906,11 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
|
|
|
9906
9906
|
}
|
|
9907
9907
|
lastFoundDate
|
|
9908
9908
|
points
|
|
9909
|
-
|
|
9909
|
+
letterInfo {
|
|
9910
9910
|
collected
|
|
9911
9911
|
shuffled
|
|
9912
9912
|
todaysLetter
|
|
9913
|
+
todaysPlacement
|
|
9913
9914
|
}
|
|
9914
9915
|
streak
|
|
9915
9916
|
}
|
|
@@ -12003,7 +12004,8 @@ var schemaLetters = new MongooseSchema19(
|
|
|
12003
12004
|
{
|
|
12004
12005
|
collected: { required: false, type: [String] },
|
|
12005
12006
|
shuffled: { required: true, type: [String] },
|
|
12006
|
-
todaysLetter: { required: false, type: String }
|
|
12007
|
+
todaysLetter: { required: false, type: String },
|
|
12008
|
+
todaysPlacement: { required: false, type: String }
|
|
12007
12009
|
},
|
|
12008
12010
|
{ _id: false }
|
|
12009
12011
|
);
|
|
@@ -12011,7 +12013,7 @@ var schemaDailyClue = new MongooseSchema19(
|
|
|
12011
12013
|
{
|
|
12012
12014
|
gameFields: { required: true, type: schemaBaseGame },
|
|
12013
12015
|
lastFoundDate: { default: null, required: false, type: Date },
|
|
12014
|
-
|
|
12016
|
+
letterInfo: {
|
|
12015
12017
|
required: true,
|
|
12016
12018
|
type: schemaLetters
|
|
12017
12019
|
},
|