@timardex/cluemart-shared 1.0.16 → 1.0.17
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-CdcH8nqw.d.mts → auth-CAeHx-BM.d.mts} +1 -1
- package/dist/{auth-TM_XttY3.d.ts → auth-gmfsaSPo.d.ts} +1 -1
- package/dist/{chat-NGx5Emrr.d.mts → chat-BUVCf9Tu.d.mts} +1 -1
- package/dist/{chat-NGx5Emrr.d.ts → chat-BUVCf9Tu.d.ts} +1 -1
- package/dist/formFields/index.cjs +49 -47
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.d.mts +5 -4
- package/dist/formFields/index.d.ts +5 -4
- package/dist/formFields/index.mjs +49 -47
- package/dist/formFields/index.mjs.map +1 -1
- package/dist/{global-B8kYikwQ.d.mts → global-B6OE9jjE.d.mts} +20 -9
- package/dist/{global-B7gB8cvC.d.ts → global-Diphaotm.d.ts} +20 -9
- package/dist/graphql/index.cjs +94 -16
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +19 -3
- package/dist/graphql/index.d.ts +19 -3
- package/dist/graphql/index.mjs +91 -16
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +159 -82
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +12 -3
- package/dist/hooks/index.d.ts +12 -3
- package/dist/hooks/index.mjs +157 -82
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +302 -145
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +48 -11
- package/dist/index.d.ts +48 -11
- package/dist/index.mjs +297 -145
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -211,11 +211,13 @@ interface RelationType {
|
|
|
211
211
|
updatedAt?: string;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
-
|
|
214
|
+
interface DateTimeWithPriceType extends DateTimeType {
|
|
215
215
|
marketPrice: number;
|
|
216
|
-
}
|
|
217
|
-
|
|
216
|
+
}
|
|
217
|
+
interface MarketInfoType {
|
|
218
|
+
_id?: string;
|
|
218
219
|
applicationDeadlineHours: number;
|
|
220
|
+
dateTime: DateTimeWithPriceType[];
|
|
219
221
|
paymentDueHours: number;
|
|
220
222
|
paymentMethod: EnumPaymentMethod;
|
|
221
223
|
paymentTarget: {
|
|
@@ -225,14 +227,24 @@ type StallApplicationInfoType = {
|
|
|
225
227
|
};
|
|
226
228
|
rejectionPolicy: EnumRejectionPolicy;
|
|
227
229
|
stallCapacity: number;
|
|
228
|
-
}
|
|
230
|
+
}
|
|
229
231
|
interface MarketFormData extends BaseResourceTypeFormData {
|
|
230
|
-
dateTime:
|
|
232
|
+
dateTime: DateTimeType[];
|
|
231
233
|
location: LocationType;
|
|
232
234
|
provider: string;
|
|
233
|
-
stallApplicationInfo: StallApplicationInfoType;
|
|
234
235
|
tags?: string[] | null;
|
|
235
236
|
}
|
|
237
|
+
interface CreateMarketInfoFormData {
|
|
238
|
+
control: Control<MarketInfoType, any>;
|
|
239
|
+
fields: MarketInfoType;
|
|
240
|
+
formState: {
|
|
241
|
+
errors: FieldErrors<MarketInfoType>;
|
|
242
|
+
};
|
|
243
|
+
handleSubmit: UseFormHandleSubmit<MarketInfoType, any>;
|
|
244
|
+
reset: UseFormReset<MarketInfoType>;
|
|
245
|
+
setValue: UseFormSetValue<MarketInfoType>;
|
|
246
|
+
watch: UseFormWatch<MarketInfoType>;
|
|
247
|
+
}
|
|
236
248
|
interface CreateMarketFormData {
|
|
237
249
|
control: Control<MarketFormData, any>;
|
|
238
250
|
fields: MarketFormData;
|
|
@@ -248,7 +260,6 @@ interface MarketType extends BaseResourceType {
|
|
|
248
260
|
dateTime: MarketFormData["dateTime"];
|
|
249
261
|
location: MarketFormData["location"];
|
|
250
262
|
provider: string;
|
|
251
|
-
stallApplicationInfo: MarketFormData["stallApplicationInfo"];
|
|
252
263
|
tags: string[] | null;
|
|
253
264
|
}
|
|
254
265
|
interface MarketWithConnectionDatesType extends MarketType {
|
|
@@ -620,6 +631,14 @@ declare function useStallholderApplyForm(data?: StallholderApplyFormFormData): C
|
|
|
620
631
|
*/
|
|
621
632
|
declare function useMarketForm(data?: MarketFormData): CreateMarketFormData;
|
|
622
633
|
|
|
634
|
+
/**
|
|
635
|
+
* Custom hook to manage the market form state and validation.
|
|
636
|
+
*
|
|
637
|
+
* @param {MarketInfoType} data - The initial form data.
|
|
638
|
+
* @returns {CreateMarketInfoFormData} - The form methods and state.
|
|
639
|
+
*/
|
|
640
|
+
declare function useMarketInfoForm(data?: MarketInfoType): CreateMarketInfoFormData;
|
|
641
|
+
|
|
623
642
|
/**
|
|
624
643
|
* Custom hook to manage the user form state and validation.
|
|
625
644
|
*
|
|
@@ -650,6 +669,7 @@ declare function useResetPasswordForm(): CreateResetPasswordFormData;
|
|
|
650
669
|
|
|
651
670
|
declare const globalDefaultValues: BaseResourceTypeFormData;
|
|
652
671
|
declare const defaultMarketFormValues: MarketFormData;
|
|
672
|
+
declare const defaultMarketInfoFormValues: MarketInfoType;
|
|
653
673
|
declare const defaultStallholderFormValues: StallholderFormData;
|
|
654
674
|
declare const defaultStallholderApplyFormValues: StallholderApplyFormFormData;
|
|
655
675
|
|
|
@@ -733,6 +753,16 @@ declare const useDeleteMarket: () => {
|
|
|
733
753
|
error: _apollo_client.ApolloError | undefined;
|
|
734
754
|
loading: boolean;
|
|
735
755
|
};
|
|
756
|
+
declare const useCreateMarketInfo: () => {
|
|
757
|
+
createMarketInfo: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
758
|
+
error: _apollo_client.ApolloError | undefined;
|
|
759
|
+
loading: boolean;
|
|
760
|
+
};
|
|
761
|
+
declare const useUpdateMarketInfo: () => {
|
|
762
|
+
error: _apollo_client.ApolloError | undefined;
|
|
763
|
+
loading: boolean;
|
|
764
|
+
updateMarketInfo: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
765
|
+
};
|
|
736
766
|
|
|
737
767
|
declare const useGetMarkets: () => {
|
|
738
768
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -768,6 +798,12 @@ declare const useGetMarketsNearMe: (location: {
|
|
|
768
798
|
markets: MarketType[];
|
|
769
799
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
770
800
|
};
|
|
801
|
+
declare const useGetMarketInfo: (marketId: string) => {
|
|
802
|
+
error: _apollo_client.ApolloError | undefined;
|
|
803
|
+
loading: boolean;
|
|
804
|
+
marketInfo: MarketInfoType;
|
|
805
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
806
|
+
};
|
|
771
807
|
|
|
772
808
|
declare const useCreatePoster: () => {
|
|
773
809
|
createPoster: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
@@ -980,13 +1016,14 @@ declare const packagingOptions: OptionItem[];
|
|
|
980
1016
|
declare const producedIngOptions: OptionItem[];
|
|
981
1017
|
|
|
982
1018
|
declare const marketBasicInfoFields: FormField[];
|
|
983
|
-
declare const stallApplicationInfo: FormField[];
|
|
984
|
-
declare const stallApplicationInfoPaymentTarget: FormField[];
|
|
985
1019
|
declare const marketStartDateFields: FormDateField[];
|
|
986
|
-
declare const marketPriceByDateFields: FormField[];
|
|
987
1020
|
declare const marketEndDateFields: FormDateField[];
|
|
988
1021
|
declare const availableTagTypes: string[];
|
|
989
1022
|
declare const tagOptions: OptionItem[];
|
|
1023
|
+
|
|
1024
|
+
declare const stallApplicationInfo: FormField[];
|
|
1025
|
+
declare const stallApplicationInfoPaymentTarget: FormField[];
|
|
1026
|
+
declare const marketPriceByDateFields: FormField[];
|
|
990
1027
|
declare const rejectionPolicyOptions: OptionItem[];
|
|
991
1028
|
|
|
992
1029
|
declare const loginFields: FormField[];
|
|
@@ -1000,4 +1037,4 @@ declare const profileFields: FormField[];
|
|
|
1000
1037
|
declare const availableCategories: Category[];
|
|
1001
1038
|
declare const categoryColors: Record<string, string>;
|
|
1002
1039
|
|
|
1003
|
-
export { type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatInput, type ChatMessageInput, type ChatMessageType, type ChatType, type CreateLoginFormData, type CreateMarketFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateStallholderApplyFormFormData, type CreateStallholderFormData, type CreateUserFormData, type CreateValidateTokenFormData, type DateTimeType,
|
|
1040
|
+
export { type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatInput, type ChatMessageInput, type ChatMessageType, type ChatType, type CreateLoginFormData, type CreateMarketFormData, type CreateMarketInfoFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateStallholderApplyFormFormData, type CreateStallholderFormData, type CreateUserFormData, type CreateValidateTokenFormData, type DateTimeType, EnumInviteStatus, EnumNotification, EnumPaymentMethod, EnumRegions, EnumRejectionPolicy, EnumRelationResource, EnumResourceType, EnumResourceTypeIcon, EnumUserLicence, EnumUserRole, type FormDateField, type FormField, type GeocodeLocation, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type MarketFormData, type MarketInfoType, type MarketType, type MarketWithConnectionDatesType, type NotificationType, type Nullable, type OptionItem, type PlacePrediction, type PosterInputType, type Region, type RegisterFormData, type RelationDate, type RelationLog, type RelationType, type RequestPasswordResetFormData, type ResetPasswordFormData, type ResourceConnectionsType, type ResourceImageType, type SatllholderWithConnectionDatesType, type StallholderApplyFormFormData, type StallholderApplyFormType, type StallholderAttributes, type StallholderFormData, type StallholderLocation, type StallholderType, type Subcategory, type UserFormData, type UserType, type ValidateTokenFormData, availableCategories, availableCityOptions, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, dateFormat, defaultMarketFormValues, defaultMarketInfoFormValues, defaultRegion, defaultStallholderApplyFormValues, defaultStallholderFormValues, formatDate, formatTimestamp, getCurrentAndFutureDates, getFutureDatesAfterThreshold, globalDefaultValues, loginFields, mapArrayToOptions, marketBasicInfoFields, marketEndDateFields, marketPriceByDateFields, marketStartDateFields, packagingOptions, paymentMethodOptions, producedIngOptions, profileFields, registerFields, rejectionPolicyOptions, removeTypename, requestPasswordResetFields, resetPasswordFields, sortDatesByProximity, stallApplicationInfo, stallApplicationInfoPaymentTarget, stallholderBasicInfoFields, stallholderElectricity, stallholderEndDateFields, stallholderFullAddress, stallholderGazebo, stallholderLocationDescription, stallholderMultiLocation, stallholderPackaging, stallholderPaymentMethod, stallholderPriceRange, stallholderProducedIn, stallholderStallSize, stallholderStartDateFields, stallholderTable, statusOptions, tagOptions, timeFormat, truncateText, useAddParticipantToChat, useAddUserFavouriteResource, useCreateChat, useCreateMarket, useCreateMarketInfo, useCreatePoster, useCreateRelation, useCreateStallholder, useCreateStallholderApplyForm, useCreateUser, useDeleteChat, useDeleteMarket, useDeleteRelation, useDeleteStallholder, useGetChat, useGetChatSubscription, useGetMarket, useGetMarketInfo, useGetMarketRelations, useGetMarkets, useGetMarketsByRegion, useGetMarketsNearMe, useGetNotification, useGetRelation, useGetRelationByMarketAndStallholder, useGetResourceConnections, useGetStallholder, useGetStallholderApplyForm, useGetStallholderRelations, useGetStallholders, useGetStallholdersByRegion, useGetUser, useGetUserChats, useGetUserFavourites, useGetUserMarkets, useGetUserNotifications, useGetUsers, useLocationSearch, useLogin, useLoginForm, useMarketForm, useMarketInfoForm, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchMarkets, useSearchStallholders, useSendChatMessage, useStallholderApplyForm, useStallholderForm, useUpdateMarket, useUpdateMarketInfo, useUpdateRelation, useUpdateStallholder, useUpdateStallholderApplyForm, useUpdateUser, useUserForm, useValidateToken, useValidateTokenForm, validateTokenFields };
|
package/dist/index.d.ts
CHANGED
|
@@ -211,11 +211,13 @@ interface RelationType {
|
|
|
211
211
|
updatedAt?: string;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
-
|
|
214
|
+
interface DateTimeWithPriceType extends DateTimeType {
|
|
215
215
|
marketPrice: number;
|
|
216
|
-
}
|
|
217
|
-
|
|
216
|
+
}
|
|
217
|
+
interface MarketInfoType {
|
|
218
|
+
_id?: string;
|
|
218
219
|
applicationDeadlineHours: number;
|
|
220
|
+
dateTime: DateTimeWithPriceType[];
|
|
219
221
|
paymentDueHours: number;
|
|
220
222
|
paymentMethod: EnumPaymentMethod;
|
|
221
223
|
paymentTarget: {
|
|
@@ -225,14 +227,24 @@ type StallApplicationInfoType = {
|
|
|
225
227
|
};
|
|
226
228
|
rejectionPolicy: EnumRejectionPolicy;
|
|
227
229
|
stallCapacity: number;
|
|
228
|
-
}
|
|
230
|
+
}
|
|
229
231
|
interface MarketFormData extends BaseResourceTypeFormData {
|
|
230
|
-
dateTime:
|
|
232
|
+
dateTime: DateTimeType[];
|
|
231
233
|
location: LocationType;
|
|
232
234
|
provider: string;
|
|
233
|
-
stallApplicationInfo: StallApplicationInfoType;
|
|
234
235
|
tags?: string[] | null;
|
|
235
236
|
}
|
|
237
|
+
interface CreateMarketInfoFormData {
|
|
238
|
+
control: Control<MarketInfoType, any>;
|
|
239
|
+
fields: MarketInfoType;
|
|
240
|
+
formState: {
|
|
241
|
+
errors: FieldErrors<MarketInfoType>;
|
|
242
|
+
};
|
|
243
|
+
handleSubmit: UseFormHandleSubmit<MarketInfoType, any>;
|
|
244
|
+
reset: UseFormReset<MarketInfoType>;
|
|
245
|
+
setValue: UseFormSetValue<MarketInfoType>;
|
|
246
|
+
watch: UseFormWatch<MarketInfoType>;
|
|
247
|
+
}
|
|
236
248
|
interface CreateMarketFormData {
|
|
237
249
|
control: Control<MarketFormData, any>;
|
|
238
250
|
fields: MarketFormData;
|
|
@@ -248,7 +260,6 @@ interface MarketType extends BaseResourceType {
|
|
|
248
260
|
dateTime: MarketFormData["dateTime"];
|
|
249
261
|
location: MarketFormData["location"];
|
|
250
262
|
provider: string;
|
|
251
|
-
stallApplicationInfo: MarketFormData["stallApplicationInfo"];
|
|
252
263
|
tags: string[] | null;
|
|
253
264
|
}
|
|
254
265
|
interface MarketWithConnectionDatesType extends MarketType {
|
|
@@ -620,6 +631,14 @@ declare function useStallholderApplyForm(data?: StallholderApplyFormFormData): C
|
|
|
620
631
|
*/
|
|
621
632
|
declare function useMarketForm(data?: MarketFormData): CreateMarketFormData;
|
|
622
633
|
|
|
634
|
+
/**
|
|
635
|
+
* Custom hook to manage the market form state and validation.
|
|
636
|
+
*
|
|
637
|
+
* @param {MarketInfoType} data - The initial form data.
|
|
638
|
+
* @returns {CreateMarketInfoFormData} - The form methods and state.
|
|
639
|
+
*/
|
|
640
|
+
declare function useMarketInfoForm(data?: MarketInfoType): CreateMarketInfoFormData;
|
|
641
|
+
|
|
623
642
|
/**
|
|
624
643
|
* Custom hook to manage the user form state and validation.
|
|
625
644
|
*
|
|
@@ -650,6 +669,7 @@ declare function useResetPasswordForm(): CreateResetPasswordFormData;
|
|
|
650
669
|
|
|
651
670
|
declare const globalDefaultValues: BaseResourceTypeFormData;
|
|
652
671
|
declare const defaultMarketFormValues: MarketFormData;
|
|
672
|
+
declare const defaultMarketInfoFormValues: MarketInfoType;
|
|
653
673
|
declare const defaultStallholderFormValues: StallholderFormData;
|
|
654
674
|
declare const defaultStallholderApplyFormValues: StallholderApplyFormFormData;
|
|
655
675
|
|
|
@@ -733,6 +753,16 @@ declare const useDeleteMarket: () => {
|
|
|
733
753
|
error: _apollo_client.ApolloError | undefined;
|
|
734
754
|
loading: boolean;
|
|
735
755
|
};
|
|
756
|
+
declare const useCreateMarketInfo: () => {
|
|
757
|
+
createMarketInfo: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
758
|
+
error: _apollo_client.ApolloError | undefined;
|
|
759
|
+
loading: boolean;
|
|
760
|
+
};
|
|
761
|
+
declare const useUpdateMarketInfo: () => {
|
|
762
|
+
error: _apollo_client.ApolloError | undefined;
|
|
763
|
+
loading: boolean;
|
|
764
|
+
updateMarketInfo: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
765
|
+
};
|
|
736
766
|
|
|
737
767
|
declare const useGetMarkets: () => {
|
|
738
768
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -768,6 +798,12 @@ declare const useGetMarketsNearMe: (location: {
|
|
|
768
798
|
markets: MarketType[];
|
|
769
799
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
770
800
|
};
|
|
801
|
+
declare const useGetMarketInfo: (marketId: string) => {
|
|
802
|
+
error: _apollo_client.ApolloError | undefined;
|
|
803
|
+
loading: boolean;
|
|
804
|
+
marketInfo: MarketInfoType;
|
|
805
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
806
|
+
};
|
|
771
807
|
|
|
772
808
|
declare const useCreatePoster: () => {
|
|
773
809
|
createPoster: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
@@ -980,13 +1016,14 @@ declare const packagingOptions: OptionItem[];
|
|
|
980
1016
|
declare const producedIngOptions: OptionItem[];
|
|
981
1017
|
|
|
982
1018
|
declare const marketBasicInfoFields: FormField[];
|
|
983
|
-
declare const stallApplicationInfo: FormField[];
|
|
984
|
-
declare const stallApplicationInfoPaymentTarget: FormField[];
|
|
985
1019
|
declare const marketStartDateFields: FormDateField[];
|
|
986
|
-
declare const marketPriceByDateFields: FormField[];
|
|
987
1020
|
declare const marketEndDateFields: FormDateField[];
|
|
988
1021
|
declare const availableTagTypes: string[];
|
|
989
1022
|
declare const tagOptions: OptionItem[];
|
|
1023
|
+
|
|
1024
|
+
declare const stallApplicationInfo: FormField[];
|
|
1025
|
+
declare const stallApplicationInfoPaymentTarget: FormField[];
|
|
1026
|
+
declare const marketPriceByDateFields: FormField[];
|
|
990
1027
|
declare const rejectionPolicyOptions: OptionItem[];
|
|
991
1028
|
|
|
992
1029
|
declare const loginFields: FormField[];
|
|
@@ -1000,4 +1037,4 @@ declare const profileFields: FormField[];
|
|
|
1000
1037
|
declare const availableCategories: Category[];
|
|
1001
1038
|
declare const categoryColors: Record<string, string>;
|
|
1002
1039
|
|
|
1003
|
-
export { type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatInput, type ChatMessageInput, type ChatMessageType, type ChatType, type CreateLoginFormData, type CreateMarketFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateStallholderApplyFormFormData, type CreateStallholderFormData, type CreateUserFormData, type CreateValidateTokenFormData, type DateTimeType,
|
|
1040
|
+
export { type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatInput, type ChatMessageInput, type ChatMessageType, type ChatType, type CreateLoginFormData, type CreateMarketFormData, type CreateMarketInfoFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateStallholderApplyFormFormData, type CreateStallholderFormData, type CreateUserFormData, type CreateValidateTokenFormData, type DateTimeType, EnumInviteStatus, EnumNotification, EnumPaymentMethod, EnumRegions, EnumRejectionPolicy, EnumRelationResource, EnumResourceType, EnumResourceTypeIcon, EnumUserLicence, EnumUserRole, type FormDateField, type FormField, type GeocodeLocation, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type MarketFormData, type MarketInfoType, type MarketType, type MarketWithConnectionDatesType, type NotificationType, type Nullable, type OptionItem, type PlacePrediction, type PosterInputType, type Region, type RegisterFormData, type RelationDate, type RelationLog, type RelationType, type RequestPasswordResetFormData, type ResetPasswordFormData, type ResourceConnectionsType, type ResourceImageType, type SatllholderWithConnectionDatesType, type StallholderApplyFormFormData, type StallholderApplyFormType, type StallholderAttributes, type StallholderFormData, type StallholderLocation, type StallholderType, type Subcategory, type UserFormData, type UserType, type ValidateTokenFormData, availableCategories, availableCityOptions, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, dateFormat, defaultMarketFormValues, defaultMarketInfoFormValues, defaultRegion, defaultStallholderApplyFormValues, defaultStallholderFormValues, formatDate, formatTimestamp, getCurrentAndFutureDates, getFutureDatesAfterThreshold, globalDefaultValues, loginFields, mapArrayToOptions, marketBasicInfoFields, marketEndDateFields, marketPriceByDateFields, marketStartDateFields, packagingOptions, paymentMethodOptions, producedIngOptions, profileFields, registerFields, rejectionPolicyOptions, removeTypename, requestPasswordResetFields, resetPasswordFields, sortDatesByProximity, stallApplicationInfo, stallApplicationInfoPaymentTarget, stallholderBasicInfoFields, stallholderElectricity, stallholderEndDateFields, stallholderFullAddress, stallholderGazebo, stallholderLocationDescription, stallholderMultiLocation, stallholderPackaging, stallholderPaymentMethod, stallholderPriceRange, stallholderProducedIn, stallholderStallSize, stallholderStartDateFields, stallholderTable, statusOptions, tagOptions, timeFormat, truncateText, useAddParticipantToChat, useAddUserFavouriteResource, useCreateChat, useCreateMarket, useCreateMarketInfo, useCreatePoster, useCreateRelation, useCreateStallholder, useCreateStallholderApplyForm, useCreateUser, useDeleteChat, useDeleteMarket, useDeleteRelation, useDeleteStallholder, useGetChat, useGetChatSubscription, useGetMarket, useGetMarketInfo, useGetMarketRelations, useGetMarkets, useGetMarketsByRegion, useGetMarketsNearMe, useGetNotification, useGetRelation, useGetRelationByMarketAndStallholder, useGetResourceConnections, useGetStallholder, useGetStallholderApplyForm, useGetStallholderRelations, useGetStallholders, useGetStallholdersByRegion, useGetUser, useGetUserChats, useGetUserFavourites, useGetUserMarkets, useGetUserNotifications, useGetUsers, useLocationSearch, useLogin, useLoginForm, useMarketForm, useMarketInfoForm, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchMarkets, useSearchStallholders, useSendChatMessage, useStallholderApplyForm, useStallholderForm, useUpdateMarket, useUpdateMarketInfo, useUpdateRelation, useUpdateStallholder, useUpdateStallholderApplyForm, useUpdateUser, useUserForm, useValidateToken, useValidateTokenForm, validateTokenFields };
|