@thryveai/theme-interfaces 2.7.155-2.zod → 2.7.155-4.schemas

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.
Files changed (55) hide show
  1. package/dist/JSONSchemas/index.d.ts +5550 -0
  2. package/dist/JSONSchemas/index.js +7516 -0
  3. package/dist/index.d.ts +4 -3
  4. package/dist/index.js +18 -20
  5. package/dist/interfaces/default-settings.interfaces.d.ts +2 -0
  6. package/dist/interfaces/default-theme.interface.d.ts +3 -0
  7. package/dist/interfaces/icons.interfaces.d.ts +2 -0
  8. package/dist/interfaces/retailer-settings.interfaces.d.ts +1 -2
  9. package/dist/interfaces/shared-settings-interfaces.d.ts +2 -0
  10. package/dist/storefront/SFUIImagesTemplate.AdminUi.js +1 -1
  11. package/dist/storefront/SFUIThemesTemplate.AdminUi.js +47 -36
  12. package/dist/storefront/defaultIconsStorefront.js +1 -1
  13. package/dist/storefront/defaultImagesStorefront.js +32 -32
  14. package/dist/storefront/defaultSettingsStorefront.js +1 -1
  15. package/dist/storefront/defaultSharedSettings.js +1 -1
  16. package/dist/storefront/defaultThemeStorefront.js +981 -978
  17. package/dist/sts/STSImagesTemplate.AdminUi.js +1 -1
  18. package/dist/sts/STSSettingsTemplate.AdminUi.js +1 -1
  19. package/dist/sts/defaultSettingsSts.js +1 -1
  20. package/dist/theme-templates/index.js +2 -2
  21. package/package.json +3 -5
  22. package/dist/core/interfaces/default-settings.interfaces.d.ts +0 -3
  23. package/dist/core/interfaces/default-settings.interfaces.js +0 -2
  24. package/dist/core/storefront-zod/retailer-settings/accountPage.d.ts +0 -687
  25. package/dist/core/storefront-zod/retailer-settings/accountPage.js +0 -54
  26. package/dist/core/storefront-zod/retailer-settings/addressSettings.d.ts +0 -828
  27. package/dist/core/storefront-zod/retailer-settings/addressSettings.js +0 -23
  28. package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.d.ts +0 -11
  29. package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.js +0 -8
  30. package/dist/core/storefront-zod/retailer-settings/cartSummary.d.ts +0 -14
  31. package/dist/core/storefront-zod/retailer-settings/cartSummary.js +0 -9
  32. package/dist/core/storefront-zod/retailer-settings/checkout.d.ts +0 -238
  33. package/dist/core/storefront-zod/retailer-settings/checkout.js +0 -15
  34. package/dist/core/storefront-zod/retailer-settings/features.d.ts +0 -890
  35. package/dist/core/storefront-zod/retailer-settings/features.js +0 -63
  36. package/dist/core/storefront-zod/retailer-settings/index.d.ts +0 -9917
  37. package/dist/core/storefront-zod/retailer-settings/index.js +0 -31
  38. package/dist/core/storefront-zod/retailer-settings/integration.d.ts +0 -28
  39. package/dist/core/storefront-zod/retailer-settings/integration.js +0 -12
  40. package/dist/core/storefront-zod/retailer-settings/pdpSettings.d.ts +0 -157
  41. package/dist/core/storefront-zod/retailer-settings/pdpSettings.js +0 -59
  42. package/dist/core/storefront-zod/retailer-settings/performance.d.ts +0 -8
  43. package/dist/core/storefront-zod/retailer-settings/performance.js +0 -7
  44. package/dist/core/storefront-zod/retailer-settings/productCard.d.ts +0 -307
  45. package/dist/core/storefront-zod/retailer-settings/productCard.js +0 -10
  46. package/dist/core/storefront-zod/retailer-settings/sharedSchemas.d.ts +0 -1675
  47. package/dist/core/storefront-zod/retailer-settings/sharedSchemas.js +0 -590
  48. package/dist/core/storefront-zod/retailer-settings/siteSettings.d.ts +0 -594
  49. package/dist/core/storefront-zod/retailer-settings/siteSettings.js +0 -79
  50. package/dist/core/storefront-zod/retailer-settings/welcomeModal.d.ts +0 -17
  51. package/dist/core/storefront-zod/retailer-settings/welcomeModal.js +0 -11
  52. package/dist/zodSchemas/generator.d.ts +0 -6
  53. package/dist/zodSchemas/generator.js +0 -12
  54. package/dist/zodSchemas/retailer-settings-zod.d.ts +0 -1
  55. package/dist/zodSchemas/retailer-settings-zod.js +0 -315
@@ -1,687 +0,0 @@
1
- import { z } from "zod";
2
- export declare const iAccountPageV2Schema: z.ZodObject<{
3
- loyaltyTab: z.ZodObject<{
4
- barcodeSettings: z.ZodObject<{
5
- enabled: z.ZodBoolean;
6
- }, "strip", z.ZodTypeAny, {
7
- enabled?: boolean;
8
- }, {
9
- enabled?: boolean;
10
- }>;
11
- disabledEdit: z.ZodOptional<z.ZodBoolean>;
12
- enabled: z.ZodBoolean;
13
- loyaltyNumberLength: z.ZodNumber;
14
- loyaltyNumberPrefix: z.ZodString;
15
- loyaltyValidationType: z.ZodArray<z.ZodUnion<[z.ZodObject<{
16
- _type: z.ZodLiteral<"overYears">;
17
- overYears: z.ZodNumber;
18
- }, "strip", z.ZodTypeAny, {
19
- _type?: "overYears";
20
- overYears?: number;
21
- }, {
22
- _type?: "overYears";
23
- overYears?: number;
24
- }>, z.ZodObject<{
25
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
26
- length: z.ZodNumber;
27
- }, "strip", z.ZodTypeAny, {
28
- length?: number;
29
- _type?: "exact" | "less" | "more";
30
- }, {
31
- length?: number;
32
- _type?: "exact" | "less" | "more";
33
- }>, z.ZodObject<{
34
- _type: z.ZodLiteral<"multi">;
35
- multiLength: z.ZodArray<z.ZodNumber, "many">;
36
- }, "strip", z.ZodTypeAny, {
37
- _type?: "multi";
38
- multiLength?: number[];
39
- }, {
40
- _type?: "multi";
41
- multiLength?: number[];
42
- }>, z.ZodLiteral<"alphaNumeric">, z.ZodLiteral<"alphaOnly">, z.ZodLiteral<"alphaOnlyNoDots">, z.ZodLiteral<"anyPhone">, z.ZodLiteral<"auPhone">, z.ZodLiteral<"auPostCode">, z.ZodLiteral<"auState">, z.ZodLiteral<"caPhone">, z.ZodLiteral<"caPostCode">, z.ZodLiteral<"caProvince">, z.ZodLiteral<"correctDate">, z.ZodLiteral<"email">, z.ZodLiteral<"ieCounty">, z.ZodLiteral<"iePhone">, z.ZodLiteral<"iePostCode">, z.ZodLiteral<"luhnValidation">, z.ZodLiteral<"noSpecialChar">, z.ZodLiteral<"numericOnly">, z.ZodLiteral<"password">, z.ZodLiteral<"required">, z.ZodLiteral<"usMobileNumber">, z.ZodLiteral<"usPhone">, z.ZodLiteral<"usPhone10Digits">, z.ZodLiteral<"usPostCode">, z.ZodLiteral<"usState">, z.ZodLiteral<"notWhiteSpacesOnly">, z.ZodLiteral<"NAPhone">]>, "many">;
43
- }, "strip", z.ZodTypeAny, {
44
- enabled?: boolean;
45
- barcodeSettings?: {
46
- enabled?: boolean;
47
- };
48
- disabledEdit?: boolean;
49
- loyaltyNumberLength?: number;
50
- loyaltyNumberPrefix?: string;
51
- loyaltyValidationType?: ("required" | "password" | "email" | {
52
- _type?: "overYears";
53
- overYears?: number;
54
- } | {
55
- length?: number;
56
- _type?: "exact" | "less" | "more";
57
- } | {
58
- _type?: "multi";
59
- multiLength?: number[];
60
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
61
- }, {
62
- enabled?: boolean;
63
- barcodeSettings?: {
64
- enabled?: boolean;
65
- };
66
- disabledEdit?: boolean;
67
- loyaltyNumberLength?: number;
68
- loyaltyNumberPrefix?: string;
69
- loyaltyValidationType?: ("required" | "password" | "email" | {
70
- _type?: "overYears";
71
- overYears?: number;
72
- } | {
73
- length?: number;
74
- _type?: "exact" | "less" | "more";
75
- } | {
76
- _type?: "multi";
77
- multiLength?: number[];
78
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
79
- }>;
80
- idp: z.ZodObject<{
81
- enabled: z.ZodBoolean;
82
- target: z.ZodUnion<[z.ZodLiteral<"_self">, z.ZodLiteral<"_blank">]>;
83
- url: z.ZodString;
84
- }, "strip", z.ZodTypeAny, {
85
- url?: string;
86
- target?: "_blank" | "_self";
87
- enabled?: boolean;
88
- }, {
89
- url?: string;
90
- target?: "_blank" | "_self";
91
- enabled?: boolean;
92
- }>;
93
- profileTab: z.ZodObject<{
94
- deleteAccountButton: z.ZodBoolean;
95
- }, "strip", z.ZodTypeAny, {
96
- deleteAccountButton?: boolean;
97
- }, {
98
- deleteAccountButton?: boolean;
99
- }>;
100
- secondStepRegistration: z.ZodObject<{
101
- businessAccount: z.ZodObject<{
102
- enabled: z.ZodBoolean;
103
- fields: z.ZodObject<{
104
- title: z.ZodObject<{
105
- enabled: z.ZodBoolean;
106
- validationTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
107
- _type: z.ZodLiteral<"overYears">;
108
- overYears: z.ZodNumber;
109
- }, "strip", z.ZodTypeAny, {
110
- _type?: "overYears";
111
- overYears?: number;
112
- }, {
113
- _type?: "overYears";
114
- overYears?: number;
115
- }>, z.ZodObject<{
116
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
117
- length: z.ZodNumber;
118
- }, "strip", z.ZodTypeAny, {
119
- length?: number;
120
- _type?: "exact" | "less" | "more";
121
- }, {
122
- length?: number;
123
- _type?: "exact" | "less" | "more";
124
- }>, z.ZodObject<{
125
- _type: z.ZodLiteral<"multi">;
126
- multiLength: z.ZodArray<z.ZodNumber, "many">;
127
- }, "strip", z.ZodTypeAny, {
128
- _type?: "multi";
129
- multiLength?: number[];
130
- }, {
131
- _type?: "multi";
132
- multiLength?: number[];
133
- }>, z.ZodLiteral<"alphaNumeric">, z.ZodLiteral<"alphaOnly">, z.ZodLiteral<"alphaOnlyNoDots">, z.ZodLiteral<"anyPhone">, z.ZodLiteral<"auPhone">, z.ZodLiteral<"auPostCode">, z.ZodLiteral<"auState">, z.ZodLiteral<"caPhone">, z.ZodLiteral<"caPostCode">, z.ZodLiteral<"caProvince">, z.ZodLiteral<"correctDate">, z.ZodLiteral<"email">, z.ZodLiteral<"ieCounty">, z.ZodLiteral<"iePhone">, z.ZodLiteral<"iePostCode">, z.ZodLiteral<"luhnValidation">, z.ZodLiteral<"noSpecialChar">, z.ZodLiteral<"numericOnly">, z.ZodLiteral<"password">, z.ZodLiteral<"required">, z.ZodLiteral<"usMobileNumber">, z.ZodLiteral<"usPhone">, z.ZodLiteral<"usPhone10Digits">, z.ZodLiteral<"usPostCode">, z.ZodLiteral<"usState">, z.ZodLiteral<"notWhiteSpacesOnly">, z.ZodLiteral<"NAPhone">]>, "many">;
134
- }, "strip", z.ZodTypeAny, {
135
- enabled?: boolean;
136
- validationTypes?: ("required" | "password" | "email" | {
137
- _type?: "overYears";
138
- overYears?: number;
139
- } | {
140
- length?: number;
141
- _type?: "exact" | "less" | "more";
142
- } | {
143
- _type?: "multi";
144
- multiLength?: number[];
145
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
146
- }, {
147
- enabled?: boolean;
148
- validationTypes?: ("required" | "password" | "email" | {
149
- _type?: "overYears";
150
- overYears?: number;
151
- } | {
152
- length?: number;
153
- _type?: "exact" | "less" | "more";
154
- } | {
155
- _type?: "multi";
156
- multiLength?: number[];
157
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
158
- }>;
159
- company: z.ZodObject<{
160
- enabled: z.ZodBoolean;
161
- validationTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
162
- _type: z.ZodLiteral<"overYears">;
163
- overYears: z.ZodNumber;
164
- }, "strip", z.ZodTypeAny, {
165
- _type?: "overYears";
166
- overYears?: number;
167
- }, {
168
- _type?: "overYears";
169
- overYears?: number;
170
- }>, z.ZodObject<{
171
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
172
- length: z.ZodNumber;
173
- }, "strip", z.ZodTypeAny, {
174
- length?: number;
175
- _type?: "exact" | "less" | "more";
176
- }, {
177
- length?: number;
178
- _type?: "exact" | "less" | "more";
179
- }>, z.ZodObject<{
180
- _type: z.ZodLiteral<"multi">;
181
- multiLength: z.ZodArray<z.ZodNumber, "many">;
182
- }, "strip", z.ZodTypeAny, {
183
- _type?: "multi";
184
- multiLength?: number[];
185
- }, {
186
- _type?: "multi";
187
- multiLength?: number[];
188
- }>, z.ZodLiteral<"alphaNumeric">, z.ZodLiteral<"alphaOnly">, z.ZodLiteral<"alphaOnlyNoDots">, z.ZodLiteral<"anyPhone">, z.ZodLiteral<"auPhone">, z.ZodLiteral<"auPostCode">, z.ZodLiteral<"auState">, z.ZodLiteral<"caPhone">, z.ZodLiteral<"caPostCode">, z.ZodLiteral<"caProvince">, z.ZodLiteral<"correctDate">, z.ZodLiteral<"email">, z.ZodLiteral<"ieCounty">, z.ZodLiteral<"iePhone">, z.ZodLiteral<"iePostCode">, z.ZodLiteral<"luhnValidation">, z.ZodLiteral<"noSpecialChar">, z.ZodLiteral<"numericOnly">, z.ZodLiteral<"password">, z.ZodLiteral<"required">, z.ZodLiteral<"usMobileNumber">, z.ZodLiteral<"usPhone">, z.ZodLiteral<"usPhone10Digits">, z.ZodLiteral<"usPostCode">, z.ZodLiteral<"usState">, z.ZodLiteral<"notWhiteSpacesOnly">, z.ZodLiteral<"NAPhone">]>, "many">;
189
- }, "strip", z.ZodTypeAny, {
190
- enabled?: boolean;
191
- validationTypes?: ("required" | "password" | "email" | {
192
- _type?: "overYears";
193
- overYears?: number;
194
- } | {
195
- length?: number;
196
- _type?: "exact" | "less" | "more";
197
- } | {
198
- _type?: "multi";
199
- multiLength?: number[];
200
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
201
- }, {
202
- enabled?: boolean;
203
- validationTypes?: ("required" | "password" | "email" | {
204
- _type?: "overYears";
205
- overYears?: number;
206
- } | {
207
- length?: number;
208
- _type?: "exact" | "less" | "more";
209
- } | {
210
- _type?: "multi";
211
- multiLength?: number[];
212
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
213
- }>;
214
- typeOfBusiness: z.ZodObject<{
215
- enabled: z.ZodBoolean;
216
- options: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"foodService">, z.ZodLiteral<"education">, z.ZodLiteral<"youthSports">, z.ZodLiteral<"administrationOffice">, z.ZodLiteral<"nonProfit">]>, "many">;
217
- validationTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
218
- _type: z.ZodLiteral<"overYears">;
219
- overYears: z.ZodNumber;
220
- }, "strip", z.ZodTypeAny, {
221
- _type?: "overYears";
222
- overYears?: number;
223
- }, {
224
- _type?: "overYears";
225
- overYears?: number;
226
- }>, z.ZodObject<{
227
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
228
- length: z.ZodNumber;
229
- }, "strip", z.ZodTypeAny, {
230
- length?: number;
231
- _type?: "exact" | "less" | "more";
232
- }, {
233
- length?: number;
234
- _type?: "exact" | "less" | "more";
235
- }>, z.ZodObject<{
236
- _type: z.ZodLiteral<"multi">;
237
- multiLength: z.ZodArray<z.ZodNumber, "many">;
238
- }, "strip", z.ZodTypeAny, {
239
- _type?: "multi";
240
- multiLength?: number[];
241
- }, {
242
- _type?: "multi";
243
- multiLength?: number[];
244
- }>, z.ZodLiteral<"alphaNumeric">, z.ZodLiteral<"alphaOnly">, z.ZodLiteral<"alphaOnlyNoDots">, z.ZodLiteral<"anyPhone">, z.ZodLiteral<"auPhone">, z.ZodLiteral<"auPostCode">, z.ZodLiteral<"auState">, z.ZodLiteral<"caPhone">, z.ZodLiteral<"caPostCode">, z.ZodLiteral<"caProvince">, z.ZodLiteral<"correctDate">, z.ZodLiteral<"email">, z.ZodLiteral<"ieCounty">, z.ZodLiteral<"iePhone">, z.ZodLiteral<"iePostCode">, z.ZodLiteral<"luhnValidation">, z.ZodLiteral<"noSpecialChar">, z.ZodLiteral<"numericOnly">, z.ZodLiteral<"password">, z.ZodLiteral<"required">, z.ZodLiteral<"usMobileNumber">, z.ZodLiteral<"usPhone">, z.ZodLiteral<"usPhone10Digits">, z.ZodLiteral<"usPostCode">, z.ZodLiteral<"usState">, z.ZodLiteral<"notWhiteSpacesOnly">, z.ZodLiteral<"NAPhone">]>, "many">;
245
- }, "strip", z.ZodTypeAny, {
246
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
247
- enabled?: boolean;
248
- validationTypes?: ("required" | "password" | "email" | {
249
- _type?: "overYears";
250
- overYears?: number;
251
- } | {
252
- length?: number;
253
- _type?: "exact" | "less" | "more";
254
- } | {
255
- _type?: "multi";
256
- multiLength?: number[];
257
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
258
- }, {
259
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
260
- enabled?: boolean;
261
- validationTypes?: ("required" | "password" | "email" | {
262
- _type?: "overYears";
263
- overYears?: number;
264
- } | {
265
- length?: number;
266
- _type?: "exact" | "less" | "more";
267
- } | {
268
- _type?: "multi";
269
- multiLength?: number[];
270
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
271
- }>;
272
- }, "strip", z.ZodTypeAny, {
273
- title?: {
274
- enabled?: boolean;
275
- validationTypes?: ("required" | "password" | "email" | {
276
- _type?: "overYears";
277
- overYears?: number;
278
- } | {
279
- length?: number;
280
- _type?: "exact" | "less" | "more";
281
- } | {
282
- _type?: "multi";
283
- multiLength?: number[];
284
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
285
- };
286
- company?: {
287
- enabled?: boolean;
288
- validationTypes?: ("required" | "password" | "email" | {
289
- _type?: "overYears";
290
- overYears?: number;
291
- } | {
292
- length?: number;
293
- _type?: "exact" | "less" | "more";
294
- } | {
295
- _type?: "multi";
296
- multiLength?: number[];
297
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
298
- };
299
- typeOfBusiness?: {
300
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
301
- enabled?: boolean;
302
- validationTypes?: ("required" | "password" | "email" | {
303
- _type?: "overYears";
304
- overYears?: number;
305
- } | {
306
- length?: number;
307
- _type?: "exact" | "less" | "more";
308
- } | {
309
- _type?: "multi";
310
- multiLength?: number[];
311
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
312
- };
313
- }, {
314
- title?: {
315
- enabled?: boolean;
316
- validationTypes?: ("required" | "password" | "email" | {
317
- _type?: "overYears";
318
- overYears?: number;
319
- } | {
320
- length?: number;
321
- _type?: "exact" | "less" | "more";
322
- } | {
323
- _type?: "multi";
324
- multiLength?: number[];
325
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
326
- };
327
- company?: {
328
- enabled?: boolean;
329
- validationTypes?: ("required" | "password" | "email" | {
330
- _type?: "overYears";
331
- overYears?: number;
332
- } | {
333
- length?: number;
334
- _type?: "exact" | "less" | "more";
335
- } | {
336
- _type?: "multi";
337
- multiLength?: number[];
338
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
339
- };
340
- typeOfBusiness?: {
341
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
342
- enabled?: boolean;
343
- validationTypes?: ("required" | "password" | "email" | {
344
- _type?: "overYears";
345
- overYears?: number;
346
- } | {
347
- length?: number;
348
- _type?: "exact" | "less" | "more";
349
- } | {
350
- _type?: "multi";
351
- multiLength?: number[];
352
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
353
- };
354
- }>;
355
- }, "strip", z.ZodTypeAny, {
356
- enabled?: boolean;
357
- fields?: {
358
- title?: {
359
- enabled?: boolean;
360
- validationTypes?: ("required" | "password" | "email" | {
361
- _type?: "overYears";
362
- overYears?: number;
363
- } | {
364
- length?: number;
365
- _type?: "exact" | "less" | "more";
366
- } | {
367
- _type?: "multi";
368
- multiLength?: number[];
369
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
370
- };
371
- company?: {
372
- enabled?: boolean;
373
- validationTypes?: ("required" | "password" | "email" | {
374
- _type?: "overYears";
375
- overYears?: number;
376
- } | {
377
- length?: number;
378
- _type?: "exact" | "less" | "more";
379
- } | {
380
- _type?: "multi";
381
- multiLength?: number[];
382
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
383
- };
384
- typeOfBusiness?: {
385
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
386
- enabled?: boolean;
387
- validationTypes?: ("required" | "password" | "email" | {
388
- _type?: "overYears";
389
- overYears?: number;
390
- } | {
391
- length?: number;
392
- _type?: "exact" | "less" | "more";
393
- } | {
394
- _type?: "multi";
395
- multiLength?: number[];
396
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
397
- };
398
- };
399
- }, {
400
- enabled?: boolean;
401
- fields?: {
402
- title?: {
403
- enabled?: boolean;
404
- validationTypes?: ("required" | "password" | "email" | {
405
- _type?: "overYears";
406
- overYears?: number;
407
- } | {
408
- length?: number;
409
- _type?: "exact" | "less" | "more";
410
- } | {
411
- _type?: "multi";
412
- multiLength?: number[];
413
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
414
- };
415
- company?: {
416
- enabled?: boolean;
417
- validationTypes?: ("required" | "password" | "email" | {
418
- _type?: "overYears";
419
- overYears?: number;
420
- } | {
421
- length?: number;
422
- _type?: "exact" | "less" | "more";
423
- } | {
424
- _type?: "multi";
425
- multiLength?: number[];
426
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
427
- };
428
- typeOfBusiness?: {
429
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
430
- enabled?: boolean;
431
- validationTypes?: ("required" | "password" | "email" | {
432
- _type?: "overYears";
433
- overYears?: number;
434
- } | {
435
- length?: number;
436
- _type?: "exact" | "less" | "more";
437
- } | {
438
- _type?: "multi";
439
- multiLength?: number[];
440
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
441
- };
442
- };
443
- }>;
444
- }, "strip", z.ZodTypeAny, {
445
- businessAccount?: {
446
- enabled?: boolean;
447
- fields?: {
448
- title?: {
449
- enabled?: boolean;
450
- validationTypes?: ("required" | "password" | "email" | {
451
- _type?: "overYears";
452
- overYears?: number;
453
- } | {
454
- length?: number;
455
- _type?: "exact" | "less" | "more";
456
- } | {
457
- _type?: "multi";
458
- multiLength?: number[];
459
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
460
- };
461
- company?: {
462
- enabled?: boolean;
463
- validationTypes?: ("required" | "password" | "email" | {
464
- _type?: "overYears";
465
- overYears?: number;
466
- } | {
467
- length?: number;
468
- _type?: "exact" | "less" | "more";
469
- } | {
470
- _type?: "multi";
471
- multiLength?: number[];
472
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
473
- };
474
- typeOfBusiness?: {
475
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
476
- enabled?: boolean;
477
- validationTypes?: ("required" | "password" | "email" | {
478
- _type?: "overYears";
479
- overYears?: number;
480
- } | {
481
- length?: number;
482
- _type?: "exact" | "less" | "more";
483
- } | {
484
- _type?: "multi";
485
- multiLength?: number[];
486
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
487
- };
488
- };
489
- };
490
- }, {
491
- businessAccount?: {
492
- enabled?: boolean;
493
- fields?: {
494
- title?: {
495
- enabled?: boolean;
496
- validationTypes?: ("required" | "password" | "email" | {
497
- _type?: "overYears";
498
- overYears?: number;
499
- } | {
500
- length?: number;
501
- _type?: "exact" | "less" | "more";
502
- } | {
503
- _type?: "multi";
504
- multiLength?: number[];
505
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
506
- };
507
- company?: {
508
- enabled?: boolean;
509
- validationTypes?: ("required" | "password" | "email" | {
510
- _type?: "overYears";
511
- overYears?: number;
512
- } | {
513
- length?: number;
514
- _type?: "exact" | "less" | "more";
515
- } | {
516
- _type?: "multi";
517
- multiLength?: number[];
518
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
519
- };
520
- typeOfBusiness?: {
521
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
522
- enabled?: boolean;
523
- validationTypes?: ("required" | "password" | "email" | {
524
- _type?: "overYears";
525
- overYears?: number;
526
- } | {
527
- length?: number;
528
- _type?: "exact" | "less" | "more";
529
- } | {
530
- _type?: "multi";
531
- multiLength?: number[];
532
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
533
- };
534
- };
535
- };
536
- }>;
537
- }, "strip", z.ZodTypeAny, {
538
- loyaltyTab?: {
539
- enabled?: boolean;
540
- barcodeSettings?: {
541
- enabled?: boolean;
542
- };
543
- disabledEdit?: boolean;
544
- loyaltyNumberLength?: number;
545
- loyaltyNumberPrefix?: string;
546
- loyaltyValidationType?: ("required" | "password" | "email" | {
547
- _type?: "overYears";
548
- overYears?: number;
549
- } | {
550
- length?: number;
551
- _type?: "exact" | "less" | "more";
552
- } | {
553
- _type?: "multi";
554
- multiLength?: number[];
555
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
556
- };
557
- idp?: {
558
- url?: string;
559
- target?: "_blank" | "_self";
560
- enabled?: boolean;
561
- };
562
- profileTab?: {
563
- deleteAccountButton?: boolean;
564
- };
565
- secondStepRegistration?: {
566
- businessAccount?: {
567
- enabled?: boolean;
568
- fields?: {
569
- title?: {
570
- enabled?: boolean;
571
- validationTypes?: ("required" | "password" | "email" | {
572
- _type?: "overYears";
573
- overYears?: number;
574
- } | {
575
- length?: number;
576
- _type?: "exact" | "less" | "more";
577
- } | {
578
- _type?: "multi";
579
- multiLength?: number[];
580
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
581
- };
582
- company?: {
583
- enabled?: boolean;
584
- validationTypes?: ("required" | "password" | "email" | {
585
- _type?: "overYears";
586
- overYears?: number;
587
- } | {
588
- length?: number;
589
- _type?: "exact" | "less" | "more";
590
- } | {
591
- _type?: "multi";
592
- multiLength?: number[];
593
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
594
- };
595
- typeOfBusiness?: {
596
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
597
- enabled?: boolean;
598
- validationTypes?: ("required" | "password" | "email" | {
599
- _type?: "overYears";
600
- overYears?: number;
601
- } | {
602
- length?: number;
603
- _type?: "exact" | "less" | "more";
604
- } | {
605
- _type?: "multi";
606
- multiLength?: number[];
607
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
608
- };
609
- };
610
- };
611
- };
612
- }, {
613
- loyaltyTab?: {
614
- enabled?: boolean;
615
- barcodeSettings?: {
616
- enabled?: boolean;
617
- };
618
- disabledEdit?: boolean;
619
- loyaltyNumberLength?: number;
620
- loyaltyNumberPrefix?: string;
621
- loyaltyValidationType?: ("required" | "password" | "email" | {
622
- _type?: "overYears";
623
- overYears?: number;
624
- } | {
625
- length?: number;
626
- _type?: "exact" | "less" | "more";
627
- } | {
628
- _type?: "multi";
629
- multiLength?: number[];
630
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
631
- };
632
- idp?: {
633
- url?: string;
634
- target?: "_blank" | "_self";
635
- enabled?: boolean;
636
- };
637
- profileTab?: {
638
- deleteAccountButton?: boolean;
639
- };
640
- secondStepRegistration?: {
641
- businessAccount?: {
642
- enabled?: boolean;
643
- fields?: {
644
- title?: {
645
- enabled?: boolean;
646
- validationTypes?: ("required" | "password" | "email" | {
647
- _type?: "overYears";
648
- overYears?: number;
649
- } | {
650
- length?: number;
651
- _type?: "exact" | "less" | "more";
652
- } | {
653
- _type?: "multi";
654
- multiLength?: number[];
655
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
656
- };
657
- company?: {
658
- enabled?: boolean;
659
- validationTypes?: ("required" | "password" | "email" | {
660
- _type?: "overYears";
661
- overYears?: number;
662
- } | {
663
- length?: number;
664
- _type?: "exact" | "less" | "more";
665
- } | {
666
- _type?: "multi";
667
- multiLength?: number[];
668
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
669
- };
670
- typeOfBusiness?: {
671
- options?: ("foodService" | "education" | "youthSports" | "administrationOffice" | "nonProfit")[];
672
- enabled?: boolean;
673
- validationTypes?: ("required" | "password" | "email" | {
674
- _type?: "overYears";
675
- overYears?: number;
676
- } | {
677
- length?: number;
678
- _type?: "exact" | "less" | "more";
679
- } | {
680
- _type?: "multi";
681
- multiLength?: number[];
682
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
683
- };
684
- };
685
- };
686
- };
687
- }>;