@timardex/cluemart-shared 1.4.13 → 1.4.14
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-sm3mg_Sb.d.ts → auth-BNhymOFs.d.mts} +4 -3
- package/dist/{auth-4POOgdmv.d.mts → auth-CgzvvFjw.d.ts} +4 -3
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-DdNUoIKL.d.ts → global-D5dNxa5e.d.mts} +2 -7
- package/dist/{global-DhBPsOLv.d.mts → global-x5DE08tD.d.ts} +2 -7
- package/dist/graphql/index.cjs +13 -22
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +3 -3
- package/dist/graphql/index.d.ts +3 -3
- package/dist/graphql/index.mjs +13 -22
- 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 +13 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +15 -25
- package/dist/index.d.ts +15 -25
- package/dist/index.mjs +13 -22
- package/dist/index.mjs.map +1 -1
- package/dist/{post-C-0GvAvh.d.mts → post-BnXA5t_U.d.mts} +15 -20
- package/dist/{post-BdonvD0s.d.ts → post-DDDWdbHZ.d.ts} +15 -20
- package/dist/{resourceActivities-BaEic0VS.d.ts → resourceActivities-C9XUSb9n.d.ts} +1 -1
- package/dist/{resourceActivities-D2pZ8AdX.d.mts → resourceActivities-CtfWc2rd.d.mts} +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +5 -5
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.mjs.map +1 -1
- 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
|
@@ -593,11 +593,6 @@ interface CreateFormData<T extends FieldValues> {
|
|
|
593
593
|
setValue: UseFormSetValue<T>;
|
|
594
594
|
watch: UseFormWatch<T>;
|
|
595
595
|
}
|
|
596
|
-
type AppMetaDataType = {
|
|
597
|
-
appVersion: string | null;
|
|
598
|
-
platform: EnumOSPlatform | null;
|
|
599
|
-
buildNumber: string | null;
|
|
600
|
-
};
|
|
601
596
|
|
|
602
597
|
declare const vendorBasicInfoFields: FormField[];
|
|
603
598
|
declare const vendorMultiLocation: FormField;
|
|
@@ -630,7 +625,7 @@ type LoginFormData = {
|
|
|
630
625
|
email: string;
|
|
631
626
|
isAdminPage?: boolean;
|
|
632
627
|
password: string;
|
|
633
|
-
|
|
628
|
+
platform?: EnumOSPlatform;
|
|
634
629
|
};
|
|
635
630
|
type CreateLoginFormData = CreateFormData<LoginFormData>;
|
|
636
631
|
type RegisterFormData = {
|
|
@@ -638,7 +633,7 @@ type RegisterFormData = {
|
|
|
638
633
|
firstName: string;
|
|
639
634
|
lastName: string;
|
|
640
635
|
password: string;
|
|
641
|
-
|
|
636
|
+
platform?: EnumOSPlatform;
|
|
642
637
|
preferredRegion: string;
|
|
643
638
|
termsAgreement?: TermsAgreement | null;
|
|
644
639
|
};
|
|
@@ -850,6 +845,7 @@ type UserFormData = {
|
|
|
850
845
|
isTester: boolean;
|
|
851
846
|
lastName: string;
|
|
852
847
|
password?: string | null;
|
|
848
|
+
platform?: EnumOSPlatform;
|
|
853
849
|
preferredRegion: string;
|
|
854
850
|
role: EnumUserRole;
|
|
855
851
|
termsAgreement?: TermsAgreement | null;
|
|
@@ -915,36 +911,30 @@ type UserActivity = {
|
|
|
915
911
|
events: UserActivityEvent[];
|
|
916
912
|
};
|
|
917
913
|
};
|
|
918
|
-
type UserResources = {
|
|
919
|
-
events: string[] | null;
|
|
920
|
-
partner: string | null;
|
|
921
|
-
vendor: string | null;
|
|
922
|
-
};
|
|
923
|
-
type UserDetails = {
|
|
924
|
-
avatar: ResourceImageType | null;
|
|
925
|
-
email: string;
|
|
926
|
-
firstName: string;
|
|
927
|
-
lastName: string;
|
|
928
|
-
password: string;
|
|
929
|
-
preferredRegion: string;
|
|
930
|
-
role: EnumUserRole;
|
|
931
|
-
};
|
|
932
914
|
interface UserType {
|
|
933
915
|
_id: string;
|
|
934
916
|
active: boolean;
|
|
935
|
-
appMetadata?: AppMetaDataType | null;
|
|
936
917
|
associates?: AssociateType[] | null;
|
|
918
|
+
avatar: ResourceImageType | null;
|
|
937
919
|
createdAt: Date;
|
|
938
920
|
deletedAt: Date | null;
|
|
921
|
+
email: string;
|
|
922
|
+
events: string[] | null;
|
|
923
|
+
firstName: string;
|
|
939
924
|
isTester: boolean;
|
|
925
|
+
lastName: string;
|
|
940
926
|
licences: UserLicenceType[] | null;
|
|
927
|
+
partner: string | null;
|
|
928
|
+
password: string;
|
|
929
|
+
platform: EnumOSPlatform | null;
|
|
930
|
+
preferredRegion: string;
|
|
941
931
|
refreshToken: string | null;
|
|
932
|
+
role: EnumUserRole;
|
|
942
933
|
stripe?: StripeSubscription;
|
|
943
934
|
termsAgreement?: TermsAgreement | null;
|
|
944
935
|
updatedAt: Date | null;
|
|
945
936
|
userActivity: UserActivity | null;
|
|
946
|
-
|
|
947
|
-
userResources: UserResources | null;
|
|
937
|
+
vendor: string | null;
|
|
948
938
|
}
|
|
949
939
|
|
|
950
940
|
declare enum EnumAdShowOn {
|
|
@@ -2382,4 +2372,4 @@ declare function normalizeUrl(url: string): string;
|
|
|
2382
2372
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2383
2373
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2384
2374
|
|
|
2385
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type
|
|
2375
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, 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, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventStatusType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type GoogleAddressComponent, type GoogleImportedMarket, type ImageObjectType, ImageTypeEnum, type LocationGeoType, 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 SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, 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, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivity, useGetResourceConnections, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetTester, useGetTesters, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSendChatMessage, useTesterForm, useToggleChatMessageLike, 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
|
@@ -593,11 +593,6 @@ interface CreateFormData<T extends FieldValues> {
|
|
|
593
593
|
setValue: UseFormSetValue<T>;
|
|
594
594
|
watch: UseFormWatch<T>;
|
|
595
595
|
}
|
|
596
|
-
type AppMetaDataType = {
|
|
597
|
-
appVersion: string | null;
|
|
598
|
-
platform: EnumOSPlatform | null;
|
|
599
|
-
buildNumber: string | null;
|
|
600
|
-
};
|
|
601
596
|
|
|
602
597
|
declare const vendorBasicInfoFields: FormField[];
|
|
603
598
|
declare const vendorMultiLocation: FormField;
|
|
@@ -630,7 +625,7 @@ type LoginFormData = {
|
|
|
630
625
|
email: string;
|
|
631
626
|
isAdminPage?: boolean;
|
|
632
627
|
password: string;
|
|
633
|
-
|
|
628
|
+
platform?: EnumOSPlatform;
|
|
634
629
|
};
|
|
635
630
|
type CreateLoginFormData = CreateFormData<LoginFormData>;
|
|
636
631
|
type RegisterFormData = {
|
|
@@ -638,7 +633,7 @@ type RegisterFormData = {
|
|
|
638
633
|
firstName: string;
|
|
639
634
|
lastName: string;
|
|
640
635
|
password: string;
|
|
641
|
-
|
|
636
|
+
platform?: EnumOSPlatform;
|
|
642
637
|
preferredRegion: string;
|
|
643
638
|
termsAgreement?: TermsAgreement | null;
|
|
644
639
|
};
|
|
@@ -850,6 +845,7 @@ type UserFormData = {
|
|
|
850
845
|
isTester: boolean;
|
|
851
846
|
lastName: string;
|
|
852
847
|
password?: string | null;
|
|
848
|
+
platform?: EnumOSPlatform;
|
|
853
849
|
preferredRegion: string;
|
|
854
850
|
role: EnumUserRole;
|
|
855
851
|
termsAgreement?: TermsAgreement | null;
|
|
@@ -915,36 +911,30 @@ type UserActivity = {
|
|
|
915
911
|
events: UserActivityEvent[];
|
|
916
912
|
};
|
|
917
913
|
};
|
|
918
|
-
type UserResources = {
|
|
919
|
-
events: string[] | null;
|
|
920
|
-
partner: string | null;
|
|
921
|
-
vendor: string | null;
|
|
922
|
-
};
|
|
923
|
-
type UserDetails = {
|
|
924
|
-
avatar: ResourceImageType | null;
|
|
925
|
-
email: string;
|
|
926
|
-
firstName: string;
|
|
927
|
-
lastName: string;
|
|
928
|
-
password: string;
|
|
929
|
-
preferredRegion: string;
|
|
930
|
-
role: EnumUserRole;
|
|
931
|
-
};
|
|
932
914
|
interface UserType {
|
|
933
915
|
_id: string;
|
|
934
916
|
active: boolean;
|
|
935
|
-
appMetadata?: AppMetaDataType | null;
|
|
936
917
|
associates?: AssociateType[] | null;
|
|
918
|
+
avatar: ResourceImageType | null;
|
|
937
919
|
createdAt: Date;
|
|
938
920
|
deletedAt: Date | null;
|
|
921
|
+
email: string;
|
|
922
|
+
events: string[] | null;
|
|
923
|
+
firstName: string;
|
|
939
924
|
isTester: boolean;
|
|
925
|
+
lastName: string;
|
|
940
926
|
licences: UserLicenceType[] | null;
|
|
927
|
+
partner: string | null;
|
|
928
|
+
password: string;
|
|
929
|
+
platform: EnumOSPlatform | null;
|
|
930
|
+
preferredRegion: string;
|
|
941
931
|
refreshToken: string | null;
|
|
932
|
+
role: EnumUserRole;
|
|
942
933
|
stripe?: StripeSubscription;
|
|
943
934
|
termsAgreement?: TermsAgreement | null;
|
|
944
935
|
updatedAt: Date | null;
|
|
945
936
|
userActivity: UserActivity | null;
|
|
946
|
-
|
|
947
|
-
userResources: UserResources | null;
|
|
937
|
+
vendor: string | null;
|
|
948
938
|
}
|
|
949
939
|
|
|
950
940
|
declare enum EnumAdShowOn {
|
|
@@ -2382,4 +2372,4 @@ declare function normalizeUrl(url: string): string;
|
|
|
2382
2372
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2383
2373
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2384
2374
|
|
|
2385
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type
|
|
2375
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, 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, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventStatusType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type GoogleAddressComponent, type GoogleImportedMarket, type ImageObjectType, ImageTypeEnum, type LocationGeoType, 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 SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, 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, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivity, useGetResourceConnections, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetTester, useGetTesters, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSendChatMessage, useTesterForm, useToggleChatMessageLike, 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.mjs
CHANGED
|
@@ -2381,44 +2381,35 @@ var USER_FIELDS_FRAGMENT = gql2`
|
|
|
2381
2381
|
fragment UserFields on UserType {
|
|
2382
2382
|
_id
|
|
2383
2383
|
active
|
|
2384
|
-
appMetadata {
|
|
2385
|
-
appVersion
|
|
2386
|
-
platform
|
|
2387
|
-
buildNumber
|
|
2388
|
-
}
|
|
2389
2384
|
associates {
|
|
2390
2385
|
...AssociatesFields
|
|
2391
2386
|
}
|
|
2387
|
+
avatar {
|
|
2388
|
+
...ResourceImageFields
|
|
2389
|
+
}
|
|
2392
2390
|
createdAt
|
|
2393
2391
|
deletedAt
|
|
2392
|
+
email
|
|
2393
|
+
events
|
|
2394
|
+
firstName
|
|
2394
2395
|
isTester
|
|
2396
|
+
lastName
|
|
2395
2397
|
licences {
|
|
2396
2398
|
...LicenceFields
|
|
2397
2399
|
}
|
|
2400
|
+
partner
|
|
2401
|
+
platform
|
|
2402
|
+
preferredRegion
|
|
2398
2403
|
refreshToken
|
|
2404
|
+
role
|
|
2399
2405
|
termsAgreement {
|
|
2400
2406
|
...TermsAgreementFields
|
|
2401
2407
|
}
|
|
2402
|
-
updatedAt
|
|
2403
2408
|
userActivity {
|
|
2404
2409
|
...UserActivityFields
|
|
2405
2410
|
}
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
...ResourceImageFields
|
|
2409
|
-
}
|
|
2410
|
-
email
|
|
2411
|
-
firstName
|
|
2412
|
-
lastName
|
|
2413
|
-
password
|
|
2414
|
-
preferredRegion
|
|
2415
|
-
role
|
|
2416
|
-
}
|
|
2417
|
-
userResources {
|
|
2418
|
-
events
|
|
2419
|
-
partner
|
|
2420
|
-
vendor
|
|
2421
|
-
}
|
|
2411
|
+
vendor
|
|
2412
|
+
updatedAt
|
|
2422
2413
|
}
|
|
2423
2414
|
${RESOURCE_IMAGE_FIELDS_FRAGMENT}
|
|
2424
2415
|
${ASSOCIATES_FIELDS_FRAGMENT}
|