@timardex/cluemart-shared 1.5.46 → 1.5.47
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-5LQJSAW4.mjs → chunk-RBFEUYZH.mjs} +7 -7
- package/dist/{chunk-5LQJSAW4.mjs.map → chunk-RBFEUYZH.mjs.map} +1 -1
- package/dist/graphql/index.cjs +6 -6
- 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 +3 -3
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -1027,10 +1027,10 @@ declare const useGetGame: (_id: string) => {
|
|
|
1027
1027
|
};
|
|
1028
1028
|
declare const useGetGameLeaderboard: () => {
|
|
1029
1029
|
error: _apollo_client.ApolloError | undefined;
|
|
1030
|
-
|
|
1030
|
+
gameLeaderboard: GameLeaderboard[];
|
|
1031
1031
|
loading: boolean;
|
|
1032
1032
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1033
|
-
|
|
1033
|
+
gameLeaderboard: GameLeaderboard[];
|
|
1034
1034
|
}>>;
|
|
1035
1035
|
};
|
|
1036
1036
|
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -1027,10 +1027,10 @@ declare const useGetGame: (_id: string) => {
|
|
|
1027
1027
|
};
|
|
1028
1028
|
declare const useGetGameLeaderboard: () => {
|
|
1029
1029
|
error: _apollo_client.ApolloError | undefined;
|
|
1030
|
-
|
|
1030
|
+
gameLeaderboard: GameLeaderboard[];
|
|
1031
1031
|
loading: boolean;
|
|
1032
1032
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1033
|
-
|
|
1033
|
+
gameLeaderboard: GameLeaderboard[];
|
|
1034
1034
|
}>>;
|
|
1035
1035
|
};
|
|
1036
1036
|
|
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -4133,9 +4133,9 @@ var GET_GAME = import_client55.gql`
|
|
|
4133
4133
|
}
|
|
4134
4134
|
${GAME_FIELDS_FRAGMENT}
|
|
4135
4135
|
`;
|
|
4136
|
-
var
|
|
4137
|
-
query
|
|
4138
|
-
|
|
4136
|
+
var GET_GAME_LEADERBOARD = import_client55.gql`
|
|
4137
|
+
query getGameLeaderboard {
|
|
4138
|
+
gameLeaderboard {
|
|
4139
4139
|
gameHistory {
|
|
4140
4140
|
...GameHistoryFields
|
|
4141
4141
|
}
|