@timardex/cluemart-shared 1.5.524 → 1.5.526
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-2ODCGKDX.mjs → chunk-4TFXXGPQ.mjs} +4 -3
- package/dist/{chunk-2ODCGKDX.mjs.map → chunk-4TFXXGPQ.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 +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +1 -0
- 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 +1 -1
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{post-DTDm8Tkx.d.mts → post-BRychs8s.d.mts} +1 -0
- package/dist/{post-BFZegwh9.d.ts → post-DZ_wwOQN.d.ts} +1 -0
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/graphql/index.cjs
CHANGED
|
@@ -3800,8 +3800,8 @@ var useGetGames = () => {
|
|
|
3800
3800
|
var useGetGame = (_id) => {
|
|
3801
3801
|
const { loading, error, data, refetch } = (0, import_client66.useQuery)(GET_GAME, {
|
|
3802
3802
|
fetchPolicy: "network-only",
|
|
3803
|
-
skip: !_id
|
|
3804
|
-
variables: { _id }
|
|
3803
|
+
skip: !_id,
|
|
3804
|
+
variables: _id ? { _id } : void 0
|
|
3805
3805
|
});
|
|
3806
3806
|
const game = data?.game || null;
|
|
3807
3807
|
return { error, game, loading, refetch };
|
|
@@ -3854,6 +3854,7 @@ var SCHOOL = import_client67.gql`
|
|
|
3854
3854
|
...OwnerFields
|
|
3855
3855
|
}
|
|
3856
3856
|
overallPoints
|
|
3857
|
+
ranking
|
|
3857
3858
|
region
|
|
3858
3859
|
studentCount
|
|
3859
3860
|
schoolCode
|