@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,1647 +0,0 @@
1
- import { z } from "zod";
2
- export declare const iValidationTypeSchema: z.ZodUnion<[z.ZodObject<{
3
- _type: z.ZodLiteral<"overYears">;
4
- overYears: z.ZodNumber;
5
- }, "strip", z.ZodTypeAny, {
6
- _type?: "overYears";
7
- overYears?: number;
8
- }, {
9
- _type?: "overYears";
10
- overYears?: number;
11
- }>, z.ZodObject<{
12
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
13
- length: z.ZodNumber;
14
- }, "strip", z.ZodTypeAny, {
15
- length?: number;
16
- _type?: "exact" | "less" | "more";
17
- }, {
18
- length?: number;
19
- _type?: "exact" | "less" | "more";
20
- }>, z.ZodObject<{
21
- _type: z.ZodLiteral<"multi">;
22
- multiLength: z.ZodArray<z.ZodNumber, "many">;
23
- }, "strip", z.ZodTypeAny, {
24
- _type?: "multi";
25
- multiLength?: number[];
26
- }, {
27
- _type?: "multi";
28
- multiLength?: number[];
29
- }>, 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">]>;
30
- export declare const iAddressValidationTypesSchema: z.ZodObject<{
31
- addressLine1: z.ZodArray<z.ZodUnion<[z.ZodObject<{
32
- _type: z.ZodLiteral<"overYears">;
33
- overYears: z.ZodNumber;
34
- }, "strip", z.ZodTypeAny, {
35
- _type?: "overYears";
36
- overYears?: number;
37
- }, {
38
- _type?: "overYears";
39
- overYears?: number;
40
- }>, z.ZodObject<{
41
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
42
- length: z.ZodNumber;
43
- }, "strip", z.ZodTypeAny, {
44
- length?: number;
45
- _type?: "exact" | "less" | "more";
46
- }, {
47
- length?: number;
48
- _type?: "exact" | "less" | "more";
49
- }>, z.ZodObject<{
50
- _type: z.ZodLiteral<"multi">;
51
- multiLength: z.ZodArray<z.ZodNumber, "many">;
52
- }, "strip", z.ZodTypeAny, {
53
- _type?: "multi";
54
- multiLength?: number[];
55
- }, {
56
- _type?: "multi";
57
- multiLength?: number[];
58
- }>, 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">;
59
- addressLine2: z.ZodArray<z.ZodUnion<[z.ZodObject<{
60
- _type: z.ZodLiteral<"overYears">;
61
- overYears: z.ZodNumber;
62
- }, "strip", z.ZodTypeAny, {
63
- _type?: "overYears";
64
- overYears?: number;
65
- }, {
66
- _type?: "overYears";
67
- overYears?: number;
68
- }>, z.ZodObject<{
69
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
70
- length: z.ZodNumber;
71
- }, "strip", z.ZodTypeAny, {
72
- length?: number;
73
- _type?: "exact" | "less" | "more";
74
- }, {
75
- length?: number;
76
- _type?: "exact" | "less" | "more";
77
- }>, z.ZodObject<{
78
- _type: z.ZodLiteral<"multi">;
79
- multiLength: z.ZodArray<z.ZodNumber, "many">;
80
- }, "strip", z.ZodTypeAny, {
81
- _type?: "multi";
82
- multiLength?: number[];
83
- }, {
84
- _type?: "multi";
85
- multiLength?: number[];
86
- }>, 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">;
87
- city: z.ZodArray<z.ZodUnion<[z.ZodObject<{
88
- _type: z.ZodLiteral<"overYears">;
89
- overYears: z.ZodNumber;
90
- }, "strip", z.ZodTypeAny, {
91
- _type?: "overYears";
92
- overYears?: number;
93
- }, {
94
- _type?: "overYears";
95
- overYears?: number;
96
- }>, z.ZodObject<{
97
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
98
- length: z.ZodNumber;
99
- }, "strip", z.ZodTypeAny, {
100
- length?: number;
101
- _type?: "exact" | "less" | "more";
102
- }, {
103
- length?: number;
104
- _type?: "exact" | "less" | "more";
105
- }>, z.ZodObject<{
106
- _type: z.ZodLiteral<"multi">;
107
- multiLength: z.ZodArray<z.ZodNumber, "many">;
108
- }, "strip", z.ZodTypeAny, {
109
- _type?: "multi";
110
- multiLength?: number[];
111
- }, {
112
- _type?: "multi";
113
- multiLength?: number[];
114
- }>, 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">;
115
- countyProvinceState: z.ZodArray<z.ZodUnion<[z.ZodObject<{
116
- _type: z.ZodLiteral<"overYears">;
117
- overYears: z.ZodNumber;
118
- }, "strip", z.ZodTypeAny, {
119
- _type?: "overYears";
120
- overYears?: number;
121
- }, {
122
- _type?: "overYears";
123
- overYears?: number;
124
- }>, z.ZodObject<{
125
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
126
- length: z.ZodNumber;
127
- }, "strip", z.ZodTypeAny, {
128
- length?: number;
129
- _type?: "exact" | "less" | "more";
130
- }, {
131
- length?: number;
132
- _type?: "exact" | "less" | "more";
133
- }>, z.ZodObject<{
134
- _type: z.ZodLiteral<"multi">;
135
- multiLength: z.ZodArray<z.ZodNumber, "many">;
136
- }, "strip", z.ZodTypeAny, {
137
- _type?: "multi";
138
- multiLength?: number[];
139
- }, {
140
- _type?: "multi";
141
- multiLength?: number[];
142
- }>, 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">;
143
- familyName: z.ZodArray<z.ZodUnion<[z.ZodObject<{
144
- _type: z.ZodLiteral<"overYears">;
145
- overYears: z.ZodNumber;
146
- }, "strip", z.ZodTypeAny, {
147
- _type?: "overYears";
148
- overYears?: number;
149
- }, {
150
- _type?: "overYears";
151
- overYears?: number;
152
- }>, z.ZodObject<{
153
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
154
- length: z.ZodNumber;
155
- }, "strip", z.ZodTypeAny, {
156
- length?: number;
157
- _type?: "exact" | "less" | "more";
158
- }, {
159
- length?: number;
160
- _type?: "exact" | "less" | "more";
161
- }>, z.ZodObject<{
162
- _type: z.ZodLiteral<"multi">;
163
- multiLength: z.ZodArray<z.ZodNumber, "many">;
164
- }, "strip", z.ZodTypeAny, {
165
- _type?: "multi";
166
- multiLength?: number[];
167
- }, {
168
- _type?: "multi";
169
- multiLength?: number[];
170
- }>, 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">;
171
- firstName: z.ZodArray<z.ZodUnion<[z.ZodObject<{
172
- _type: z.ZodLiteral<"overYears">;
173
- overYears: z.ZodNumber;
174
- }, "strip", z.ZodTypeAny, {
175
- _type?: "overYears";
176
- overYears?: number;
177
- }, {
178
- _type?: "overYears";
179
- overYears?: number;
180
- }>, z.ZodObject<{
181
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
182
- length: z.ZodNumber;
183
- }, "strip", z.ZodTypeAny, {
184
- length?: number;
185
- _type?: "exact" | "less" | "more";
186
- }, {
187
- length?: number;
188
- _type?: "exact" | "less" | "more";
189
- }>, z.ZodObject<{
190
- _type: z.ZodLiteral<"multi">;
191
- multiLength: z.ZodArray<z.ZodNumber, "many">;
192
- }, "strip", z.ZodTypeAny, {
193
- _type?: "multi";
194
- multiLength?: number[];
195
- }, {
196
- _type?: "multi";
197
- multiLength?: number[];
198
- }>, 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">;
199
- instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
200
- _type: z.ZodLiteral<"overYears">;
201
- overYears: z.ZodNumber;
202
- }, "strip", z.ZodTypeAny, {
203
- _type?: "overYears";
204
- overYears?: number;
205
- }, {
206
- _type?: "overYears";
207
- overYears?: number;
208
- }>, z.ZodObject<{
209
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
210
- length: z.ZodNumber;
211
- }, "strip", z.ZodTypeAny, {
212
- length?: number;
213
- _type?: "exact" | "less" | "more";
214
- }, {
215
- length?: number;
216
- _type?: "exact" | "less" | "more";
217
- }>, z.ZodObject<{
218
- _type: z.ZodLiteral<"multi">;
219
- multiLength: z.ZodArray<z.ZodNumber, "many">;
220
- }, "strip", z.ZodTypeAny, {
221
- _type?: "multi";
222
- multiLength?: number[];
223
- }, {
224
- _type?: "multi";
225
- multiLength?: number[];
226
- }>, 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">;
227
- phoneNumber: z.ZodArray<z.ZodUnion<[z.ZodObject<{
228
- _type: z.ZodLiteral<"overYears">;
229
- overYears: z.ZodNumber;
230
- }, "strip", z.ZodTypeAny, {
231
- _type?: "overYears";
232
- overYears?: number;
233
- }, {
234
- _type?: "overYears";
235
- overYears?: number;
236
- }>, z.ZodObject<{
237
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
238
- length: z.ZodNumber;
239
- }, "strip", z.ZodTypeAny, {
240
- length?: number;
241
- _type?: "exact" | "less" | "more";
242
- }, {
243
- length?: number;
244
- _type?: "exact" | "less" | "more";
245
- }>, z.ZodObject<{
246
- _type: z.ZodLiteral<"multi">;
247
- multiLength: z.ZodArray<z.ZodNumber, "many">;
248
- }, "strip", z.ZodTypeAny, {
249
- _type?: "multi";
250
- multiLength?: number[];
251
- }, {
252
- _type?: "multi";
253
- multiLength?: number[];
254
- }>, 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">;
255
- postCode: z.ZodArray<z.ZodUnion<[z.ZodObject<{
256
- _type: z.ZodLiteral<"overYears">;
257
- overYears: z.ZodNumber;
258
- }, "strip", z.ZodTypeAny, {
259
- _type?: "overYears";
260
- overYears?: number;
261
- }, {
262
- _type?: "overYears";
263
- overYears?: number;
264
- }>, z.ZodObject<{
265
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
266
- length: z.ZodNumber;
267
- }, "strip", z.ZodTypeAny, {
268
- length?: number;
269
- _type?: "exact" | "less" | "more";
270
- }, {
271
- length?: number;
272
- _type?: "exact" | "less" | "more";
273
- }>, z.ZodObject<{
274
- _type: z.ZodLiteral<"multi">;
275
- multiLength: z.ZodArray<z.ZodNumber, "many">;
276
- }, "strip", z.ZodTypeAny, {
277
- _type?: "multi";
278
- multiLength?: number[];
279
- }, {
280
- _type?: "multi";
281
- multiLength?: number[];
282
- }>, 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">;
283
- smsNumber: z.ZodArray<z.ZodUnion<[z.ZodObject<{
284
- _type: z.ZodLiteral<"overYears">;
285
- overYears: z.ZodNumber;
286
- }, "strip", z.ZodTypeAny, {
287
- _type?: "overYears";
288
- overYears?: number;
289
- }, {
290
- _type?: "overYears";
291
- overYears?: number;
292
- }>, z.ZodObject<{
293
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
294
- length: z.ZodNumber;
295
- }, "strip", z.ZodTypeAny, {
296
- length?: number;
297
- _type?: "exact" | "less" | "more";
298
- }, {
299
- length?: number;
300
- _type?: "exact" | "less" | "more";
301
- }>, z.ZodObject<{
302
- _type: z.ZodLiteral<"multi">;
303
- multiLength: z.ZodArray<z.ZodNumber, "many">;
304
- }, "strip", z.ZodTypeAny, {
305
- _type?: "multi";
306
- multiLength?: number[];
307
- }, {
308
- _type?: "multi";
309
- multiLength?: number[];
310
- }>, 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">;
311
- deliveryModalZipCodeValidation: z.ZodArray<z.ZodUnion<[z.ZodObject<{
312
- _type: z.ZodLiteral<"overYears">;
313
- overYears: z.ZodNumber;
314
- }, "strip", z.ZodTypeAny, {
315
- _type?: "overYears";
316
- overYears?: number;
317
- }, {
318
- _type?: "overYears";
319
- overYears?: number;
320
- }>, z.ZodObject<{
321
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
322
- length: z.ZodNumber;
323
- }, "strip", z.ZodTypeAny, {
324
- length?: number;
325
- _type?: "exact" | "less" | "more";
326
- }, {
327
- length?: number;
328
- _type?: "exact" | "less" | "more";
329
- }>, z.ZodObject<{
330
- _type: z.ZodLiteral<"multi">;
331
- multiLength: z.ZodArray<z.ZodNumber, "many">;
332
- }, "strip", z.ZodTypeAny, {
333
- _type?: "multi";
334
- multiLength?: number[];
335
- }, {
336
- _type?: "multi";
337
- multiLength?: number[];
338
- }>, 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">;
339
- }, "strip", z.ZodTypeAny, {
340
- addressLine1?: ("required" | "password" | "email" | {
341
- _type?: "overYears";
342
- overYears?: number;
343
- } | {
344
- length?: number;
345
- _type?: "exact" | "less" | "more";
346
- } | {
347
- _type?: "multi";
348
- multiLength?: number[];
349
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
350
- addressLine2?: ("required" | "password" | "email" | {
351
- _type?: "overYears";
352
- overYears?: number;
353
- } | {
354
- length?: number;
355
- _type?: "exact" | "less" | "more";
356
- } | {
357
- _type?: "multi";
358
- multiLength?: number[];
359
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
360
- city?: ("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
- countyProvinceState?: ("required" | "password" | "email" | {
371
- _type?: "overYears";
372
- overYears?: number;
373
- } | {
374
- length?: number;
375
- _type?: "exact" | "less" | "more";
376
- } | {
377
- _type?: "multi";
378
- multiLength?: number[];
379
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
380
- familyName?: ("required" | "password" | "email" | {
381
- _type?: "overYears";
382
- overYears?: number;
383
- } | {
384
- length?: number;
385
- _type?: "exact" | "less" | "more";
386
- } | {
387
- _type?: "multi";
388
- multiLength?: number[];
389
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
390
- firstName?: ("required" | "password" | "email" | {
391
- _type?: "overYears";
392
- overYears?: number;
393
- } | {
394
- length?: number;
395
- _type?: "exact" | "less" | "more";
396
- } | {
397
- _type?: "multi";
398
- multiLength?: number[];
399
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
400
- instructions?: ("required" | "password" | "email" | {
401
- _type?: "overYears";
402
- overYears?: number;
403
- } | {
404
- length?: number;
405
- _type?: "exact" | "less" | "more";
406
- } | {
407
- _type?: "multi";
408
- multiLength?: number[];
409
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
410
- phoneNumber?: ("required" | "password" | "email" | {
411
- _type?: "overYears";
412
- overYears?: number;
413
- } | {
414
- length?: number;
415
- _type?: "exact" | "less" | "more";
416
- } | {
417
- _type?: "multi";
418
- multiLength?: number[];
419
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
420
- postCode?: ("required" | "password" | "email" | {
421
- _type?: "overYears";
422
- overYears?: number;
423
- } | {
424
- length?: number;
425
- _type?: "exact" | "less" | "more";
426
- } | {
427
- _type?: "multi";
428
- multiLength?: number[];
429
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
430
- smsNumber?: ("required" | "password" | "email" | {
431
- _type?: "overYears";
432
- overYears?: number;
433
- } | {
434
- length?: number;
435
- _type?: "exact" | "less" | "more";
436
- } | {
437
- _type?: "multi";
438
- multiLength?: number[];
439
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
440
- deliveryModalZipCodeValidation?: ("required" | "password" | "email" | {
441
- _type?: "overYears";
442
- overYears?: number;
443
- } | {
444
- length?: number;
445
- _type?: "exact" | "less" | "more";
446
- } | {
447
- _type?: "multi";
448
- multiLength?: number[];
449
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
450
- }, {
451
- addressLine1?: ("required" | "password" | "email" | {
452
- _type?: "overYears";
453
- overYears?: number;
454
- } | {
455
- length?: number;
456
- _type?: "exact" | "less" | "more";
457
- } | {
458
- _type?: "multi";
459
- multiLength?: number[];
460
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
461
- addressLine2?: ("required" | "password" | "email" | {
462
- _type?: "overYears";
463
- overYears?: number;
464
- } | {
465
- length?: number;
466
- _type?: "exact" | "less" | "more";
467
- } | {
468
- _type?: "multi";
469
- multiLength?: number[];
470
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
471
- city?: ("required" | "password" | "email" | {
472
- _type?: "overYears";
473
- overYears?: number;
474
- } | {
475
- length?: number;
476
- _type?: "exact" | "less" | "more";
477
- } | {
478
- _type?: "multi";
479
- multiLength?: number[];
480
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
481
- countyProvinceState?: ("required" | "password" | "email" | {
482
- _type?: "overYears";
483
- overYears?: number;
484
- } | {
485
- length?: number;
486
- _type?: "exact" | "less" | "more";
487
- } | {
488
- _type?: "multi";
489
- multiLength?: number[];
490
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
491
- familyName?: ("required" | "password" | "email" | {
492
- _type?: "overYears";
493
- overYears?: number;
494
- } | {
495
- length?: number;
496
- _type?: "exact" | "less" | "more";
497
- } | {
498
- _type?: "multi";
499
- multiLength?: number[];
500
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
501
- firstName?: ("required" | "password" | "email" | {
502
- _type?: "overYears";
503
- overYears?: number;
504
- } | {
505
- length?: number;
506
- _type?: "exact" | "less" | "more";
507
- } | {
508
- _type?: "multi";
509
- multiLength?: number[];
510
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
511
- instructions?: ("required" | "password" | "email" | {
512
- _type?: "overYears";
513
- overYears?: number;
514
- } | {
515
- length?: number;
516
- _type?: "exact" | "less" | "more";
517
- } | {
518
- _type?: "multi";
519
- multiLength?: number[];
520
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
521
- phoneNumber?: ("required" | "password" | "email" | {
522
- _type?: "overYears";
523
- overYears?: number;
524
- } | {
525
- length?: number;
526
- _type?: "exact" | "less" | "more";
527
- } | {
528
- _type?: "multi";
529
- multiLength?: number[];
530
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
531
- postCode?: ("required" | "password" | "email" | {
532
- _type?: "overYears";
533
- overYears?: number;
534
- } | {
535
- length?: number;
536
- _type?: "exact" | "less" | "more";
537
- } | {
538
- _type?: "multi";
539
- multiLength?: number[];
540
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
541
- smsNumber?: ("required" | "password" | "email" | {
542
- _type?: "overYears";
543
- overYears?: number;
544
- } | {
545
- length?: number;
546
- _type?: "exact" | "less" | "more";
547
- } | {
548
- _type?: "multi";
549
- multiLength?: number[];
550
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
551
- deliveryModalZipCodeValidation?: ("required" | "password" | "email" | {
552
- _type?: "overYears";
553
- overYears?: number;
554
- } | {
555
- length?: number;
556
- _type?: "exact" | "less" | "more";
557
- } | {
558
- _type?: "multi";
559
- multiLength?: number[];
560
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
561
- }>;
562
- export declare const iAddressFinderTypeSchema: z.ZodUnion<[z.ZodLiteral<"AUS">, z.ZodLiteral<"EU">, z.ZodLiteral<"IE">, z.ZodLiteral<"US">, z.ZodLiteral<"UK">, z.ZodLiteral<"CA">]>;
563
- export declare const paymentCardsSchema: z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>;
564
- export declare const iPaymentCardsSchema: z.ZodRecord<z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodBoolean>;
565
- export declare const iCheckoutValidationSchema: z.ZodObject<{
566
- instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
567
- _type: z.ZodLiteral<"overYears">;
568
- overYears: z.ZodNumber;
569
- }, "strip", z.ZodTypeAny, {
570
- _type?: "overYears";
571
- overYears?: number;
572
- }, {
573
- _type?: "overYears";
574
- overYears?: number;
575
- }>, z.ZodObject<{
576
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
577
- length: z.ZodNumber;
578
- }, "strip", z.ZodTypeAny, {
579
- length?: number;
580
- _type?: "exact" | "less" | "more";
581
- }, {
582
- length?: number;
583
- _type?: "exact" | "less" | "more";
584
- }>, z.ZodObject<{
585
- _type: z.ZodLiteral<"multi">;
586
- multiLength: z.ZodArray<z.ZodNumber, "many">;
587
- }, "strip", z.ZodTypeAny, {
588
- _type?: "multi";
589
- multiLength?: number[];
590
- }, {
591
- _type?: "multi";
592
- multiLength?: number[];
593
- }>, 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">;
594
- phoneNumber: z.ZodArray<z.ZodUnion<[z.ZodObject<{
595
- _type: z.ZodLiteral<"overYears">;
596
- overYears: z.ZodNumber;
597
- }, "strip", z.ZodTypeAny, {
598
- _type?: "overYears";
599
- overYears?: number;
600
- }, {
601
- _type?: "overYears";
602
- overYears?: number;
603
- }>, z.ZodObject<{
604
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
605
- length: z.ZodNumber;
606
- }, "strip", z.ZodTypeAny, {
607
- length?: number;
608
- _type?: "exact" | "less" | "more";
609
- }, {
610
- length?: number;
611
- _type?: "exact" | "less" | "more";
612
- }>, z.ZodObject<{
613
- _type: z.ZodLiteral<"multi">;
614
- multiLength: z.ZodArray<z.ZodNumber, "many">;
615
- }, "strip", z.ZodTypeAny, {
616
- _type?: "multi";
617
- multiLength?: number[];
618
- }, {
619
- _type?: "multi";
620
- multiLength?: number[];
621
- }>, 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">;
622
- smsNumber: z.ZodArray<z.ZodUnion<[z.ZodObject<{
623
- _type: z.ZodLiteral<"overYears">;
624
- overYears: z.ZodNumber;
625
- }, "strip", z.ZodTypeAny, {
626
- _type?: "overYears";
627
- overYears?: number;
628
- }, {
629
- _type?: "overYears";
630
- overYears?: number;
631
- }>, z.ZodObject<{
632
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
633
- length: z.ZodNumber;
634
- }, "strip", z.ZodTypeAny, {
635
- length?: number;
636
- _type?: "exact" | "less" | "more";
637
- }, {
638
- length?: number;
639
- _type?: "exact" | "less" | "more";
640
- }>, z.ZodObject<{
641
- _type: z.ZodLiteral<"multi">;
642
- multiLength: z.ZodArray<z.ZodNumber, "many">;
643
- }, "strip", z.ZodTypeAny, {
644
- _type?: "multi";
645
- multiLength?: number[];
646
- }, {
647
- _type?: "multi";
648
- multiLength?: number[];
649
- }>, 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">;
650
- }, "strip", z.ZodTypeAny, {
651
- instructions?: ("required" | "password" | "email" | {
652
- _type?: "overYears";
653
- overYears?: number;
654
- } | {
655
- length?: number;
656
- _type?: "exact" | "less" | "more";
657
- } | {
658
- _type?: "multi";
659
- multiLength?: number[];
660
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
661
- phoneNumber?: ("required" | "password" | "email" | {
662
- _type?: "overYears";
663
- overYears?: number;
664
- } | {
665
- length?: number;
666
- _type?: "exact" | "less" | "more";
667
- } | {
668
- _type?: "multi";
669
- multiLength?: number[];
670
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
671
- smsNumber?: ("required" | "password" | "email" | {
672
- _type?: "overYears";
673
- overYears?: number;
674
- } | {
675
- length?: number;
676
- _type?: "exact" | "less" | "more";
677
- } | {
678
- _type?: "multi";
679
- multiLength?: number[];
680
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
681
- }, {
682
- instructions?: ("required" | "password" | "email" | {
683
- _type?: "overYears";
684
- overYears?: number;
685
- } | {
686
- length?: number;
687
- _type?: "exact" | "less" | "more";
688
- } | {
689
- _type?: "multi";
690
- multiLength?: number[];
691
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
692
- phoneNumber?: ("required" | "password" | "email" | {
693
- _type?: "overYears";
694
- overYears?: number;
695
- } | {
696
- length?: number;
697
- _type?: "exact" | "less" | "more";
698
- } | {
699
- _type?: "multi";
700
- multiLength?: number[];
701
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
702
- smsNumber?: ("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
- }>;
713
- export declare const iVouchersSchema: z.ZodObject<{
714
- enabled: z.ZodBoolean;
715
- reCaptcha: z.ZodBoolean;
716
- manualVouchers: z.ZodBoolean;
717
- }, "strip", z.ZodTypeAny, {
718
- enabled?: boolean;
719
- reCaptcha?: boolean;
720
- manualVouchers?: boolean;
721
- }, {
722
- enabled?: boolean;
723
- reCaptcha?: boolean;
724
- manualVouchers?: boolean;
725
- }>;
726
- export declare const iSmartBannerSchema: z.ZodObject<{
727
- enabled: z.ZodBoolean;
728
- title: z.ZodString;
729
- author: z.ZodString;
730
- price: z.ZodString;
731
- priceSuffixApple: z.ZodString;
732
- priceSuffixGoogle: z.ZodString;
733
- iconApple: z.ZodString;
734
- iconGoogle: z.ZodString;
735
- button: z.ZodString;
736
- buttonUrlApple: z.ZodString;
737
- buttonUrlGoogle: z.ZodString;
738
- closeLabel: z.ZodString;
739
- }, "strip", z.ZodTypeAny, {
740
- button?: string;
741
- title?: string;
742
- enabled?: boolean;
743
- author?: string;
744
- price?: string;
745
- priceSuffixApple?: string;
746
- priceSuffixGoogle?: string;
747
- iconApple?: string;
748
- iconGoogle?: string;
749
- buttonUrlApple?: string;
750
- buttonUrlGoogle?: string;
751
- closeLabel?: string;
752
- }, {
753
- button?: string;
754
- title?: string;
755
- enabled?: boolean;
756
- author?: string;
757
- price?: string;
758
- priceSuffixApple?: string;
759
- priceSuffixGoogle?: string;
760
- iconApple?: string;
761
- iconGoogle?: string;
762
- buttonUrlApple?: string;
763
- buttonUrlGoogle?: string;
764
- closeLabel?: string;
765
- }>;
766
- export declare const iEntryModalVersionSchema: z.ZodUnion<[z.ZodLiteral<"entry">, z.ZodLiteral<"geolocation">, z.ZodLiteral<"skipStoreSelection">]>;
767
- export declare const iShoppingRuleControlSchema: z.ZodObject<{
768
- modal: z.ZodBoolean;
769
- pdp: z.ZodBoolean;
770
- productCard: z.ZodBoolean;
771
- }, "strip", z.ZodTypeAny, {
772
- modal?: boolean;
773
- pdp?: boolean;
774
- productCard?: boolean;
775
- }, {
776
- modal?: boolean;
777
- pdp?: boolean;
778
- productCard?: boolean;
779
- }>;
780
- export declare const iScreenTypeSchema: z.ZodEnum<["mobile", "tablet", "desktop"]>;
781
- export declare const iAdvertSettingsSchema: z.ZodObject<{
782
- page_homepage: z.ZodOptional<z.ZodObject<{
783
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
784
- }, "strip", z.ZodTypeAny, {
785
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
786
- }, {
787
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
788
- }>>;
789
- page_search: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
790
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
791
- }, {
792
- productGrid: z.ZodOptional<z.ZodObject<{
793
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
794
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
795
- }, "strip", z.ZodTypeAny, {
796
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
797
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
798
- }, {
799
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
800
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
801
- }>>;
802
- }>, {
803
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
804
- }>, "strip", z.ZodTypeAny, {
805
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
806
- productGrid?: {
807
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
808
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
809
- };
810
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
811
- }, {
812
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
813
- productGrid?: {
814
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
815
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
816
- };
817
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
818
- }>>;
819
- page_cart: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
820
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
821
- }, {
822
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
823
- }>, "strip", z.ZodTypeAny, {
824
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
825
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
826
- }, {
827
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
828
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
829
- }>>;
830
- "page_product-categories": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
831
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
832
- }, {
833
- productGrid: z.ZodOptional<z.ZodObject<{
834
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
835
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
836
- }, "strip", z.ZodTypeAny, {
837
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
838
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
839
- }, {
840
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
841
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
842
- }>>;
843
- }>, {
844
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
845
- }>, "strip", z.ZodTypeAny, {
846
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
847
- productGrid?: {
848
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
849
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
850
- };
851
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
852
- }, {
853
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
854
- productGrid?: {
855
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
856
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
857
- };
858
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
859
- }>>;
860
- "page_product-listing": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
861
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
862
- }, {
863
- productGrid: z.ZodOptional<z.ZodObject<{
864
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
865
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
866
- }, "strip", z.ZodTypeAny, {
867
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
868
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
869
- }, {
870
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
871
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
872
- }>>;
873
- }>, {
874
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
875
- }>, "strip", z.ZodTypeAny, {
876
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
877
- productGrid?: {
878
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
879
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
880
- };
881
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
882
- }, {
883
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
884
- productGrid?: {
885
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
886
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
887
- };
888
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
889
- }>>;
890
- }, "strip", z.ZodTypeAny, {
891
- page_homepage?: {
892
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
893
- };
894
- page_search?: {
895
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
896
- productGrid?: {
897
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
898
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
899
- };
900
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
901
- };
902
- page_cart?: {
903
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
904
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
905
- };
906
- "page_product-categories"?: {
907
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
908
- productGrid?: {
909
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
910
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
911
- };
912
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
913
- };
914
- "page_product-listing"?: {
915
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
916
- productGrid?: {
917
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
918
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
919
- };
920
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
921
- };
922
- }, {
923
- page_homepage?: {
924
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
925
- };
926
- page_search?: {
927
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
928
- productGrid?: {
929
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
930
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
931
- };
932
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
933
- };
934
- page_cart?: {
935
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
936
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
937
- };
938
- "page_product-categories"?: {
939
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
940
- productGrid?: {
941
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
942
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
943
- };
944
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
945
- };
946
- "page_product-listing"?: {
947
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
948
- productGrid?: {
949
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
950
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
951
- };
952
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
953
- };
954
- }>;
955
- export declare const iGoogleTranslateWidgetSchema: z.ZodObject<{
956
- enabled: z.ZodBoolean;
957
- position: z.ZodUnion<[z.ZodLiteral<"header">, z.ZodLiteral<"footer">]>;
958
- headerLayout: z.ZodObject<{
959
- mobile: z.ZodUnion<[z.ZodLiteral<"horizontal">, z.ZodLiteral<"vertical">]>;
960
- desktop: z.ZodUnion<[z.ZodLiteral<"horizontal">, z.ZodLiteral<"vertical">]>;
961
- }, "strip", z.ZodTypeAny, {
962
- mobile?: "horizontal" | "vertical";
963
- desktop?: "horizontal" | "vertical";
964
- }, {
965
- mobile?: "horizontal" | "vertical";
966
- desktop?: "horizontal" | "vertical";
967
- }>;
968
- }, "strip", z.ZodTypeAny, {
969
- position?: "footer" | "header";
970
- enabled?: boolean;
971
- headerLayout?: {
972
- mobile?: "horizontal" | "vertical";
973
- desktop?: "horizontal" | "vertical";
974
- };
975
- }, {
976
- position?: "footer" | "header";
977
- enabled?: boolean;
978
- headerLayout?: {
979
- mobile?: "horizontal" | "vertical";
980
- desktop?: "horizontal" | "vertical";
981
- };
982
- }>;
983
- export declare const iFlippConfigSchema: z.ZodObject<{
984
- version: z.ZodLiteral<1>;
985
- production: z.ZodBoolean;
986
- scriptUrl: z.ZodUnion<[z.ZodLiteral<"circulars.priceritemarketplace">, z.ZodLiteral<"circulars.dearbornmarket">, z.ZodLiteral<"flyers.v8.commerce.mi9cloud">, z.ZodLiteral<"flyers.stg.v8.mywebgrocer">, z.ZodLiteral<"flyers.saveonfoods">]>;
987
- retailer: z.ZodUnion<[z.ZodLiteral<"wakefernpricerite">, z.ZodLiteral<"saveonfoods">, z.ZodLiteral<"unitedsupermarkets">, z.ZodLiteral<"dearbornmarket">, z.ZodLiteral<"saveonfoods">]>;
988
- autoLocate: z.ZodBoolean;
989
- useRequestedDomain: z.ZodBoolean;
990
- }, "strip", z.ZodTypeAny, {
991
- version?: 1;
992
- production?: boolean;
993
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
994
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
995
- autoLocate?: boolean;
996
- useRequestedDomain?: boolean;
997
- }, {
998
- version?: 1;
999
- production?: boolean;
1000
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
1001
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
1002
- autoLocate?: boolean;
1003
- useRequestedDomain?: boolean;
1004
- }>;
1005
- export declare const iFlippConfigV2Schema: z.ZodObject<{
1006
- accessToken: z.ZodString;
1007
- hideHeader: z.ZodBoolean;
1008
- locale: z.ZodString;
1009
- merchantId: z.ZodString;
1010
- retailer: z.ZodString;
1011
- slideOutView: z.ZodBoolean;
1012
- version: z.ZodLiteral<2>;
1013
- zoom: z.ZodNumber;
1014
- excludeFlyer: z.ZodOptional<z.ZodString>;
1015
- }, "strip", z.ZodTypeAny, {
1016
- version?: 2;
1017
- retailer?: string;
1018
- accessToken?: string;
1019
- hideHeader?: boolean;
1020
- locale?: string;
1021
- merchantId?: string;
1022
- slideOutView?: boolean;
1023
- zoom?: number;
1024
- excludeFlyer?: string;
1025
- }, {
1026
- version?: 2;
1027
- retailer?: string;
1028
- accessToken?: string;
1029
- hideHeader?: boolean;
1030
- locale?: string;
1031
- merchantId?: string;
1032
- slideOutView?: boolean;
1033
- zoom?: number;
1034
- excludeFlyer?: string;
1035
- }>;
1036
- export declare const iGlobalAnimationsSchema: z.ZodObject<{
1037
- confetti: z.ZodObject<{
1038
- enableConfettiAnimation: z.ZodBoolean;
1039
- }, "strip", z.ZodTypeAny, {
1040
- enableConfettiAnimation?: boolean;
1041
- }, {
1042
- enableConfettiAnimation?: boolean;
1043
- }>;
1044
- }, "strip", z.ZodTypeAny, {
1045
- confetti?: {
1046
- enableConfettiAnimation?: boolean;
1047
- };
1048
- }, {
1049
- confetti?: {
1050
- enableConfettiAnimation?: boolean;
1051
- };
1052
- }>;
1053
- export declare const iRegistrationFieldSchema: z.ZodObject<{
1054
- name: z.ZodUnion<[z.ZodLiteral<"phone">, z.ZodLiteral<"loyaltyId">, z.ZodLiteral<"isAdultConfirmed">, z.ZodLiteral<"marketingConsent">, z.ZodLiteral<"dateOfBirth">]>;
1055
- label: z.ZodString;
1056
- placeholder: z.ZodString;
1057
- designVersion: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"version2">]>;
1058
- validationTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1059
- _type: z.ZodLiteral<"overYears">;
1060
- overYears: z.ZodNumber;
1061
- }, "strip", z.ZodTypeAny, {
1062
- _type?: "overYears";
1063
- overYears?: number;
1064
- }, {
1065
- _type?: "overYears";
1066
- overYears?: number;
1067
- }>, z.ZodObject<{
1068
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
1069
- length: z.ZodNumber;
1070
- }, "strip", z.ZodTypeAny, {
1071
- length?: number;
1072
- _type?: "exact" | "less" | "more";
1073
- }, {
1074
- length?: number;
1075
- _type?: "exact" | "less" | "more";
1076
- }>, z.ZodObject<{
1077
- _type: z.ZodLiteral<"multi">;
1078
- multiLength: z.ZodArray<z.ZodNumber, "many">;
1079
- }, "strip", z.ZodTypeAny, {
1080
- _type?: "multi";
1081
- multiLength?: number[];
1082
- }, {
1083
- _type?: "multi";
1084
- multiLength?: number[];
1085
- }>, 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">;
1086
- alwaysVisible: z.ZodOptional<z.ZodBoolean>;
1087
- editable: z.ZodOptional<z.ZodBoolean>;
1088
- }, "strip", z.ZodTypeAny, {
1089
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
1090
- label?: string;
1091
- placeholder?: string;
1092
- designVersion?: "default" | "version2";
1093
- validationTypes?: ("required" | "password" | "email" | {
1094
- _type?: "overYears";
1095
- overYears?: number;
1096
- } | {
1097
- length?: number;
1098
- _type?: "exact" | "less" | "more";
1099
- } | {
1100
- _type?: "multi";
1101
- multiLength?: number[];
1102
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
1103
- alwaysVisible?: boolean;
1104
- editable?: boolean;
1105
- }, {
1106
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
1107
- label?: string;
1108
- placeholder?: string;
1109
- designVersion?: "default" | "version2";
1110
- validationTypes?: ("required" | "password" | "email" | {
1111
- _type?: "overYears";
1112
- overYears?: number;
1113
- } | {
1114
- length?: number;
1115
- _type?: "exact" | "less" | "more";
1116
- } | {
1117
- _type?: "multi";
1118
- multiLength?: number[];
1119
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
1120
- alwaysVisible?: boolean;
1121
- editable?: boolean;
1122
- }>;
1123
- export declare const iSecondTierAuthorizationSchema: z.ZodObject<{
1124
- time: z.ZodNullable<z.ZodUnion<[z.ZodUndefined, z.ZodNumber]>>;
1125
- pages: z.ZodArray<z.ZodString, "many">;
1126
- }, "strip", z.ZodTypeAny, {
1127
- time?: number;
1128
- pages?: string[];
1129
- }, {
1130
- time?: number;
1131
- pages?: string[];
1132
- }>;
1133
- export declare const iSMSConfigSchema: z.ZodObject<{
1134
- enabled: z.ZodBoolean;
1135
- getEnrollmentUrl: z.ZodString;
1136
- postEnrollmentUrl: z.ZodString;
1137
- }, "strip", z.ZodTypeAny, {
1138
- enabled?: boolean;
1139
- getEnrollmentUrl?: string;
1140
- postEnrollmentUrl?: string;
1141
- }, {
1142
- enabled?: boolean;
1143
- getEnrollmentUrl?: string;
1144
- postEnrollmentUrl?: string;
1145
- }>;
1146
- export declare const iCouponGalleryLayoutSchema: z.ZodObject<{
1147
- enabled: z.ZodBoolean;
1148
- galleryIsIframe: z.ZodBoolean;
1149
- galleryHasNavLink: z.ZodBoolean;
1150
- }, "strip", z.ZodTypeAny, {
1151
- enabled?: boolean;
1152
- galleryIsIframe?: boolean;
1153
- galleryHasNavLink?: boolean;
1154
- }, {
1155
- enabled?: boolean;
1156
- galleryIsIframe?: boolean;
1157
- galleryHasNavLink?: boolean;
1158
- }>;
1159
- export declare const iNutritionZoneSchema: z.ZodUnion<[z.ZodLiteral<"us">, z.ZodLiteral<"eu">, z.ZodLiteral<"au">, z.ZodLiteral<"ca">]>;
1160
- export declare const linkTargetSchema: z.ZodUnion<[z.ZodLiteral<"_blank">, z.ZodLiteral<"_self">, z.ZodLiteral<"_parent">, z.ZodLiteral<"_top">]>;
1161
- export declare const iProductDetailsPageLayoutSchema: z.ZodObject<{
1162
- desktop: z.ZodObject<{
1163
- left: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"productNutrition">, z.ZodLiteral<"productIngredients">, z.ZodLiteral<"productDescription">, z.ZodLiteral<"sodiumWarning">, z.ZodLiteral<"productNumber">, z.ZodLiteral<"recommendations">, z.ZodLiteral<"productSalesInfo">, z.ZodString]>, "many">;
1164
- right: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"productNutrition">, z.ZodLiteral<"productIngredients">, z.ZodLiteral<"productDescription">, z.ZodLiteral<"sodiumWarning">, z.ZodLiteral<"productNumber">, z.ZodLiteral<"recommendations">, z.ZodLiteral<"productSalesInfo">, z.ZodString]>, "many">;
1165
- }, "strip", z.ZodTypeAny, {
1166
- left?: string[];
1167
- right?: string[];
1168
- }, {
1169
- left?: string[];
1170
- right?: string[];
1171
- }>;
1172
- mobile: z.ZodObject<{
1173
- left: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"productNutrition">, z.ZodLiteral<"productIngredients">, z.ZodLiteral<"productDescription">, z.ZodLiteral<"sodiumWarning">, z.ZodLiteral<"productNumber">, z.ZodLiteral<"recommendations">, z.ZodLiteral<"productSalesInfo">, z.ZodString]>, "many">;
1174
- right: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"productNutrition">, z.ZodLiteral<"productIngredients">, z.ZodLiteral<"productDescription">, z.ZodLiteral<"sodiumWarning">, z.ZodLiteral<"productNumber">, z.ZodLiteral<"recommendations">, z.ZodLiteral<"productSalesInfo">, z.ZodString]>, "many">;
1175
- }, "strip", z.ZodTypeAny, {
1176
- left?: string[];
1177
- right?: string[];
1178
- }, {
1179
- left?: string[];
1180
- right?: string[];
1181
- }>;
1182
- }, "strip", z.ZodTypeAny, {
1183
- mobile?: {
1184
- left?: string[];
1185
- right?: string[];
1186
- };
1187
- desktop?: {
1188
- left?: string[];
1189
- right?: string[];
1190
- };
1191
- }, {
1192
- mobile?: {
1193
- left?: string[];
1194
- right?: string[];
1195
- };
1196
- desktop?: {
1197
- left?: string[];
1198
- right?: string[];
1199
- };
1200
- }>;
1201
- export declare const iSodiumWarningSchema: z.ZodObject<{
1202
- isEnabled: z.ZodBoolean;
1203
- threshold: z.ZodNumber;
1204
- }, "strip", z.ZodTypeAny, {
1205
- threshold?: number;
1206
- isEnabled?: boolean;
1207
- }, {
1208
- threshold?: number;
1209
- isEnabled?: boolean;
1210
- }>;
1211
- export declare const iProductCardsPropsSchema: z.ZodObject<{
1212
- gridRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
1213
- carouselsRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
1214
- productCard: z.ZodObject<{
1215
- enabled: z.ZodBoolean;
1216
- layouts: z.ZodObject<{
1217
- ContainersGrid: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"pce-centered">, z.ZodLiteral<"prs-labels">, z.ZodLiteral<"dun-attributes">]>;
1218
- ContainersCarousel: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"pce-centered">, z.ZodLiteral<"prs-labels">, z.ZodLiteral<"dun-attributes">]>;
1219
- FlyerCard: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"detailed">]>;
1220
- SimplifiedCarousel: z.ZodLiteral<"default">;
1221
- }, "strip", z.ZodTypeAny, {
1222
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1223
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1224
- FlyerCard?: "default" | "detailed";
1225
- SimplifiedCarousel?: "default";
1226
- }, {
1227
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1228
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1229
- FlyerCard?: "default" | "detailed";
1230
- SimplifiedCarousel?: "default";
1231
- }>;
1232
- components: z.ZodObject<{
1233
- promotionLabel: z.ZodObject<{
1234
- showLines: z.ZodNumber;
1235
- labelSource: z.ZodUnion<[z.ZodLiteral<"name">, z.ZodLiteral<"description">]>;
1236
- labelsLimit: z.ZodNumber;
1237
- labelsPriority: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1238
- _type: z.ZodUnion<[z.ZodLiteral<"pointPromo">, z.ZodLiteral<"promo">]>;
1239
- limit: z.ZodNumber;
1240
- }, "strip", z.ZodTypeAny, {
1241
- _type?: "pointPromo" | "promo";
1242
- limit?: number;
1243
- }, {
1244
- _type?: "pointPromo" | "promo";
1245
- limit?: number;
1246
- }>, z.ZodObject<{
1247
- _type: z.ZodLiteral<"tprPromo">;
1248
- }, "strip", z.ZodTypeAny, {
1249
- _type?: "tprPromo";
1250
- }, {
1251
- _type?: "tprPromo";
1252
- }>]>, "many">;
1253
- }, "strip", z.ZodTypeAny, {
1254
- showLines?: number;
1255
- labelSource?: "description" | "name";
1256
- labelsLimit?: number;
1257
- labelsPriority?: ({
1258
- _type?: "pointPromo" | "promo";
1259
- limit?: number;
1260
- } | {
1261
- _type?: "tprPromo";
1262
- })[];
1263
- }, {
1264
- showLines?: number;
1265
- labelSource?: "description" | "name";
1266
- labelsLimit?: number;
1267
- labelsPriority?: ({
1268
- _type?: "pointPromo" | "promo";
1269
- limit?: number;
1270
- } | {
1271
- _type?: "tprPromo";
1272
- })[];
1273
- }>;
1274
- recommendedLabel: z.ZodObject<{
1275
- enabled: z.ZodBoolean;
1276
- }, "strip", z.ZodTypeAny, {
1277
- enabled?: boolean;
1278
- }, {
1279
- enabled?: boolean;
1280
- }>;
1281
- productAttributes: z.ZodObject<{
1282
- iconOpacity: z.ZodNumber;
1283
- }, "strip", z.ZodTypeAny, {
1284
- iconOpacity?: number;
1285
- }, {
1286
- iconOpacity?: number;
1287
- }>;
1288
- }, "strip", z.ZodTypeAny, {
1289
- promotionLabel?: {
1290
- showLines?: number;
1291
- labelSource?: "description" | "name";
1292
- labelsLimit?: number;
1293
- labelsPriority?: ({
1294
- _type?: "pointPromo" | "promo";
1295
- limit?: number;
1296
- } | {
1297
- _type?: "tprPromo";
1298
- })[];
1299
- };
1300
- recommendedLabel?: {
1301
- enabled?: boolean;
1302
- };
1303
- productAttributes?: {
1304
- iconOpacity?: number;
1305
- };
1306
- }, {
1307
- promotionLabel?: {
1308
- showLines?: number;
1309
- labelSource?: "description" | "name";
1310
- labelsLimit?: number;
1311
- labelsPriority?: ({
1312
- _type?: "pointPromo" | "promo";
1313
- limit?: number;
1314
- } | {
1315
- _type?: "tprPromo";
1316
- })[];
1317
- };
1318
- recommendedLabel?: {
1319
- enabled?: boolean;
1320
- };
1321
- productAttributes?: {
1322
- iconOpacity?: number;
1323
- };
1324
- }>;
1325
- }, "strip", z.ZodTypeAny, {
1326
- enabled?: boolean;
1327
- layouts?: {
1328
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1329
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1330
- FlyerCard?: "default" | "detailed";
1331
- SimplifiedCarousel?: "default";
1332
- };
1333
- components?: {
1334
- promotionLabel?: {
1335
- showLines?: number;
1336
- labelSource?: "description" | "name";
1337
- labelsLimit?: number;
1338
- labelsPriority?: ({
1339
- _type?: "pointPromo" | "promo";
1340
- limit?: number;
1341
- } | {
1342
- _type?: "tprPromo";
1343
- })[];
1344
- };
1345
- recommendedLabel?: {
1346
- enabled?: boolean;
1347
- };
1348
- productAttributes?: {
1349
- iconOpacity?: number;
1350
- };
1351
- };
1352
- }, {
1353
- enabled?: boolean;
1354
- layouts?: {
1355
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1356
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1357
- FlyerCard?: "default" | "detailed";
1358
- SimplifiedCarousel?: "default";
1359
- };
1360
- components?: {
1361
- promotionLabel?: {
1362
- showLines?: number;
1363
- labelSource?: "description" | "name";
1364
- labelsLimit?: number;
1365
- labelsPriority?: ({
1366
- _type?: "pointPromo" | "promo";
1367
- limit?: number;
1368
- } | {
1369
- _type?: "tprPromo";
1370
- })[];
1371
- };
1372
- recommendedLabel?: {
1373
- enabled?: boolean;
1374
- };
1375
- productAttributes?: {
1376
- iconOpacity?: number;
1377
- };
1378
- };
1379
- }>;
1380
- }, "strip", z.ZodTypeAny, {
1381
- productCard?: {
1382
- enabled?: boolean;
1383
- layouts?: {
1384
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1385
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1386
- FlyerCard?: "default" | "detailed";
1387
- SimplifiedCarousel?: "default";
1388
- };
1389
- components?: {
1390
- promotionLabel?: {
1391
- showLines?: number;
1392
- labelSource?: "description" | "name";
1393
- labelsLimit?: number;
1394
- labelsPriority?: ({
1395
- _type?: "pointPromo" | "promo";
1396
- limit?: number;
1397
- } | {
1398
- _type?: "tprPromo";
1399
- })[];
1400
- };
1401
- recommendedLabel?: {
1402
- enabled?: boolean;
1403
- };
1404
- productAttributes?: {
1405
- iconOpacity?: number;
1406
- };
1407
- };
1408
- };
1409
- gridRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1410
- carouselsRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1411
- }, {
1412
- productCard?: {
1413
- enabled?: boolean;
1414
- layouts?: {
1415
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1416
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1417
- FlyerCard?: "default" | "detailed";
1418
- SimplifiedCarousel?: "default";
1419
- };
1420
- components?: {
1421
- promotionLabel?: {
1422
- showLines?: number;
1423
- labelSource?: "description" | "name";
1424
- labelsLimit?: number;
1425
- labelsPriority?: ({
1426
- _type?: "pointPromo" | "promo";
1427
- limit?: number;
1428
- } | {
1429
- _type?: "tprPromo";
1430
- })[];
1431
- };
1432
- recommendedLabel?: {
1433
- enabled?: boolean;
1434
- };
1435
- productAttributes?: {
1436
- iconOpacity?: number;
1437
- };
1438
- };
1439
- };
1440
- gridRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1441
- carouselsRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1442
- }>;
1443
- export declare const iCtaButtonsSchema: z.ZodObject<{
1444
- iconAlignment: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
1445
- iconName: z.ZodUnion<[z.ZodLiteral<"AccountOutline">, z.ZodLiteral<"AccountSolid">, z.ZodLiteral<"Addresses">, z.ZodLiteral<"ApplePay">, z.ZodLiteral<"ArrowDown">, z.ZodLiteral<"ArrowUp">, z.ZodLiteral<"ArrowRight">, z.ZodLiteral<"ArrowUpdown">, z.ZodLiteral<"BarScan">, z.ZodLiteral<"Bell">, z.ZodLiteral<"Blog">, z.ZodLiteral<"Cart">, z.ZodLiteral<"Check">, z.ZodLiteral<"CheckCircle">, z.ZodLiteral<"ChevronDown">, z.ZodLiteral<"ChevronLeft">, z.ZodLiteral<"ChevronRight">, z.ZodLiteral<"ChevronUp">, z.ZodLiteral<"Circular">, z.ZodLiteral<"Clear">, z.ZodLiteral<"Close">, z.ZodLiteral<"Coupon">, z.ZodLiteral<"Credit">, z.ZodLiteral<"Dashboard">, z.ZodLiteral<"DeliveryOutline">, z.ZodLiteral<"DeliverySolid">, z.ZodLiteral<"Dietary">, z.ZodLiteral<"DoubleArrows">, z.ZodLiteral<"Download">, z.ZodLiteral<"Dropship">, z.ZodLiteral<"EBT">, z.ZodLiteral<"Eco">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Error">, z.ZodLiteral<"FaceHappy">, z.ZodLiteral<"FaceSad">, z.ZodLiteral<"Facebook">, z.ZodLiteral<"Fav">, z.ZodLiteral<"FavSolid">, z.ZodLiteral<"Filter">, z.ZodLiteral<"Flag">, z.ZodLiteral<"Geolocate">, z.ZodLiteral<"GooglePay">, z.ZodLiteral<"Hamburger">, z.ZodLiteral<"Help">, z.ZodLiteral<"Home">, z.ZodLiteral<"Info">, z.ZodLiteral<"Instacart">, z.ZodLiteral<"InstacartLogo">, z.ZodLiteral<"Instagram">, z.ZodLiteral<"InstructionsFilled">, z.ZodLiteral<"ItemLocation">, z.ZodLiteral<"ListCheck">, z.ZodLiteral<"ListItems">, z.ZodLiteral<"ListLarge">, z.ZodLiteral<"ListRemove">, z.ZodLiteral<"ListSave">, z.ZodLiteral<"ListSearch">, z.ZodLiteral<"LocationDistance">, z.ZodLiteral<"LocationPin">, z.ZodLiteral<"LoyaltyCard">, z.ZodLiteral<"Mail">, z.ZodLiteral<"Minus">, z.ZodLiteral<"MoreOptionsH">, z.ZodLiteral<"MoreOptionsV">, z.ZodLiteral<"None">, z.ZodLiteral<"Note">, z.ZodLiteral<"NoteFilled">, z.ZodLiteral<"Notifications">, z.ZodLiteral<"Orders">, z.ZodLiteral<"PastPurchases">, z.ZodLiteral<"PayPal">, z.ZodLiteral<"Pause">, z.ZodLiteral<"PaymentOutline">, z.ZodLiteral<"PaymentSolid">, z.ZodLiteral<"Phone">, z.ZodLiteral<"PhoneMobile">, z.ZodLiteral<"Pickup">, z.ZodLiteral<"PickupInfo">, z.ZodLiteral<"Pinterest">, z.ZodLiteral<"Plus">, z.ZodLiteral<"Print">, z.ZodLiteral<"PromoOutline">, z.ZodLiteral<"PromoSolid">, z.ZodLiteral<"RadioActive">, z.ZodLiteral<"RadioEmpty">, z.ZodLiteral<"RecipeCalories">, z.ZodLiteral<"RecipeCooktime">, z.ZodLiteral<"RecipeIngredients">, z.ZodLiteral<"RecipePreptime">, z.ZodLiteral<"RecipeServings">, z.ZodLiteral<"RecommendedSub">, z.ZodLiteral<"Remove">, z.ZodLiteral<"Reserve">, z.ZodLiteral<"ReserveDate">, z.ZodLiteral<"ReserveTime">, z.ZodLiteral<"Search">, z.ZodLiteral<"SelectCheck">, z.ZodLiteral<"SelectEmpty">, z.ZodLiteral<"SelectMark">, z.ZodLiteral<"Send">, z.ZodLiteral<"Settings">, z.ZodLiteral<"Share">, z.ZodLiteral<"SodiumWarning">, z.ZodLiteral<"SortGrid">, z.ZodLiteral<"SortList">, z.ZodLiteral<"StarOutline">, z.ZodLiteral<"StarSolid">, z.ZodLiteral<"Subscription">, z.ZodLiteral<"Substitute">, z.ZodLiteral<"SubstituteBestmatch">, z.ZodLiteral<"SubstituteNone">, z.ZodLiteral<"SubstituteProduct">, z.ZodLiteral<"TikTok">, z.ZodLiteral<"Trash">, z.ZodLiteral<"Twitter">, z.ZodLiteral<"Unavailable">, z.ZodLiteral<"Voice">, z.ZodLiteral<"Warning">, z.ZodLiteral<"YourLocation">, z.ZodLiteral<"Youtube">, z.ZodUnion<[z.ZodLiteral<"AmExpCard">, z.ZodLiteral<"AmExpLogo">, z.ZodLiteral<"Comodo">, z.ZodLiteral<"DiscoverCard">, z.ZodLiteral<"DiscoverLogo">, z.ZodLiteral<"MasterLogo">, z.ZodLiteral<"MasterSecure">, z.ZodLiteral<"VisaLogo">, z.ZodLiteral<"VisaVerified">]>, z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodUnion<[z.ZodLiteral<"GlutenFree">, z.ZodLiteral<"Organic">, z.ZodLiteral<"Local">, z.ZodLiteral<"DairyFree">, z.ZodLiteral<"DiabetesFriendly">, z.ZodLiteral<"EggFree">, z.ZodLiteral<"FairTrade">, z.ZodLiteral<"NoArtificialIngredients">, z.ZodLiteral<"Halal">, z.ZodLiteral<"HeartHealth">, z.ZodLiteral<"NoHighFructoseCornSyrup">, z.ZodLiteral<"KetoFriendly">, z.ZodLiteral<"Kosher">, z.ZodLiteral<"LactoseFree">, z.ZodLiteral<"LowFODMAP">, z.ZodLiteral<"LowSodium">, z.ZodLiteral<"NoAddedSugar">, z.ZodLiteral<"NonGMO">, z.ZodLiteral<"Paleo">, z.ZodLiteral<"PeanutFree">, z.ZodLiteral<"PlantGoodness">, z.ZodLiteral<"SoyFree">, z.ZodLiteral<"Vegan">, z.ZodLiteral<"WholeGrain">, z.ZodLiteral<"BottleDeposit">, z.ZodLiteral<"LimitedIngredients">, z.ZodLiteral<"MinimallyProcessed">, z.ZodLiteral<"Fsa">]>, z.ZodUnion<[z.ZodLiteral<"en-au">, z.ZodLiteral<"en-ca">, z.ZodLiteral<"en-gb">, z.ZodLiteral<"en-ie">, z.ZodLiteral<"en-us">, z.ZodLiteral<"es-es">, z.ZodLiteral<"es-mx">, z.ZodLiteral<"es-us">, z.ZodLiteral<"fr-ca">]>]>;
1446
- }, "strip", z.ZodTypeAny, {
1447
- iconAlignment?: "left" | "right";
1448
- iconName?: "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "PayPal" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard" | "Paze" | "AmExpLogo" | "Comodo" | "DiscoverLogo" | "MasterLogo" | "MasterSecure" | "VisaLogo" | "VisaVerified" | "GlutenFree" | "Organic" | "Local" | "DairyFree" | "DiabetesFriendly" | "EggFree" | "FairTrade" | "NoArtificialIngredients" | "Halal" | "HeartHealth" | "NoHighFructoseCornSyrup" | "KetoFriendly" | "Kosher" | "LactoseFree" | "LowFODMAP" | "LowSodium" | "NoAddedSugar" | "NonGMO" | "Paleo" | "PeanutFree" | "PlantGoodness" | "SoyFree" | "Vegan" | "WholeGrain" | "BottleDeposit" | "LimitedIngredients" | "MinimallyProcessed" | "Fsa" | "en-au" | "en-ca" | "en-gb" | "en-ie" | "en-us" | "es-es" | "es-mx" | "es-us" | "fr-ca" | "AccountOutline" | "AccountSolid" | "Addresses" | "ArrowDown" | "ArrowUp" | "ArrowRight" | "ArrowUpdown" | "BarScan" | "Bell" | "Blog" | "Cart" | "Check" | "CheckCircle" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Circular" | "Clear" | "Close" | "Coupon" | "Credit" | "Dashboard" | "DeliveryOutline" | "DeliverySolid" | "Dietary" | "DoubleArrows" | "Download" | "Dropship" | "Eco" | "Edit" | "Error" | "FaceHappy" | "FaceSad" | "Facebook" | "Fav" | "FavSolid" | "Filter" | "Flag" | "Geolocate" | "Hamburger" | "Help" | "Home" | "Info" | "Instacart" | "InstacartLogo" | "Instagram" | "InstructionsFilled" | "ItemLocation" | "ListCheck" | "ListItems" | "ListLarge" | "ListRemove" | "ListSave" | "ListSearch" | "LocationDistance" | "LocationPin" | "LoyaltyCard" | "Mail" | "Minus" | "MoreOptionsH" | "MoreOptionsV" | "None" | "Note" | "NoteFilled" | "Notifications" | "Orders" | "PastPurchases" | "Pause" | "PaymentOutline" | "PaymentSolid" | "Phone" | "PhoneMobile" | "Pickup" | "PickupInfo" | "Pinterest" | "Plus" | "Print" | "PromoOutline" | "PromoSolid" | "RadioActive" | "RadioEmpty" | "RecipeCalories" | "RecipeCooktime" | "RecipeIngredients" | "RecipePreptime" | "RecipeServings" | "RecommendedSub" | "Remove" | "Reserve" | "ReserveDate" | "ReserveTime" | "Search" | "SelectCheck" | "SelectEmpty" | "SelectMark" | "Send" | "Settings" | "Share" | "SodiumWarning" | "SortGrid" | "SortList" | "StarOutline" | "StarSolid" | "Subscription" | "Substitute" | "SubstituteBestmatch" | "SubstituteNone" | "SubstituteProduct" | "TikTok" | "Trash" | "Twitter" | "Unavailable" | "Voice" | "Warning" | "YourLocation" | "Youtube";
1449
- }, {
1450
- iconAlignment?: "left" | "right";
1451
- iconName?: "AmExpCard" | "ApplePay" | "DiscoverCard" | "EBT" | "PayPal" | "GooglePay" | "MasterCard" | "MasterCardDebit" | "VisaCard" | "Paze" | "AmExpLogo" | "Comodo" | "DiscoverLogo" | "MasterLogo" | "MasterSecure" | "VisaLogo" | "VisaVerified" | "GlutenFree" | "Organic" | "Local" | "DairyFree" | "DiabetesFriendly" | "EggFree" | "FairTrade" | "NoArtificialIngredients" | "Halal" | "HeartHealth" | "NoHighFructoseCornSyrup" | "KetoFriendly" | "Kosher" | "LactoseFree" | "LowFODMAP" | "LowSodium" | "NoAddedSugar" | "NonGMO" | "Paleo" | "PeanutFree" | "PlantGoodness" | "SoyFree" | "Vegan" | "WholeGrain" | "BottleDeposit" | "LimitedIngredients" | "MinimallyProcessed" | "Fsa" | "en-au" | "en-ca" | "en-gb" | "en-ie" | "en-us" | "es-es" | "es-mx" | "es-us" | "fr-ca" | "AccountOutline" | "AccountSolid" | "Addresses" | "ArrowDown" | "ArrowUp" | "ArrowRight" | "ArrowUpdown" | "BarScan" | "Bell" | "Blog" | "Cart" | "Check" | "CheckCircle" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Circular" | "Clear" | "Close" | "Coupon" | "Credit" | "Dashboard" | "DeliveryOutline" | "DeliverySolid" | "Dietary" | "DoubleArrows" | "Download" | "Dropship" | "Eco" | "Edit" | "Error" | "FaceHappy" | "FaceSad" | "Facebook" | "Fav" | "FavSolid" | "Filter" | "Flag" | "Geolocate" | "Hamburger" | "Help" | "Home" | "Info" | "Instacart" | "InstacartLogo" | "Instagram" | "InstructionsFilled" | "ItemLocation" | "ListCheck" | "ListItems" | "ListLarge" | "ListRemove" | "ListSave" | "ListSearch" | "LocationDistance" | "LocationPin" | "LoyaltyCard" | "Mail" | "Minus" | "MoreOptionsH" | "MoreOptionsV" | "None" | "Note" | "NoteFilled" | "Notifications" | "Orders" | "PastPurchases" | "Pause" | "PaymentOutline" | "PaymentSolid" | "Phone" | "PhoneMobile" | "Pickup" | "PickupInfo" | "Pinterest" | "Plus" | "Print" | "PromoOutline" | "PromoSolid" | "RadioActive" | "RadioEmpty" | "RecipeCalories" | "RecipeCooktime" | "RecipeIngredients" | "RecipePreptime" | "RecipeServings" | "RecommendedSub" | "Remove" | "Reserve" | "ReserveDate" | "ReserveTime" | "Search" | "SelectCheck" | "SelectEmpty" | "SelectMark" | "Send" | "Settings" | "Share" | "SodiumWarning" | "SortGrid" | "SortList" | "StarOutline" | "StarSolid" | "Subscription" | "Substitute" | "SubstituteBestmatch" | "SubstituteNone" | "SubstituteProduct" | "TikTok" | "Trash" | "Twitter" | "Unavailable" | "Voice" | "Warning" | "YourLocation" | "Youtube";
1452
- }>;
1453
- export declare const iDefaultCountySchema: z.ZodUnion<[z.ZodLiteral<"USA">, z.ZodLiteral<"Canada">, z.ZodLiteral<"Ireland">, z.ZodLiteral<"Australia">, z.ZodString]>;
1454
- export declare const iDefaultSearchParamsSchema: z.ZodObject<{
1455
- q: z.ZodString;
1456
- page: z.ZodString;
1457
- skip: z.ZodString;
1458
- take: z.ZodString;
1459
- }, "strip", z.ZodTypeAny, {
1460
- q?: string;
1461
- page?: string;
1462
- skip?: string;
1463
- take?: string;
1464
- }, {
1465
- q?: string;
1466
- page?: string;
1467
- skip?: string;
1468
- take?: string;
1469
- }>;
1470
- export declare const iDefaultStoreLocationSchema: z.ZodObject<{
1471
- latitude: z.ZodNumber;
1472
- longitude: z.ZodNumber;
1473
- }, "strip", z.ZodTypeAny, {
1474
- latitude?: number;
1475
- longitude?: number;
1476
- }, {
1477
- latitude?: number;
1478
- longitude?: number;
1479
- }>;
1480
- export declare const iFooterTypesSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"version2">, z.ZodLiteral<"version3">, z.ZodLiteral<"version4">, z.ZodLiteral<"version5">, z.ZodLiteral<"version6">]>;
1481
- export declare const iGoogleAutocompleteSettingsSchema: z.ZodObject<{
1482
- types: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"geocode">, z.ZodLiteral<"address">, z.ZodLiteral<"establishment">, z.ZodLiteral<"(regions)">, z.ZodLiteral<"(cities)">]>>;
1483
- bounds: z.ZodOptional<z.ZodObject<{
1484
- east_longitude: z.ZodNumber;
1485
- north_latitude: z.ZodNumber;
1486
- south_latitude: z.ZodNumber;
1487
- west_longitude: z.ZodNumber;
1488
- }, "strip", z.ZodTypeAny, {
1489
- east_longitude?: number;
1490
- north_latitude?: number;
1491
- south_latitude?: number;
1492
- west_longitude?: number;
1493
- }, {
1494
- east_longitude?: number;
1495
- north_latitude?: number;
1496
- south_latitude?: number;
1497
- west_longitude?: number;
1498
- }>>;
1499
- strictBounds: z.ZodOptional<z.ZodBoolean>;
1500
- restrictCountries: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1501
- minCharLength: z.ZodOptional<z.ZodNumber>;
1502
- }, "strip", z.ZodTypeAny, {
1503
- types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
1504
- bounds?: {
1505
- east_longitude?: number;
1506
- north_latitude?: number;
1507
- south_latitude?: number;
1508
- west_longitude?: number;
1509
- };
1510
- strictBounds?: boolean;
1511
- restrictCountries?: string[];
1512
- minCharLength?: number;
1513
- }, {
1514
- types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
1515
- bounds?: {
1516
- east_longitude?: number;
1517
- north_latitude?: number;
1518
- south_latitude?: number;
1519
- west_longitude?: number;
1520
- };
1521
- strictBounds?: boolean;
1522
- restrictCountries?: string[];
1523
- minCharLength?: number;
1524
- }>;
1525
- export declare const iMaintainCustomerPreferencesSchema: z.ZodObject<{
1526
- enabled: z.ZodBoolean;
1527
- sections: z.ZodRecord<z.ZodEnum<["marketingPreferences"]>, z.ZodArray<z.ZodString, "many">>;
1528
- optInMarketingPreferences: z.ZodBoolean;
1529
- selectOptInMarketingPreferencesStore: z.ZodBoolean;
1530
- }, "strip", z.ZodTypeAny, {
1531
- enabled?: boolean;
1532
- sections?: Partial<Record<"marketingPreferences", string[]>>;
1533
- optInMarketingPreferences?: boolean;
1534
- selectOptInMarketingPreferencesStore?: boolean;
1535
- }, {
1536
- enabled?: boolean;
1537
- sections?: Partial<Record<"marketingPreferences", string[]>>;
1538
- optInMarketingPreferences?: boolean;
1539
- selectOptInMarketingPreferencesStore?: boolean;
1540
- }>;
1541
- export declare const iRestrictMapPlacesSchema: z.ZodObject<{
1542
- country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1543
- postalCode: z.ZodOptional<z.ZodString>;
1544
- route: z.ZodOptional<z.ZodString>;
1545
- locality: z.ZodOptional<z.ZodString>;
1546
- administrativeArea: z.ZodOptional<z.ZodString>;
1547
- fetchNearStoresSettings: z.ZodOptional<z.ZodObject<{
1548
- kmRange: z.ZodNumber;
1549
- totalTake: z.ZodNumber;
1550
- }, "strip", z.ZodTypeAny, {
1551
- kmRange?: number;
1552
- totalTake?: number;
1553
- }, {
1554
- kmRange?: number;
1555
- totalTake?: number;
1556
- }>>;
1557
- }, "strip", z.ZodTypeAny, {
1558
- country?: string | string[];
1559
- postalCode?: string;
1560
- route?: string;
1561
- locality?: string;
1562
- administrativeArea?: string;
1563
- fetchNearStoresSettings?: {
1564
- kmRange?: number;
1565
- totalTake?: number;
1566
- };
1567
- }, {
1568
- country?: string | string[];
1569
- postalCode?: string;
1570
- route?: string;
1571
- locality?: string;
1572
- administrativeArea?: string;
1573
- fetchNearStoresSettings?: {
1574
- kmRange?: number;
1575
- totalTake?: number;
1576
- };
1577
- }>;
1578
- export declare const iRetailerCountrySchema: z.ZodUnion<[z.ZodLiteral<"us">, z.ZodLiteral<"ca">, z.ZodLiteral<"ie">, z.ZodLiteral<"au">]>;
1579
- export declare const iSearchPreviewVisibilitySchema: z.ZodObject<{
1580
- desktop: z.ZodOptional<z.ZodObject<{
1581
- suggestions: z.ZodBoolean;
1582
- products: z.ZodBoolean;
1583
- recipes: z.ZodBoolean;
1584
- }, "strip", z.ZodTypeAny, {
1585
- suggestions?: boolean;
1586
- products?: boolean;
1587
- recipes?: boolean;
1588
- }, {
1589
- suggestions?: boolean;
1590
- products?: boolean;
1591
- recipes?: boolean;
1592
- }>>;
1593
- mobile: z.ZodOptional<z.ZodObject<{
1594
- suggestions: z.ZodBoolean;
1595
- products: z.ZodBoolean;
1596
- recipes: z.ZodBoolean;
1597
- }, "strip", z.ZodTypeAny, {
1598
- suggestions?: boolean;
1599
- products?: boolean;
1600
- recipes?: boolean;
1601
- }, {
1602
- suggestions?: boolean;
1603
- products?: boolean;
1604
- recipes?: boolean;
1605
- }>>;
1606
- }, "strip", z.ZodTypeAny, {
1607
- mobile?: {
1608
- suggestions?: boolean;
1609
- products?: boolean;
1610
- recipes?: boolean;
1611
- };
1612
- desktop?: {
1613
- suggestions?: boolean;
1614
- products?: boolean;
1615
- recipes?: boolean;
1616
- };
1617
- }, {
1618
- mobile?: {
1619
- suggestions?: boolean;
1620
- products?: boolean;
1621
- recipes?: boolean;
1622
- };
1623
- desktop?: {
1624
- suggestions?: boolean;
1625
- products?: boolean;
1626
- recipes?: boolean;
1627
- };
1628
- }>;
1629
- export declare const iTimeslotModalSettingsSchema: z.ZodObject<{
1630
- showOnAddToCart: z.ZodBoolean;
1631
- timeslotRequiredToAddToCart: z.ZodBoolean;
1632
- timeslotRequiredToViewCartReview: z.ZodBoolean;
1633
- timeslotRequiredToViewCheckout: z.ZodBoolean;
1634
- enableSelectToContinueText: z.ZodBoolean;
1635
- }, "strip", z.ZodTypeAny, {
1636
- showOnAddToCart?: boolean;
1637
- timeslotRequiredToAddToCart?: boolean;
1638
- timeslotRequiredToViewCartReview?: boolean;
1639
- timeslotRequiredToViewCheckout?: boolean;
1640
- enableSelectToContinueText?: boolean;
1641
- }, {
1642
- showOnAddToCart?: boolean;
1643
- timeslotRequiredToAddToCart?: boolean;
1644
- timeslotRequiredToViewCartReview?: boolean;
1645
- timeslotRequiredToViewCheckout?: boolean;
1646
- enableSelectToContinueText?: boolean;
1647
- }>;