@timardex/cluemart-shared 1.4.3 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-XPBNTPFC.mjs → chunk-NMVEGOMG.mjs} +2 -2
- package/dist/{chunk-LAGFDF56.mjs → chunk-R5HMLIJS.mjs} +8 -5
- package/dist/{chunk-LAGFDF56.mjs.map → chunk-R5HMLIJS.mjs.map} +1 -1
- package/dist/enums/index.cjs +7 -4
- package/dist/enums/index.cjs.map +1 -1
- package/dist/enums/index.d.mts +7 -4
- package/dist/enums/index.d.ts +7 -4
- package/dist/enums/index.mjs +1 -1
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +2 -2
- package/dist/graphql/index.cjs +64 -0
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +28 -2
- package/dist/graphql/index.d.ts +28 -2
- package/dist/graphql/index.mjs +63 -1
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.cjs +71 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +52 -5
- package/dist/index.d.ts +52 -5
- package/dist/index.mjs +69 -4
- package/dist/index.mjs.map +1 -1
- package/dist/{resourceActivities-CJRTZROh.d.mts → resourceActivities-CC2ho1hD.d.mts} +19 -1
- package/dist/{resourceActivities-CVwxvGeC.d.ts → resourceActivities-CXYei0J1.d.ts} +19 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-XPBNTPFC.mjs.map → chunk-NMVEGOMG.mjs.map} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -105,16 +105,19 @@ declare enum EnumNotificationResourceType {
|
|
|
105
105
|
APPROVED_PARTNER = "approved_partner",
|
|
106
106
|
APPROVED_VENDOR = "approved_vendor",
|
|
107
107
|
CREATED_EVENT = "created_event",
|
|
108
|
-
CREATED_VENDOR = "created_vendor",
|
|
109
108
|
CREATED_PARTNER = "created_partner",
|
|
110
|
-
|
|
111
|
-
DECLINED_PARTNER = "declined_partner",
|
|
112
|
-
DECLINED_VENDOR = "declined_vendor",
|
|
109
|
+
CREATED_VENDOR = "created_vendor",
|
|
113
110
|
DEACTIVATED_EVENT = "deactivated_event",
|
|
114
111
|
DEACTIVATED_PARTNER = "deactivated_partner",
|
|
115
112
|
DEACTIVATED_VENDOR = "deactivated_vendor",
|
|
113
|
+
DECLINED_EVENT = "declined_event",
|
|
114
|
+
DECLINED_PARTNER = "declined_partner",
|
|
115
|
+
DECLINED_VENDOR = "declined_vendor",
|
|
116
116
|
EVENT_INVITE_VENDOR = "event_invite_vendor",
|
|
117
117
|
EVENT_STARTING_SOON = "event_starting_soon",
|
|
118
|
+
EXPIRATION_REMINDER_EVENT = "expiration_reminder_event",
|
|
119
|
+
EXPIRATION_REMINDER_PARTNER = "expiration_reminder_partner",
|
|
120
|
+
EXPIRATION_REMINDER_VENDOR = "expiration_reminder_vendor",
|
|
118
121
|
NEW_CHAT_MESSAGE = "new_chat_message",
|
|
119
122
|
SYSTEM_ALERT = "system_alert",
|
|
120
123
|
VENDOR_APPLICATION_TO_EVENT = "vendor_application_to_event"
|
|
@@ -658,13 +661,31 @@ type ParticipantType = {
|
|
|
658
661
|
};
|
|
659
662
|
interface ChatMessageInput {
|
|
660
663
|
content: string;
|
|
664
|
+
replyToMessageId?: string | null;
|
|
661
665
|
senderId: string;
|
|
662
666
|
}
|
|
667
|
+
type ChatMessageReplyPreview = {
|
|
668
|
+
senderId: string;
|
|
669
|
+
senderName: string;
|
|
670
|
+
contentPreview: string;
|
|
671
|
+
};
|
|
672
|
+
type ChatMessageReaction = {
|
|
673
|
+
userId: string;
|
|
674
|
+
createdAt: string;
|
|
675
|
+
};
|
|
676
|
+
type ChatMessageSeen = {
|
|
677
|
+
userId: string;
|
|
678
|
+
seenAt: string;
|
|
679
|
+
};
|
|
663
680
|
interface ChatMessageType {
|
|
664
681
|
_id?: string;
|
|
665
682
|
content: string;
|
|
666
683
|
createdAt?: string;
|
|
684
|
+
replyToMessageId?: string | null;
|
|
685
|
+
replyPreview?: ChatMessageReplyPreview | null;
|
|
686
|
+
likedBy?: ChatMessageReaction[];
|
|
667
687
|
senderId: string;
|
|
688
|
+
seenBy?: ChatMessageSeen[];
|
|
668
689
|
updatedAt?: string;
|
|
669
690
|
}
|
|
670
691
|
interface ChatType {
|
|
@@ -1314,6 +1335,32 @@ declare const useRemoveParticipantFromChat: () => {
|
|
|
1314
1335
|
loading: boolean;
|
|
1315
1336
|
removeParticipantFromChat: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1316
1337
|
};
|
|
1338
|
+
declare const useToggleChatMessageLike: () => {
|
|
1339
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1340
|
+
loading: boolean;
|
|
1341
|
+
toggleChatMessageLike: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1342
|
+
toggleChatMessageLike: {
|
|
1343
|
+
_id: string;
|
|
1344
|
+
};
|
|
1345
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1346
|
+
toggleChatMessageLike: {
|
|
1347
|
+
_id: string;
|
|
1348
|
+
};
|
|
1349
|
+
}>>;
|
|
1350
|
+
};
|
|
1351
|
+
declare const useMarkChatMessagesSeen: () => {
|
|
1352
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1353
|
+
loading: boolean;
|
|
1354
|
+
markChatMessagesSeen: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1355
|
+
markChatMessagesSeen: {
|
|
1356
|
+
_id: string;
|
|
1357
|
+
};
|
|
1358
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1359
|
+
markChatMessagesSeen: {
|
|
1360
|
+
_id: string;
|
|
1361
|
+
};
|
|
1362
|
+
}>>;
|
|
1363
|
+
};
|
|
1317
1364
|
|
|
1318
1365
|
declare const useGetChat: (_id: string) => {
|
|
1319
1366
|
chat: ChatType | undefined;
|
|
@@ -2306,4 +2353,4 @@ declare function normalizeUrl(url: string): string;
|
|
|
2306
2353
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2307
2354
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2308
2355
|
|
|
2309
|
-
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, 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 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, 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, 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 };
|
|
2356
|
+
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 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, 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
|
@@ -105,16 +105,19 @@ declare enum EnumNotificationResourceType {
|
|
|
105
105
|
APPROVED_PARTNER = "approved_partner",
|
|
106
106
|
APPROVED_VENDOR = "approved_vendor",
|
|
107
107
|
CREATED_EVENT = "created_event",
|
|
108
|
-
CREATED_VENDOR = "created_vendor",
|
|
109
108
|
CREATED_PARTNER = "created_partner",
|
|
110
|
-
|
|
111
|
-
DECLINED_PARTNER = "declined_partner",
|
|
112
|
-
DECLINED_VENDOR = "declined_vendor",
|
|
109
|
+
CREATED_VENDOR = "created_vendor",
|
|
113
110
|
DEACTIVATED_EVENT = "deactivated_event",
|
|
114
111
|
DEACTIVATED_PARTNER = "deactivated_partner",
|
|
115
112
|
DEACTIVATED_VENDOR = "deactivated_vendor",
|
|
113
|
+
DECLINED_EVENT = "declined_event",
|
|
114
|
+
DECLINED_PARTNER = "declined_partner",
|
|
115
|
+
DECLINED_VENDOR = "declined_vendor",
|
|
116
116
|
EVENT_INVITE_VENDOR = "event_invite_vendor",
|
|
117
117
|
EVENT_STARTING_SOON = "event_starting_soon",
|
|
118
|
+
EXPIRATION_REMINDER_EVENT = "expiration_reminder_event",
|
|
119
|
+
EXPIRATION_REMINDER_PARTNER = "expiration_reminder_partner",
|
|
120
|
+
EXPIRATION_REMINDER_VENDOR = "expiration_reminder_vendor",
|
|
118
121
|
NEW_CHAT_MESSAGE = "new_chat_message",
|
|
119
122
|
SYSTEM_ALERT = "system_alert",
|
|
120
123
|
VENDOR_APPLICATION_TO_EVENT = "vendor_application_to_event"
|
|
@@ -658,13 +661,31 @@ type ParticipantType = {
|
|
|
658
661
|
};
|
|
659
662
|
interface ChatMessageInput {
|
|
660
663
|
content: string;
|
|
664
|
+
replyToMessageId?: string | null;
|
|
661
665
|
senderId: string;
|
|
662
666
|
}
|
|
667
|
+
type ChatMessageReplyPreview = {
|
|
668
|
+
senderId: string;
|
|
669
|
+
senderName: string;
|
|
670
|
+
contentPreview: string;
|
|
671
|
+
};
|
|
672
|
+
type ChatMessageReaction = {
|
|
673
|
+
userId: string;
|
|
674
|
+
createdAt: string;
|
|
675
|
+
};
|
|
676
|
+
type ChatMessageSeen = {
|
|
677
|
+
userId: string;
|
|
678
|
+
seenAt: string;
|
|
679
|
+
};
|
|
663
680
|
interface ChatMessageType {
|
|
664
681
|
_id?: string;
|
|
665
682
|
content: string;
|
|
666
683
|
createdAt?: string;
|
|
684
|
+
replyToMessageId?: string | null;
|
|
685
|
+
replyPreview?: ChatMessageReplyPreview | null;
|
|
686
|
+
likedBy?: ChatMessageReaction[];
|
|
667
687
|
senderId: string;
|
|
688
|
+
seenBy?: ChatMessageSeen[];
|
|
668
689
|
updatedAt?: string;
|
|
669
690
|
}
|
|
670
691
|
interface ChatType {
|
|
@@ -1314,6 +1335,32 @@ declare const useRemoveParticipantFromChat: () => {
|
|
|
1314
1335
|
loading: boolean;
|
|
1315
1336
|
removeParticipantFromChat: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1316
1337
|
};
|
|
1338
|
+
declare const useToggleChatMessageLike: () => {
|
|
1339
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1340
|
+
loading: boolean;
|
|
1341
|
+
toggleChatMessageLike: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1342
|
+
toggleChatMessageLike: {
|
|
1343
|
+
_id: string;
|
|
1344
|
+
};
|
|
1345
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1346
|
+
toggleChatMessageLike: {
|
|
1347
|
+
_id: string;
|
|
1348
|
+
};
|
|
1349
|
+
}>>;
|
|
1350
|
+
};
|
|
1351
|
+
declare const useMarkChatMessagesSeen: () => {
|
|
1352
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1353
|
+
loading: boolean;
|
|
1354
|
+
markChatMessagesSeen: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1355
|
+
markChatMessagesSeen: {
|
|
1356
|
+
_id: string;
|
|
1357
|
+
};
|
|
1358
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1359
|
+
markChatMessagesSeen: {
|
|
1360
|
+
_id: string;
|
|
1361
|
+
};
|
|
1362
|
+
}>>;
|
|
1363
|
+
};
|
|
1317
1364
|
|
|
1318
1365
|
declare const useGetChat: (_id: string) => {
|
|
1319
1366
|
chat: ChatType | undefined;
|
|
@@ -2306,4 +2353,4 @@ declare function normalizeUrl(url: string): string;
|
|
|
2306
2353
|
declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
2307
2354
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2308
2355
|
|
|
2309
|
-
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, 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 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, 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, 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 };
|
|
2356
|
+
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 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, 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
|
@@ -114,16 +114,19 @@ var EnumNotificationResourceType = /* @__PURE__ */ ((EnumNotificationResourceTyp
|
|
|
114
114
|
EnumNotificationResourceType2["APPROVED_PARTNER"] = "approved_partner";
|
|
115
115
|
EnumNotificationResourceType2["APPROVED_VENDOR"] = "approved_vendor";
|
|
116
116
|
EnumNotificationResourceType2["CREATED_EVENT"] = "created_event";
|
|
117
|
-
EnumNotificationResourceType2["CREATED_VENDOR"] = "created_vendor";
|
|
118
117
|
EnumNotificationResourceType2["CREATED_PARTNER"] = "created_partner";
|
|
119
|
-
EnumNotificationResourceType2["
|
|
120
|
-
EnumNotificationResourceType2["DECLINED_PARTNER"] = "declined_partner";
|
|
121
|
-
EnumNotificationResourceType2["DECLINED_VENDOR"] = "declined_vendor";
|
|
118
|
+
EnumNotificationResourceType2["CREATED_VENDOR"] = "created_vendor";
|
|
122
119
|
EnumNotificationResourceType2["DEACTIVATED_EVENT"] = "deactivated_event";
|
|
123
120
|
EnumNotificationResourceType2["DEACTIVATED_PARTNER"] = "deactivated_partner";
|
|
124
121
|
EnumNotificationResourceType2["DEACTIVATED_VENDOR"] = "deactivated_vendor";
|
|
122
|
+
EnumNotificationResourceType2["DECLINED_EVENT"] = "declined_event";
|
|
123
|
+
EnumNotificationResourceType2["DECLINED_PARTNER"] = "declined_partner";
|
|
124
|
+
EnumNotificationResourceType2["DECLINED_VENDOR"] = "declined_vendor";
|
|
125
125
|
EnumNotificationResourceType2["EVENT_INVITE_VENDOR"] = "event_invite_vendor" /* EVENT_INVITE_VENDOR */;
|
|
126
126
|
EnumNotificationResourceType2["EVENT_STARTING_SOON"] = "event_starting_soon";
|
|
127
|
+
EnumNotificationResourceType2["EXPIRATION_REMINDER_EVENT"] = "expiration_reminder_event";
|
|
128
|
+
EnumNotificationResourceType2["EXPIRATION_REMINDER_PARTNER"] = "expiration_reminder_partner";
|
|
129
|
+
EnumNotificationResourceType2["EXPIRATION_REMINDER_VENDOR"] = "expiration_reminder_vendor";
|
|
127
130
|
EnumNotificationResourceType2["NEW_CHAT_MESSAGE"] = "new_chat_message";
|
|
128
131
|
EnumNotificationResourceType2["SYSTEM_ALERT"] = "system_alert";
|
|
129
132
|
EnumNotificationResourceType2["VENDOR_APPLICATION_TO_EVENT"] = "vendor_application_to_event" /* VENDOR_APPLICATION_TO_EVENT */;
|
|
@@ -3207,7 +3210,21 @@ var CHAT_MESSAGE_FIELDS_FRAGMENT = gql7`
|
|
|
3207
3210
|
_id
|
|
3208
3211
|
content
|
|
3209
3212
|
createdAt
|
|
3213
|
+
replyToMessageId
|
|
3214
|
+
replyPreview {
|
|
3215
|
+
senderId
|
|
3216
|
+
senderName
|
|
3217
|
+
contentPreview
|
|
3218
|
+
}
|
|
3219
|
+
likedBy {
|
|
3220
|
+
userId
|
|
3221
|
+
createdAt
|
|
3222
|
+
}
|
|
3210
3223
|
senderId
|
|
3224
|
+
seenBy {
|
|
3225
|
+
userId
|
|
3226
|
+
seenAt
|
|
3227
|
+
}
|
|
3211
3228
|
updatedAt
|
|
3212
3229
|
}
|
|
3213
3230
|
`;
|
|
@@ -3283,6 +3300,22 @@ var REMOVE_PARTICIPANT_FROM_CHAT_MUTATION = gql8`
|
|
|
3283
3300
|
removeParticipantFromChat(chatId: $chatId, userId: $userId)
|
|
3284
3301
|
}
|
|
3285
3302
|
`;
|
|
3303
|
+
var TOGGLE_CHAT_MESSAGE_LIKE_MUTATION = gql8`
|
|
3304
|
+
mutation toggleChatMessageLike($chatId: ID!, $messageId: ID!) {
|
|
3305
|
+
toggleChatMessageLike(chatId: $chatId, messageId: $messageId) {
|
|
3306
|
+
...ChatFields
|
|
3307
|
+
}
|
|
3308
|
+
}
|
|
3309
|
+
${CHAT_FIELDS_FRAGMENT}
|
|
3310
|
+
`;
|
|
3311
|
+
var MARK_CHAT_MESSAGES_SEEN_MUTATION = gql8`
|
|
3312
|
+
mutation markChatMessagesSeen($chatId: ID!, $messageIds: [ID!]!) {
|
|
3313
|
+
markChatMessagesSeen(chatId: $chatId, messageIds: $messageIds) {
|
|
3314
|
+
...ChatFields
|
|
3315
|
+
}
|
|
3316
|
+
}
|
|
3317
|
+
${CHAT_FIELDS_FRAGMENT}
|
|
3318
|
+
`;
|
|
3286
3319
|
|
|
3287
3320
|
// src/graphql/hooks/chat/hooksMutation.ts
|
|
3288
3321
|
var useSendChatMessage = () => {
|
|
@@ -3335,6 +3368,36 @@ var useRemoveParticipantFromChat = () => {
|
|
|
3335
3368
|
);
|
|
3336
3369
|
return { error, loading, removeParticipantFromChat };
|
|
3337
3370
|
};
|
|
3371
|
+
var useToggleChatMessageLike = () => {
|
|
3372
|
+
const [toggleChatMessageLike, { loading, error }] = useMutation3(TOGGLE_CHAT_MESSAGE_LIKE_MUTATION, {
|
|
3373
|
+
awaitRefetchQueries: true,
|
|
3374
|
+
refetchQueries: (mutationResult) => {
|
|
3375
|
+
const chatId = mutationResult?.data?.toggleChatMessageLike?._id;
|
|
3376
|
+
return [
|
|
3377
|
+
{
|
|
3378
|
+
query: CHAT,
|
|
3379
|
+
variables: { _id: chatId }
|
|
3380
|
+
}
|
|
3381
|
+
];
|
|
3382
|
+
}
|
|
3383
|
+
});
|
|
3384
|
+
return { error, loading, toggleChatMessageLike };
|
|
3385
|
+
};
|
|
3386
|
+
var useMarkChatMessagesSeen = () => {
|
|
3387
|
+
const [markChatMessagesSeen, { loading, error }] = useMutation3(MARK_CHAT_MESSAGES_SEEN_MUTATION, {
|
|
3388
|
+
awaitRefetchQueries: true,
|
|
3389
|
+
refetchQueries: (mutationResult) => {
|
|
3390
|
+
const chatId = mutationResult?.data?.markChatMessagesSeen?._id;
|
|
3391
|
+
return [
|
|
3392
|
+
{
|
|
3393
|
+
query: CHAT,
|
|
3394
|
+
variables: { _id: chatId }
|
|
3395
|
+
}
|
|
3396
|
+
];
|
|
3397
|
+
}
|
|
3398
|
+
});
|
|
3399
|
+
return { error, loading, markChatMessagesSeen };
|
|
3400
|
+
};
|
|
3338
3401
|
|
|
3339
3402
|
// src/graphql/hooks/chat/hooksQuery.ts
|
|
3340
3403
|
import { useQuery, useSubscription } from "@apollo/client";
|
|
@@ -7812,6 +7875,7 @@ export {
|
|
|
7812
7875
|
useLoginForm,
|
|
7813
7876
|
useLogout,
|
|
7814
7877
|
useMarkAllNotificationsRead,
|
|
7878
|
+
useMarkChatMessagesSeen,
|
|
7815
7879
|
useMarkNotificationRead,
|
|
7816
7880
|
usePartnerForm,
|
|
7817
7881
|
usePostForm,
|
|
@@ -7833,6 +7897,7 @@ export {
|
|
|
7833
7897
|
useSelectPackage,
|
|
7834
7898
|
useSendChatMessage,
|
|
7835
7899
|
useTesterForm,
|
|
7900
|
+
useToggleChatMessageLike,
|
|
7836
7901
|
useUpdateAd,
|
|
7837
7902
|
useUpdateAppSettings,
|
|
7838
7903
|
useUpdateEvent,
|