@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.
@@ -135,7 +135,7 @@ import {
135
135
  useUpdateVendor,
136
136
  useUpdateVendorInfo,
137
137
  useValidateVerificationToken
138
- } from "../chunk-TIKTN3B3.mjs";
138
+ } from "../chunk-FQVGIFZQ.mjs";
139
139
  import "../chunk-JMOGW4IX.mjs";
140
140
  export {
141
141
  useAddParticipantToChat,
@@ -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($_id: ID!, $foundLetter: String!) {
4562
- updateDailyClueGame(_id: $_id, foundLetter: $foundLetter) {
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
  }