@timardex/cluemart-shared 1.5.703 → 1.5.705
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-TIKTN3B3.mjs → chunk-FQVGIFZQ.mjs} +17 -7
- package/dist/{chunk-TIKTN3B3.mjs.map → chunk-FQVGIFZQ.mjs.map} +1 -1
- package/dist/graphql/index.cjs +16 -6
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +16 -6
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +16 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +16 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3712,8 +3712,18 @@ var LEAVE_GAME_MUTATION = gql34`
|
|
|
3712
3712
|
}
|
|
3713
3713
|
`;
|
|
3714
3714
|
var UPDATE_DAILY_CLUE_MUTATION = gql34`
|
|
3715
|
-
mutation updateDailyClueGame(
|
|
3716
|
-
|
|
3715
|
+
mutation updateDailyClueGame(
|
|
3716
|
+
$_id: ID!
|
|
3717
|
+
$foundLetter: String!
|
|
3718
|
+
$gameType: GameTypeEnumType!
|
|
3719
|
+
$gameTypeId: ID!
|
|
3720
|
+
) {
|
|
3721
|
+
updateDailyClueGame(
|
|
3722
|
+
_id: $_id
|
|
3723
|
+
foundLetter: $foundLetter
|
|
3724
|
+
gameType: $gameType
|
|
3725
|
+
gameTypeId: $gameTypeId
|
|
3726
|
+
) {
|
|
3717
3727
|
...GameDocFields
|
|
3718
3728
|
}
|
|
3719
3729
|
}
|
|
@@ -3722,15 +3732,15 @@ var UPDATE_DAILY_CLUE_MUTATION = gql34`
|
|
|
3722
3732
|
var UPDATE_MINI_QUIZ_MUTATION = gql34`
|
|
3723
3733
|
mutation updateMiniQuizGame(
|
|
3724
3734
|
$_id: ID!
|
|
3725
|
-
$gameTypeId: ID!
|
|
3726
|
-
$gameType: GameTypeEnumType!
|
|
3727
3735
|
$answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
|
|
3736
|
+
$gameType: GameTypeEnumType!
|
|
3737
|
+
$gameTypeId: ID!
|
|
3728
3738
|
) {
|
|
3729
3739
|
updateMiniQuizGame(
|
|
3730
3740
|
_id: $_id
|
|
3731
|
-
gameTypeId: $gameTypeId
|
|
3732
|
-
gameType: $gameType
|
|
3733
3741
|
answeredQuestions: $answeredQuestions
|
|
3742
|
+
gameType: $gameType
|
|
3743
|
+
gameTypeId: $gameTypeId
|
|
3734
3744
|
) {
|
|
3735
3745
|
...GameDocFields
|
|
3736
3746
|
}
|
|
@@ -4165,4 +4175,4 @@ export {
|
|
|
4165
4175
|
useGetSchools,
|
|
4166
4176
|
useGetSchool
|
|
4167
4177
|
};
|
|
4168
|
-
//# sourceMappingURL=chunk-
|
|
4178
|
+
//# sourceMappingURL=chunk-FQVGIFZQ.mjs.map
|