@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/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -4558,8 +4558,18 @@ var LEAVE_GAME_MUTATION = import_client64.gql`
|
|
|
4558
4558
|
}
|
|
4559
4559
|
`;
|
|
4560
4560
|
var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
|
|
4561
|
-
mutation updateDailyClueGame(
|
|
4562
|
-
|
|
4561
|
+
mutation updateDailyClueGame(
|
|
4562
|
+
$_id: ID!
|
|
4563
|
+
$foundLetter: String!
|
|
4564
|
+
$gameType: GameTypeEnumType!
|
|
4565
|
+
$gameTypeId: ID!
|
|
4566
|
+
) {
|
|
4567
|
+
updateDailyClueGame(
|
|
4568
|
+
_id: $_id
|
|
4569
|
+
foundLetter: $foundLetter
|
|
4570
|
+
gameType: $gameType
|
|
4571
|
+
gameTypeId: $gameTypeId
|
|
4572
|
+
) {
|
|
4563
4573
|
...GameDocFields
|
|
4564
4574
|
}
|
|
4565
4575
|
}
|
|
@@ -4568,15 +4578,15 @@ var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
|
|
|
4568
4578
|
var UPDATE_MINI_QUIZ_MUTATION = import_client64.gql`
|
|
4569
4579
|
mutation updateMiniQuizGame(
|
|
4570
4580
|
$_id: ID!
|
|
4571
|
-
$gameTypeId: ID!
|
|
4572
|
-
$gameType: GameTypeEnumType!
|
|
4573
4581
|
$answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
|
|
4582
|
+
$gameType: GameTypeEnumType!
|
|
4583
|
+
$gameTypeId: ID!
|
|
4574
4584
|
) {
|
|
4575
4585
|
updateMiniQuizGame(
|
|
4576
4586
|
_id: $_id
|
|
4577
|
-
gameTypeId: $gameTypeId
|
|
4578
|
-
gameType: $gameType
|
|
4579
4587
|
answeredQuestions: $answeredQuestions
|
|
4588
|
+
gameType: $gameType
|
|
4589
|
+
gameTypeId: $gameTypeId
|
|
4580
4590
|
) {
|
|
4581
4591
|
...GameDocFields
|
|
4582
4592
|
}
|