@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/index.mjs
CHANGED
|
@@ -2897,7 +2897,10 @@ var GET_EVENT_BY_PLACE_ID = gql3`
|
|
|
2897
2897
|
${EVENT_LIST_ITEM}
|
|
2898
2898
|
`;
|
|
2899
2899
|
var GET_EVENTS_BY_REGION = gql3`
|
|
2900
|
-
query getEventsByRegion(
|
|
2900
|
+
query getEventsByRegion(
|
|
2901
|
+
$region: String!
|
|
2902
|
+
$options: ResourcesByRegionOptions
|
|
2903
|
+
) {
|
|
2901
2904
|
eventsByRegion(region: $region, options: $options) {
|
|
2902
2905
|
...EventListItemFields
|
|
2903
2906
|
}
|
|
@@ -2905,7 +2908,7 @@ var GET_EVENTS_BY_REGION = gql3`
|
|
|
2905
2908
|
${EVENT_LIST_ITEM}
|
|
2906
2909
|
`;
|
|
2907
2910
|
var SEARCH_EVENTS = gql3`
|
|
2908
|
-
query searchEvents($region: String, $search: String
|
|
2911
|
+
query searchEvents($region: String, $search: String, $tags: [String]) {
|
|
2909
2912
|
eventsSearch(region: $region, search: $search, tags: $tags) {
|
|
2910
2913
|
...EventListItemFields
|
|
2911
2914
|
}
|
|
@@ -3132,8 +3135,11 @@ var GET_VENDOR = gql4`
|
|
|
3132
3135
|
${VENDOR}
|
|
3133
3136
|
`;
|
|
3134
3137
|
var GET_VENDORS_BY_REGION = gql4`
|
|
3135
|
-
query getVendorsByRegion(
|
|
3136
|
-
|
|
3138
|
+
query getVendorsByRegion(
|
|
3139
|
+
$region: String!
|
|
3140
|
+
$options: ResourcesByRegionOptions
|
|
3141
|
+
) {
|
|
3142
|
+
vendorsByRegion(region: $region, options: $options) {
|
|
3137
3143
|
...VendorFields
|
|
3138
3144
|
}
|
|
3139
3145
|
}
|
|
@@ -3805,8 +3811,11 @@ var GET_PARTNER = gql11`
|
|
|
3805
3811
|
${PARTNER}
|
|
3806
3812
|
`;
|
|
3807
3813
|
var GET_PARTNERS_BY_REGION = gql11`
|
|
3808
|
-
query getPartnersByRegion(
|
|
3809
|
-
|
|
3814
|
+
query getPartnersByRegion(
|
|
3815
|
+
$region: String!
|
|
3816
|
+
$options: ResourcesByRegionOptions
|
|
3817
|
+
) {
|
|
3818
|
+
partnersByRegion(region: $region, options: $options) {
|
|
3810
3819
|
...PartnerFields
|
|
3811
3820
|
}
|
|
3812
3821
|
}
|