@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.
@@ -135,7 +135,7 @@ import {
135
135
  useUpdateVendor,
136
136
  useUpdateVendorInfo,
137
137
  useValidateVerificationToken
138
- } from "../chunk-JBHXZ3PH.mjs";
138
+ } from "../chunk-TIKTN3B3.mjs";
139
139
  import "../chunk-JMOGW4IX.mjs";
140
140
  export {
141
141
  useAddParticipantToChat,
@@ -4568,9 +4568,16 @@ var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
4568
4568
  var UPDATE_MINI_QUIZ_MUTATION = import_client64.gql`
4569
4569
  mutation updateMiniQuizGame(
4570
4570
  $_id: ID!
4571
+ $gameTypeId: ID!
4572
+ $gameType: GameTypeEnumType!
4571
4573
  $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
4572
4574
  ) {
4573
- updateMiniQuizGame(_id: $_id, answeredQuestions: $answeredQuestions) {
4575
+ updateMiniQuizGame(
4576
+ _id: $_id
4577
+ gameTypeId: $gameTypeId
4578
+ gameType: $gameType
4579
+ answeredQuestions: $answeredQuestions
4580
+ ) {
4574
4581
  ...GameDocFields
4575
4582
  }
4576
4583
  }