@thryveai/theme-interfaces 2.7.155-3.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 -848
  35. package/dist/core/storefront-zod/retailer-settings/features.js +0 -63
  36. package/dist/core/storefront-zod/retailer-settings/index.d.ts +0 -9805
  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 -1647
  47. package/dist/core/storefront-zod/retailer-settings/sharedSchemas.js +0 -592
  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,828 +0,0 @@
1
- import { z } from "zod";
2
- export declare const iAddressesSettingsV2Schema: z.ZodObject<{
3
- addressValidationTypes: z.ZodObject<{
4
- addressLine1: z.ZodArray<z.ZodUnion<[z.ZodObject<{
5
- _type: z.ZodLiteral<"overYears">;
6
- overYears: z.ZodNumber;
7
- }, "strip", z.ZodTypeAny, {
8
- _type?: "overYears";
9
- overYears?: number;
10
- }, {
11
- _type?: "overYears";
12
- overYears?: number;
13
- }>, z.ZodObject<{
14
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
15
- length: z.ZodNumber;
16
- }, "strip", z.ZodTypeAny, {
17
- length?: number;
18
- _type?: "exact" | "less" | "more";
19
- }, {
20
- length?: number;
21
- _type?: "exact" | "less" | "more";
22
- }>, z.ZodObject<{
23
- _type: z.ZodLiteral<"multi">;
24
- multiLength: z.ZodArray<z.ZodNumber, "many">;
25
- }, "strip", z.ZodTypeAny, {
26
- _type?: "multi";
27
- multiLength?: number[];
28
- }, {
29
- _type?: "multi";
30
- multiLength?: number[];
31
- }>, 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">;
32
- addressLine2: z.ZodArray<z.ZodUnion<[z.ZodObject<{
33
- _type: z.ZodLiteral<"overYears">;
34
- overYears: z.ZodNumber;
35
- }, "strip", z.ZodTypeAny, {
36
- _type?: "overYears";
37
- overYears?: number;
38
- }, {
39
- _type?: "overYears";
40
- overYears?: number;
41
- }>, z.ZodObject<{
42
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
43
- length: z.ZodNumber;
44
- }, "strip", z.ZodTypeAny, {
45
- length?: number;
46
- _type?: "exact" | "less" | "more";
47
- }, {
48
- length?: number;
49
- _type?: "exact" | "less" | "more";
50
- }>, z.ZodObject<{
51
- _type: z.ZodLiteral<"multi">;
52
- multiLength: z.ZodArray<z.ZodNumber, "many">;
53
- }, "strip", z.ZodTypeAny, {
54
- _type?: "multi";
55
- multiLength?: number[];
56
- }, {
57
- _type?: "multi";
58
- multiLength?: number[];
59
- }>, 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">;
60
- city: z.ZodArray<z.ZodUnion<[z.ZodObject<{
61
- _type: z.ZodLiteral<"overYears">;
62
- overYears: z.ZodNumber;
63
- }, "strip", z.ZodTypeAny, {
64
- _type?: "overYears";
65
- overYears?: number;
66
- }, {
67
- _type?: "overYears";
68
- overYears?: number;
69
- }>, z.ZodObject<{
70
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
71
- length: z.ZodNumber;
72
- }, "strip", z.ZodTypeAny, {
73
- length?: number;
74
- _type?: "exact" | "less" | "more";
75
- }, {
76
- length?: number;
77
- _type?: "exact" | "less" | "more";
78
- }>, z.ZodObject<{
79
- _type: z.ZodLiteral<"multi">;
80
- multiLength: z.ZodArray<z.ZodNumber, "many">;
81
- }, "strip", z.ZodTypeAny, {
82
- _type?: "multi";
83
- multiLength?: number[];
84
- }, {
85
- _type?: "multi";
86
- multiLength?: number[];
87
- }>, 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">;
88
- countyProvinceState: z.ZodArray<z.ZodUnion<[z.ZodObject<{
89
- _type: z.ZodLiteral<"overYears">;
90
- overYears: z.ZodNumber;
91
- }, "strip", z.ZodTypeAny, {
92
- _type?: "overYears";
93
- overYears?: number;
94
- }, {
95
- _type?: "overYears";
96
- overYears?: number;
97
- }>, z.ZodObject<{
98
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
99
- length: z.ZodNumber;
100
- }, "strip", z.ZodTypeAny, {
101
- length?: number;
102
- _type?: "exact" | "less" | "more";
103
- }, {
104
- length?: number;
105
- _type?: "exact" | "less" | "more";
106
- }>, z.ZodObject<{
107
- _type: z.ZodLiteral<"multi">;
108
- multiLength: z.ZodArray<z.ZodNumber, "many">;
109
- }, "strip", z.ZodTypeAny, {
110
- _type?: "multi";
111
- multiLength?: number[];
112
- }, {
113
- _type?: "multi";
114
- multiLength?: number[];
115
- }>, 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">;
116
- familyName: z.ZodArray<z.ZodUnion<[z.ZodObject<{
117
- _type: z.ZodLiteral<"overYears">;
118
- overYears: z.ZodNumber;
119
- }, "strip", z.ZodTypeAny, {
120
- _type?: "overYears";
121
- overYears?: number;
122
- }, {
123
- _type?: "overYears";
124
- overYears?: number;
125
- }>, z.ZodObject<{
126
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
127
- length: z.ZodNumber;
128
- }, "strip", z.ZodTypeAny, {
129
- length?: number;
130
- _type?: "exact" | "less" | "more";
131
- }, {
132
- length?: number;
133
- _type?: "exact" | "less" | "more";
134
- }>, z.ZodObject<{
135
- _type: z.ZodLiteral<"multi">;
136
- multiLength: z.ZodArray<z.ZodNumber, "many">;
137
- }, "strip", z.ZodTypeAny, {
138
- _type?: "multi";
139
- multiLength?: number[];
140
- }, {
141
- _type?: "multi";
142
- multiLength?: number[];
143
- }>, 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">;
144
- firstName: z.ZodArray<z.ZodUnion<[z.ZodObject<{
145
- _type: z.ZodLiteral<"overYears">;
146
- overYears: z.ZodNumber;
147
- }, "strip", z.ZodTypeAny, {
148
- _type?: "overYears";
149
- overYears?: number;
150
- }, {
151
- _type?: "overYears";
152
- overYears?: number;
153
- }>, z.ZodObject<{
154
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
155
- length: z.ZodNumber;
156
- }, "strip", z.ZodTypeAny, {
157
- length?: number;
158
- _type?: "exact" | "less" | "more";
159
- }, {
160
- length?: number;
161
- _type?: "exact" | "less" | "more";
162
- }>, z.ZodObject<{
163
- _type: z.ZodLiteral<"multi">;
164
- multiLength: z.ZodArray<z.ZodNumber, "many">;
165
- }, "strip", z.ZodTypeAny, {
166
- _type?: "multi";
167
- multiLength?: number[];
168
- }, {
169
- _type?: "multi";
170
- multiLength?: number[];
171
- }>, 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">;
172
- instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
173
- _type: z.ZodLiteral<"overYears">;
174
- overYears: z.ZodNumber;
175
- }, "strip", z.ZodTypeAny, {
176
- _type?: "overYears";
177
- overYears?: number;
178
- }, {
179
- _type?: "overYears";
180
- overYears?: number;
181
- }>, z.ZodObject<{
182
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
183
- length: z.ZodNumber;
184
- }, "strip", z.ZodTypeAny, {
185
- length?: number;
186
- _type?: "exact" | "less" | "more";
187
- }, {
188
- length?: number;
189
- _type?: "exact" | "less" | "more";
190
- }>, z.ZodObject<{
191
- _type: z.ZodLiteral<"multi">;
192
- multiLength: z.ZodArray<z.ZodNumber, "many">;
193
- }, "strip", z.ZodTypeAny, {
194
- _type?: "multi";
195
- multiLength?: number[];
196
- }, {
197
- _type?: "multi";
198
- multiLength?: number[];
199
- }>, 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">;
200
- phoneNumber: z.ZodArray<z.ZodUnion<[z.ZodObject<{
201
- _type: z.ZodLiteral<"overYears">;
202
- overYears: z.ZodNumber;
203
- }, "strip", z.ZodTypeAny, {
204
- _type?: "overYears";
205
- overYears?: number;
206
- }, {
207
- _type?: "overYears";
208
- overYears?: number;
209
- }>, z.ZodObject<{
210
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
211
- length: z.ZodNumber;
212
- }, "strip", z.ZodTypeAny, {
213
- length?: number;
214
- _type?: "exact" | "less" | "more";
215
- }, {
216
- length?: number;
217
- _type?: "exact" | "less" | "more";
218
- }>, z.ZodObject<{
219
- _type: z.ZodLiteral<"multi">;
220
- multiLength: z.ZodArray<z.ZodNumber, "many">;
221
- }, "strip", z.ZodTypeAny, {
222
- _type?: "multi";
223
- multiLength?: number[];
224
- }, {
225
- _type?: "multi";
226
- multiLength?: number[];
227
- }>, 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">;
228
- postCode: z.ZodArray<z.ZodUnion<[z.ZodObject<{
229
- _type: z.ZodLiteral<"overYears">;
230
- overYears: z.ZodNumber;
231
- }, "strip", z.ZodTypeAny, {
232
- _type?: "overYears";
233
- overYears?: number;
234
- }, {
235
- _type?: "overYears";
236
- overYears?: number;
237
- }>, z.ZodObject<{
238
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
239
- length: z.ZodNumber;
240
- }, "strip", z.ZodTypeAny, {
241
- length?: number;
242
- _type?: "exact" | "less" | "more";
243
- }, {
244
- length?: number;
245
- _type?: "exact" | "less" | "more";
246
- }>, z.ZodObject<{
247
- _type: z.ZodLiteral<"multi">;
248
- multiLength: z.ZodArray<z.ZodNumber, "many">;
249
- }, "strip", z.ZodTypeAny, {
250
- _type?: "multi";
251
- multiLength?: number[];
252
- }, {
253
- _type?: "multi";
254
- multiLength?: number[];
255
- }>, 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">;
256
- smsNumber: z.ZodArray<z.ZodUnion<[z.ZodObject<{
257
- _type: z.ZodLiteral<"overYears">;
258
- overYears: z.ZodNumber;
259
- }, "strip", z.ZodTypeAny, {
260
- _type?: "overYears";
261
- overYears?: number;
262
- }, {
263
- _type?: "overYears";
264
- overYears?: number;
265
- }>, z.ZodObject<{
266
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
267
- length: z.ZodNumber;
268
- }, "strip", z.ZodTypeAny, {
269
- length?: number;
270
- _type?: "exact" | "less" | "more";
271
- }, {
272
- length?: number;
273
- _type?: "exact" | "less" | "more";
274
- }>, z.ZodObject<{
275
- _type: z.ZodLiteral<"multi">;
276
- multiLength: z.ZodArray<z.ZodNumber, "many">;
277
- }, "strip", z.ZodTypeAny, {
278
- _type?: "multi";
279
- multiLength?: number[];
280
- }, {
281
- _type?: "multi";
282
- multiLength?: number[];
283
- }>, 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">;
284
- deliveryModalZipCodeValidation: z.ZodArray<z.ZodUnion<[z.ZodObject<{
285
- _type: z.ZodLiteral<"overYears">;
286
- overYears: z.ZodNumber;
287
- }, "strip", z.ZodTypeAny, {
288
- _type?: "overYears";
289
- overYears?: number;
290
- }, {
291
- _type?: "overYears";
292
- overYears?: number;
293
- }>, z.ZodObject<{
294
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
295
- length: z.ZodNumber;
296
- }, "strip", z.ZodTypeAny, {
297
- length?: number;
298
- _type?: "exact" | "less" | "more";
299
- }, {
300
- length?: number;
301
- _type?: "exact" | "less" | "more";
302
- }>, z.ZodObject<{
303
- _type: z.ZodLiteral<"multi">;
304
- multiLength: z.ZodArray<z.ZodNumber, "many">;
305
- }, "strip", z.ZodTypeAny, {
306
- _type?: "multi";
307
- multiLength?: number[];
308
- }, {
309
- _type?: "multi";
310
- multiLength?: number[];
311
- }>, 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">;
312
- }, "strip", z.ZodTypeAny, {
313
- addressLine1?: ("required" | "password" | "email" | {
314
- _type?: "overYears";
315
- overYears?: number;
316
- } | {
317
- length?: number;
318
- _type?: "exact" | "less" | "more";
319
- } | {
320
- _type?: "multi";
321
- multiLength?: number[];
322
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
323
- addressLine2?: ("required" | "password" | "email" | {
324
- _type?: "overYears";
325
- overYears?: number;
326
- } | {
327
- length?: number;
328
- _type?: "exact" | "less" | "more";
329
- } | {
330
- _type?: "multi";
331
- multiLength?: number[];
332
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
333
- city?: ("required" | "password" | "email" | {
334
- _type?: "overYears";
335
- overYears?: number;
336
- } | {
337
- length?: number;
338
- _type?: "exact" | "less" | "more";
339
- } | {
340
- _type?: "multi";
341
- multiLength?: number[];
342
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
343
- countyProvinceState?: ("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
- familyName?: ("required" | "password" | "email" | {
354
- _type?: "overYears";
355
- overYears?: number;
356
- } | {
357
- length?: number;
358
- _type?: "exact" | "less" | "more";
359
- } | {
360
- _type?: "multi";
361
- multiLength?: number[];
362
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
363
- firstName?: ("required" | "password" | "email" | {
364
- _type?: "overYears";
365
- overYears?: number;
366
- } | {
367
- length?: number;
368
- _type?: "exact" | "less" | "more";
369
- } | {
370
- _type?: "multi";
371
- multiLength?: number[];
372
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
373
- instructions?: ("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
- phoneNumber?: ("required" | "password" | "email" | {
384
- _type?: "overYears";
385
- overYears?: number;
386
- } | {
387
- length?: number;
388
- _type?: "exact" | "less" | "more";
389
- } | {
390
- _type?: "multi";
391
- multiLength?: number[];
392
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
393
- postCode?: ("required" | "password" | "email" | {
394
- _type?: "overYears";
395
- overYears?: number;
396
- } | {
397
- length?: number;
398
- _type?: "exact" | "less" | "more";
399
- } | {
400
- _type?: "multi";
401
- multiLength?: number[];
402
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
403
- smsNumber?: ("required" | "password" | "email" | {
404
- _type?: "overYears";
405
- overYears?: number;
406
- } | {
407
- length?: number;
408
- _type?: "exact" | "less" | "more";
409
- } | {
410
- _type?: "multi";
411
- multiLength?: number[];
412
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
413
- deliveryModalZipCodeValidation?: ("required" | "password" | "email" | {
414
- _type?: "overYears";
415
- overYears?: number;
416
- } | {
417
- length?: number;
418
- _type?: "exact" | "less" | "more";
419
- } | {
420
- _type?: "multi";
421
- multiLength?: number[];
422
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
423
- }, {
424
- addressLine1?: ("required" | "password" | "email" | {
425
- _type?: "overYears";
426
- overYears?: number;
427
- } | {
428
- length?: number;
429
- _type?: "exact" | "less" | "more";
430
- } | {
431
- _type?: "multi";
432
- multiLength?: number[];
433
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
434
- addressLine2?: ("required" | "password" | "email" | {
435
- _type?: "overYears";
436
- overYears?: number;
437
- } | {
438
- length?: number;
439
- _type?: "exact" | "less" | "more";
440
- } | {
441
- _type?: "multi";
442
- multiLength?: number[];
443
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
444
- city?: ("required" | "password" | "email" | {
445
- _type?: "overYears";
446
- overYears?: number;
447
- } | {
448
- length?: number;
449
- _type?: "exact" | "less" | "more";
450
- } | {
451
- _type?: "multi";
452
- multiLength?: number[];
453
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
454
- countyProvinceState?: ("required" | "password" | "email" | {
455
- _type?: "overYears";
456
- overYears?: number;
457
- } | {
458
- length?: number;
459
- _type?: "exact" | "less" | "more";
460
- } | {
461
- _type?: "multi";
462
- multiLength?: number[];
463
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
464
- familyName?: ("required" | "password" | "email" | {
465
- _type?: "overYears";
466
- overYears?: number;
467
- } | {
468
- length?: number;
469
- _type?: "exact" | "less" | "more";
470
- } | {
471
- _type?: "multi";
472
- multiLength?: number[];
473
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
474
- firstName?: ("required" | "password" | "email" | {
475
- _type?: "overYears";
476
- overYears?: number;
477
- } | {
478
- length?: number;
479
- _type?: "exact" | "less" | "more";
480
- } | {
481
- _type?: "multi";
482
- multiLength?: number[];
483
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
484
- instructions?: ("required" | "password" | "email" | {
485
- _type?: "overYears";
486
- overYears?: number;
487
- } | {
488
- length?: number;
489
- _type?: "exact" | "less" | "more";
490
- } | {
491
- _type?: "multi";
492
- multiLength?: number[];
493
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
494
- phoneNumber?: ("required" | "password" | "email" | {
495
- _type?: "overYears";
496
- overYears?: number;
497
- } | {
498
- length?: number;
499
- _type?: "exact" | "less" | "more";
500
- } | {
501
- _type?: "multi";
502
- multiLength?: number[];
503
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
504
- postCode?: ("required" | "password" | "email" | {
505
- _type?: "overYears";
506
- overYears?: number;
507
- } | {
508
- length?: number;
509
- _type?: "exact" | "less" | "more";
510
- } | {
511
- _type?: "multi";
512
- multiLength?: number[];
513
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
514
- smsNumber?: ("required" | "password" | "email" | {
515
- _type?: "overYears";
516
- overYears?: number;
517
- } | {
518
- length?: number;
519
- _type?: "exact" | "less" | "more";
520
- } | {
521
- _type?: "multi";
522
- multiLength?: number[];
523
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
524
- deliveryModalZipCodeValidation?: ("required" | "password" | "email" | {
525
- _type?: "overYears";
526
- overYears?: number;
527
- } | {
528
- length?: number;
529
- _type?: "exact" | "less" | "more";
530
- } | {
531
- _type?: "multi";
532
- multiLength?: number[];
533
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
534
- }>;
535
- eircode: z.ZodObject<{
536
- enabled: z.ZodBoolean;
537
- url: z.ZodString;
538
- }, "strip", z.ZodTypeAny, {
539
- url?: string;
540
- enabled?: boolean;
541
- }, {
542
- url?: string;
543
- enabled?: boolean;
544
- }>;
545
- integration: z.ZodObject<{
546
- enabled: z.ZodBoolean;
547
- addressFinderType: z.ZodUnion<[z.ZodLiteral<"AUS">, z.ZodLiteral<"EU">, z.ZodLiteral<"IE">, z.ZodLiteral<"US">, z.ZodLiteral<"UK">, z.ZodLiteral<"CA">]>;
548
- useForNewAddresses: z.ZodBoolean;
549
- addNewAddressUrl: z.ZodString;
550
- editAddressUrl: z.ZodString;
551
- deleteAddressUrl: z.ZodString;
552
- addressProfileName: z.ZodNullable<z.ZodString>;
553
- }, "strip", z.ZodTypeAny, {
554
- enabled?: boolean;
555
- addressFinderType?: "AUS" | "EU" | "IE" | "US" | "UK" | "CA";
556
- useForNewAddresses?: boolean;
557
- addNewAddressUrl?: string;
558
- editAddressUrl?: string;
559
- deleteAddressUrl?: string;
560
- addressProfileName?: string;
561
- }, {
562
- enabled?: boolean;
563
- addressFinderType?: "AUS" | "EU" | "IE" | "US" | "UK" | "CA";
564
- useForNewAddresses?: boolean;
565
- addNewAddressUrl?: string;
566
- editAddressUrl?: string;
567
- deleteAddressUrl?: string;
568
- addressProfileName?: string;
569
- }>;
570
- useAddressValidation: z.ZodBoolean;
571
- fixOldAddresses: z.ZodBoolean;
572
- }, "strip", z.ZodTypeAny, {
573
- addressValidationTypes?: {
574
- addressLine1?: ("required" | "password" | "email" | {
575
- _type?: "overYears";
576
- overYears?: number;
577
- } | {
578
- length?: number;
579
- _type?: "exact" | "less" | "more";
580
- } | {
581
- _type?: "multi";
582
- multiLength?: number[];
583
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
584
- addressLine2?: ("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
- city?: ("required" | "password" | "email" | {
595
- _type?: "overYears";
596
- overYears?: number;
597
- } | {
598
- length?: number;
599
- _type?: "exact" | "less" | "more";
600
- } | {
601
- _type?: "multi";
602
- multiLength?: number[];
603
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
604
- countyProvinceState?: ("required" | "password" | "email" | {
605
- _type?: "overYears";
606
- overYears?: number;
607
- } | {
608
- length?: number;
609
- _type?: "exact" | "less" | "more";
610
- } | {
611
- _type?: "multi";
612
- multiLength?: number[];
613
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
614
- familyName?: ("required" | "password" | "email" | {
615
- _type?: "overYears";
616
- overYears?: number;
617
- } | {
618
- length?: number;
619
- _type?: "exact" | "less" | "more";
620
- } | {
621
- _type?: "multi";
622
- multiLength?: number[];
623
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
624
- firstName?: ("required" | "password" | "email" | {
625
- _type?: "overYears";
626
- overYears?: number;
627
- } | {
628
- length?: number;
629
- _type?: "exact" | "less" | "more";
630
- } | {
631
- _type?: "multi";
632
- multiLength?: number[];
633
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
634
- instructions?: ("required" | "password" | "email" | {
635
- _type?: "overYears";
636
- overYears?: number;
637
- } | {
638
- length?: number;
639
- _type?: "exact" | "less" | "more";
640
- } | {
641
- _type?: "multi";
642
- multiLength?: number[];
643
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
644
- phoneNumber?: ("required" | "password" | "email" | {
645
- _type?: "overYears";
646
- overYears?: number;
647
- } | {
648
- length?: number;
649
- _type?: "exact" | "less" | "more";
650
- } | {
651
- _type?: "multi";
652
- multiLength?: number[];
653
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
654
- postCode?: ("required" | "password" | "email" | {
655
- _type?: "overYears";
656
- overYears?: number;
657
- } | {
658
- length?: number;
659
- _type?: "exact" | "less" | "more";
660
- } | {
661
- _type?: "multi";
662
- multiLength?: number[];
663
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
664
- smsNumber?: ("required" | "password" | "email" | {
665
- _type?: "overYears";
666
- overYears?: number;
667
- } | {
668
- length?: number;
669
- _type?: "exact" | "less" | "more";
670
- } | {
671
- _type?: "multi";
672
- multiLength?: number[];
673
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
674
- deliveryModalZipCodeValidation?: ("required" | "password" | "email" | {
675
- _type?: "overYears";
676
- overYears?: number;
677
- } | {
678
- length?: number;
679
- _type?: "exact" | "less" | "more";
680
- } | {
681
- _type?: "multi";
682
- multiLength?: number[];
683
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
684
- };
685
- eircode?: {
686
- url?: string;
687
- enabled?: boolean;
688
- };
689
- integration?: {
690
- enabled?: boolean;
691
- addressFinderType?: "AUS" | "EU" | "IE" | "US" | "UK" | "CA";
692
- useForNewAddresses?: boolean;
693
- addNewAddressUrl?: string;
694
- editAddressUrl?: string;
695
- deleteAddressUrl?: string;
696
- addressProfileName?: string;
697
- };
698
- useAddressValidation?: boolean;
699
- fixOldAddresses?: boolean;
700
- }, {
701
- addressValidationTypes?: {
702
- addressLine1?: ("required" | "password" | "email" | {
703
- _type?: "overYears";
704
- overYears?: number;
705
- } | {
706
- length?: number;
707
- _type?: "exact" | "less" | "more";
708
- } | {
709
- _type?: "multi";
710
- multiLength?: number[];
711
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
712
- addressLine2?: ("required" | "password" | "email" | {
713
- _type?: "overYears";
714
- overYears?: number;
715
- } | {
716
- length?: number;
717
- _type?: "exact" | "less" | "more";
718
- } | {
719
- _type?: "multi";
720
- multiLength?: number[];
721
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
722
- city?: ("required" | "password" | "email" | {
723
- _type?: "overYears";
724
- overYears?: number;
725
- } | {
726
- length?: number;
727
- _type?: "exact" | "less" | "more";
728
- } | {
729
- _type?: "multi";
730
- multiLength?: number[];
731
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
732
- countyProvinceState?: ("required" | "password" | "email" | {
733
- _type?: "overYears";
734
- overYears?: number;
735
- } | {
736
- length?: number;
737
- _type?: "exact" | "less" | "more";
738
- } | {
739
- _type?: "multi";
740
- multiLength?: number[];
741
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
742
- familyName?: ("required" | "password" | "email" | {
743
- _type?: "overYears";
744
- overYears?: number;
745
- } | {
746
- length?: number;
747
- _type?: "exact" | "less" | "more";
748
- } | {
749
- _type?: "multi";
750
- multiLength?: number[];
751
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
752
- firstName?: ("required" | "password" | "email" | {
753
- _type?: "overYears";
754
- overYears?: number;
755
- } | {
756
- length?: number;
757
- _type?: "exact" | "less" | "more";
758
- } | {
759
- _type?: "multi";
760
- multiLength?: number[];
761
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
762
- instructions?: ("required" | "password" | "email" | {
763
- _type?: "overYears";
764
- overYears?: number;
765
- } | {
766
- length?: number;
767
- _type?: "exact" | "less" | "more";
768
- } | {
769
- _type?: "multi";
770
- multiLength?: number[];
771
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
772
- phoneNumber?: ("required" | "password" | "email" | {
773
- _type?: "overYears";
774
- overYears?: number;
775
- } | {
776
- length?: number;
777
- _type?: "exact" | "less" | "more";
778
- } | {
779
- _type?: "multi";
780
- multiLength?: number[];
781
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
782
- postCode?: ("required" | "password" | "email" | {
783
- _type?: "overYears";
784
- overYears?: number;
785
- } | {
786
- length?: number;
787
- _type?: "exact" | "less" | "more";
788
- } | {
789
- _type?: "multi";
790
- multiLength?: number[];
791
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
792
- smsNumber?: ("required" | "password" | "email" | {
793
- _type?: "overYears";
794
- overYears?: number;
795
- } | {
796
- length?: number;
797
- _type?: "exact" | "less" | "more";
798
- } | {
799
- _type?: "multi";
800
- multiLength?: number[];
801
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
802
- deliveryModalZipCodeValidation?: ("required" | "password" | "email" | {
803
- _type?: "overYears";
804
- overYears?: number;
805
- } | {
806
- length?: number;
807
- _type?: "exact" | "less" | "more";
808
- } | {
809
- _type?: "multi";
810
- multiLength?: number[];
811
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
812
- };
813
- eircode?: {
814
- url?: string;
815
- enabled?: boolean;
816
- };
817
- integration?: {
818
- enabled?: boolean;
819
- addressFinderType?: "AUS" | "EU" | "IE" | "US" | "UK" | "CA";
820
- useForNewAddresses?: boolean;
821
- addNewAddressUrl?: string;
822
- editAddressUrl?: string;
823
- deleteAddressUrl?: string;
824
- addressProfileName?: string;
825
- };
826
- useAddressValidation?: boolean;
827
- fixOldAddresses?: boolean;
828
- }>;