@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.
- package/dist/{chunk-RJRBWUHN.mjs → chunk-NMN2GAEP.mjs} +16 -7
- package/dist/chunk-NMN2GAEP.mjs.map +1 -0
- package/dist/graphql/index.cjs +15 -6
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +15 -6
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +15 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +15 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-RJRBWUHN.mjs.map +0 -1
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -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(
|
|
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
|
|
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(
|
|
2921
|
-
|
|
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(
|
|
3359
|
-
|
|
3364
|
+
query getPartnersByRegion(
|
|
3365
|
+
$region: String!
|
|
3366
|
+
$options: ResourcesByRegionOptions
|
|
3367
|
+
) {
|
|
3368
|
+
partnersByRegion(region: $region, options: $options) {
|
|
3360
3369
|
...PartnerFields
|
|
3361
3370
|
}
|
|
3362
3371
|
}
|