@timardex/cluemart-shared 1.3.68 → 1.3.70
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-Cp-vzzpW.d.mts → auth-D72tKUrK.d.mts} +1 -1
- package/dist/{auth-BD8pG4QE.d.ts → auth-XiA_tJLF.d.ts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-DjZooB3t.d.mts → global-CbccsHaO.d.mts} +16 -9
- package/dist/{global-BKEcBQxZ.d.ts → global-tKKfQw2k.d.ts} +16 -9
- package/dist/graphql/index.cjs +62 -204
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +13 -47
- package/dist/graphql/index.d.ts +13 -47
- package/dist/graphql/index.mjs +62 -200
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/index.cjs +62 -204
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +25 -52
- package/dist/index.d.ts +25 -52
- package/dist/index.mjs +62 -200
- package/dist/index.mjs.map +1 -1
- package/dist/{post-DHDZfAmJ.d.mts → post-B_FljglL.d.mts} +1 -1
- package/dist/{post-Bwr2i2Qq.d.ts → post-DQPe7Dsu.d.ts} +1 -1
- package/dist/{googleImportedMarket-6kBUp2yE.d.mts → resourceActivities-CJRTZROh.d.mts} +1 -43
- package/dist/{googleImportedMarket-Ckdoji3C.d.ts → resourceActivities-CVwxvGeC.d.ts} +1 -43
- package/dist/types/index.d.mts +47 -5
- package/dist/types/index.d.ts +47 -5
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -272,22 +272,29 @@ interface EventType extends BaseResourceType {
|
|
|
272
272
|
relationDates: RelationDate[] | null;
|
|
273
273
|
}[] | null;
|
|
274
274
|
}
|
|
275
|
-
|
|
276
|
-
_id: string;
|
|
277
|
-
};
|
|
278
|
-
type UserActivityEventType = {
|
|
275
|
+
interface EventListItemType {
|
|
279
276
|
_id: string;
|
|
280
277
|
active: boolean;
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
278
|
+
claimed: boolean;
|
|
279
|
+
cover?: ResourceImageType | null;
|
|
280
|
+
createdAt: Date;
|
|
281
|
+
dateTime: DateTimeType[];
|
|
282
|
+
deletedAt: Date | null;
|
|
283
|
+
description?: string | null;
|
|
284
284
|
eventType: EnumEventType;
|
|
285
|
+
googlePlaceId?: string | null;
|
|
286
|
+
images?: ResourceImageType[] | null;
|
|
285
287
|
location: LocationType;
|
|
286
288
|
logo?: ResourceImageType | null;
|
|
287
289
|
name: string;
|
|
288
290
|
rainOrShine: boolean;
|
|
291
|
+
rating?: number | null;
|
|
289
292
|
region: string;
|
|
290
|
-
|
|
293
|
+
reviewCount?: number | null;
|
|
294
|
+
updatedAt: Date | null;
|
|
295
|
+
}
|
|
296
|
+
type EventInfoType = Omit<EventInfoFormData, "_id"> & {
|
|
297
|
+
_id: string;
|
|
291
298
|
};
|
|
292
299
|
|
|
293
300
|
type VendorLocation = {
|
|
@@ -1765,13 +1772,13 @@ declare const useGetUserActivities: () => {
|
|
|
1765
1772
|
vendors: VendorType[];
|
|
1766
1773
|
};
|
|
1767
1774
|
going: {
|
|
1768
|
-
events:
|
|
1775
|
+
events: EventListItemType[];
|
|
1769
1776
|
};
|
|
1770
1777
|
interested: {
|
|
1771
|
-
events:
|
|
1778
|
+
events: EventListItemType[];
|
|
1772
1779
|
};
|
|
1773
1780
|
present: {
|
|
1774
|
-
events:
|
|
1781
|
+
events: EventListItemType[];
|
|
1775
1782
|
};
|
|
1776
1783
|
};
|
|
1777
1784
|
}>>;
|
|
@@ -1781,13 +1788,13 @@ declare const useGetUserActivities: () => {
|
|
|
1781
1788
|
vendors: VendorType[];
|
|
1782
1789
|
};
|
|
1783
1790
|
going: {
|
|
1784
|
-
events:
|
|
1791
|
+
events: EventListItemType[];
|
|
1785
1792
|
};
|
|
1786
1793
|
interested: {
|
|
1787
|
-
events:
|
|
1794
|
+
events: EventListItemType[];
|
|
1788
1795
|
};
|
|
1789
1796
|
present: {
|
|
1790
|
-
events:
|
|
1797
|
+
events: EventListItemType[];
|
|
1791
1798
|
};
|
|
1792
1799
|
};
|
|
1793
1800
|
};
|
|
@@ -1992,16 +1999,6 @@ declare const useUpdateAppSettings: () => {
|
|
|
1992
1999
|
loading: boolean;
|
|
1993
2000
|
updateAppSettings: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1994
2001
|
};
|
|
1995
|
-
|
|
1996
|
-
declare const useGetAppSettings: () => {
|
|
1997
|
-
appSettings: AppSettingsType | null;
|
|
1998
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1999
|
-
loading: boolean;
|
|
2000
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2001
|
-
appSettings: AppSettingsType;
|
|
2002
|
-
}>>;
|
|
2003
|
-
};
|
|
2004
|
-
|
|
2005
2002
|
declare const useCrawlGoogleMarkets: () => {
|
|
2006
2003
|
crawlGoogleMarkets: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2007
2004
|
crawlGoogleMarkets: {
|
|
@@ -2016,36 +2013,12 @@ declare const useCrawlGoogleMarkets: () => {
|
|
|
2016
2013
|
loading: boolean;
|
|
2017
2014
|
};
|
|
2018
2015
|
|
|
2019
|
-
declare const
|
|
2020
|
-
|
|
2021
|
-
googleImportedMarkets: GoogleImportedMarket[];
|
|
2022
|
-
loading: boolean;
|
|
2023
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2024
|
-
googleImportedMarkets: GoogleImportedMarket[];
|
|
2025
|
-
}>>;
|
|
2026
|
-
};
|
|
2027
|
-
declare const useGetGoogleImportedMarketsByRegion: (region: string) => {
|
|
2028
|
-
error: _apollo_client.ApolloError | undefined;
|
|
2029
|
-
googleImportedMarketsByRegion: GoogleImportedMarket[];
|
|
2030
|
-
loading: boolean;
|
|
2031
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2032
|
-
googleImportedMarketsByRegion: GoogleImportedMarket[];
|
|
2033
|
-
}>>;
|
|
2034
|
-
};
|
|
2035
|
-
declare const useSearchGoogleImportedMarkets: (search: string, region: string) => {
|
|
2036
|
-
error: _apollo_client.ApolloError | undefined;
|
|
2037
|
-
googleImportedMarketsSearch: GoogleImportedMarket[];
|
|
2038
|
-
loading: boolean;
|
|
2039
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2040
|
-
googleImportedMarketsSearch: GoogleImportedMarket[];
|
|
2041
|
-
}>>;
|
|
2042
|
-
};
|
|
2043
|
-
declare const useGetGoogleImportedMarketsNearMe: (latitude: number, longitude: number, radius?: number) => {
|
|
2016
|
+
declare const useGetAppSettings: () => {
|
|
2017
|
+
appSettings: AppSettingsType | null;
|
|
2044
2018
|
error: _apollo_client.ApolloError | undefined;
|
|
2045
|
-
googleImportedMarketsNearMe: GoogleImportedMarket[];
|
|
2046
2019
|
loading: boolean;
|
|
2047
2020
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2048
|
-
|
|
2021
|
+
appSettings: AppSettingsType;
|
|
2049
2022
|
}>>;
|
|
2050
2023
|
};
|
|
2051
2024
|
|
|
@@ -2245,4 +2218,4 @@ declare function normalizeUrl(url: string): string;
|
|
|
2245
2218
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2246
2219
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2247
2220
|
|
|
2248
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTesterFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type GoogleAddressComponent, type GoogleImportedMarket, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, OrganizedMarketCount, OrganizerMarketFrequency, type OwnerType, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentCover, type PostContentData, type PostContentFormData, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostType, type PosterInputType, type PosterUsageType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionStatusData, type TermsAgreement, type TesterEvent, type TesterFormData, type TesterType, type TesterVendor, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UserActivity, type UserActivityEvent, type
|
|
2221
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTesterFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type GoogleAddressComponent, type GoogleImportedMarket, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, OrganizedMarketCount, OrganizerMarketFrequency, type OwnerType, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentCover, type PostContentData, type PostContentFormData, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostType, type PosterInputType, type PosterUsageType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionStatusData, type TermsAgreement, type TesterEvent, type TesterFormData, type TesterType, type TesterVendor, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorLocation, type VendorMenuType, VendorSellingFrequency, type VendorType, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultPartnerFormValues, defaultRegion, defaultUnregisteredVendorFormValues, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, licenseNiceNames, lightColors, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, producedIngOptions, productLabelGroups, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, testersFields, timeFormat, toNZTime, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminResendTesterVerificationEmail, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAdminUpdateTester, useAppSettingsForm, useCancelSubscription, useContactUs, useContactUsForm, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteTester, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetAppSettings, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivity, useGetResourceConnections, useGetSubscriptionStatus, useGetTester, useGetTesters, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSendChatMessage, useTesterForm, useUpdateAd, useUpdateAppSettings, useUpdateEvent, useUpdateEventInfo, useUpdatePartner, useUpdatePost, useUpdateRelation, useUpdateSubscriptionPlan, useUpdateTester, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorMultiLocation, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|
package/dist/index.d.ts
CHANGED
|
@@ -272,22 +272,29 @@ interface EventType extends BaseResourceType {
|
|
|
272
272
|
relationDates: RelationDate[] | null;
|
|
273
273
|
}[] | null;
|
|
274
274
|
}
|
|
275
|
-
|
|
276
|
-
_id: string;
|
|
277
|
-
};
|
|
278
|
-
type UserActivityEventType = {
|
|
275
|
+
interface EventListItemType {
|
|
279
276
|
_id: string;
|
|
280
277
|
active: boolean;
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
278
|
+
claimed: boolean;
|
|
279
|
+
cover?: ResourceImageType | null;
|
|
280
|
+
createdAt: Date;
|
|
281
|
+
dateTime: DateTimeType[];
|
|
282
|
+
deletedAt: Date | null;
|
|
283
|
+
description?: string | null;
|
|
284
284
|
eventType: EnumEventType;
|
|
285
|
+
googlePlaceId?: string | null;
|
|
286
|
+
images?: ResourceImageType[] | null;
|
|
285
287
|
location: LocationType;
|
|
286
288
|
logo?: ResourceImageType | null;
|
|
287
289
|
name: string;
|
|
288
290
|
rainOrShine: boolean;
|
|
291
|
+
rating?: number | null;
|
|
289
292
|
region: string;
|
|
290
|
-
|
|
293
|
+
reviewCount?: number | null;
|
|
294
|
+
updatedAt: Date | null;
|
|
295
|
+
}
|
|
296
|
+
type EventInfoType = Omit<EventInfoFormData, "_id"> & {
|
|
297
|
+
_id: string;
|
|
291
298
|
};
|
|
292
299
|
|
|
293
300
|
type VendorLocation = {
|
|
@@ -1765,13 +1772,13 @@ declare const useGetUserActivities: () => {
|
|
|
1765
1772
|
vendors: VendorType[];
|
|
1766
1773
|
};
|
|
1767
1774
|
going: {
|
|
1768
|
-
events:
|
|
1775
|
+
events: EventListItemType[];
|
|
1769
1776
|
};
|
|
1770
1777
|
interested: {
|
|
1771
|
-
events:
|
|
1778
|
+
events: EventListItemType[];
|
|
1772
1779
|
};
|
|
1773
1780
|
present: {
|
|
1774
|
-
events:
|
|
1781
|
+
events: EventListItemType[];
|
|
1775
1782
|
};
|
|
1776
1783
|
};
|
|
1777
1784
|
}>>;
|
|
@@ -1781,13 +1788,13 @@ declare const useGetUserActivities: () => {
|
|
|
1781
1788
|
vendors: VendorType[];
|
|
1782
1789
|
};
|
|
1783
1790
|
going: {
|
|
1784
|
-
events:
|
|
1791
|
+
events: EventListItemType[];
|
|
1785
1792
|
};
|
|
1786
1793
|
interested: {
|
|
1787
|
-
events:
|
|
1794
|
+
events: EventListItemType[];
|
|
1788
1795
|
};
|
|
1789
1796
|
present: {
|
|
1790
|
-
events:
|
|
1797
|
+
events: EventListItemType[];
|
|
1791
1798
|
};
|
|
1792
1799
|
};
|
|
1793
1800
|
};
|
|
@@ -1992,16 +1999,6 @@ declare const useUpdateAppSettings: () => {
|
|
|
1992
1999
|
loading: boolean;
|
|
1993
2000
|
updateAppSettings: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1994
2001
|
};
|
|
1995
|
-
|
|
1996
|
-
declare const useGetAppSettings: () => {
|
|
1997
|
-
appSettings: AppSettingsType | null;
|
|
1998
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1999
|
-
loading: boolean;
|
|
2000
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2001
|
-
appSettings: AppSettingsType;
|
|
2002
|
-
}>>;
|
|
2003
|
-
};
|
|
2004
|
-
|
|
2005
2002
|
declare const useCrawlGoogleMarkets: () => {
|
|
2006
2003
|
crawlGoogleMarkets: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2007
2004
|
crawlGoogleMarkets: {
|
|
@@ -2016,36 +2013,12 @@ declare const useCrawlGoogleMarkets: () => {
|
|
|
2016
2013
|
loading: boolean;
|
|
2017
2014
|
};
|
|
2018
2015
|
|
|
2019
|
-
declare const
|
|
2020
|
-
|
|
2021
|
-
googleImportedMarkets: GoogleImportedMarket[];
|
|
2022
|
-
loading: boolean;
|
|
2023
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2024
|
-
googleImportedMarkets: GoogleImportedMarket[];
|
|
2025
|
-
}>>;
|
|
2026
|
-
};
|
|
2027
|
-
declare const useGetGoogleImportedMarketsByRegion: (region: string) => {
|
|
2028
|
-
error: _apollo_client.ApolloError | undefined;
|
|
2029
|
-
googleImportedMarketsByRegion: GoogleImportedMarket[];
|
|
2030
|
-
loading: boolean;
|
|
2031
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2032
|
-
googleImportedMarketsByRegion: GoogleImportedMarket[];
|
|
2033
|
-
}>>;
|
|
2034
|
-
};
|
|
2035
|
-
declare const useSearchGoogleImportedMarkets: (search: string, region: string) => {
|
|
2036
|
-
error: _apollo_client.ApolloError | undefined;
|
|
2037
|
-
googleImportedMarketsSearch: GoogleImportedMarket[];
|
|
2038
|
-
loading: boolean;
|
|
2039
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2040
|
-
googleImportedMarketsSearch: GoogleImportedMarket[];
|
|
2041
|
-
}>>;
|
|
2042
|
-
};
|
|
2043
|
-
declare const useGetGoogleImportedMarketsNearMe: (latitude: number, longitude: number, radius?: number) => {
|
|
2016
|
+
declare const useGetAppSettings: () => {
|
|
2017
|
+
appSettings: AppSettingsType | null;
|
|
2044
2018
|
error: _apollo_client.ApolloError | undefined;
|
|
2045
|
-
googleImportedMarketsNearMe: GoogleImportedMarket[];
|
|
2046
2019
|
loading: boolean;
|
|
2047
2020
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2048
|
-
|
|
2021
|
+
appSettings: AppSettingsType;
|
|
2049
2022
|
}>>;
|
|
2050
2023
|
};
|
|
2051
2024
|
|
|
@@ -2245,4 +2218,4 @@ declare function normalizeUrl(url: string): string;
|
|
|
2245
2218
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2246
2219
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2247
2220
|
|
|
2248
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTesterFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type GoogleAddressComponent, type GoogleImportedMarket, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, OrganizedMarketCount, OrganizerMarketFrequency, type OwnerType, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentCover, type PostContentData, type PostContentFormData, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostType, type PosterInputType, type PosterUsageType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionStatusData, type TermsAgreement, type TesterEvent, type TesterFormData, type TesterType, type TesterVendor, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UserActivity, type UserActivityEvent, type
|
|
2221
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTesterFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type GoogleAddressComponent, type GoogleImportedMarket, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, OrganizedMarketCount, OrganizerMarketFrequency, type OwnerType, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentCover, type PostContentData, type PostContentFormData, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostType, type PosterInputType, type PosterUsageType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionStatusData, type TermsAgreement, type TesterEvent, type TesterFormData, type TesterType, type TesterVendor, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorLocation, type VendorMenuType, VendorSellingFrequency, type VendorType, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultPartnerFormValues, defaultRegion, defaultUnregisteredVendorFormValues, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, licenseNiceNames, lightColors, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, producedIngOptions, productLabelGroups, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, testersFields, timeFormat, toNZTime, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminResendTesterVerificationEmail, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAdminUpdateTester, useAppSettingsForm, useCancelSubscription, useContactUs, useContactUsForm, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteTester, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetAppSettings, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivity, useGetResourceConnections, useGetSubscriptionStatus, useGetTester, useGetTesters, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSendChatMessage, useTesterForm, useUpdateAd, useUpdateAppSettings, useUpdateEvent, useUpdateEventInfo, useUpdatePartner, useUpdatePost, useUpdateRelation, useUpdateSubscriptionPlan, useUpdateTester, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorMultiLocation, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|