@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.
@@ -337,7 +337,7 @@ declare const useGetEventByPlaceId: (googlePlaceId: string) => {
337
337
  eventByPlaceId: EventListItemType | null;
338
338
  }>>;
339
339
  };
340
- declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus) => {
340
+ declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus, tags?: string[]) => {
341
341
  error: _apollo_client.ApolloError | undefined;
342
342
  eventsByRegion: EventListItemType[];
343
343
  fetchMore: <TFetchData = {
@@ -337,7 +337,7 @@ declare const useGetEventByPlaceId: (googlePlaceId: string) => {
337
337
  eventByPlaceId: EventListItemType | null;
338
338
  }>>;
339
339
  };
340
- declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus) => {
340
+ declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus, tags?: string[]) => {
341
341
  error: _apollo_client.ApolloError | undefined;
342
342
  eventsByRegion: EventListItemType[];
343
343
  fetchMore: <TFetchData = {
@@ -148,7 +148,7 @@ import {
148
148
  useUpdateUser,
149
149
  useUpdateVendor,
150
150
  useUpdateVendorInfo
151
- } from "../chunk-NDJ52M2N.mjs";
151
+ } from "../chunk-LZG5WM4M.mjs";
152
152
  import {
153
153
  GET_EVENT,
154
154
  GET_EVENT_INFO,
@@ -170,7 +170,7 @@ import {
170
170
  useRequestPasswordReset,
171
171
  useResetPassword,
172
172
  useValidateVerificationToken
173
- } from "../chunk-6ALUN6LP.mjs";
173
+ } from "../chunk-LMWIDQZ6.mjs";
174
174
  import "../chunk-X3OLM35T.mjs";
175
175
  export {
176
176
  ACTIVATE_VENDOR_CLAIM_MUTATION,
@@ -2956,11 +2956,13 @@ var GET_EVENTS_BY_REGION = import_client2.gql`
2956
2956
  $region: String!
2957
2957
  $options: ResourcesByRegionOptions
2958
2958
  $dateStatus: EventDateStatusEnumType
2959
+ $tags: [String]
2959
2960
  ) {
2960
2961
  eventsByRegion(
2961
2962
  region: $region
2962
2963
  options: $options
2963
2964
  dateStatus: $dateStatus
2965
+ tags: $tags
2964
2966
  ) {
2965
2967
  ...EventListItemFields
2966
2968
  }