@timardex/cluemart-shared 1.2.24 → 1.2.26
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/{ad-BsEtu052.d.mts → ad-Bv5fLkN0.d.mts} +9 -13
- package/dist/{ad-Dg1bpjxd.d.ts → ad-DDPNpx02.d.ts} +9 -13
- package/dist/{auth-B-dG_y16.d.mts → auth-BVGs-5Vm.d.mts} +1 -13
- package/dist/{auth-Ba-VYR0Y.d.ts → auth-BhUIvvZ2.d.ts} +1 -13
- package/dist/{chunk-G5RI3IO2.mjs → chunk-GGNNB6MQ.mjs} +2 -2
- package/dist/{chunk-IVFHFNLY.mjs → chunk-NNS747QT.mjs} +2 -1
- package/dist/chunk-NNS747QT.mjs.map +1 -0
- package/dist/enums/index.cjs +1 -0
- package/dist/enums/index.cjs.map +1 -1
- package/dist/enums/index.d.mts +1 -0
- package/dist/enums/index.d.ts +1 -0
- package/dist/enums/index.mjs +1 -1
- package/dist/formFields/index.cjs +43 -46
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.d.mts +2 -1
- package/dist/formFields/index.d.ts +2 -1
- package/dist/formFields/index.mjs +44 -48
- package/dist/formFields/index.mjs.map +1 -1
- package/dist/graphql/index.cjs +27 -151
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +3 -13
- package/dist/graphql/index.d.ts +3 -13
- package/dist/graphql/index.mjs +28 -150
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.mjs +2 -2
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +71 -197
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +12 -35
- package/dist/index.d.ts +12 -35
- package/dist/index.mjs +70 -195
- package/dist/index.mjs.map +1 -1
- package/dist/{resourceActivities-N7iowh1a.d.ts → resourceActivities-DWC-Btmf.d.ts} +1 -0
- package/dist/{resourceActivities-DDe473dL.d.mts → resourceActivities-DoLx4lPo.d.mts} +1 -0
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.mjs.map +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-IVFHFNLY.mjs.map +0 -1
- /package/dist/{chunk-G5RI3IO2.mjs.map → chunk-GGNNB6MQ.mjs.map} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -62,6 +62,7 @@ declare enum EnumNotificationResourceType {
|
|
|
62
62
|
CREATED_EVENT = "created_event",
|
|
63
63
|
CREATED_VENDOR = "created_vendor",
|
|
64
64
|
EVENT_INVITE_VENDOR = "event_invite_vendor",
|
|
65
|
+
EVENT_STARTING_SOON = "event_starting_soon",
|
|
65
66
|
NEW_CHAT_MESSAGE = "new_chat_message",
|
|
66
67
|
VENDOR_APPLICATION_TO_EVENT = "vendor_application_to_event"
|
|
67
68
|
}
|
|
@@ -484,18 +485,6 @@ type RegisterFormData = {
|
|
|
484
485
|
termsAgreement?: TermsAgreement | null;
|
|
485
486
|
};
|
|
486
487
|
type CreateRegisterFormData = CreateFormData<RegisterFormData>;
|
|
487
|
-
type GoogleSignInFormData = {
|
|
488
|
-
idToken: string;
|
|
489
|
-
platform?: EnumOSPlatform;
|
|
490
|
-
scopes?: string[] | null;
|
|
491
|
-
};
|
|
492
|
-
type GoogleRegisterFormData = {
|
|
493
|
-
idToken: string;
|
|
494
|
-
platform?: EnumOSPlatform;
|
|
495
|
-
preferredRegion: string;
|
|
496
|
-
scopes?: string[] | null;
|
|
497
|
-
termsAgreement: TermsAgreement;
|
|
498
|
-
};
|
|
499
488
|
type RequestPasswordResetFormData = {
|
|
500
489
|
email: string;
|
|
501
490
|
};
|
|
@@ -623,28 +612,24 @@ type UserFormData = {
|
|
|
623
612
|
termsAgreement?: TermsAgreement | null;
|
|
624
613
|
};
|
|
625
614
|
type CreateUserFormData = CreateFormData<UserFormData>;
|
|
615
|
+
type UserActivityEvent = {
|
|
616
|
+
resourceId: string;
|
|
617
|
+
startDate: string;
|
|
618
|
+
startTime: string;
|
|
619
|
+
};
|
|
626
620
|
type UserActivity = {
|
|
627
621
|
favourites: {
|
|
628
622
|
events: string[];
|
|
629
623
|
vendors: string[];
|
|
630
624
|
};
|
|
631
625
|
going: {
|
|
632
|
-
events:
|
|
633
|
-
resourceId: string;
|
|
634
|
-
startDate: string;
|
|
635
|
-
}[];
|
|
626
|
+
events: UserActivityEvent[];
|
|
636
627
|
};
|
|
637
628
|
interested: {
|
|
638
|
-
events:
|
|
639
|
-
resourceId: string;
|
|
640
|
-
startDate: string;
|
|
641
|
-
}[];
|
|
629
|
+
events: UserActivityEvent[];
|
|
642
630
|
};
|
|
643
631
|
present: {
|
|
644
|
-
events:
|
|
645
|
-
resourceId: string;
|
|
646
|
-
startDate: string;
|
|
647
|
-
}[];
|
|
632
|
+
events: UserActivityEvent[];
|
|
648
633
|
};
|
|
649
634
|
};
|
|
650
635
|
interface UserType {
|
|
@@ -732,6 +717,7 @@ type ResourceActivityEntry = {
|
|
|
732
717
|
coordinates: number[];
|
|
733
718
|
} | null;
|
|
734
719
|
startDate?: string | null;
|
|
720
|
+
startTime?: string | null;
|
|
735
721
|
timestamp: Date;
|
|
736
722
|
userAgent: EnumOSPlatform;
|
|
737
723
|
userId?: string | null;
|
|
@@ -807,6 +793,7 @@ declare const testersFields: FormField[];
|
|
|
807
793
|
|
|
808
794
|
declare const contactUsFields: FormField[];
|
|
809
795
|
|
|
796
|
+
declare const emailField: FormField;
|
|
810
797
|
declare const companyContactFields: FormField[];
|
|
811
798
|
|
|
812
799
|
declare const useAdminUpdateResourceType: () => {
|
|
@@ -825,16 +812,6 @@ declare const useLogin: () => {
|
|
|
825
812
|
loading: boolean;
|
|
826
813
|
login: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
827
814
|
};
|
|
828
|
-
declare const useGoogleSignIn: () => {
|
|
829
|
-
error: _apollo_client.ApolloError | undefined;
|
|
830
|
-
loading: boolean;
|
|
831
|
-
googleSignIn: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
832
|
-
};
|
|
833
|
-
declare const useGoogleRegister: () => {
|
|
834
|
-
error: _apollo_client.ApolloError | undefined;
|
|
835
|
-
loading: boolean;
|
|
836
|
-
googleRegister: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
837
|
-
};
|
|
838
815
|
declare const useLogout: () => {
|
|
839
816
|
error: _apollo_client.ApolloError | undefined;
|
|
840
817
|
loading: boolean;
|
|
@@ -1518,4 +1495,4 @@ declare const availableRegionOptions: OptionItem[];
|
|
|
1518
1495
|
declare const paymentMethodOptions: OptionItem[];
|
|
1519
1496
|
declare function normalizeUrl(url: string): string;
|
|
1520
1497
|
|
|
1521
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, 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 CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTestersFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumChatType, EnumEventType, EnumFoodFlavor, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type
|
|
1498
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, 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 CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTestersFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumChatType, EnumEventType, EnumFoodFlavor, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, 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, type OwnerType, type ParticipantType, type PartnerType, type PaymentInfoType, type PlacePrediction, 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 Subcategory, type SubcategoryItems, type TermsAgreement, type TesterType, type TestersFormData, USER_STORAGE_KEY, type UserActivity, type UserActivityEvent, type UserFormData, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorLocation, type VendorMenuType, type VendorType, availableCategories, availableCityOptions, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultRegion, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, lightColors, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, packagingOptions, paymentMethodOptions, producedIngOptions, productLabelGroups, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, testersFields, timeFormat, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminUpdateResourceType, useContactUs, useContactUsForm, useCreateAd, useCreateBulkNotifications, useCreateEvent, useCreateEventInfo, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeleteRelation, useDeleteTester, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivities, useGetResourceConnections, useGetTester, useGetTesters, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkNotificationRead, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchVendors, useSelectPackage, useSendChatMessage, useTestersForm, useUpdateAd, useUpdateEvent, useUpdateEventInfo, useUpdateRelation, useUpdateTester, 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
|
@@ -62,6 +62,7 @@ declare enum EnumNotificationResourceType {
|
|
|
62
62
|
CREATED_EVENT = "created_event",
|
|
63
63
|
CREATED_VENDOR = "created_vendor",
|
|
64
64
|
EVENT_INVITE_VENDOR = "event_invite_vendor",
|
|
65
|
+
EVENT_STARTING_SOON = "event_starting_soon",
|
|
65
66
|
NEW_CHAT_MESSAGE = "new_chat_message",
|
|
66
67
|
VENDOR_APPLICATION_TO_EVENT = "vendor_application_to_event"
|
|
67
68
|
}
|
|
@@ -484,18 +485,6 @@ type RegisterFormData = {
|
|
|
484
485
|
termsAgreement?: TermsAgreement | null;
|
|
485
486
|
};
|
|
486
487
|
type CreateRegisterFormData = CreateFormData<RegisterFormData>;
|
|
487
|
-
type GoogleSignInFormData = {
|
|
488
|
-
idToken: string;
|
|
489
|
-
platform?: EnumOSPlatform;
|
|
490
|
-
scopes?: string[] | null;
|
|
491
|
-
};
|
|
492
|
-
type GoogleRegisterFormData = {
|
|
493
|
-
idToken: string;
|
|
494
|
-
platform?: EnumOSPlatform;
|
|
495
|
-
preferredRegion: string;
|
|
496
|
-
scopes?: string[] | null;
|
|
497
|
-
termsAgreement: TermsAgreement;
|
|
498
|
-
};
|
|
499
488
|
type RequestPasswordResetFormData = {
|
|
500
489
|
email: string;
|
|
501
490
|
};
|
|
@@ -623,28 +612,24 @@ type UserFormData = {
|
|
|
623
612
|
termsAgreement?: TermsAgreement | null;
|
|
624
613
|
};
|
|
625
614
|
type CreateUserFormData = CreateFormData<UserFormData>;
|
|
615
|
+
type UserActivityEvent = {
|
|
616
|
+
resourceId: string;
|
|
617
|
+
startDate: string;
|
|
618
|
+
startTime: string;
|
|
619
|
+
};
|
|
626
620
|
type UserActivity = {
|
|
627
621
|
favourites: {
|
|
628
622
|
events: string[];
|
|
629
623
|
vendors: string[];
|
|
630
624
|
};
|
|
631
625
|
going: {
|
|
632
|
-
events:
|
|
633
|
-
resourceId: string;
|
|
634
|
-
startDate: string;
|
|
635
|
-
}[];
|
|
626
|
+
events: UserActivityEvent[];
|
|
636
627
|
};
|
|
637
628
|
interested: {
|
|
638
|
-
events:
|
|
639
|
-
resourceId: string;
|
|
640
|
-
startDate: string;
|
|
641
|
-
}[];
|
|
629
|
+
events: UserActivityEvent[];
|
|
642
630
|
};
|
|
643
631
|
present: {
|
|
644
|
-
events:
|
|
645
|
-
resourceId: string;
|
|
646
|
-
startDate: string;
|
|
647
|
-
}[];
|
|
632
|
+
events: UserActivityEvent[];
|
|
648
633
|
};
|
|
649
634
|
};
|
|
650
635
|
interface UserType {
|
|
@@ -732,6 +717,7 @@ type ResourceActivityEntry = {
|
|
|
732
717
|
coordinates: number[];
|
|
733
718
|
} | null;
|
|
734
719
|
startDate?: string | null;
|
|
720
|
+
startTime?: string | null;
|
|
735
721
|
timestamp: Date;
|
|
736
722
|
userAgent: EnumOSPlatform;
|
|
737
723
|
userId?: string | null;
|
|
@@ -807,6 +793,7 @@ declare const testersFields: FormField[];
|
|
|
807
793
|
|
|
808
794
|
declare const contactUsFields: FormField[];
|
|
809
795
|
|
|
796
|
+
declare const emailField: FormField;
|
|
810
797
|
declare const companyContactFields: FormField[];
|
|
811
798
|
|
|
812
799
|
declare const useAdminUpdateResourceType: () => {
|
|
@@ -825,16 +812,6 @@ declare const useLogin: () => {
|
|
|
825
812
|
loading: boolean;
|
|
826
813
|
login: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
827
814
|
};
|
|
828
|
-
declare const useGoogleSignIn: () => {
|
|
829
|
-
error: _apollo_client.ApolloError | undefined;
|
|
830
|
-
loading: boolean;
|
|
831
|
-
googleSignIn: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
832
|
-
};
|
|
833
|
-
declare const useGoogleRegister: () => {
|
|
834
|
-
error: _apollo_client.ApolloError | undefined;
|
|
835
|
-
loading: boolean;
|
|
836
|
-
googleRegister: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
837
|
-
};
|
|
838
815
|
declare const useLogout: () => {
|
|
839
816
|
error: _apollo_client.ApolloError | undefined;
|
|
840
817
|
loading: boolean;
|
|
@@ -1518,4 +1495,4 @@ declare const availableRegionOptions: OptionItem[];
|
|
|
1518
1495
|
declare const paymentMethodOptions: OptionItem[];
|
|
1519
1496
|
declare function normalizeUrl(url: string): string;
|
|
1520
1497
|
|
|
1521
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, 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 CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTestersFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumChatType, EnumEventType, EnumFoodFlavor, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type
|
|
1498
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, 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 CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTestersFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumChatType, EnumEventType, EnumFoodFlavor, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, 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, type OwnerType, type ParticipantType, type PartnerType, type PaymentInfoType, type PlacePrediction, 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 Subcategory, type SubcategoryItems, type TermsAgreement, type TesterType, type TestersFormData, USER_STORAGE_KEY, type UserActivity, type UserActivityEvent, type UserFormData, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorLocation, type VendorMenuType, type VendorType, availableCategories, availableCityOptions, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultRegion, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, lightColors, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, packagingOptions, paymentMethodOptions, producedIngOptions, productLabelGroups, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, testersFields, timeFormat, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminUpdateResourceType, useContactUs, useContactUsForm, useCreateAd, useCreateBulkNotifications, useCreateEvent, useCreateEventInfo, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeleteRelation, useDeleteTester, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivities, useGetResourceConnections, useGetTester, useGetTesters, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkNotificationRead, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchVendors, useSelectPackage, useSendChatMessage, useTestersForm, useUpdateAd, useUpdateEvent, useUpdateEventInfo, useUpdateRelation, useUpdateTester, 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 };
|