@timardex/cluemart-shared 1.7.67 → 1.7.68
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/auth/index.cjs +2 -0
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/{chunk-6ALUN6LP.mjs → chunk-LMWIDQZ6.mjs} +3 -1
- package/dist/chunk-LMWIDQZ6.mjs.map +1 -0
- package/dist/{chunk-NDJ52M2N.mjs → chunk-LZG5WM4M.mjs} +5 -4
- package/dist/chunk-LZG5WM4M.mjs.map +1 -0
- package/dist/graphql/index.cjs +5 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +2 -2
- package/dist/hooks/index.cjs +2 -0
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-6ALUN6LP.mjs.map +0 -1
- package/dist/chunk-NDJ52M2N.mjs.map +0 -1
package/dist/hooks/index.mjs
CHANGED
|
@@ -23,8 +23,8 @@ import {
|
|
|
23
23
|
} from "../chunk-WS47NSTO.mjs";
|
|
24
24
|
import "../chunk-RAYUJODN.mjs";
|
|
25
25
|
import "../chunk-DQ7ZHIXW.mjs";
|
|
26
|
-
import "../chunk-
|
|
27
|
-
import "../chunk-
|
|
26
|
+
import "../chunk-LZG5WM4M.mjs";
|
|
27
|
+
import "../chunk-LMWIDQZ6.mjs";
|
|
28
28
|
import {
|
|
29
29
|
EnumEventDateStatus,
|
|
30
30
|
EnumEventType,
|
package/dist/index.cjs
CHANGED
|
@@ -4244,11 +4244,13 @@ var GET_EVENTS_BY_REGION = import_client2.gql`
|
|
|
4244
4244
|
$region: String!
|
|
4245
4245
|
$options: ResourcesByRegionOptions
|
|
4246
4246
|
$dateStatus: EventDateStatusEnumType
|
|
4247
|
+
$tags: [String]
|
|
4247
4248
|
) {
|
|
4248
4249
|
eventsByRegion(
|
|
4249
4250
|
region: $region
|
|
4250
4251
|
options: $options
|
|
4251
4252
|
dateStatus: $dateStatus
|
|
4253
|
+
tags: $tags
|
|
4252
4254
|
) {
|
|
4253
4255
|
...EventListItemFields
|
|
4254
4256
|
}
|
|
@@ -5948,11 +5950,12 @@ var useGetEventByPlaceId = (googlePlaceId) => {
|
|
|
5948
5950
|
const eventByPlaceId = data?.eventByPlaceId || null;
|
|
5949
5951
|
return { error, eventByPlaceId, loading, refetch };
|
|
5950
5952
|
};
|
|
5951
|
-
var useGetEventsByRegion = (region, options, dateStatus) => {
|
|
5953
|
+
var useGetEventsByRegion = (region, options, dateStatus, tags) => {
|
|
5952
5954
|
const variables = {
|
|
5953
5955
|
dateStatus,
|
|
5954
5956
|
options,
|
|
5955
|
-
region
|
|
5957
|
+
region,
|
|
5958
|
+
tags: (tags ?? []).filter(Boolean)
|
|
5956
5959
|
};
|
|
5957
5960
|
const { loading, error, data, refetch, fetchMore } = (0, import_client25.useQuery)(GET_EVENTS_BY_REGION, {
|
|
5958
5961
|
fetchPolicy: "network-only",
|