@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
package/dist/hooks/index.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -6589,8 +6589,18 @@ var LEAVE_GAME_MUTATION = import_client64.gql`
|
|
|
6589
6589
|
}
|
|
6590
6590
|
`;
|
|
6591
6591
|
var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
|
|
6592
|
-
mutation updateDailyClueGame(
|
|
6593
|
-
|
|
6592
|
+
mutation updateDailyClueGame(
|
|
6593
|
+
$_id: ID!
|
|
6594
|
+
$foundLetter: String!
|
|
6595
|
+
$gameType: GameTypeEnumType!
|
|
6596
|
+
$gameTypeId: ID!
|
|
6597
|
+
) {
|
|
6598
|
+
updateDailyClueGame(
|
|
6599
|
+
_id: $_id
|
|
6600
|
+
foundLetter: $foundLetter
|
|
6601
|
+
gameType: $gameType
|
|
6602
|
+
gameTypeId: $gameTypeId
|
|
6603
|
+
) {
|
|
6594
6604
|
...GameDocFields
|
|
6595
6605
|
}
|
|
6596
6606
|
}
|
|
@@ -6599,15 +6609,15 @@ var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
|
|
|
6599
6609
|
var UPDATE_MINI_QUIZ_MUTATION = import_client64.gql`
|
|
6600
6610
|
mutation updateMiniQuizGame(
|
|
6601
6611
|
$_id: ID!
|
|
6602
|
-
$gameTypeId: ID!
|
|
6603
|
-
$gameType: GameTypeEnumType!
|
|
6604
6612
|
$answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
|
|
6613
|
+
$gameType: GameTypeEnumType!
|
|
6614
|
+
$gameTypeId: ID!
|
|
6605
6615
|
) {
|
|
6606
6616
|
updateMiniQuizGame(
|
|
6607
6617
|
_id: $_id
|
|
6608
|
-
gameTypeId: $gameTypeId
|
|
6609
|
-
gameType: $gameType
|
|
6610
6618
|
answeredQuestions: $answeredQuestions
|
|
6619
|
+
gameType: $gameType
|
|
6620
|
+
gameTypeId: $gameTypeId
|
|
6611
6621
|
) {
|
|
6612
6622
|
...GameDocFields
|
|
6613
6623
|
}
|