@timardex/cluemart-shared 1.4.86 → 1.4.87

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/index.mjs CHANGED
@@ -5471,13 +5471,13 @@ import { gql as gql29 } from "@apollo/client";
5471
5471
  var BASE_GAME_FIELDS_FRAGMENT = gql29`
5472
5472
  fragment BaseGameFields on BaseGameType {
5473
5473
  gameDate {
5474
- ...DateTimeFields
5474
+ startDate
5475
+ endDate
5475
5476
  }
5476
5477
  gameSolution
5477
5478
  gameType
5478
5479
  title
5479
5480
  }
5480
- ${DATETIME_FIELDS_FRAGMENT}
5481
5481
  `;
5482
5482
  var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
5483
5483
  fragment DailyClueGameDataFields on DailyClueGameDataType {
@@ -5773,8 +5773,8 @@ var START_GAME_MUTATION = gql34`
5773
5773
  ${GAME_FIELDS_FRAGMENT}
5774
5774
  `;
5775
5775
  var LEAVE_GAME_MUTATION = gql34`
5776
- mutation leaveGame($_id: ID!) {
5777
- leaveGame(_id: $_id) {
5776
+ mutation leaveGame($_id: ID!, $gameType: GameTypeEnumType!) {
5777
+ leaveGame(_id: $_id, gameType: $gameType) {
5778
5778
  userId
5779
5779
  }
5780
5780
  }