@timardex/cluemart-shared 1.5.704 → 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-DW7OU6K3.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
  }