@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/{chunk-BXV7NUGQ.mjs → chunk-MDQZXEX4.mjs} +5 -5
- package/dist/{chunk-BXV7NUGQ.mjs.map → chunk-MDQZXEX4.mjs.map} +1 -1
- package/dist/graphql/index.cjs +4 -4
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +4 -4
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3193,13 +3193,13 @@ import { gql as gql29 } from "@apollo/client";
|
|
|
3193
3193
|
var BASE_GAME_FIELDS_FRAGMENT = gql29`
|
|
3194
3194
|
fragment BaseGameFields on BaseGameType {
|
|
3195
3195
|
gameDate {
|
|
3196
|
-
|
|
3196
|
+
startDate
|
|
3197
|
+
endDate
|
|
3197
3198
|
}
|
|
3198
3199
|
gameSolution
|
|
3199
3200
|
gameType
|
|
3200
3201
|
title
|
|
3201
3202
|
}
|
|
3202
|
-
${DATETIME_FIELDS_FRAGMENT}
|
|
3203
3203
|
`;
|
|
3204
3204
|
var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
|
|
3205
3205
|
fragment DailyClueGameDataFields on DailyClueGameDataType {
|
|
@@ -3495,8 +3495,8 @@ var START_GAME_MUTATION = gql34`
|
|
|
3495
3495
|
${GAME_FIELDS_FRAGMENT}
|
|
3496
3496
|
`;
|
|
3497
3497
|
var LEAVE_GAME_MUTATION = gql34`
|
|
3498
|
-
mutation leaveGame($_id: ID!) {
|
|
3499
|
-
leaveGame(_id: $_id) {
|
|
3498
|
+
mutation leaveGame($_id: ID!, $gameType: GameTypeEnumType!) {
|
|
3499
|
+
leaveGame(_id: $_id, gameType: $gameType) {
|
|
3500
3500
|
userId
|
|
3501
3501
|
}
|
|
3502
3502
|
}
|
|
@@ -3685,4 +3685,4 @@ export {
|
|
|
3685
3685
|
useGetGames,
|
|
3686
3686
|
useGetGame
|
|
3687
3687
|
};
|
|
3688
|
-
//# sourceMappingURL=chunk-
|
|
3688
|
+
//# sourceMappingURL=chunk-MDQZXEX4.mjs.map
|