@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/hooks/index.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -3292,7 +3292,10 @@ var GET_EVENT_BY_PLACE_ID = import_client3.gql`
|
|
|
3292
3292
|
${EVENT_LIST_ITEM}
|
|
3293
3293
|
`;
|
|
3294
3294
|
var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
3295
|
-
query getEventsByRegion(
|
|
3295
|
+
query getEventsByRegion(
|
|
3296
|
+
$region: String!
|
|
3297
|
+
$options: ResourcesByRegionOptions
|
|
3298
|
+
) {
|
|
3296
3299
|
eventsByRegion(region: $region, options: $options) {
|
|
3297
3300
|
...EventListItemFields
|
|
3298
3301
|
}
|
|
@@ -3300,7 +3303,7 @@ var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
|
3300
3303
|
${EVENT_LIST_ITEM}
|
|
3301
3304
|
`;
|
|
3302
3305
|
var SEARCH_EVENTS = import_client3.gql`
|
|
3303
|
-
query searchEvents($region: String, $search: String
|
|
3306
|
+
query searchEvents($region: String, $search: String, $tags: [String]) {
|
|
3304
3307
|
eventsSearch(region: $region, search: $search, tags: $tags) {
|
|
3305
3308
|
...EventListItemFields
|
|
3306
3309
|
}
|
|
@@ -3527,8 +3530,11 @@ var GET_VENDOR = import_client4.gql`
|
|
|
3527
3530
|
${VENDOR}
|
|
3528
3531
|
`;
|
|
3529
3532
|
var GET_VENDORS_BY_REGION = import_client4.gql`
|
|
3530
|
-
query getVendorsByRegion(
|
|
3531
|
-
|
|
3533
|
+
query getVendorsByRegion(
|
|
3534
|
+
$region: String!
|
|
3535
|
+
$options: ResourcesByRegionOptions
|
|
3536
|
+
) {
|
|
3537
|
+
vendorsByRegion(region: $region, options: $options) {
|
|
3532
3538
|
...VendorFields
|
|
3533
3539
|
}
|
|
3534
3540
|
}
|
|
@@ -4200,8 +4206,11 @@ var GET_PARTNER = import_client16.gql`
|
|
|
4200
4206
|
${PARTNER}
|
|
4201
4207
|
`;
|
|
4202
4208
|
var GET_PARTNERS_BY_REGION = import_client16.gql`
|
|
4203
|
-
query getPartnersByRegion(
|
|
4204
|
-
|
|
4209
|
+
query getPartnersByRegion(
|
|
4210
|
+
$region: String!
|
|
4211
|
+
$options: ResourcesByRegionOptions
|
|
4212
|
+
) {
|
|
4213
|
+
partnersByRegion(region: $region, options: $options) {
|
|
4205
4214
|
...PartnerFields
|
|
4206
4215
|
}
|
|
4207
4216
|
}
|