@timardex/cluemart-shared 1.5.636 → 1.5.638
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-JGYYSRJT.mjs → chunk-NPFJ2CN2.mjs} +5 -3
- package/dist/chunk-NPFJ2CN2.mjs.map +1 -0
- package/dist/{chunk-NMN2GAEP.mjs → chunk-Q6R4US6G.mjs} +5 -14
- package/dist/chunk-Q6R4US6G.mjs.map +1 -0
- package/dist/graphql/index.cjs +4 -13
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +8 -15
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/images/gazebo-top.webp +0 -0
- package/dist/images/gazebo-top.webp.d.ts +2 -0
- package/dist/images/index.cjs +4 -2
- package/dist/images/index.cjs.map +1 -1
- package/dist/images/index.d.mts +2 -2
- package/dist/images/index.d.ts +2 -2
- package/dist/images/index.mjs +1 -1
- package/dist/images/logo-dark.webp +0 -0
- package/dist/images/logo-dark.webp.d.ts +2 -0
- package/dist/index.cjs +8 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +8 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-JGYYSRJT.mjs.map +0 -1
- package/dist/chunk-NMN2GAEP.mjs.map +0 -1
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -2687,10 +2687,7 @@ var GET_EVENT_BY_PLACE_ID = import_client3.gql`
|
|
|
2687
2687
|
${EVENT_LIST_ITEM}
|
|
2688
2688
|
`;
|
|
2689
2689
|
var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
2690
|
-
query getEventsByRegion(
|
|
2691
|
-
$region: String!
|
|
2692
|
-
$options: ResourcesByRegionOptions
|
|
2693
|
-
) {
|
|
2690
|
+
query getEventsByRegion($region: String!, $options: EventsByRegionOptions) {
|
|
2694
2691
|
eventsByRegion(region: $region, options: $options) {
|
|
2695
2692
|
...EventListItemFields
|
|
2696
2693
|
}
|
|
@@ -2698,7 +2695,7 @@ var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
|
2698
2695
|
${EVENT_LIST_ITEM}
|
|
2699
2696
|
`;
|
|
2700
2697
|
var SEARCH_EVENTS = import_client3.gql`
|
|
2701
|
-
query searchEvents($region: String, $search: String
|
|
2698
|
+
query searchEvents($region: String, $search: String,$tags: [String]) {
|
|
2702
2699
|
eventsSearch(region: $region, search: $search, tags: $tags) {
|
|
2703
2700
|
...EventListItemFields
|
|
2704
2701
|
}
|
|
@@ -2925,10 +2922,7 @@ var GET_VENDOR = import_client4.gql`
|
|
|
2925
2922
|
${VENDOR}
|
|
2926
2923
|
`;
|
|
2927
2924
|
var GET_VENDORS_BY_REGION = import_client4.gql`
|
|
2928
|
-
query getVendorsByRegion(
|
|
2929
|
-
$region: String!
|
|
2930
|
-
$options: ResourcesByRegionOptions
|
|
2931
|
-
) {
|
|
2925
|
+
query getVendorsByRegion($region: String!, $options: EventsByRegionOptions) {
|
|
2932
2926
|
vendorsByRegion(region: $region, options: $options) {
|
|
2933
2927
|
...VendorFields
|
|
2934
2928
|
}
|
|
@@ -3366,10 +3360,7 @@ var GET_PARTNER = import_client16.gql`
|
|
|
3366
3360
|
${PARTNER}
|
|
3367
3361
|
`;
|
|
3368
3362
|
var GET_PARTNERS_BY_REGION = import_client16.gql`
|
|
3369
|
-
query getPartnersByRegion(
|
|
3370
|
-
$region: String!
|
|
3371
|
-
$options: ResourcesByRegionOptions
|
|
3372
|
-
) {
|
|
3363
|
+
query getPartnersByRegion($region: String!, $options: EventsByRegionOptions) {
|
|
3373
3364
|
partnersByRegion(region: $region, options: $options) {
|
|
3374
3365
|
...PartnerFields
|
|
3375
3366
|
}
|
|
@@ -4758,8 +4749,9 @@ var badgeFiles = Object.fromEntries(
|
|
|
4758
4749
|
var logoIds = [
|
|
4759
4750
|
"googleMaps-logo-dark",
|
|
4760
4751
|
"googleMaps-logo-light",
|
|
4761
|
-
"logo",
|
|
4762
|
-
"logo-
|
|
4752
|
+
"logo-atr",
|
|
4753
|
+
"logo-dark",
|
|
4754
|
+
"logo"
|
|
4763
4755
|
];
|
|
4764
4756
|
var logoFiles = Object.fromEntries(
|
|
4765
4757
|
logoIds.map((id) => [id, `${id}${IMAGE_EXTENSION}`])
|
|
@@ -4767,6 +4759,7 @@ var logoFiles = Object.fromEntries(
|
|
|
4767
4759
|
var otherImagesIds = [
|
|
4768
4760
|
"banner-horizontal",
|
|
4769
4761
|
"banner-vertical",
|
|
4762
|
+
"gazebo-top",
|
|
4770
4763
|
"qr-code",
|
|
4771
4764
|
"store-android",
|
|
4772
4765
|
"store-ios"
|