@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.
- package/dist/{chunk-AKL3YZFE.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-AKL3YZFE.mjs.map +0 -1
package/dist/mongoose/index.cjs
CHANGED
|
@@ -9896,10 +9896,11 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
|
|
|
9896
9896
|
}
|
|
9897
9897
|
lastFoundDate
|
|
9898
9898
|
points
|
|
9899
|
-
|
|
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:
|
|
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
|
-
|
|
12006
|
+
letterInfo: {
|
|
12005
12007
|
required: true,
|
|
12006
12008
|
type: schemaLetters
|
|
12007
12009
|
},
|