@timardex/cluemart-shared 1.5.1 → 1.5.2
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-Y6NPNBKU.mjs → chunk-ATGHTLOK.mjs} +1 -1
- package/dist/{chunk-Y6NPNBKU.mjs.map → chunk-ATGHTLOK.mjs.map} +1 -1
- package/dist/{chunk-7MHRALH7.mjs → chunk-FW6BEOOA.mjs} +4 -3
- package/dist/{chunk-7MHRALH7.mjs.map → chunk-FW6BEOOA.mjs.map} +1 -1
- package/dist/graphql/index.cjs +3 -2
- 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 +2 -1
- 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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{post-Ccwq-nlW.d.mts → post-C07ey39B.d.mts} +5 -2
- package/dist/{post-B1_q12z6.d.ts → post-OdAeJGH-.d.ts} +5 -2
- 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
|
@@ -3362,10 +3362,11 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
|
|
|
3362
3362
|
}
|
|
3363
3363
|
lastFoundDate
|
|
3364
3364
|
points
|
|
3365
|
-
|
|
3365
|
+
letterInfo {
|
|
3366
3366
|
collected
|
|
3367
3367
|
shuffled
|
|
3368
3368
|
todaysLetter
|
|
3369
|
+
todaysPlacement
|
|
3369
3370
|
}
|
|
3370
3371
|
streak
|
|
3371
3372
|
}
|
|
@@ -3734,7 +3735,7 @@ var useGetGames = () => {
|
|
|
3734
3735
|
var useGetGame = (_id) => {
|
|
3735
3736
|
const { loading, error, data, refetch } = (0, import_client66.useQuery)(GET_GAME, {
|
|
3736
3737
|
fetchPolicy: "network-only",
|
|
3737
|
-
skip: !_id,
|
|
3738
|
+
skip: !_id || _id === "",
|
|
3738
3739
|
variables: { _id }
|
|
3739
3740
|
});
|
|
3740
3741
|
const game = data?.game || null;
|