@timardex/cluemart-shared 1.5.526 → 1.5.528

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/index.d.mts CHANGED
@@ -2325,7 +2325,7 @@ declare const useGetGames: () => {
2325
2325
  games: GameDocType[];
2326
2326
  }>>;
2327
2327
  };
2328
- declare const useGetGame: (_id?: string) => {
2328
+ declare const useGetGame: (_id?: string | null) => {
2329
2329
  error: _apollo_client.ApolloError | undefined;
2330
2330
  game: GameDocType | null;
2331
2331
  loading: boolean;
package/dist/index.d.ts CHANGED
@@ -2325,7 +2325,7 @@ declare const useGetGames: () => {
2325
2325
  games: GameDocType[];
2326
2326
  }>>;
2327
2327
  };
2328
- declare const useGetGame: (_id?: string) => {
2328
+ declare const useGetGame: (_id?: string | null) => {
2329
2329
  error: _apollo_client.ApolloError | undefined;
2330
2330
  game: GameDocType | null;
2331
2331
  loading: boolean;
package/dist/index.mjs CHANGED
@@ -5774,7 +5774,7 @@ var GET_GAMES = gql29`
5774
5774
  ${GAME_DOC_FIELDS_FRAGMENT}
5775
5775
  `;
5776
5776
  var GET_GAME = gql29`
5777
- query getGame($_id: ID!) {
5777
+ query getGame($_id: ID) {
5778
5778
  game(_id: $_id) {
5779
5779
  ...GameDocFields
5780
5780
  }