@timardex/cluemart-shared 1.4.85 → 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.
@@ -3343,13 +3343,13 @@ var import_client55 = require("@apollo/client");
3343
3343
  var BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
3344
3344
  fragment BaseGameFields on BaseGameType {
3345
3345
  gameDate {
3346
- ...DateTimeFields
3346
+ startDate
3347
+ endDate
3347
3348
  }
3348
3349
  gameSolution
3349
3350
  gameType
3350
3351
  title
3351
3352
  }
3352
- ${DATETIME_FIELDS_FRAGMENT}
3353
3353
  `;
3354
3354
  var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
3355
3355
  fragment DailyClueGameDataFields on DailyClueGameDataType {
@@ -3645,8 +3645,8 @@ var START_GAME_MUTATION = import_client64.gql`
3645
3645
  ${GAME_FIELDS_FRAGMENT}
3646
3646
  `;
3647
3647
  var LEAVE_GAME_MUTATION = import_client64.gql`
3648
- mutation leaveGame($_id: ID!) {
3649
- leaveGame(_id: $_id) {
3648
+ mutation leaveGame($_id: ID!, $gameType: GameTypeEnumType!) {
3649
+ leaveGame(_id: $_id, gameType: $gameType) {
3650
3650
  userId
3651
3651
  }
3652
3652
  }