@timardex/cluemart-shared 1.5.702 → 1.5.703
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-JBHXZ3PH.mjs → chunk-TIKTN3B3.mjs} +9 -2
- package/dist/{chunk-JBHXZ3PH.mjs.map → chunk-TIKTN3B3.mjs.map} +1 -1
- package/dist/graphql/index.cjs +8 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +8 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
package/dist/hooks/index.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -6599,9 +6599,16 @@ var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
|
|
|
6599
6599
|
var UPDATE_MINI_QUIZ_MUTATION = import_client64.gql`
|
|
6600
6600
|
mutation updateMiniQuizGame(
|
|
6601
6601
|
$_id: ID!
|
|
6602
|
+
$gameTypeId: ID!
|
|
6603
|
+
$gameType: GameTypeEnumType!
|
|
6602
6604
|
$answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
|
|
6603
6605
|
) {
|
|
6604
|
-
updateMiniQuizGame(
|
|
6606
|
+
updateMiniQuizGame(
|
|
6607
|
+
_id: $_id
|
|
6608
|
+
gameTypeId: $gameTypeId
|
|
6609
|
+
gameType: $gameType
|
|
6610
|
+
answeredQuestions: $answeredQuestions
|
|
6611
|
+
) {
|
|
6605
6612
|
...GameDocFields
|
|
6606
6613
|
}
|
|
6607
6614
|
}
|