@timardex/cluemart-shared 1.5.545 → 1.5.547
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-G2YFRN6A.mjs → chunk-QEG3EGM6.mjs} +6 -6
- package/dist/chunk-QEG3EGM6.mjs.map +1 -0
- package/dist/graphql/index.cjs +5 -5
- 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 +1 -1
- package/dist/hooks/index.cjs +2 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +5 -5
- 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 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-G2YFRN6A.mjs.map +0 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -295,7 +295,7 @@ declare const useGetEventsByRegion: (region: string, options?: UseGetEventsByReg
|
|
|
295
295
|
eventsByRegion: EventListItemType[];
|
|
296
296
|
}>>;
|
|
297
297
|
};
|
|
298
|
-
declare const useSearchEvents: (
|
|
298
|
+
declare const useSearchEvents: (region: string, search?: string, tags?: string[]) => {
|
|
299
299
|
error: _apollo_client.ApolloError | undefined;
|
|
300
300
|
eventsSearch: EventListItemType[];
|
|
301
301
|
loading: boolean;
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -295,7 +295,7 @@ declare const useGetEventsByRegion: (region: string, options?: UseGetEventsByReg
|
|
|
295
295
|
eventsByRegion: EventListItemType[];
|
|
296
296
|
}>>;
|
|
297
297
|
};
|
|
298
|
-
declare const useSearchEvents: (
|
|
298
|
+
declare const useSearchEvents: (region: string, search?: string, tags?: string[]) => {
|
|
299
299
|
error: _apollo_client.ApolloError | undefined;
|
|
300
300
|
eventsSearch: EventListItemType[];
|
|
301
301
|
loading: boolean;
|
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -2677,8 +2677,8 @@ var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
|
2677
2677
|
${EVENT_LIST_ITEM}
|
|
2678
2678
|
`;
|
|
2679
2679
|
var SEARCH_EVENTS = import_client3.gql`
|
|
2680
|
-
query searchEvents($
|
|
2681
|
-
eventsSearch(search: $search,
|
|
2680
|
+
query searchEvents($region: String, $search: String,$tags: [String]) {
|
|
2681
|
+
eventsSearch(region: $region, search: $search, tags: $tags) {
|
|
2682
2682
|
...EventListItemFields
|
|
2683
2683
|
}
|
|
2684
2684
|
}
|