@timardex/cluemart-shared 1.0.66 → 1.0.68
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/graphql/index.cjs +763 -722
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +44 -38
- package/dist/graphql/index.d.ts +44 -38
- package/dist/graphql/index.mjs +740 -698
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +763 -722
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +148 -136
- package/dist/index.d.ts +148 -136
- package/dist/index.mjs +738 -698
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +8 -2
- package/dist/types/index.d.ts +8 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,94 @@
|
|
|
1
1
|
import { Control, FieldErrors, UseFormHandleSubmit, UseFormReset, UseFormSetValue, UseFormWatch } from 'react-hook-form';
|
|
2
2
|
import * as _apollo_client from '@apollo/client';
|
|
3
3
|
|
|
4
|
+
declare enum EnumInviteStatus {
|
|
5
|
+
ACCEPTED = "Accepted",
|
|
6
|
+
COMPLETED = "Completed",
|
|
7
|
+
EXPIRED = "Expired",
|
|
8
|
+
NO_STATUS = "No_Status",
|
|
9
|
+
PENDING = "Pending",
|
|
10
|
+
REJECTED = "Rejected",
|
|
11
|
+
WAITING = "Waiting"
|
|
12
|
+
}
|
|
13
|
+
declare enum EnumPaymentMethod {
|
|
14
|
+
CASH = "cash",
|
|
15
|
+
EFTPOS = "eftpos",
|
|
16
|
+
BANK_TRANSFER = "bank_transfer",
|
|
17
|
+
PAYPAL = "paypal",
|
|
18
|
+
STRIPE = "stripe"
|
|
19
|
+
}
|
|
20
|
+
declare enum EnumResourceType {
|
|
21
|
+
MARKET = "market",
|
|
22
|
+
STALLHOLDER = "stallholder"
|
|
23
|
+
}
|
|
24
|
+
declare enum EnumOSType {
|
|
25
|
+
ANDROID = "Android",
|
|
26
|
+
IOS = "iOS"
|
|
27
|
+
}
|
|
28
|
+
declare enum EnumRelationResource {
|
|
29
|
+
MARKET_INVITE_STALLHOLDER = "market_invite_stallholder",
|
|
30
|
+
STALLHOLDER_APPLICATION_TO_MARKET = "stallholder_application_to_market"
|
|
31
|
+
}
|
|
32
|
+
declare enum EnumNotification {
|
|
33
|
+
CREATED_MARKET = "created_market",
|
|
34
|
+
CREATED_STALLHOLDER = "created_stallholder",
|
|
35
|
+
NEW_CHAT_MESSAGE = "new_chat_message",
|
|
36
|
+
MARKET_INVITE_STALLHOLDER = "market_invite_stallholder",
|
|
37
|
+
STALLHOLDER_APPLICATION_TO_MARKET = "stallholder_application_to_market"
|
|
38
|
+
}
|
|
39
|
+
declare enum EnumResourceTypeIcon {
|
|
40
|
+
MARKET = "compass",
|
|
41
|
+
STALLHOLDER = "store"
|
|
42
|
+
}
|
|
43
|
+
declare enum EnumRegions {
|
|
44
|
+
Auckland = "Auckland",
|
|
45
|
+
BayOfPlenty = "Bay of Plenty",
|
|
46
|
+
Canterbury = "Canterbury",
|
|
47
|
+
Gisborne = "Gisborne",
|
|
48
|
+
HawkesBay = "Hawke's Bay",
|
|
49
|
+
ManawatuWanganui = "Manawatu-Wanganui",
|
|
50
|
+
Marlborough = "Marlborough",
|
|
51
|
+
Nelson = "Nelson",
|
|
52
|
+
Northland = "Northland",
|
|
53
|
+
Otago = "Otago",
|
|
54
|
+
Southland = "Southland",
|
|
55
|
+
Taranaki = "Taranaki",
|
|
56
|
+
Waikato = "Waikato",
|
|
57
|
+
Wellington = "Wellington"
|
|
58
|
+
}
|
|
59
|
+
declare enum ImageTypeEnum {
|
|
60
|
+
AVATAR = "avatar",
|
|
61
|
+
COVER = "cover",
|
|
62
|
+
IMAGE = "image",
|
|
63
|
+
LOGO = "logo"
|
|
64
|
+
}
|
|
65
|
+
declare enum EnumUserLicence {
|
|
66
|
+
ENTERPRISE_MARKET = "enterprise_market",
|
|
67
|
+
ENTERPRISE_STALLHOLDER = "enterprise_stallholder",
|
|
68
|
+
PRO_MARKET = "pro_market",
|
|
69
|
+
PRO_STALLHOLDER = "pro_stallholder",
|
|
70
|
+
STANDARD_MARKET = "standard_market",
|
|
71
|
+
STANDARD_STALLHOLDER = "standard_stallholder"
|
|
72
|
+
}
|
|
73
|
+
declare enum EnumUserRole {
|
|
74
|
+
ADMIN = "admin",
|
|
75
|
+
CUSTOMER = "customer"
|
|
76
|
+
}
|
|
77
|
+
declare enum EnumSocialMedia {
|
|
78
|
+
FACEBOOK = "facebook",
|
|
79
|
+
INSTAGRAM = "instagram",
|
|
80
|
+
TIKTOK = "tiktok",
|
|
81
|
+
TWITTER = "twitter",
|
|
82
|
+
WEBSITE = "website",
|
|
83
|
+
YOUTUBE = "youtube"
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
interface AdminUpdateResourceType {
|
|
87
|
+
active: boolean;
|
|
88
|
+
resourceId: string;
|
|
89
|
+
resourceType: EnumResourceType;
|
|
90
|
+
}
|
|
91
|
+
|
|
4
92
|
type LoginFormData = {
|
|
5
93
|
email: string;
|
|
6
94
|
isAdminPage?: boolean;
|
|
@@ -107,86 +195,22 @@ interface ChatType {
|
|
|
107
195
|
updatedAt: string;
|
|
108
196
|
}
|
|
109
197
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
declare enum EnumResourceType {
|
|
127
|
-
MARKET = "market",
|
|
128
|
-
STALLHOLDER = "stallholder"
|
|
129
|
-
}
|
|
130
|
-
declare enum EnumOSType {
|
|
131
|
-
ANDROID = "Android",
|
|
132
|
-
IOS = "iOS"
|
|
133
|
-
}
|
|
134
|
-
declare enum EnumRelationResource {
|
|
135
|
-
MARKET_INVITE_STALLHOLDER = "market_invite_stallholder",
|
|
136
|
-
STALLHOLDER_APPLICATION_TO_MARKET = "stallholder_application_to_market"
|
|
137
|
-
}
|
|
138
|
-
declare enum EnumNotification {
|
|
139
|
-
CREATED_MARKET = "created_market",
|
|
140
|
-
CREATED_STALLHOLDER = "created_stallholder",
|
|
141
|
-
NEW_CHAT_MESSAGE = "new_chat_message",
|
|
142
|
-
MARKET_INVITE_STALLHOLDER = "market_invite_stallholder",
|
|
143
|
-
STALLHOLDER_APPLICATION_TO_MARKET = "stallholder_application_to_market"
|
|
144
|
-
}
|
|
145
|
-
declare enum EnumResourceTypeIcon {
|
|
146
|
-
MARKET = "compass",
|
|
147
|
-
STALLHOLDER = "store"
|
|
148
|
-
}
|
|
149
|
-
declare enum EnumRegions {
|
|
150
|
-
Auckland = "Auckland",
|
|
151
|
-
BayOfPlenty = "Bay of Plenty",
|
|
152
|
-
Canterbury = "Canterbury",
|
|
153
|
-
Gisborne = "Gisborne",
|
|
154
|
-
HawkesBay = "Hawke's Bay",
|
|
155
|
-
ManawatuWanganui = "Manawatu-Wanganui",
|
|
156
|
-
Marlborough = "Marlborough",
|
|
157
|
-
Nelson = "Nelson",
|
|
158
|
-
Northland = "Northland",
|
|
159
|
-
Otago = "Otago",
|
|
160
|
-
Southland = "Southland",
|
|
161
|
-
Taranaki = "Taranaki",
|
|
162
|
-
Waikato = "Waikato",
|
|
163
|
-
Wellington = "Wellington"
|
|
164
|
-
}
|
|
165
|
-
declare enum ImageTypeEnum {
|
|
166
|
-
AVATAR = "avatar",
|
|
167
|
-
COVER = "cover",
|
|
168
|
-
IMAGE = "image",
|
|
169
|
-
LOGO = "logo"
|
|
170
|
-
}
|
|
171
|
-
declare enum EnumUserLicence {
|
|
172
|
-
ENTERPRISE_MARKET = "enterprise_market",
|
|
173
|
-
ENTERPRISE_STALLHOLDER = "enterprise_stallholder",
|
|
174
|
-
PRO_MARKET = "pro_market",
|
|
175
|
-
PRO_STALLHOLDER = "pro_stallholder",
|
|
176
|
-
STANDARD_MARKET = "standard_market",
|
|
177
|
-
STANDARD_STALLHOLDER = "standard_stallholder"
|
|
178
|
-
}
|
|
179
|
-
declare enum EnumUserRole {
|
|
180
|
-
ADMIN = "admin",
|
|
181
|
-
CUSTOMER = "customer"
|
|
182
|
-
}
|
|
183
|
-
declare enum EnumSocialMedia {
|
|
184
|
-
FACEBOOK = "facebook",
|
|
185
|
-
INSTAGRAM = "instagram",
|
|
186
|
-
TIKTOK = "tiktok",
|
|
187
|
-
TWITTER = "twitter",
|
|
188
|
-
WEBSITE = "website",
|
|
189
|
-
YOUTUBE = "youtube"
|
|
198
|
+
type ContactUsFormData = {
|
|
199
|
+
email: string;
|
|
200
|
+
firstName: string;
|
|
201
|
+
lastName: string;
|
|
202
|
+
message: string;
|
|
203
|
+
};
|
|
204
|
+
interface CreateContactUsFormData {
|
|
205
|
+
control: Control<ContactUsFormData, any>;
|
|
206
|
+
fields: ContactUsFormData;
|
|
207
|
+
formState: {
|
|
208
|
+
errors: FieldErrors<ContactUsFormData>;
|
|
209
|
+
};
|
|
210
|
+
handleSubmit: UseFormHandleSubmit<ContactUsFormData, any>;
|
|
211
|
+
reset: UseFormReset<ContactUsFormData>;
|
|
212
|
+
setValue: UseFormSetValue<ContactUsFormData>;
|
|
213
|
+
watch: UseFormWatch<ContactUsFormData>;
|
|
190
214
|
}
|
|
191
215
|
|
|
192
216
|
type RelationDate = {
|
|
@@ -547,24 +571,6 @@ type TesterType = {
|
|
|
547
571
|
updatedAt: string;
|
|
548
572
|
};
|
|
549
573
|
|
|
550
|
-
type ContactUsFormData = {
|
|
551
|
-
email: string;
|
|
552
|
-
firstName: string;
|
|
553
|
-
lastName: string;
|
|
554
|
-
message: string;
|
|
555
|
-
};
|
|
556
|
-
interface CreateContactUsFormData {
|
|
557
|
-
control: Control<ContactUsFormData, any>;
|
|
558
|
-
fields: ContactUsFormData;
|
|
559
|
-
formState: {
|
|
560
|
-
errors: FieldErrors<ContactUsFormData>;
|
|
561
|
-
};
|
|
562
|
-
handleSubmit: UseFormHandleSubmit<ContactUsFormData, any>;
|
|
563
|
-
reset: UseFormReset<ContactUsFormData>;
|
|
564
|
-
setValue: UseFormSetValue<ContactUsFormData>;
|
|
565
|
-
watch: UseFormWatch<ContactUsFormData>;
|
|
566
|
-
}
|
|
567
|
-
|
|
568
574
|
declare const dateFormat = "DD-MM-YYYY";
|
|
569
575
|
declare const timeFormat = "HH:mm";
|
|
570
576
|
type DateFormat = "date" | "time" | "datetime";
|
|
@@ -710,6 +716,12 @@ declare function useTestersForm(data?: TestersFormData): CreateTestersFormData;
|
|
|
710
716
|
|
|
711
717
|
declare function useContactUsForm(data?: ContactUsFormData): CreateContactUsFormData;
|
|
712
718
|
|
|
719
|
+
declare const useAdminUpdateResourceType: () => {
|
|
720
|
+
adminUpdateResourceType: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
721
|
+
error: _apollo_client.ApolloError | undefined;
|
|
722
|
+
loading: boolean;
|
|
723
|
+
};
|
|
724
|
+
|
|
713
725
|
declare const useRegister: () => {
|
|
714
726
|
error: _apollo_client.ApolloError | undefined;
|
|
715
727
|
loading: boolean;
|
|
@@ -785,6 +797,12 @@ declare const useGetUserChats: () => {
|
|
|
785
797
|
userChats: ChatType[];
|
|
786
798
|
};
|
|
787
799
|
|
|
800
|
+
declare const useContactUs: () => {
|
|
801
|
+
contactUs: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
802
|
+
error: _apollo_client.ApolloError | undefined;
|
|
803
|
+
loading: boolean;
|
|
804
|
+
};
|
|
805
|
+
|
|
788
806
|
declare const useCreateMarket: () => {
|
|
789
807
|
createMarket: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
790
808
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -973,6 +991,37 @@ declare const useGetChatSubscription: () => {
|
|
|
973
991
|
loading: boolean;
|
|
974
992
|
};
|
|
975
993
|
|
|
994
|
+
declare const useCreateTester: () => {
|
|
995
|
+
createTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
996
|
+
data: any;
|
|
997
|
+
error: _apollo_client.ApolloError | undefined;
|
|
998
|
+
loading: boolean;
|
|
999
|
+
};
|
|
1000
|
+
declare const useUpdateTester: () => {
|
|
1001
|
+
data: any;
|
|
1002
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1003
|
+
loading: boolean;
|
|
1004
|
+
updateTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1005
|
+
};
|
|
1006
|
+
declare const useDeleteTester: () => {
|
|
1007
|
+
deleteTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1008
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1009
|
+
loading: boolean;
|
|
1010
|
+
};
|
|
1011
|
+
|
|
1012
|
+
declare const useGetTesters: () => {
|
|
1013
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1014
|
+
loading: boolean;
|
|
1015
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
1016
|
+
testers: TesterType[];
|
|
1017
|
+
};
|
|
1018
|
+
declare const useGetTester: (_id: string) => {
|
|
1019
|
+
error: _apollo_client.ApolloError | undefined;
|
|
1020
|
+
loading: boolean;
|
|
1021
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
1022
|
+
tester: TesterType;
|
|
1023
|
+
};
|
|
1024
|
+
|
|
976
1025
|
declare const useCreateUser: () => {
|
|
977
1026
|
createUser: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
978
1027
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1039,43 +1088,6 @@ declare const useGetUserNotifications: () => {
|
|
|
1039
1088
|
userNotifications: boolean;
|
|
1040
1089
|
};
|
|
1041
1090
|
|
|
1042
|
-
declare const useCreateTester: () => {
|
|
1043
|
-
createTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1044
|
-
data: any;
|
|
1045
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1046
|
-
loading: boolean;
|
|
1047
|
-
};
|
|
1048
|
-
declare const useUpdateTester: () => {
|
|
1049
|
-
data: any;
|
|
1050
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1051
|
-
loading: boolean;
|
|
1052
|
-
updateTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1053
|
-
};
|
|
1054
|
-
declare const useDeleteTester: () => {
|
|
1055
|
-
deleteTester: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1056
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1057
|
-
loading: boolean;
|
|
1058
|
-
};
|
|
1059
|
-
|
|
1060
|
-
declare const useGetTesters: () => {
|
|
1061
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1062
|
-
loading: boolean;
|
|
1063
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
1064
|
-
testers: TesterType[];
|
|
1065
|
-
};
|
|
1066
|
-
declare const useGetTester: (_id: string) => {
|
|
1067
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1068
|
-
loading: boolean;
|
|
1069
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<any>>;
|
|
1070
|
-
tester: TesterType;
|
|
1071
|
-
};
|
|
1072
|
-
|
|
1073
|
-
declare const useContactUs: () => {
|
|
1074
|
-
contactUs: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
|
1075
|
-
error: _apollo_client.ApolloError | undefined;
|
|
1076
|
-
loading: boolean;
|
|
1077
|
-
};
|
|
1078
|
-
|
|
1079
1091
|
declare const stallholderBasicInfoFields: FormField[];
|
|
1080
1092
|
declare const stallholderMultiLocation: FormField;
|
|
1081
1093
|
declare const stallholderFullAddress: FormField;
|
|
@@ -1147,4 +1159,4 @@ declare const SAVED_TOKEN_KEY = "savedToken";
|
|
|
1147
1159
|
declare const SAVED_REFRESH_TOKEN_KEY = "savedRefreshToken";
|
|
1148
1160
|
declare const USER_STORAGE_KEY = "authUser";
|
|
1149
1161
|
|
|
1150
|
-
export { type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatInput, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateContactUsFormData, type CreateLoginFormData, type CreateMarketFormData, type CreateMarketInfoFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateStallholderFormData, type CreateStallholderInfoFormData, type CreateTestersFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type DateTimeType, type DateTimeWithPriceType, EnumInviteStatus, EnumNotification, EnumOSType, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumResourceTypeIcon, EnumSocialMedia, EnumUserLicence, EnumUserRole, type FormDateField, type FormField, type GeocodeLocation, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type MarketFormData, type MarketInfoFormData, type MarketInfoType, type MarketType, type MarketWithConnectionDatesType, type NotificationType, type Nullable, type OptionItem, type PaymentInfoType, type PlacePrediction, type PosterInputType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceConnectionsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SatllholderWithConnectionDatesType, type SocialMediaType, type StallType, type StallholderAttributes, type StallholderFormData, type StallholderInfoFormData, type StallholderInfoType, type StallholderLocation, type StallholderType, type Subcategory, type TesterType, type TestersFormData, USER_STORAGE_KEY, type UserFormData, type UserType, type ValidateVerificationTokenFormData, availableCategories, availableCityOptions, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, contactUsFields, dateFormat, defaultMarketFormValues, defaultMarketInfoFormValues, defaultRegion, defaultStallholderFormValues, defaultStallholderInfoFormValues, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, marketBasicInfoFields, marketEndDateFields, marketInfo, marketInfoPaymentInfo, marketStartDateFields, normalizeUrl, packagingOptions, paymentMethodOptions, producedIngOptions, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, stallholderBasicInfoFields, stallholderElectricity, stallholderEndDateFields, stallholderFullAddress, stallholderGazebo, stallholderLocationDescription, stallholderMultiLocation, stallholderPackaging, stallholderPaymentMethod, stallholderPriceRange, stallholderProducedIn, stallholderStallSize, stallholderStartDateFields, stallholderTable, statusOptions, tagOptions, testersFields, timeFormat, truncateText, useAddParticipantToChat, useAddUserFavouriteResource, useContactUs, useContactUsForm, useCreateChat, useCreateMarket, useCreateMarketInfo, useCreatePoster, useCreateRelation, useCreateStallholder, useCreateStallholderInfo, useCreateTester, useCreateUser, useDeleteChat, useDeleteMarket, useDeleteRelation, useDeleteStallholder, useDeleteTester, useDeleteUser, useGetChat, useGetChatSubscription, useGetMarket, useGetMarketInfo, useGetMarketRelations, useGetMarkets, useGetMarketsByRegion, useGetMarketsNearMe, useGetNotification, useGetRelation, useGetRelationByMarketAndStallholder, useGetResourceConnections, useGetStallholder, useGetStallholderInfo, useGetStallholderRelations, useGetStallholders, useGetStallholdersByRegion, useGetTester, useGetTesters, useGetUser, useGetUserChats, useGetUserFavourites, useGetUserMarkets, useGetUserNotifications, useGetUserStallholder, useGetUsers, useLocationSearch, useLogin, useLoginForm, useLogout, useMarketForm, useMarketInfoForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchMarkets, useSearchStallholders, useSendChatMessage, useStallholderForm, useStallholderInfoForm, useTestersForm, useUpdateMarket, useUpdateMarketInfo, useUpdateRelation, useUpdateStallholder, useUpdateStallholderInfo, useUpdateTester, useUpdateUser, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, validateVerificationTokenFields };
|
|
1162
|
+
export { type AdminUpdateResourceType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatInput, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateContactUsFormData, type CreateLoginFormData, type CreateMarketFormData, type CreateMarketInfoFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateStallholderFormData, type CreateStallholderInfoFormData, type CreateTestersFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type DateTimeType, type DateTimeWithPriceType, EnumInviteStatus, EnumNotification, EnumOSType, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumResourceTypeIcon, EnumSocialMedia, EnumUserLicence, EnumUserRole, type FormDateField, type FormField, type GeocodeLocation, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type MarketFormData, type MarketInfoFormData, type MarketInfoType, type MarketType, type MarketWithConnectionDatesType, type NotificationType, type Nullable, type OptionItem, type PaymentInfoType, type PlacePrediction, type PosterInputType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceConnectionsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SatllholderWithConnectionDatesType, type SocialMediaType, type StallType, type StallholderAttributes, type StallholderFormData, type StallholderInfoFormData, type StallholderInfoType, type StallholderLocation, type StallholderType, type Subcategory, type TesterType, type TestersFormData, USER_STORAGE_KEY, type UserFormData, type UserType, type ValidateVerificationTokenFormData, availableCategories, availableCityOptions, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, contactUsFields, dateFormat, defaultMarketFormValues, defaultMarketInfoFormValues, defaultRegion, defaultStallholderFormValues, defaultStallholderInfoFormValues, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, marketBasicInfoFields, marketEndDateFields, marketInfo, marketInfoPaymentInfo, marketStartDateFields, normalizeUrl, packagingOptions, paymentMethodOptions, producedIngOptions, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, stallholderBasicInfoFields, stallholderElectricity, stallholderEndDateFields, stallholderFullAddress, stallholderGazebo, stallholderLocationDescription, stallholderMultiLocation, stallholderPackaging, stallholderPaymentMethod, stallholderPriceRange, stallholderProducedIn, stallholderStallSize, stallholderStartDateFields, stallholderTable, statusOptions, tagOptions, testersFields, timeFormat, truncateText, useAddParticipantToChat, useAddUserFavouriteResource, useAdminUpdateResourceType, useContactUs, useContactUsForm, useCreateChat, useCreateMarket, useCreateMarketInfo, useCreatePoster, useCreateRelation, useCreateStallholder, useCreateStallholderInfo, useCreateTester, useCreateUser, useDeleteChat, useDeleteMarket, useDeleteRelation, useDeleteStallholder, useDeleteTester, useDeleteUser, useGetChat, useGetChatSubscription, useGetMarket, useGetMarketInfo, useGetMarketRelations, useGetMarkets, useGetMarketsByRegion, useGetMarketsNearMe, useGetNotification, useGetRelation, useGetRelationByMarketAndStallholder, useGetResourceConnections, useGetStallholder, useGetStallholderInfo, useGetStallholderRelations, useGetStallholders, useGetStallholdersByRegion, useGetTester, useGetTesters, useGetUser, useGetUserChats, useGetUserFavourites, useGetUserMarkets, useGetUserNotifications, useGetUserStallholder, useGetUsers, useLocationSearch, useLogin, useLoginForm, useLogout, useMarketForm, useMarketInfoForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchMarkets, useSearchStallholders, useSendChatMessage, useStallholderForm, useStallholderInfoForm, useTestersForm, useUpdateMarket, useUpdateMarketInfo, useUpdateRelation, useUpdateStallholder, useUpdateStallholderInfo, useUpdateTester, useUpdateUser, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, validateVerificationTokenFields };
|