@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/graphql/index.d.mts
CHANGED
|
@@ -337,7 +337,7 @@ declare const useGetEventByPlaceId: (googlePlaceId: string) => {
|
|
|
337
337
|
eventByPlaceId: EventListItemType | null;
|
|
338
338
|
}>>;
|
|
339
339
|
};
|
|
340
|
-
declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus) => {
|
|
340
|
+
declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus, tags?: string[]) => {
|
|
341
341
|
error: _apollo_client.ApolloError | undefined;
|
|
342
342
|
eventsByRegion: EventListItemType[];
|
|
343
343
|
fetchMore: <TFetchData = {
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -337,7 +337,7 @@ declare const useGetEventByPlaceId: (googlePlaceId: string) => {
|
|
|
337
337
|
eventByPlaceId: EventListItemType | null;
|
|
338
338
|
}>>;
|
|
339
339
|
};
|
|
340
|
-
declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus) => {
|
|
340
|
+
declare const useGetEventsByRegion: (region: string, options?: UseGetResourcesByRegionOptions, dateStatus?: EnumEventDateStatus, tags?: string[]) => {
|
|
341
341
|
error: _apollo_client.ApolloError | undefined;
|
|
342
342
|
eventsByRegion: EventListItemType[];
|
|
343
343
|
fetchMore: <TFetchData = {
|
package/dist/graphql/index.mjs
CHANGED
|
@@ -148,7 +148,7 @@ import {
|
|
|
148
148
|
useUpdateUser,
|
|
149
149
|
useUpdateVendor,
|
|
150
150
|
useUpdateVendorInfo
|
|
151
|
-
} from "../chunk-
|
|
151
|
+
} from "../chunk-LZG5WM4M.mjs";
|
|
152
152
|
import {
|
|
153
153
|
GET_EVENT,
|
|
154
154
|
GET_EVENT_INFO,
|
|
@@ -170,7 +170,7 @@ import {
|
|
|
170
170
|
useRequestPasswordReset,
|
|
171
171
|
useResetPassword,
|
|
172
172
|
useValidateVerificationToken
|
|
173
|
-
} from "../chunk-
|
|
173
|
+
} from "../chunk-LMWIDQZ6.mjs";
|
|
174
174
|
import "../chunk-X3OLM35T.mjs";
|
|
175
175
|
export {
|
|
176
176
|
ACTIVATE_VENDOR_CLAIM_MUTATION,
|
package/dist/hooks/index.cjs
CHANGED
|
@@ -2956,11 +2956,13 @@ var GET_EVENTS_BY_REGION = import_client2.gql`
|
|
|
2956
2956
|
$region: String!
|
|
2957
2957
|
$options: ResourcesByRegionOptions
|
|
2958
2958
|
$dateStatus: EventDateStatusEnumType
|
|
2959
|
+
$tags: [String]
|
|
2959
2960
|
) {
|
|
2960
2961
|
eventsByRegion(
|
|
2961
2962
|
region: $region
|
|
2962
2963
|
options: $options
|
|
2963
2964
|
dateStatus: $dateStatus
|
|
2965
|
+
tags: $tags
|
|
2964
2966
|
) {
|
|
2965
2967
|
...EventListItemFields
|
|
2966
2968
|
}
|