@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.
- package/dist/{chunk-GNZVUBU7.mjs → chunk-C44OQFZV.mjs} +1 -2
- package/dist/{chunk-GNZVUBU7.mjs.map → chunk-C44OQFZV.mjs.map} +1 -1
- 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.d.mts +1 -1
- package/dist/graphql/index.d.ts +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.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.cjs +4 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.mjs +4 -5
- package/dist/index.mjs.map +1 -1
- package/dist/{post-BY-7p0Ns.d.ts → post-BNPEczKv.d.ts} +6 -4
- package/dist/{post-DGM7dx92.d.mts → post-CeKM3HVB.d.mts} +6 -4
- package/dist/types/index.cjs +0 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +1 -1
- package/package.json +1 -1
package/dist/graphql/index.cjs
CHANGED
|
@@ -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
|
-
|
|
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
|
}
|