@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.
@@ -1,5 +1,5 @@
1
1
  import "../chunk-4LT5GOOP.mjs";
2
- import "../chunk-BXV7NUGQ.mjs";
2
+ import "../chunk-MDQZXEX4.mjs";
3
3
  import "../chunk-DWO35OY4.mjs";
4
4
  import "../chunk-I7WE3EBR.mjs";
5
5
  import {
package/dist/index.cjs CHANGED
@@ -5759,13 +5759,13 @@ var import_client55 = require("@apollo/client");
5759
5759
  var BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
5760
5760
  fragment BaseGameFields on BaseGameType {
5761
5761
  gameDate {
5762
- ...DateTimeFields
5762
+ startDate
5763
+ endDate
5763
5764
  }
5764
5765
  gameSolution
5765
5766
  gameType
5766
5767
  title
5767
5768
  }
5768
- ${DATETIME_FIELDS_FRAGMENT}
5769
5769
  `;
5770
5770
  var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
5771
5771
  fragment DailyClueGameDataFields on DailyClueGameDataType {
@@ -6061,8 +6061,8 @@ var START_GAME_MUTATION = import_client64.gql`
6061
6061
  ${GAME_FIELDS_FRAGMENT}
6062
6062
  `;
6063
6063
  var LEAVE_GAME_MUTATION = import_client64.gql`
6064
- mutation leaveGame($_id: ID!) {
6065
- leaveGame(_id: $_id) {
6064
+ mutation leaveGame($_id: ID!, $gameType: GameTypeEnumType!) {
6065
+ leaveGame(_id: $_id, gameType: $gameType) {
6066
6066
  userId
6067
6067
  }
6068
6068
  }