@timardex/cluemart-shared 1.3.92 → 1.3.93

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
@@ -1390,10 +1390,10 @@ declare const useGetEvent: (_id: string) => {
1390
1390
  };
1391
1391
  declare const useGetEventByPlaceId: (googlePlaceId: string) => {
1392
1392
  error: _apollo_client.ApolloError | undefined;
1393
- eventByPlaceId: EventType | null;
1393
+ eventByPlaceId: EventListItemType | null;
1394
1394
  loading: boolean;
1395
1395
  refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
1396
- eventByPlaceId: EventType | null;
1396
+ eventByPlaceId: EventListItemType | null;
1397
1397
  }>>;
1398
1398
  };
1399
1399
  declare const useGetEventsByRegion: (region: string, onlyClaimed?: boolean) => {
package/dist/index.d.ts CHANGED
@@ -1390,10 +1390,10 @@ declare const useGetEvent: (_id: string) => {
1390
1390
  };
1391
1391
  declare const useGetEventByPlaceId: (googlePlaceId: string) => {
1392
1392
  error: _apollo_client.ApolloError | undefined;
1393
- eventByPlaceId: EventType | null;
1393
+ eventByPlaceId: EventListItemType | null;
1394
1394
  loading: boolean;
1395
1395
  refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
1396
- eventByPlaceId: EventType | null;
1396
+ eventByPlaceId: EventListItemType | null;
1397
1397
  }>>;
1398
1398
  };
1399
1399
  declare const useGetEventsByRegion: (region: string, onlyClaimed?: boolean) => {
package/dist/index.mjs CHANGED
@@ -2623,10 +2623,10 @@ var GET_EVENT = gql3`
2623
2623
  var GET_EVENT_BY_PLACE_ID = gql3`
2624
2624
  query getEventByPlaceId($googlePlaceId: String!) {
2625
2625
  eventByPlaceId(googlePlaceId: $googlePlaceId) {
2626
- ...EventFields
2626
+ ...EventListItemFields
2627
2627
  }
2628
2628
  }
2629
- ${EVENT}
2629
+ ${EVENT_LIST_ITEM}
2630
2630
  `;
2631
2631
  var GET_EVENTS_BY_REGION = gql3`
2632
2632
  query getEventsByRegion($region: String!, $onlyClaimed: Boolean) {