@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/index.d.mts
CHANGED
|
@@ -791,9 +791,9 @@ declare const iconIds: readonly ["apple-maps-icon", "facebook", "google-maps-ico
|
|
|
791
791
|
declare const iconFiles: { readonly [K in (typeof iconIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
792
792
|
declare const badgeIds: readonly ["corporate", "private", "school"];
|
|
793
793
|
declare const badgeFiles: { readonly [K in (typeof badgeIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
794
|
-
declare const logoIds: readonly ["googleMaps-logo-dark", "googleMaps-logo-light", "logo", "logo-
|
|
794
|
+
declare const logoIds: readonly ["googleMaps-logo-dark", "googleMaps-logo-light", "logo-atr", "logo-dark", "logo"];
|
|
795
795
|
declare const logoFiles: { readonly [K in (typeof logoIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
796
|
-
declare const otherImagesIds: readonly ["banner-horizontal", "banner-vertical", "qr-code", "store-android", "store-ios"];
|
|
796
|
+
declare const otherImagesIds: readonly ["banner-horizontal", "banner-vertical", "gazebo-top", "qr-code", "store-android", "store-ios"];
|
|
797
797
|
declare const otherImagesFiles: { readonly [K in (typeof otherImagesIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
798
798
|
/**
|
|
799
799
|
* Module specifiers for each poster (not resolved file URLs). Use a static import or require with these paths
|
package/dist/index.d.ts
CHANGED
|
@@ -791,9 +791,9 @@ declare const iconIds: readonly ["apple-maps-icon", "facebook", "google-maps-ico
|
|
|
791
791
|
declare const iconFiles: { readonly [K in (typeof iconIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
792
792
|
declare const badgeIds: readonly ["corporate", "private", "school"];
|
|
793
793
|
declare const badgeFiles: { readonly [K in (typeof badgeIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
794
|
-
declare const logoIds: readonly ["googleMaps-logo-dark", "googleMaps-logo-light", "logo", "logo-
|
|
794
|
+
declare const logoIds: readonly ["googleMaps-logo-dark", "googleMaps-logo-light", "logo-atr", "logo-dark", "logo"];
|
|
795
795
|
declare const logoFiles: { readonly [K in (typeof logoIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
796
|
-
declare const otherImagesIds: readonly ["banner-horizontal", "banner-vertical", "qr-code", "store-android", "store-ios"];
|
|
796
|
+
declare const otherImagesIds: readonly ["banner-horizontal", "banner-vertical", "gazebo-top", "qr-code", "store-android", "store-ios"];
|
|
797
797
|
declare const otherImagesFiles: { readonly [K in (typeof otherImagesIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
798
798
|
/**
|
|
799
799
|
* Module specifiers for each poster (not resolved file URLs). Use a static import or require with these paths
|
package/dist/index.mjs
CHANGED
|
@@ -2902,10 +2902,7 @@ var GET_EVENT_BY_PLACE_ID = gql3`
|
|
|
2902
2902
|
${EVENT_LIST_ITEM}
|
|
2903
2903
|
`;
|
|
2904
2904
|
var GET_EVENTS_BY_REGION = gql3`
|
|
2905
|
-
query getEventsByRegion(
|
|
2906
|
-
$region: String!
|
|
2907
|
-
$options: ResourcesByRegionOptions
|
|
2908
|
-
) {
|
|
2905
|
+
query getEventsByRegion($region: String!, $options: EventsByRegionOptions) {
|
|
2909
2906
|
eventsByRegion(region: $region, options: $options) {
|
|
2910
2907
|
...EventListItemFields
|
|
2911
2908
|
}
|
|
@@ -2913,7 +2910,7 @@ var GET_EVENTS_BY_REGION = gql3`
|
|
|
2913
2910
|
${EVENT_LIST_ITEM}
|
|
2914
2911
|
`;
|
|
2915
2912
|
var SEARCH_EVENTS = gql3`
|
|
2916
|
-
query searchEvents($region: String, $search: String
|
|
2913
|
+
query searchEvents($region: String, $search: String,$tags: [String]) {
|
|
2917
2914
|
eventsSearch(region: $region, search: $search, tags: $tags) {
|
|
2918
2915
|
...EventListItemFields
|
|
2919
2916
|
}
|
|
@@ -3140,10 +3137,7 @@ var GET_VENDOR = gql4`
|
|
|
3140
3137
|
${VENDOR}
|
|
3141
3138
|
`;
|
|
3142
3139
|
var GET_VENDORS_BY_REGION = gql4`
|
|
3143
|
-
query getVendorsByRegion(
|
|
3144
|
-
$region: String!
|
|
3145
|
-
$options: ResourcesByRegionOptions
|
|
3146
|
-
) {
|
|
3140
|
+
query getVendorsByRegion($region: String!, $options: EventsByRegionOptions) {
|
|
3147
3141
|
vendorsByRegion(region: $region, options: $options) {
|
|
3148
3142
|
...VendorFields
|
|
3149
3143
|
}
|
|
@@ -3816,10 +3810,7 @@ var GET_PARTNER = gql11`
|
|
|
3816
3810
|
${PARTNER}
|
|
3817
3811
|
`;
|
|
3818
3812
|
var GET_PARTNERS_BY_REGION = gql11`
|
|
3819
|
-
query getPartnersByRegion(
|
|
3820
|
-
$region: String!
|
|
3821
|
-
$options: ResourcesByRegionOptions
|
|
3822
|
-
) {
|
|
3813
|
+
query getPartnersByRegion($region: String!, $options: EventsByRegionOptions) {
|
|
3823
3814
|
partnersByRegion(region: $region, options: $options) {
|
|
3824
3815
|
...PartnerFields
|
|
3825
3816
|
}
|
|
@@ -8492,8 +8483,9 @@ var badgeFiles = Object.fromEntries(
|
|
|
8492
8483
|
var logoIds = [
|
|
8493
8484
|
"googleMaps-logo-dark",
|
|
8494
8485
|
"googleMaps-logo-light",
|
|
8495
|
-
"logo",
|
|
8496
|
-
"logo-
|
|
8486
|
+
"logo-atr",
|
|
8487
|
+
"logo-dark",
|
|
8488
|
+
"logo"
|
|
8497
8489
|
];
|
|
8498
8490
|
var logoFiles = Object.fromEntries(
|
|
8499
8491
|
logoIds.map((id) => [id, `${id}${IMAGE_EXTENSION}`])
|
|
@@ -8501,6 +8493,7 @@ var logoFiles = Object.fromEntries(
|
|
|
8501
8493
|
var otherImagesIds = [
|
|
8502
8494
|
"banner-horizontal",
|
|
8503
8495
|
"banner-vertical",
|
|
8496
|
+
"gazebo-top",
|
|
8504
8497
|
"qr-code",
|
|
8505
8498
|
"store-android",
|
|
8506
8499
|
"store-ios"
|