@timardex/cluemart-shared 1.0.15 → 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-CAeHx-BM.d.mts +84 -0
- package/dist/auth-gmfsaSPo.d.ts +84 -0
- package/dist/chat-BUVCf9Tu.d.mts +27 -0
- package/dist/chat-BUVCf9Tu.d.ts +27 -0
- package/dist/chunk-K5NK2CK5.mjs +133 -0
- package/dist/chunk-K5NK2CK5.mjs.map +1 -0
- package/dist/chunk-L2H5WFGC.mjs +100 -0
- package/dist/chunk-L2H5WFGC.mjs.map +1 -0
- package/dist/enums/index.cjs +134 -0
- package/dist/enums/index.cjs.map +1 -0
- package/dist/enums/index.d.mts +75 -0
- package/dist/enums/index.d.ts +75 -0
- package/dist/enums/index.mjs +27 -0
- package/dist/enums/index.mjs.map +1 -0
- package/dist/formFields/index.cjs +890 -0
- package/dist/formFields/index.cjs.map +1 -0
- package/dist/formFields/index.d.mts +61 -0
- package/dist/formFields/index.d.ts +61 -0
- package/dist/formFields/index.mjs +756 -0
- package/dist/formFields/index.mjs.map +1 -0
- package/dist/global-B6OE9jjE.d.mts +349 -0
- package/dist/global-Diphaotm.d.ts +349 -0
- package/dist/graphql/index.cjs +1712 -0
- package/dist/graphql/index.cjs.map +1 -0
- package/dist/graphql/index.d.mts +315 -0
- package/dist/graphql/index.d.ts +315 -0
- package/dist/graphql/index.mjs +1633 -0
- package/dist/graphql/index.mjs.map +1 -0
- package/dist/hooks/index.cjs +1167 -0
- package/dist/hooks/index.cjs.map +1 -0
- package/dist/hooks/index.d.mts +87 -0
- package/dist/hooks/index.d.ts +87 -0
- package/dist/hooks/index.mjs +1045 -0
- package/dist/hooks/index.mjs.map +1 -0
- package/dist/index.cjs +312 -193
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +48 -297
- package/dist/index.d.ts +48 -297
- package/dist/index.mjs +305 -171
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.cjs +19 -0
- package/dist/types/index.cjs.map +1 -0
- package/dist/types/index.d.mts +12 -0
- package/dist/types/index.d.ts +12 -0
- package/dist/types/index.mjs +1 -0
- package/dist/types/index.mjs.map +1 -0
- package/dist/utils/index.cjs +215 -0
- package/dist/utils/index.cjs.map +1 -0
- package/dist/utils/index.d.mts +66 -0
- package/dist/utils/index.d.ts +66 -0
- package/dist/utils/index.mjs +38 -0
- package/dist/utils/index.mjs.map +1 -0
- package/package.json +37 -4
- package/dist/index.js.map +0 -1
|
@@ -0,0 +1,756 @@
|
|
|
1
|
+
import {
|
|
2
|
+
mapArrayToOptions
|
|
3
|
+
} from "../chunk-K5NK2CK5.mjs";
|
|
4
|
+
import {
|
|
5
|
+
EnumRejectionPolicy
|
|
6
|
+
} from "../chunk-L2H5WFGC.mjs";
|
|
7
|
+
|
|
8
|
+
// src/formFields/stallholder/stallholder.ts
|
|
9
|
+
var stallholderBasicInfoFields = [
|
|
10
|
+
{
|
|
11
|
+
helperText: "Business Name of the Stallholder *",
|
|
12
|
+
name: "name",
|
|
13
|
+
placeholder: "Business Name"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
helperText: "Description of the Stallholder *",
|
|
17
|
+
isTextArea: true,
|
|
18
|
+
name: "description",
|
|
19
|
+
placeholder: "Description"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
helperText: "Enter Promo code if you have one.",
|
|
23
|
+
name: "promoCode",
|
|
24
|
+
placeholder: "Promo code"
|
|
25
|
+
}
|
|
26
|
+
];
|
|
27
|
+
var stallholderMultiLocation = {
|
|
28
|
+
helperText: "Usefull when you are not only selling products on Markets but also providing services at other locations.",
|
|
29
|
+
name: "multiLocation",
|
|
30
|
+
placeholder: "Enable multi location"
|
|
31
|
+
};
|
|
32
|
+
var stallholderFullAddress = {
|
|
33
|
+
helperText: "Enter address",
|
|
34
|
+
name: "fullAddress",
|
|
35
|
+
placeholder: "Start typing to find address"
|
|
36
|
+
};
|
|
37
|
+
var stallholderStartDateFields = [
|
|
38
|
+
{
|
|
39
|
+
dateMode: "date",
|
|
40
|
+
helperText: "Start Date",
|
|
41
|
+
name: "startDate",
|
|
42
|
+
placeholder: "Start Date"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
dateMode: "time",
|
|
46
|
+
helperText: "Start Time",
|
|
47
|
+
name: "startTime",
|
|
48
|
+
placeholder: "Start Time"
|
|
49
|
+
}
|
|
50
|
+
];
|
|
51
|
+
var stallholderEndDateFields = [
|
|
52
|
+
{
|
|
53
|
+
dateMode: "date",
|
|
54
|
+
helperText: "End Date",
|
|
55
|
+
name: "endDate",
|
|
56
|
+
placeholder: "End Date"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
dateMode: "time",
|
|
60
|
+
helperText: "End Time",
|
|
61
|
+
name: "endTime",
|
|
62
|
+
placeholder: "End Time"
|
|
63
|
+
}
|
|
64
|
+
];
|
|
65
|
+
var stallholderLocationDescription = {
|
|
66
|
+
helperText: "Description",
|
|
67
|
+
isTextArea: true,
|
|
68
|
+
name: "description",
|
|
69
|
+
placeholder: "Description"
|
|
70
|
+
};
|
|
71
|
+
var availableCityTypes = [
|
|
72
|
+
"Auckland",
|
|
73
|
+
"Christchurch",
|
|
74
|
+
"Hamilton",
|
|
75
|
+
"Wellington"
|
|
76
|
+
];
|
|
77
|
+
var availableCityOptions = mapArrayToOptions(availableCityTypes);
|
|
78
|
+
|
|
79
|
+
// src/formFields/stallholder/stallholderApplyForm.ts
|
|
80
|
+
var stallholderElectricity = {
|
|
81
|
+
details: {
|
|
82
|
+
helperText: "Please describe details e.g. amps, voltage, etc.",
|
|
83
|
+
isTextArea: true,
|
|
84
|
+
name: "electricity.details",
|
|
85
|
+
placeholder: "Electricity requirements"
|
|
86
|
+
},
|
|
87
|
+
isRequired: {
|
|
88
|
+
name: "electricity.isRequired",
|
|
89
|
+
placeholder: "Do you require electricity?"
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
var stallholderGazebo = {
|
|
93
|
+
details: {
|
|
94
|
+
helperText: "Please describe details e.g. size, etc.",
|
|
95
|
+
isTextArea: true,
|
|
96
|
+
name: "gazebo.details",
|
|
97
|
+
placeholder: "Gazebo requirements"
|
|
98
|
+
},
|
|
99
|
+
isRequired: {
|
|
100
|
+
name: "gazebo.isRequired",
|
|
101
|
+
placeholder: "Do you require Gazebo?"
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
var stallholderTable = {
|
|
105
|
+
details: {
|
|
106
|
+
helperText: "Please describe details e.g. size, etc.",
|
|
107
|
+
isTextArea: true,
|
|
108
|
+
name: "table.details",
|
|
109
|
+
placeholder: "Table requirements"
|
|
110
|
+
},
|
|
111
|
+
isRequired: {
|
|
112
|
+
name: "table.isRequired",
|
|
113
|
+
placeholder: "Do you require Table?"
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
var stallholderPriceRange = {
|
|
117
|
+
max: {
|
|
118
|
+
helperText: "Product maximum price",
|
|
119
|
+
name: "priceRange.max",
|
|
120
|
+
placeholder: "Maximum price: "
|
|
121
|
+
},
|
|
122
|
+
min: {
|
|
123
|
+
helperText: "Product minimum price",
|
|
124
|
+
name: "priceRange.min",
|
|
125
|
+
placeholder: "Minimum price: "
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
var stallholderStallSize = {
|
|
129
|
+
depth: {
|
|
130
|
+
helperText: "Stall size in depth",
|
|
131
|
+
name: "stallSize.depth",
|
|
132
|
+
placeholder: "Stall Depth: "
|
|
133
|
+
},
|
|
134
|
+
width: {
|
|
135
|
+
helperText: "Stall size in width",
|
|
136
|
+
name: "stallSize.width",
|
|
137
|
+
placeholder: "Stall Width: "
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
var stallholderPackaging = {
|
|
141
|
+
helperText: "Select packaging type, you can select more than one",
|
|
142
|
+
name: "packaging",
|
|
143
|
+
placeholder: "Packaging type"
|
|
144
|
+
};
|
|
145
|
+
var stallholderPaymentMethod = {
|
|
146
|
+
helperText: "Select payment method",
|
|
147
|
+
name: "paymentMethod",
|
|
148
|
+
placeholder: "Payment Method type"
|
|
149
|
+
};
|
|
150
|
+
var stallholderProducedIn = {
|
|
151
|
+
helperText: "Select where the product is produced, you can select more than one",
|
|
152
|
+
name: "producedIn",
|
|
153
|
+
placeholder: "Produced type"
|
|
154
|
+
};
|
|
155
|
+
var packagingTypes = [
|
|
156
|
+
"Biodegradable",
|
|
157
|
+
"Compostable",
|
|
158
|
+
"Recyclable",
|
|
159
|
+
"Reusable",
|
|
160
|
+
"Single-use",
|
|
161
|
+
"Glass",
|
|
162
|
+
"Paper",
|
|
163
|
+
"Plastic",
|
|
164
|
+
"Wood",
|
|
165
|
+
"Other"
|
|
166
|
+
];
|
|
167
|
+
var producedIngTypes = [
|
|
168
|
+
"Commercial Kitchen",
|
|
169
|
+
"Home Premises",
|
|
170
|
+
"Factory",
|
|
171
|
+
"Farm",
|
|
172
|
+
"Other"
|
|
173
|
+
];
|
|
174
|
+
var packagingOptions = mapArrayToOptions(packagingTypes);
|
|
175
|
+
var producedIngOptions = mapArrayToOptions(producedIngTypes);
|
|
176
|
+
|
|
177
|
+
// src/formFields/market/market.ts
|
|
178
|
+
var marketBasicInfoFields = [
|
|
179
|
+
{
|
|
180
|
+
helperText: "Name of the Market *",
|
|
181
|
+
name: "name",
|
|
182
|
+
placeholder: "Name"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
helperText: "Name of the Provider *",
|
|
186
|
+
name: "provider",
|
|
187
|
+
placeholder: "Provider"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
helperText: "Description of the Market *",
|
|
191
|
+
isTextArea: true,
|
|
192
|
+
name: "description",
|
|
193
|
+
placeholder: "Description"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
helperText: "Enter Promo code if you have one.",
|
|
197
|
+
name: "promoCode",
|
|
198
|
+
placeholder: "Promo code"
|
|
199
|
+
}
|
|
200
|
+
];
|
|
201
|
+
var marketStartDateFields = [
|
|
202
|
+
{
|
|
203
|
+
dateMode: "date",
|
|
204
|
+
helperText: "Start Date of the Market *",
|
|
205
|
+
name: "startDate",
|
|
206
|
+
placeholder: "Start Date"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
dateMode: "time",
|
|
210
|
+
helperText: "Start Time of the Market *",
|
|
211
|
+
name: "startTime",
|
|
212
|
+
placeholder: "Start Time"
|
|
213
|
+
}
|
|
214
|
+
];
|
|
215
|
+
var marketEndDateFields = [
|
|
216
|
+
{
|
|
217
|
+
dateMode: "date",
|
|
218
|
+
helperText: "End Date of the Market *",
|
|
219
|
+
name: "endDate",
|
|
220
|
+
placeholder: "End Date"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
dateMode: "time",
|
|
224
|
+
helperText: "End Time of the Market *",
|
|
225
|
+
name: "endTime",
|
|
226
|
+
placeholder: "End Time"
|
|
227
|
+
}
|
|
228
|
+
];
|
|
229
|
+
var availableTagTypes = [
|
|
230
|
+
"All Ages",
|
|
231
|
+
"Day Market",
|
|
232
|
+
"Family Friendly",
|
|
233
|
+
"Free Entry",
|
|
234
|
+
"Indoor Market",
|
|
235
|
+
"Live Music",
|
|
236
|
+
"Night Market",
|
|
237
|
+
"Outdoor Market",
|
|
238
|
+
"Pet Friendly",
|
|
239
|
+
"Near Bustop",
|
|
240
|
+
"Near Train Station",
|
|
241
|
+
"Parking Available",
|
|
242
|
+
"Toilet Available",
|
|
243
|
+
"Wheelchair Accessible",
|
|
244
|
+
"Near Playground",
|
|
245
|
+
"Port Nearby"
|
|
246
|
+
];
|
|
247
|
+
var tagOptions = mapArrayToOptions(availableTagTypes);
|
|
248
|
+
|
|
249
|
+
// src/formFields/market/marketInfo.ts
|
|
250
|
+
var stallApplicationInfo = [
|
|
251
|
+
{
|
|
252
|
+
helperText: "Application Deadline of the Market *",
|
|
253
|
+
keyboardType: "number-pad",
|
|
254
|
+
name: "stallApplicationInfo.applicationDeadlineHours",
|
|
255
|
+
placeholder: "Application Deadline Hours"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
helperText: "Stall Capacity of the Market *",
|
|
259
|
+
keyboardType: "number-pad",
|
|
260
|
+
name: "stallApplicationInfo.stallCapacity",
|
|
261
|
+
placeholder: "Stall Capacity"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
helperText: "Payment Due Hours of the Market *",
|
|
265
|
+
keyboardType: "number-pad",
|
|
266
|
+
name: "stallApplicationInfo.paymentDueHours",
|
|
267
|
+
placeholder: "Payment Due Hours"
|
|
268
|
+
}
|
|
269
|
+
];
|
|
270
|
+
var stallApplicationInfoPaymentTarget = [
|
|
271
|
+
{
|
|
272
|
+
helperText: "Account holder name *",
|
|
273
|
+
name: "stallApplicationInfo.paymentTarget.accountHolderName",
|
|
274
|
+
placeholder: "Account holder name"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
helperText: "Account number *",
|
|
278
|
+
name: "stallApplicationInfo.paymentTarget.accountNumber",
|
|
279
|
+
placeholder: "Account number"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
helperText: "Link to payment target *",
|
|
283
|
+
name: "stallApplicationInfo.paymentTarget.link",
|
|
284
|
+
placeholder: "Link to payment target"
|
|
285
|
+
}
|
|
286
|
+
];
|
|
287
|
+
var marketPriceByDateFields = [
|
|
288
|
+
{
|
|
289
|
+
helperText: "Market Price for this date *",
|
|
290
|
+
keyboardType: "number-pad",
|
|
291
|
+
name: "marketPrice",
|
|
292
|
+
placeholder: "Market Price"
|
|
293
|
+
}
|
|
294
|
+
];
|
|
295
|
+
var rejectionPolicyOptions = mapArrayToOptions(
|
|
296
|
+
Object.values(EnumRejectionPolicy)
|
|
297
|
+
);
|
|
298
|
+
|
|
299
|
+
// src/formFields/auth.ts
|
|
300
|
+
var loginFields = [
|
|
301
|
+
{
|
|
302
|
+
helperText: "Enter your email address",
|
|
303
|
+
keyboardType: "email-address",
|
|
304
|
+
name: "email",
|
|
305
|
+
placeholder: "Email"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
helperText: "Enter your password",
|
|
309
|
+
keyboardType: "default",
|
|
310
|
+
name: "password",
|
|
311
|
+
placeholder: "Password",
|
|
312
|
+
secureTextEntry: true
|
|
313
|
+
}
|
|
314
|
+
];
|
|
315
|
+
var registerFields = [
|
|
316
|
+
{
|
|
317
|
+
helperText: "Enter your first name",
|
|
318
|
+
keyboardType: "default",
|
|
319
|
+
name: "firstName",
|
|
320
|
+
placeholder: "First Name"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
helperText: "Enter your last name",
|
|
324
|
+
keyboardType: "default",
|
|
325
|
+
name: "lastName",
|
|
326
|
+
placeholder: "Last Name"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
helperText: "Enter your email address",
|
|
330
|
+
keyboardType: "email-address",
|
|
331
|
+
name: "email",
|
|
332
|
+
placeholder: "Email"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
helperText: "Enter your password",
|
|
336
|
+
keyboardType: "default",
|
|
337
|
+
name: "password",
|
|
338
|
+
placeholder: "Password",
|
|
339
|
+
secureTextEntry: true
|
|
340
|
+
}
|
|
341
|
+
];
|
|
342
|
+
var requestPasswordResetFields = [
|
|
343
|
+
{
|
|
344
|
+
helperText: "Enter your email address",
|
|
345
|
+
keyboardType: "email-address",
|
|
346
|
+
name: "email",
|
|
347
|
+
placeholder: "Email"
|
|
348
|
+
}
|
|
349
|
+
];
|
|
350
|
+
var resetPasswordFields = [
|
|
351
|
+
{
|
|
352
|
+
helperText: "Enter your new password",
|
|
353
|
+
keyboardType: "default",
|
|
354
|
+
name: "password",
|
|
355
|
+
placeholder: "Password",
|
|
356
|
+
secureTextEntry: true
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
helperText: "Confirm your new password",
|
|
360
|
+
keyboardType: "default",
|
|
361
|
+
name: "confirmPassword",
|
|
362
|
+
placeholder: "Confirm Password",
|
|
363
|
+
secureTextEntry: true
|
|
364
|
+
}
|
|
365
|
+
];
|
|
366
|
+
var validateTokenFields = [
|
|
367
|
+
{
|
|
368
|
+
disabled: true,
|
|
369
|
+
helperText: "Your email address",
|
|
370
|
+
keyboardType: "email-address",
|
|
371
|
+
name: "email",
|
|
372
|
+
placeholder: "Email"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
helperText: "Enter the Verification code sent to your email",
|
|
376
|
+
keyboardType: "number-pad",
|
|
377
|
+
name: "token",
|
|
378
|
+
placeholder: "Verification code"
|
|
379
|
+
}
|
|
380
|
+
];
|
|
381
|
+
|
|
382
|
+
// src/formFields/user.ts
|
|
383
|
+
var profileFields = [
|
|
384
|
+
{
|
|
385
|
+
disabled: true,
|
|
386
|
+
helperText: "Email cannot be changed",
|
|
387
|
+
keyboardType: "email-address",
|
|
388
|
+
name: "email",
|
|
389
|
+
placeholder: "Email"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
helperText: "Enter your first name",
|
|
393
|
+
keyboardType: "default",
|
|
394
|
+
name: "firstName",
|
|
395
|
+
placeholder: "First Name"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
helperText: "Enter your last name",
|
|
399
|
+
keyboardType: "default",
|
|
400
|
+
name: "lastName",
|
|
401
|
+
placeholder: "Last Name"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
helperText: "Enter your new password",
|
|
405
|
+
keyboardType: "default",
|
|
406
|
+
name: "password",
|
|
407
|
+
placeholder: "Password",
|
|
408
|
+
secureTextEntry: true
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
helperText: "Confirm your new password",
|
|
412
|
+
keyboardType: "default",
|
|
413
|
+
name: "confirmPassword",
|
|
414
|
+
placeholder: "Confirm Password",
|
|
415
|
+
secureTextEntry: true
|
|
416
|
+
}
|
|
417
|
+
];
|
|
418
|
+
|
|
419
|
+
// src/formFields/categories.ts
|
|
420
|
+
var availableCategories = [
|
|
421
|
+
{
|
|
422
|
+
id: "food-drinks",
|
|
423
|
+
name: "Food & Drinks",
|
|
424
|
+
subcategories: [
|
|
425
|
+
{
|
|
426
|
+
id: "fresh-food-groceries",
|
|
427
|
+
items: [
|
|
428
|
+
"Fruits & Vegetables",
|
|
429
|
+
"Meat & Seafood",
|
|
430
|
+
"Dairy & Eggs",
|
|
431
|
+
"Bakery & Desserts",
|
|
432
|
+
"Spices & Condiments",
|
|
433
|
+
"Packaged & Specialty Foods",
|
|
434
|
+
"Other"
|
|
435
|
+
],
|
|
436
|
+
name: "Fresh Food & Groceries"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
id: "beverages-specialty-drinks",
|
|
440
|
+
items: [
|
|
441
|
+
"Fresh Juices & Smoothies",
|
|
442
|
+
"Coffee & Teas",
|
|
443
|
+
"Dairy & Plant-Based Drinks",
|
|
444
|
+
"Alcoholic Beverages",
|
|
445
|
+
"Other"
|
|
446
|
+
],
|
|
447
|
+
name: "Beverages & Specialty Drinks"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
id: "prepared-street-foods",
|
|
451
|
+
items: [
|
|
452
|
+
"Local & International Specialties",
|
|
453
|
+
"Vegan & Vegetarian Options",
|
|
454
|
+
"Candies & Sweets",
|
|
455
|
+
"BBQ & Grilled Foods",
|
|
456
|
+
"Other"
|
|
457
|
+
],
|
|
458
|
+
name: "Prepared & Street Foods"
|
|
459
|
+
}
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
id: "handmade-local-products",
|
|
464
|
+
name: "Handmade & Local Products",
|
|
465
|
+
subcategories: [
|
|
466
|
+
{
|
|
467
|
+
id: "home-lifestyle",
|
|
468
|
+
items: [
|
|
469
|
+
"Textiles & Home Decor",
|
|
470
|
+
"Pottery & Ceramics",
|
|
471
|
+
"Woodwork & Carving",
|
|
472
|
+
"Handwoven Baskets & Bags",
|
|
473
|
+
"Other"
|
|
474
|
+
],
|
|
475
|
+
name: "Home & Lifestyle"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
id: "fashion-accessories",
|
|
479
|
+
items: [
|
|
480
|
+
"Leather & Hand-Stitched Items",
|
|
481
|
+
"Handcrafted Jewelry & Accessories",
|
|
482
|
+
"Traditional & Cultural Clothing",
|
|
483
|
+
"Other"
|
|
484
|
+
],
|
|
485
|
+
name: "Fashion & Accessories"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
id: "eco-friendly-products",
|
|
489
|
+
items: [
|
|
490
|
+
"Recycled Goods",
|
|
491
|
+
"Eco-Packaging",
|
|
492
|
+
"Sustainable Fashion & Accessories",
|
|
493
|
+
"Other"
|
|
494
|
+
],
|
|
495
|
+
name: "Eco-Friendly & Sustainable Products"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
id: "arts-crafts",
|
|
499
|
+
items: ["Art & Crafts", "Traditional & Cultural Items", "Other"],
|
|
500
|
+
name: "Arts & Crafts"
|
|
501
|
+
}
|
|
502
|
+
]
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
id: "clothing-fashion",
|
|
506
|
+
name: "Clothing & Fashion",
|
|
507
|
+
subcategories: [
|
|
508
|
+
{
|
|
509
|
+
id: "casual-modern-wear",
|
|
510
|
+
items: [
|
|
511
|
+
"Modern & Casual Clothes",
|
|
512
|
+
"Jackets & Outerwear",
|
|
513
|
+
"Baby & Kids Clothing",
|
|
514
|
+
"Scarves & Shawls",
|
|
515
|
+
"Second-Hand Designer Clothes",
|
|
516
|
+
"Underwear",
|
|
517
|
+
"Other"
|
|
518
|
+
],
|
|
519
|
+
name: "Casual & Modern Wear"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
id: "footwear",
|
|
523
|
+
items: [
|
|
524
|
+
"Everyday Shoes",
|
|
525
|
+
"Formal Shoes",
|
|
526
|
+
"Handmade & Leather Shoes",
|
|
527
|
+
"Other"
|
|
528
|
+
],
|
|
529
|
+
name: "Footwear"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
id: "bags-accessories",
|
|
533
|
+
items: [
|
|
534
|
+
"Bags, Belts, Hats, Sunglasses, Watches",
|
|
535
|
+
"Retro and Vintage Accessories",
|
|
536
|
+
"Other"
|
|
537
|
+
],
|
|
538
|
+
name: "Bags & Accessories"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
id: "luxury-designer-brands",
|
|
542
|
+
items: [
|
|
543
|
+
"Luxury Clothing",
|
|
544
|
+
"Designer Shoes",
|
|
545
|
+
"Exclusive Accessories",
|
|
546
|
+
"Other"
|
|
547
|
+
],
|
|
548
|
+
name: "Luxury & Designer Brands"
|
|
549
|
+
}
|
|
550
|
+
]
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
id: "home-garden-household",
|
|
554
|
+
name: "Home, Garden & Household Goods",
|
|
555
|
+
subcategories: [
|
|
556
|
+
{
|
|
557
|
+
id: "home-essentials-kitchenware",
|
|
558
|
+
items: [
|
|
559
|
+
"Kitchenware & Dining",
|
|
560
|
+
"Sustainable & Eco-Friendly Items",
|
|
561
|
+
"Handmade & Artisan Home Goods",
|
|
562
|
+
"Other"
|
|
563
|
+
],
|
|
564
|
+
name: "Home Essentials & Kitchenware"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
id: "furniture-decor-organization",
|
|
568
|
+
items: [
|
|
569
|
+
"Furniture & Home Decor",
|
|
570
|
+
"Textiles & Bedding",
|
|
571
|
+
"Storage & Organization",
|
|
572
|
+
"Other"
|
|
573
|
+
],
|
|
574
|
+
name: "Furniture, Decor & Organization"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
id: "outdoor-cleaning-essentials",
|
|
578
|
+
items: [
|
|
579
|
+
"Garden, Plants & Decorations",
|
|
580
|
+
"DIY & Home Improvement",
|
|
581
|
+
"Cleaning Supplies & Household Essentials",
|
|
582
|
+
"Other"
|
|
583
|
+
],
|
|
584
|
+
name: "Outdoor & Cleaning Essentials"
|
|
585
|
+
}
|
|
586
|
+
]
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
id: "toys-pets",
|
|
590
|
+
name: "Toys & Pets",
|
|
591
|
+
subcategories: [
|
|
592
|
+
{
|
|
593
|
+
id: "handmade-eco-friendly-kids",
|
|
594
|
+
items: ["Handmade & Local Toys", "Eco-Friendly Kids Products", "Other"],
|
|
595
|
+
name: "Handmade & Eco-Friendly Kids Products"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
id: "toys-all-ages",
|
|
599
|
+
items: [
|
|
600
|
+
"Classic & Interactive Toys",
|
|
601
|
+
"Building Blocks & Board Games",
|
|
602
|
+
"Balloons & Party Accessories",
|
|
603
|
+
"Other"
|
|
604
|
+
],
|
|
605
|
+
name: "Toys for All Ages"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
id: "pet-products-animal-goods",
|
|
609
|
+
items: [
|
|
610
|
+
"Natural Pet Foods",
|
|
611
|
+
"Handmade Pet Accessories",
|
|
612
|
+
"Livestock & Farm Supplies",
|
|
613
|
+
"Other"
|
|
614
|
+
],
|
|
615
|
+
name: "Pet Products & Animal Goods"
|
|
616
|
+
}
|
|
617
|
+
]
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
id: "health-wellness-selfcare",
|
|
621
|
+
name: "Health, Wellness & Self-Care",
|
|
622
|
+
subcategories: [
|
|
623
|
+
{
|
|
624
|
+
id: "natural-remedies-supplements",
|
|
625
|
+
items: [
|
|
626
|
+
"Vitamins, Minerals & Herbal Remedies",
|
|
627
|
+
"Superfoods, Probiotics & Detox Teas",
|
|
628
|
+
"Other"
|
|
629
|
+
],
|
|
630
|
+
name: "Natural Remedies & Supplements"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
id: "organic-natural-products",
|
|
634
|
+
items: [
|
|
635
|
+
"Organic Produce, Honey, Nuts & Seeds",
|
|
636
|
+
"Gluten-Free & Specialty Items",
|
|
637
|
+
"Other"
|
|
638
|
+
],
|
|
639
|
+
name: "Organic & Natural Products"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
id: "fitness-sports-nutrition",
|
|
643
|
+
items: ["Protein Powders & Bars", "Sports & Energy Drinks", "Other"],
|
|
644
|
+
name: "Fitness & Sports Nutrition"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
id: "mental-wellbeing-relaxation",
|
|
648
|
+
items: [
|
|
649
|
+
"Yoga, Meditation & Stress-Relief Tools",
|
|
650
|
+
"Massage & Muscle Relaxers",
|
|
651
|
+
"Motivational Books & Tools",
|
|
652
|
+
"Other"
|
|
653
|
+
],
|
|
654
|
+
name: "Mental Wellbeing & Relaxation"
|
|
655
|
+
}
|
|
656
|
+
]
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
id: "electronics-technology",
|
|
660
|
+
name: "Electronics & Technology",
|
|
661
|
+
subcategories: [
|
|
662
|
+
{
|
|
663
|
+
id: "electronic-devices-accessories",
|
|
664
|
+
items: [
|
|
665
|
+
"Refurbished & Used Electronics",
|
|
666
|
+
"Smartphones & Gadgets",
|
|
667
|
+
"Computers & Gaming Gear",
|
|
668
|
+
"Photography & Audio Equipment",
|
|
669
|
+
"Other"
|
|
670
|
+
],
|
|
671
|
+
name: "Electronic Devices & Accessories"
|
|
672
|
+
}
|
|
673
|
+
]
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
id: "antiques-collectibles",
|
|
677
|
+
name: "Antiques & Collectibles",
|
|
678
|
+
subcategories: [
|
|
679
|
+
{
|
|
680
|
+
id: "antiques-vintage-furniture",
|
|
681
|
+
items: [
|
|
682
|
+
"Old Clocks, Paintings & Sculptures",
|
|
683
|
+
"Coins, Stamps & Rare Books",
|
|
684
|
+
"Antique & Vintage Furniture & Home Decor",
|
|
685
|
+
"Other"
|
|
686
|
+
],
|
|
687
|
+
name: "Antiques & Vintage Furniture"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
id: "historical-rare-items",
|
|
691
|
+
items: [
|
|
692
|
+
"War Relics & Military Medals",
|
|
693
|
+
"Limited Edition Artworks & Memorabilia",
|
|
694
|
+
"Other"
|
|
695
|
+
],
|
|
696
|
+
name: "Historical & Rare Items"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
id: "collectible-toys-games",
|
|
700
|
+
items: [
|
|
701
|
+
"Limited Edition Figures & Retro Board Games",
|
|
702
|
+
"Pop Culture & Sports Memorabilia",
|
|
703
|
+
"Other"
|
|
704
|
+
],
|
|
705
|
+
name: "Collectible Toys & Games"
|
|
706
|
+
}
|
|
707
|
+
]
|
|
708
|
+
}
|
|
709
|
+
];
|
|
710
|
+
var categoryColors = {
|
|
711
|
+
"antiques-collectibles": "#DE630A",
|
|
712
|
+
"clothing-fashion": "#6A08C5",
|
|
713
|
+
"electronics-technology": "#0303BE",
|
|
714
|
+
"food-drinks": "#FF004D",
|
|
715
|
+
"handmade-local-products": "#8E4827",
|
|
716
|
+
"health-wellness-selfcare": "#7DFB03",
|
|
717
|
+
"home-garden-household": "#006400",
|
|
718
|
+
"toys-pets": "#3357FF"
|
|
719
|
+
};
|
|
720
|
+
export {
|
|
721
|
+
availableCategories,
|
|
722
|
+
availableCityOptions,
|
|
723
|
+
availableTagTypes,
|
|
724
|
+
categoryColors,
|
|
725
|
+
loginFields,
|
|
726
|
+
marketBasicInfoFields,
|
|
727
|
+
marketEndDateFields,
|
|
728
|
+
marketPriceByDateFields,
|
|
729
|
+
marketStartDateFields,
|
|
730
|
+
packagingOptions,
|
|
731
|
+
producedIngOptions,
|
|
732
|
+
profileFields,
|
|
733
|
+
registerFields,
|
|
734
|
+
rejectionPolicyOptions,
|
|
735
|
+
requestPasswordResetFields,
|
|
736
|
+
resetPasswordFields,
|
|
737
|
+
stallApplicationInfo,
|
|
738
|
+
stallApplicationInfoPaymentTarget,
|
|
739
|
+
stallholderBasicInfoFields,
|
|
740
|
+
stallholderElectricity,
|
|
741
|
+
stallholderEndDateFields,
|
|
742
|
+
stallholderFullAddress,
|
|
743
|
+
stallholderGazebo,
|
|
744
|
+
stallholderLocationDescription,
|
|
745
|
+
stallholderMultiLocation,
|
|
746
|
+
stallholderPackaging,
|
|
747
|
+
stallholderPaymentMethod,
|
|
748
|
+
stallholderPriceRange,
|
|
749
|
+
stallholderProducedIn,
|
|
750
|
+
stallholderStallSize,
|
|
751
|
+
stallholderStartDateFields,
|
|
752
|
+
stallholderTable,
|
|
753
|
+
tagOptions,
|
|
754
|
+
validateTokenFields
|
|
755
|
+
};
|
|
756
|
+
//# sourceMappingURL=index.mjs.map
|