@timardex/cluemart-shared 1.7.67 → 1.7.68

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.
@@ -23,8 +23,8 @@ import {
23
23
  } from "../chunk-WS47NSTO.mjs";
24
24
  import "../chunk-RAYUJODN.mjs";
25
25
  import "../chunk-DQ7ZHIXW.mjs";
26
- import "../chunk-NDJ52M2N.mjs";
27
- import "../chunk-6ALUN6LP.mjs";
26
+ import "../chunk-LZG5WM4M.mjs";
27
+ import "../chunk-LMWIDQZ6.mjs";
28
28
  import {
29
29
  EnumEventDateStatus,
30
30
  EnumEventType,
package/dist/index.cjs CHANGED
@@ -4244,11 +4244,13 @@ var GET_EVENTS_BY_REGION = import_client2.gql`
4244
4244
  $region: String!
4245
4245
  $options: ResourcesByRegionOptions
4246
4246
  $dateStatus: EventDateStatusEnumType
4247
+ $tags: [String]
4247
4248
  ) {
4248
4249
  eventsByRegion(
4249
4250
  region: $region
4250
4251
  options: $options
4251
4252
  dateStatus: $dateStatus
4253
+ tags: $tags
4252
4254
  ) {
4253
4255
  ...EventListItemFields
4254
4256
  }
@@ -5948,11 +5950,12 @@ var useGetEventByPlaceId = (googlePlaceId) => {
5948
5950
  const eventByPlaceId = data?.eventByPlaceId || null;
5949
5951
  return { error, eventByPlaceId, loading, refetch };
5950
5952
  };
5951
- var useGetEventsByRegion = (region, options, dateStatus) => {
5953
+ var useGetEventsByRegion = (region, options, dateStatus, tags) => {
5952
5954
  const variables = {
5953
5955
  dateStatus,
5954
5956
  options,
5955
- region
5957
+ region,
5958
+ tags: (tags ?? []).filter(Boolean)
5956
5959
  };
5957
5960
  const { loading, error, data, refetch, fetchMore } = (0, import_client25.useQuery)(GET_EVENTS_BY_REGION, {
5958
5961
  fetchPolicy: "network-only",