@timardex/cluemart-server-shared 1.0.128 → 1.0.129

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.
@@ -9837,12 +9837,23 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql`
9837
9837
  collected
9838
9838
  shuffled
9839
9839
  todaysLetter
9840
+ todaysClue
9840
9841
  todaysPlacement
9841
9842
  }
9842
9843
  streak
9843
9844
  }
9844
9845
  ${BASE_GAME_FIELDS_FRAGMENT}
9845
9846
  `;
9847
+ var GAME_HISTORY_FIELDS_FRAGMENT = gql`
9848
+ fragment GameHistoryFields on GameHistoryType {
9849
+ gameDate {
9850
+ ...GameDateFields
9851
+ }
9852
+ gameType
9853
+ pointsEarned
9854
+ }
9855
+ ${GAME_DATE_FIELDS_FRAGMENT}
9856
+ `;
9846
9857
  var GAME_FIELDS_FRAGMENT = gql`
9847
9858
  fragment GameFields on GameType {
9848
9859
  _id
@@ -9855,11 +9866,7 @@ var GAME_FIELDS_FRAGMENT = gql`
9855
9866
  }
9856
9867
  }
9857
9868
  gameHistory {
9858
- gameDate {
9859
- ...GameDateFields
9860
- }
9861
- gameType
9862
- pointsEarned
9869
+ ...GameHistoryFields
9863
9870
  }
9864
9871
  updatedAt
9865
9872
  owner {
@@ -9870,6 +9877,7 @@ var GAME_FIELDS_FRAGMENT = gql`
9870
9877
  ${DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT}
9871
9878
  ${OWNER_FIELDS_FRAGMENT}
9872
9879
  ${GAME_DATE_FIELDS_FRAGMENT}
9880
+ ${GAME_HISTORY_FIELDS_FRAGMENT}
9873
9881
  `;
9874
9882
  var GET_GAMES = gql`
9875
9883
  query getGames {
@@ -9887,6 +9895,21 @@ var GET_GAME = gql`
9887
9895
  }
9888
9896
  ${GAME_FIELDS_FRAGMENT}
9889
9897
  `;
9898
+ var GET_GAME_LEADERBOARD = gql`
9899
+ query getGameLeaderboard {
9900
+ gameLeaderboard {
9901
+ gameHistory {
9902
+ ...GameHistoryFields
9903
+ }
9904
+ overallPoints
9905
+ owner {
9906
+ ...OwnerFields
9907
+ }
9908
+ }
9909
+ }
9910
+ ${OWNER_FIELDS_FRAGMENT}
9911
+ ${GAME_HISTORY_FIELDS_FRAGMENT}
9912
+ `;
9890
9913
  var POST_CONTENT_DATA_FIELDS_FRAGMENT = gql`
9891
9914
  fragment PostContentDataFields on PostContentData {
9892
9915
  game {
@@ -12057,4 +12080,4 @@ react/cjs/react.development.js:
12057
12080
  * LICENSE file in the root directory of this source tree.
12058
12081
  *)
12059
12082
  */
12060
- //# sourceMappingURL=chunk-BBLLCZKM.mjs.map
12083
+ //# sourceMappingURL=chunk-KML6ZNTU.mjs.map