@timardex/cluemart-shared 1.3.46 → 1.3.48
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-B8Belf-h.d.ts → auth-BD8pG4QE.d.ts} +1 -1
- package/dist/{auth-CvNBSPXa.d.mts → auth-Cp-vzzpW.d.mts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-DM9eKgbE.d.ts → global-BKEcBQxZ.d.ts} +20 -1
- package/dist/{global-BN1zcCyz.d.mts → global-DjZooB3t.d.mts} +20 -1
- package/dist/graphql/index.cjs +186 -47
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +61 -25
- package/dist/graphql/index.d.ts +61 -25
- package/dist/graphql/index.mjs +179 -46
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +22 -0
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +5 -4
- package/dist/hooks/index.d.ts +5 -4
- package/dist/hooks/index.mjs +21 -0
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +208 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +79 -23
- package/dist/index.d.ts +79 -23
- package/dist/index.mjs +200 -46
- package/dist/index.mjs.map +1 -1
- package/dist/{post-CdrU9ts5.d.mts → post-CLTR6oRS.d.mts} +1 -1
- package/dist/{post-Dwg8-Ybg.d.ts → post-D83V8snF.d.ts} +1 -1
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- 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
|
@@ -373,6 +373,25 @@ interface VendorType extends BaseResourceType {
|
|
|
373
373
|
type VendorInfoType = Omit<VendorInfoFormData, "_id" | "documentsUpload"> & {
|
|
374
374
|
_id: string;
|
|
375
375
|
};
|
|
376
|
+
type UnregisteredVendorInvitationType = {
|
|
377
|
+
dateTime: DateTimeType[];
|
|
378
|
+
eventId: string;
|
|
379
|
+
location: LocationType;
|
|
380
|
+
};
|
|
381
|
+
interface UnregisteredVendorFormData {
|
|
382
|
+
categories: Category[];
|
|
383
|
+
email: string;
|
|
384
|
+
name: string;
|
|
385
|
+
region: string;
|
|
386
|
+
invitations: UnregisteredVendorInvitationType[] | null;
|
|
387
|
+
}
|
|
388
|
+
type CreateUnregisteredVendorFormData = CreateFormData<UnregisteredVendorFormData>;
|
|
389
|
+
type UnregisteredVendorType = UnregisteredVendorFormData & {
|
|
390
|
+
_id: string;
|
|
391
|
+
createdAt: Date;
|
|
392
|
+
deletedAt: Date | null;
|
|
393
|
+
updatedAt: Date | null;
|
|
394
|
+
};
|
|
376
395
|
|
|
377
396
|
type Nullable<T> = {
|
|
378
397
|
[K in keyof T]: T[K] | null | undefined;
|
|
@@ -1473,6 +1492,21 @@ declare const useUpdateVendorInfo: () => {
|
|
|
1473
1492
|
};
|
|
1474
1493
|
}>>;
|
|
1475
1494
|
};
|
|
1495
|
+
declare const useCreateUnregisteredVendor: () => {
|
|
1496
|
+
createUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1497
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1498
|
+
loading: boolean;
|
|
1499
|
+
};
|
|
1500
|
+
declare const useUpdateUnregisteredVendor: () => {
|
|
1501
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1502
|
+
loading: boolean;
|
|
1503
|
+
updateUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1504
|
+
};
|
|
1505
|
+
declare const useDeleteUnregisteredVendor: () => {
|
|
1506
|
+
deleteUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1507
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1508
|
+
loading: boolean;
|
|
1509
|
+
};
|
|
1476
1510
|
|
|
1477
1511
|
declare const useGetVendors: () => {
|
|
1478
1512
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1514,6 +1548,22 @@ declare const useGetVendorInfo: (vendorId: string) => {
|
|
|
1514
1548
|
}>>;
|
|
1515
1549
|
vendorInfo: VendorInfoType | undefined;
|
|
1516
1550
|
};
|
|
1551
|
+
declare const useGetUnregisteredVendors: () => {
|
|
1552
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1553
|
+
loading: boolean;
|
|
1554
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1555
|
+
unregisteredVendors: UnregisteredVendorType[];
|
|
1556
|
+
}>>;
|
|
1557
|
+
unregisteredVendors: UnregisteredVendorType[];
|
|
1558
|
+
};
|
|
1559
|
+
declare const useGetUnregisteredVendor: (_id: string) => {
|
|
1560
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1561
|
+
loading: boolean;
|
|
1562
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1563
|
+
unregisteredVendor: UnregisteredVendorType;
|
|
1564
|
+
}>>;
|
|
1565
|
+
unregisteredVendor: UnregisteredVendorType | undefined;
|
|
1566
|
+
};
|
|
1517
1567
|
|
|
1518
1568
|
declare const useCreateTester: () => {
|
|
1519
1569
|
createTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
@@ -1583,25 +1633,6 @@ declare const useRemoveUserFavouriteResource: () => {
|
|
|
1583
1633
|
loading: boolean;
|
|
1584
1634
|
removeUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1585
1635
|
};
|
|
1586
|
-
declare const useSelectPackage: () => {
|
|
1587
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1588
|
-
loading: boolean;
|
|
1589
|
-
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1590
|
-
selectPackage: {
|
|
1591
|
-
checkoutUrl?: string;
|
|
1592
|
-
userId: string;
|
|
1593
|
-
message: string;
|
|
1594
|
-
licences: UserLicenceType[];
|
|
1595
|
-
};
|
|
1596
|
-
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1597
|
-
selectPackage: {
|
|
1598
|
-
checkoutUrl?: string;
|
|
1599
|
-
userId: string;
|
|
1600
|
-
message: string;
|
|
1601
|
-
licences: UserLicenceType[];
|
|
1602
|
-
};
|
|
1603
|
-
}>>;
|
|
1604
|
-
};
|
|
1605
1636
|
declare const useAddUserInterestResource: () => {
|
|
1606
1637
|
addUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1607
1638
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1754,13 +1785,13 @@ declare const useCreateResourceActivity: () => {
|
|
|
1754
1785
|
loading: boolean;
|
|
1755
1786
|
};
|
|
1756
1787
|
|
|
1757
|
-
declare const
|
|
1788
|
+
declare const useGetResourceActivity: (resourceId: string, resourceType: EnumResourceType) => {
|
|
1758
1789
|
error: _apollo_client.ApolloError | undefined;
|
|
1759
1790
|
loading: boolean;
|
|
1760
1791
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1761
|
-
|
|
1792
|
+
resourceActivity: ResourceActivityType;
|
|
1762
1793
|
}>>;
|
|
1763
|
-
|
|
1794
|
+
resourceActivity: ResourceActivityType | null;
|
|
1764
1795
|
};
|
|
1765
1796
|
|
|
1766
1797
|
declare const useCreateCheckoutSession: () => {
|
|
@@ -1778,6 +1809,30 @@ declare const useUpdateSubscriptionPlan: () => {
|
|
|
1778
1809
|
loading: boolean;
|
|
1779
1810
|
updateSubscriptionPlan: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1780
1811
|
};
|
|
1812
|
+
declare const useCreateCustomerPortal: () => {
|
|
1813
|
+
createCustomerPortal: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1814
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1815
|
+
loading: boolean;
|
|
1816
|
+
};
|
|
1817
|
+
declare const useSelectPackage: () => {
|
|
1818
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1819
|
+
loading: boolean;
|
|
1820
|
+
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1821
|
+
selectPackage: {
|
|
1822
|
+
checkoutUrl?: string;
|
|
1823
|
+
userId: string;
|
|
1824
|
+
message: string;
|
|
1825
|
+
licences: UserLicenceType[];
|
|
1826
|
+
};
|
|
1827
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1828
|
+
selectPackage: {
|
|
1829
|
+
checkoutUrl?: string;
|
|
1830
|
+
userId: string;
|
|
1831
|
+
message: string;
|
|
1832
|
+
licences: UserLicenceType[];
|
|
1833
|
+
};
|
|
1834
|
+
}>>;
|
|
1835
|
+
};
|
|
1781
1836
|
|
|
1782
1837
|
declare const useGetSubscriptionStatus: () => {
|
|
1783
1838
|
data: SubscriptionStatusData | undefined;
|
|
@@ -1952,6 +2007,7 @@ declare const defaultPartnerFormValues: PartnerFormData;
|
|
|
1952
2007
|
declare const defaultEventFormValues: EventFormData;
|
|
1953
2008
|
declare const defaultEventInfoFormValues: EventInfoFormData;
|
|
1954
2009
|
declare const defaultVendorFormValues: VendorFormData;
|
|
2010
|
+
declare const defaultUnregisteredVendorFormValues: UnregisteredVendorFormData;
|
|
1955
2011
|
declare const defaultVendorInfoFormValues: VendorInfoFormData;
|
|
1956
2012
|
declare function mapBaseResourceTypeToFormData(data: BaseResourceTypeFormData): BaseResourceTypeFormData;
|
|
1957
2013
|
|
|
@@ -2070,4 +2126,4 @@ declare const paymentMethodOptions: OptionItem[];
|
|
|
2070
2126
|
declare function normalizeUrl(url: string): string;
|
|
2071
2127
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2072
2128
|
|
|
2073
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, 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 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 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 UserActivity, type UserActivityEvent, type UserActivityEventType, 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, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultPartnerFormValues, defaultRegion, 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, useAdminUpdateResourceType, useAdminUpdateTester, useAppVersionCheck, useCancelSubscription, useContactUs, useContactUsForm, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteTester, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor,
|
|
2129
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, 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 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 UserActivityEventType, 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, 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, useAdminUpdateResourceType, useAdminUpdateTester, useAppVersionCheck, useCancelSubscription, useContactUs, useContactUsForm, 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, 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, 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
|
@@ -373,6 +373,25 @@ interface VendorType extends BaseResourceType {
|
|
|
373
373
|
type VendorInfoType = Omit<VendorInfoFormData, "_id" | "documentsUpload"> & {
|
|
374
374
|
_id: string;
|
|
375
375
|
};
|
|
376
|
+
type UnregisteredVendorInvitationType = {
|
|
377
|
+
dateTime: DateTimeType[];
|
|
378
|
+
eventId: string;
|
|
379
|
+
location: LocationType;
|
|
380
|
+
};
|
|
381
|
+
interface UnregisteredVendorFormData {
|
|
382
|
+
categories: Category[];
|
|
383
|
+
email: string;
|
|
384
|
+
name: string;
|
|
385
|
+
region: string;
|
|
386
|
+
invitations: UnregisteredVendorInvitationType[] | null;
|
|
387
|
+
}
|
|
388
|
+
type CreateUnregisteredVendorFormData = CreateFormData<UnregisteredVendorFormData>;
|
|
389
|
+
type UnregisteredVendorType = UnregisteredVendorFormData & {
|
|
390
|
+
_id: string;
|
|
391
|
+
createdAt: Date;
|
|
392
|
+
deletedAt: Date | null;
|
|
393
|
+
updatedAt: Date | null;
|
|
394
|
+
};
|
|
376
395
|
|
|
377
396
|
type Nullable<T> = {
|
|
378
397
|
[K in keyof T]: T[K] | null | undefined;
|
|
@@ -1473,6 +1492,21 @@ declare const useUpdateVendorInfo: () => {
|
|
|
1473
1492
|
};
|
|
1474
1493
|
}>>;
|
|
1475
1494
|
};
|
|
1495
|
+
declare const useCreateUnregisteredVendor: () => {
|
|
1496
|
+
createUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1497
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1498
|
+
loading: boolean;
|
|
1499
|
+
};
|
|
1500
|
+
declare const useUpdateUnregisteredVendor: () => {
|
|
1501
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1502
|
+
loading: boolean;
|
|
1503
|
+
updateUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1504
|
+
};
|
|
1505
|
+
declare const useDeleteUnregisteredVendor: () => {
|
|
1506
|
+
deleteUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1507
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1508
|
+
loading: boolean;
|
|
1509
|
+
};
|
|
1476
1510
|
|
|
1477
1511
|
declare const useGetVendors: () => {
|
|
1478
1512
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1514,6 +1548,22 @@ declare const useGetVendorInfo: (vendorId: string) => {
|
|
|
1514
1548
|
}>>;
|
|
1515
1549
|
vendorInfo: VendorInfoType | undefined;
|
|
1516
1550
|
};
|
|
1551
|
+
declare const useGetUnregisteredVendors: () => {
|
|
1552
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1553
|
+
loading: boolean;
|
|
1554
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1555
|
+
unregisteredVendors: UnregisteredVendorType[];
|
|
1556
|
+
}>>;
|
|
1557
|
+
unregisteredVendors: UnregisteredVendorType[];
|
|
1558
|
+
};
|
|
1559
|
+
declare const useGetUnregisteredVendor: (_id: string) => {
|
|
1560
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1561
|
+
loading: boolean;
|
|
1562
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1563
|
+
unregisteredVendor: UnregisteredVendorType;
|
|
1564
|
+
}>>;
|
|
1565
|
+
unregisteredVendor: UnregisteredVendorType | undefined;
|
|
1566
|
+
};
|
|
1517
1567
|
|
|
1518
1568
|
declare const useCreateTester: () => {
|
|
1519
1569
|
createTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
@@ -1583,25 +1633,6 @@ declare const useRemoveUserFavouriteResource: () => {
|
|
|
1583
1633
|
loading: boolean;
|
|
1584
1634
|
removeUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1585
1635
|
};
|
|
1586
|
-
declare const useSelectPackage: () => {
|
|
1587
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1588
|
-
loading: boolean;
|
|
1589
|
-
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1590
|
-
selectPackage: {
|
|
1591
|
-
checkoutUrl?: string;
|
|
1592
|
-
userId: string;
|
|
1593
|
-
message: string;
|
|
1594
|
-
licences: UserLicenceType[];
|
|
1595
|
-
};
|
|
1596
|
-
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1597
|
-
selectPackage: {
|
|
1598
|
-
checkoutUrl?: string;
|
|
1599
|
-
userId: string;
|
|
1600
|
-
message: string;
|
|
1601
|
-
licences: UserLicenceType[];
|
|
1602
|
-
};
|
|
1603
|
-
}>>;
|
|
1604
|
-
};
|
|
1605
1636
|
declare const useAddUserInterestResource: () => {
|
|
1606
1637
|
addUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1607
1638
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1754,13 +1785,13 @@ declare const useCreateResourceActivity: () => {
|
|
|
1754
1785
|
loading: boolean;
|
|
1755
1786
|
};
|
|
1756
1787
|
|
|
1757
|
-
declare const
|
|
1788
|
+
declare const useGetResourceActivity: (resourceId: string, resourceType: EnumResourceType) => {
|
|
1758
1789
|
error: _apollo_client.ApolloError | undefined;
|
|
1759
1790
|
loading: boolean;
|
|
1760
1791
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
1761
|
-
|
|
1792
|
+
resourceActivity: ResourceActivityType;
|
|
1762
1793
|
}>>;
|
|
1763
|
-
|
|
1794
|
+
resourceActivity: ResourceActivityType | null;
|
|
1764
1795
|
};
|
|
1765
1796
|
|
|
1766
1797
|
declare const useCreateCheckoutSession: () => {
|
|
@@ -1778,6 +1809,30 @@ declare const useUpdateSubscriptionPlan: () => {
|
|
|
1778
1809
|
loading: boolean;
|
|
1779
1810
|
updateSubscriptionPlan: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1780
1811
|
};
|
|
1812
|
+
declare const useCreateCustomerPortal: () => {
|
|
1813
|
+
createCustomerPortal: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1814
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1815
|
+
loading: boolean;
|
|
1816
|
+
};
|
|
1817
|
+
declare const useSelectPackage: () => {
|
|
1818
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1819
|
+
loading: boolean;
|
|
1820
|
+
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1821
|
+
selectPackage: {
|
|
1822
|
+
checkoutUrl?: string;
|
|
1823
|
+
userId: string;
|
|
1824
|
+
message: string;
|
|
1825
|
+
licences: UserLicenceType[];
|
|
1826
|
+
};
|
|
1827
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1828
|
+
selectPackage: {
|
|
1829
|
+
checkoutUrl?: string;
|
|
1830
|
+
userId: string;
|
|
1831
|
+
message: string;
|
|
1832
|
+
licences: UserLicenceType[];
|
|
1833
|
+
};
|
|
1834
|
+
}>>;
|
|
1835
|
+
};
|
|
1781
1836
|
|
|
1782
1837
|
declare const useGetSubscriptionStatus: () => {
|
|
1783
1838
|
data: SubscriptionStatusData | undefined;
|
|
@@ -1952,6 +2007,7 @@ declare const defaultPartnerFormValues: PartnerFormData;
|
|
|
1952
2007
|
declare const defaultEventFormValues: EventFormData;
|
|
1953
2008
|
declare const defaultEventInfoFormValues: EventInfoFormData;
|
|
1954
2009
|
declare const defaultVendorFormValues: VendorFormData;
|
|
2010
|
+
declare const defaultUnregisteredVendorFormValues: UnregisteredVendorFormData;
|
|
1955
2011
|
declare const defaultVendorInfoFormValues: VendorInfoFormData;
|
|
1956
2012
|
declare function mapBaseResourceTypeToFormData(data: BaseResourceTypeFormData): BaseResourceTypeFormData;
|
|
1957
2013
|
|
|
@@ -2070,4 +2126,4 @@ declare const paymentMethodOptions: OptionItem[];
|
|
|
2070
2126
|
declare function normalizeUrl(url: string): string;
|
|
2071
2127
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2072
2128
|
|
|
2073
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, 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 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 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 UserActivity, type UserActivityEvent, type UserActivityEventType, 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, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultPartnerFormValues, defaultRegion, 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, useAdminUpdateResourceType, useAdminUpdateTester, useAppVersionCheck, useCancelSubscription, useContactUs, useContactUsForm, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteTester, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor,
|
|
2129
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, 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 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 UserActivityEventType, 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, 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, useAdminUpdateResourceType, useAdminUpdateTester, useAppVersionCheck, useCancelSubscription, useContactUs, useContactUsForm, 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, 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, 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 };
|