@timardex/cluemart-shared 1.5.634 → 1.5.635

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.
@@ -135,7 +135,7 @@ import {
135
135
  useUpdateVendor,
136
136
  useUpdateVendorInfo,
137
137
  useValidateVerificationToken
138
- } from "../chunk-RJRBWUHN.mjs";
138
+ } from "../chunk-NMN2GAEP.mjs";
139
139
  import "../chunk-JMOGW4IX.mjs";
140
140
  export {
141
141
  useAddParticipantToChat,
@@ -2682,7 +2682,10 @@ var GET_EVENT_BY_PLACE_ID = import_client3.gql`
2682
2682
  ${EVENT_LIST_ITEM}
2683
2683
  `;
2684
2684
  var GET_EVENTS_BY_REGION = import_client3.gql`
2685
- query getEventsByRegion($region: String!, $options: EventsByRegionOptions) {
2685
+ query getEventsByRegion(
2686
+ $region: String!
2687
+ $options: ResourcesByRegionOptions
2688
+ ) {
2686
2689
  eventsByRegion(region: $region, options: $options) {
2687
2690
  ...EventListItemFields
2688
2691
  }
@@ -2690,7 +2693,7 @@ var GET_EVENTS_BY_REGION = import_client3.gql`
2690
2693
  ${EVENT_LIST_ITEM}
2691
2694
  `;
2692
2695
  var SEARCH_EVENTS = import_client3.gql`
2693
- query searchEvents($region: String, $search: String,$tags: [String]) {
2696
+ query searchEvents($region: String, $search: String, $tags: [String]) {
2694
2697
  eventsSearch(region: $region, search: $search, tags: $tags) {
2695
2698
  ...EventListItemFields
2696
2699
  }
@@ -2917,8 +2920,11 @@ var GET_VENDOR = import_client4.gql`
2917
2920
  ${VENDOR}
2918
2921
  `;
2919
2922
  var GET_VENDORS_BY_REGION = import_client4.gql`
2920
- query getVendorsByRegion($region: String!) {
2921
- vendorsByRegion(region: $region) {
2923
+ query getVendorsByRegion(
2924
+ $region: String!
2925
+ $options: ResourcesByRegionOptions
2926
+ ) {
2927
+ vendorsByRegion(region: $region, options: $options) {
2922
2928
  ...VendorFields
2923
2929
  }
2924
2930
  }
@@ -3355,8 +3361,11 @@ var GET_PARTNER = import_client16.gql`
3355
3361
  ${PARTNER}
3356
3362
  `;
3357
3363
  var GET_PARTNERS_BY_REGION = import_client16.gql`
3358
- query getPartnersByRegion($region: String!) {
3359
- partnersByRegion(region: $region) {
3364
+ query getPartnersByRegion(
3365
+ $region: String!
3366
+ $options: ResourcesByRegionOptions
3367
+ ) {
3368
+ partnersByRegion(region: $region, options: $options) {
3360
3369
  ...PartnerFields
3361
3370
  }
3362
3371
  }