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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/JSONSchemas/index.d.ts +5550 -0
  2. package/dist/JSONSchemas/index.js +7516 -0
  3. package/dist/index.d.ts +4 -3
  4. package/dist/index.js +18 -20
  5. package/dist/interfaces/default-settings.interfaces.d.ts +2 -0
  6. package/dist/interfaces/default-theme.interface.d.ts +3 -0
  7. package/dist/interfaces/icons.interfaces.d.ts +2 -0
  8. package/dist/interfaces/retailer-settings.interfaces.d.ts +1 -2
  9. package/dist/interfaces/shared-settings-interfaces.d.ts +2 -0
  10. package/dist/storefront/SFUIImagesTemplate.AdminUi.js +1 -1
  11. package/dist/storefront/SFUIThemesTemplate.AdminUi.js +47 -36
  12. package/dist/storefront/defaultIconsStorefront.js +1 -1
  13. package/dist/storefront/defaultImagesStorefront.js +32 -32
  14. package/dist/storefront/defaultSettingsStorefront.js +1 -1
  15. package/dist/storefront/defaultSharedSettings.js +1 -1
  16. package/dist/storefront/defaultThemeStorefront.js +981 -978
  17. package/dist/sts/STSImagesTemplate.AdminUi.js +1 -1
  18. package/dist/sts/STSSettingsTemplate.AdminUi.js +1 -1
  19. package/dist/sts/defaultSettingsSts.js +1 -1
  20. package/dist/theme-templates/index.js +2 -2
  21. package/package.json +3 -5
  22. package/dist/core/interfaces/default-settings.interfaces.d.ts +0 -3
  23. package/dist/core/interfaces/default-settings.interfaces.js +0 -2
  24. package/dist/core/storefront-zod/retailer-settings/accountPage.d.ts +0 -687
  25. package/dist/core/storefront-zod/retailer-settings/accountPage.js +0 -54
  26. package/dist/core/storefront-zod/retailer-settings/addressSettings.d.ts +0 -828
  27. package/dist/core/storefront-zod/retailer-settings/addressSettings.js +0 -23
  28. package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.d.ts +0 -11
  29. package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.js +0 -8
  30. package/dist/core/storefront-zod/retailer-settings/cartSummary.d.ts +0 -14
  31. package/dist/core/storefront-zod/retailer-settings/cartSummary.js +0 -9
  32. package/dist/core/storefront-zod/retailer-settings/checkout.d.ts +0 -238
  33. package/dist/core/storefront-zod/retailer-settings/checkout.js +0 -15
  34. package/dist/core/storefront-zod/retailer-settings/features.d.ts +0 -890
  35. package/dist/core/storefront-zod/retailer-settings/features.js +0 -63
  36. package/dist/core/storefront-zod/retailer-settings/index.d.ts +0 -9917
  37. package/dist/core/storefront-zod/retailer-settings/index.js +0 -31
  38. package/dist/core/storefront-zod/retailer-settings/integration.d.ts +0 -28
  39. package/dist/core/storefront-zod/retailer-settings/integration.js +0 -12
  40. package/dist/core/storefront-zod/retailer-settings/pdpSettings.d.ts +0 -157
  41. package/dist/core/storefront-zod/retailer-settings/pdpSettings.js +0 -59
  42. package/dist/core/storefront-zod/retailer-settings/performance.d.ts +0 -8
  43. package/dist/core/storefront-zod/retailer-settings/performance.js +0 -7
  44. package/dist/core/storefront-zod/retailer-settings/productCard.d.ts +0 -307
  45. package/dist/core/storefront-zod/retailer-settings/productCard.js +0 -10
  46. package/dist/core/storefront-zod/retailer-settings/sharedSchemas.d.ts +0 -1675
  47. package/dist/core/storefront-zod/retailer-settings/sharedSchemas.js +0 -590
  48. package/dist/core/storefront-zod/retailer-settings/siteSettings.d.ts +0 -594
  49. package/dist/core/storefront-zod/retailer-settings/siteSettings.js +0 -79
  50. package/dist/core/storefront-zod/retailer-settings/welcomeModal.d.ts +0 -17
  51. package/dist/core/storefront-zod/retailer-settings/welcomeModal.js +0 -11
  52. package/dist/zodSchemas/generator.d.ts +0 -6
  53. package/dist/zodSchemas/generator.js +0 -12
  54. package/dist/zodSchemas/retailer-settings-zod.d.ts +0 -1
  55. package/dist/zodSchemas/retailer-settings-zod.js +0 -315
@@ -1,1675 +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.ZodIntersection<z.ZodIntersection<z.ZodObject<{
790
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
791
- }, "strip", z.ZodTypeAny, {
792
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
793
- }, {
794
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
795
- }>, z.ZodObject<{
796
- productGrid: z.ZodOptional<z.ZodObject<{
797
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
798
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
799
- }, "strip", z.ZodTypeAny, {
800
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
801
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
802
- }, {
803
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
804
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
805
- }>>;
806
- }, "strip", z.ZodTypeAny, {
807
- productGrid?: {
808
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
809
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
810
- };
811
- }, {
812
- productGrid?: {
813
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
814
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
815
- };
816
- }>>, z.ZodObject<{
817
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
818
- }, "strip", z.ZodTypeAny, {
819
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
820
- }, {
821
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
822
- }>>>;
823
- page_cart: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
824
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
825
- }, "strip", z.ZodTypeAny, {
826
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
827
- }, {
828
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
829
- }>, z.ZodObject<{
830
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
831
- }, "strip", z.ZodTypeAny, {
832
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
833
- }, {
834
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
835
- }>>>;
836
- "page_product-categories": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
837
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
838
- }, "strip", z.ZodTypeAny, {
839
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
840
- }, {
841
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
842
- }>, z.ZodObject<{
843
- productGrid: z.ZodOptional<z.ZodObject<{
844
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
845
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
846
- }, "strip", z.ZodTypeAny, {
847
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
848
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
849
- }, {
850
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
851
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
852
- }>>;
853
- }, "strip", z.ZodTypeAny, {
854
- productGrid?: {
855
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
856
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
857
- };
858
- }, {
859
- productGrid?: {
860
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
861
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
862
- };
863
- }>>, z.ZodObject<{
864
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
865
- }, "strip", z.ZodTypeAny, {
866
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
867
- }, {
868
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
869
- }>>>;
870
- "page_product-listing": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
871
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
872
- }, "strip", z.ZodTypeAny, {
873
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
874
- }, {
875
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
876
- }>, z.ZodObject<{
877
- productGrid: z.ZodOptional<z.ZodObject<{
878
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
879
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
880
- }, "strip", z.ZodTypeAny, {
881
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
882
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
883
- }, {
884
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
885
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
886
- }>>;
887
- }, "strip", z.ZodTypeAny, {
888
- productGrid?: {
889
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
890
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
891
- };
892
- }, {
893
- productGrid?: {
894
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
895
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
896
- };
897
- }>>, z.ZodObject<{
898
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
899
- }, "strip", z.ZodTypeAny, {
900
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
901
- }, {
902
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
903
- }>>>;
904
- }, "strip", z.ZodTypeAny, {
905
- page_homepage?: {
906
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
907
- };
908
- page_search?: {
909
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
910
- } & {
911
- productGrid?: {
912
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
913
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
914
- };
915
- } & {
916
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
917
- };
918
- page_cart?: {
919
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
920
- } & {
921
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
922
- };
923
- "page_product-categories"?: {
924
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
925
- } & {
926
- productGrid?: {
927
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
928
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
929
- };
930
- } & {
931
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
932
- };
933
- "page_product-listing"?: {
934
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
935
- } & {
936
- productGrid?: {
937
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
938
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
939
- };
940
- } & {
941
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
942
- };
943
- }, {
944
- page_homepage?: {
945
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
946
- };
947
- page_search?: {
948
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
949
- } & {
950
- productGrid?: {
951
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
952
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
953
- };
954
- } & {
955
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
956
- };
957
- page_cart?: {
958
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
959
- } & {
960
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
961
- };
962
- "page_product-categories"?: {
963
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
964
- } & {
965
- productGrid?: {
966
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
967
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
968
- };
969
- } & {
970
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
971
- };
972
- "page_product-listing"?: {
973
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
974
- } & {
975
- productGrid?: {
976
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
977
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
978
- };
979
- } & {
980
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
981
- };
982
- }>;
983
- export declare const iGoogleTranslateWidgetSchema: z.ZodObject<{
984
- enabled: z.ZodBoolean;
985
- position: z.ZodUnion<[z.ZodLiteral<"header">, z.ZodLiteral<"footer">]>;
986
- headerLayout: z.ZodObject<{
987
- mobile: z.ZodUnion<[z.ZodLiteral<"horizontal">, z.ZodLiteral<"vertical">]>;
988
- desktop: z.ZodUnion<[z.ZodLiteral<"horizontal">, z.ZodLiteral<"vertical">]>;
989
- }, "strip", z.ZodTypeAny, {
990
- mobile?: "horizontal" | "vertical";
991
- desktop?: "horizontal" | "vertical";
992
- }, {
993
- mobile?: "horizontal" | "vertical";
994
- desktop?: "horizontal" | "vertical";
995
- }>;
996
- }, "strip", z.ZodTypeAny, {
997
- position?: "footer" | "header";
998
- enabled?: boolean;
999
- headerLayout?: {
1000
- mobile?: "horizontal" | "vertical";
1001
- desktop?: "horizontal" | "vertical";
1002
- };
1003
- }, {
1004
- position?: "footer" | "header";
1005
- enabled?: boolean;
1006
- headerLayout?: {
1007
- mobile?: "horizontal" | "vertical";
1008
- desktop?: "horizontal" | "vertical";
1009
- };
1010
- }>;
1011
- export declare const iFlippConfigSchema: z.ZodObject<{
1012
- version: z.ZodLiteral<1>;
1013
- production: z.ZodBoolean;
1014
- 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">]>;
1015
- retailer: z.ZodUnion<[z.ZodLiteral<"wakefernpricerite">, z.ZodLiteral<"saveonfoods">, z.ZodLiteral<"unitedsupermarkets">, z.ZodLiteral<"dearbornmarket">, z.ZodLiteral<"saveonfoods">]>;
1016
- autoLocate: z.ZodBoolean;
1017
- useRequestedDomain: z.ZodBoolean;
1018
- }, "strip", z.ZodTypeAny, {
1019
- version?: 1;
1020
- production?: boolean;
1021
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
1022
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
1023
- autoLocate?: boolean;
1024
- useRequestedDomain?: boolean;
1025
- }, {
1026
- version?: 1;
1027
- production?: boolean;
1028
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
1029
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
1030
- autoLocate?: boolean;
1031
- useRequestedDomain?: boolean;
1032
- }>;
1033
- export declare const iFlippConfigV2Schema: z.ZodObject<{
1034
- accessToken: z.ZodString;
1035
- hideHeader: z.ZodBoolean;
1036
- locale: z.ZodString;
1037
- merchantId: z.ZodString;
1038
- retailer: z.ZodString;
1039
- slideOutView: z.ZodBoolean;
1040
- version: z.ZodLiteral<2>;
1041
- zoom: z.ZodNumber;
1042
- excludeFlyer: z.ZodOptional<z.ZodString>;
1043
- }, "strip", z.ZodTypeAny, {
1044
- version?: 2;
1045
- retailer?: string;
1046
- accessToken?: string;
1047
- hideHeader?: boolean;
1048
- locale?: string;
1049
- merchantId?: string;
1050
- slideOutView?: boolean;
1051
- zoom?: number;
1052
- excludeFlyer?: string;
1053
- }, {
1054
- version?: 2;
1055
- retailer?: string;
1056
- accessToken?: string;
1057
- hideHeader?: boolean;
1058
- locale?: string;
1059
- merchantId?: string;
1060
- slideOutView?: boolean;
1061
- zoom?: number;
1062
- excludeFlyer?: string;
1063
- }>;
1064
- export declare const iGlobalAnimationsSchema: z.ZodObject<{
1065
- confetti: z.ZodObject<{
1066
- enableConfettiAnimation: z.ZodBoolean;
1067
- }, "strip", z.ZodTypeAny, {
1068
- enableConfettiAnimation?: boolean;
1069
- }, {
1070
- enableConfettiAnimation?: boolean;
1071
- }>;
1072
- }, "strip", z.ZodTypeAny, {
1073
- confetti?: {
1074
- enableConfettiAnimation?: boolean;
1075
- };
1076
- }, {
1077
- confetti?: {
1078
- enableConfettiAnimation?: boolean;
1079
- };
1080
- }>;
1081
- export declare const iRegistrationFieldSchema: z.ZodObject<{
1082
- name: z.ZodUnion<[z.ZodLiteral<"phone">, z.ZodLiteral<"loyaltyId">, z.ZodLiteral<"isAdultConfirmed">, z.ZodLiteral<"marketingConsent">, z.ZodLiteral<"dateOfBirth">]>;
1083
- label: z.ZodString;
1084
- placeholder: z.ZodString;
1085
- designVersion: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"version2">]>;
1086
- validationTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1087
- _type: z.ZodLiteral<"overYears">;
1088
- overYears: z.ZodNumber;
1089
- }, "strip", z.ZodTypeAny, {
1090
- _type?: "overYears";
1091
- overYears?: number;
1092
- }, {
1093
- _type?: "overYears";
1094
- overYears?: number;
1095
- }>, z.ZodObject<{
1096
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
1097
- length: z.ZodNumber;
1098
- }, "strip", z.ZodTypeAny, {
1099
- length?: number;
1100
- _type?: "exact" | "less" | "more";
1101
- }, {
1102
- length?: number;
1103
- _type?: "exact" | "less" | "more";
1104
- }>, z.ZodObject<{
1105
- _type: z.ZodLiteral<"multi">;
1106
- multiLength: z.ZodArray<z.ZodNumber, "many">;
1107
- }, "strip", z.ZodTypeAny, {
1108
- _type?: "multi";
1109
- multiLength?: number[];
1110
- }, {
1111
- _type?: "multi";
1112
- multiLength?: number[];
1113
- }>, 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">;
1114
- alwaysVisible: z.ZodOptional<z.ZodBoolean>;
1115
- editable: z.ZodOptional<z.ZodBoolean>;
1116
- }, "strip", z.ZodTypeAny, {
1117
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
1118
- label?: string;
1119
- placeholder?: string;
1120
- designVersion?: "default" | "version2";
1121
- validationTypes?: ("required" | "password" | "email" | {
1122
- _type?: "overYears";
1123
- overYears?: number;
1124
- } | {
1125
- length?: number;
1126
- _type?: "exact" | "less" | "more";
1127
- } | {
1128
- _type?: "multi";
1129
- multiLength?: number[];
1130
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
1131
- alwaysVisible?: boolean;
1132
- editable?: boolean;
1133
- }, {
1134
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
1135
- label?: string;
1136
- placeholder?: string;
1137
- designVersion?: "default" | "version2";
1138
- validationTypes?: ("required" | "password" | "email" | {
1139
- _type?: "overYears";
1140
- overYears?: number;
1141
- } | {
1142
- length?: number;
1143
- _type?: "exact" | "less" | "more";
1144
- } | {
1145
- _type?: "multi";
1146
- multiLength?: number[];
1147
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
1148
- alwaysVisible?: boolean;
1149
- editable?: boolean;
1150
- }>;
1151
- export declare const iSecondTierAuthorizationSchema: z.ZodObject<{
1152
- time: z.ZodNullable<z.ZodUnion<[z.ZodUndefined, z.ZodNumber]>>;
1153
- pages: z.ZodArray<z.ZodString, "many">;
1154
- }, "strip", z.ZodTypeAny, {
1155
- time?: number;
1156
- pages?: string[];
1157
- }, {
1158
- time?: number;
1159
- pages?: string[];
1160
- }>;
1161
- export declare const iSMSConfigSchema: z.ZodObject<{
1162
- enabled: z.ZodBoolean;
1163
- getEnrollmentUrl: z.ZodString;
1164
- postEnrollmentUrl: z.ZodString;
1165
- }, "strip", z.ZodTypeAny, {
1166
- enabled?: boolean;
1167
- getEnrollmentUrl?: string;
1168
- postEnrollmentUrl?: string;
1169
- }, {
1170
- enabled?: boolean;
1171
- getEnrollmentUrl?: string;
1172
- postEnrollmentUrl?: string;
1173
- }>;
1174
- export declare const iCouponGalleryLayoutSchema: z.ZodObject<{
1175
- enabled: z.ZodBoolean;
1176
- galleryIsIframe: z.ZodBoolean;
1177
- galleryHasNavLink: z.ZodBoolean;
1178
- }, "strip", z.ZodTypeAny, {
1179
- enabled?: boolean;
1180
- galleryIsIframe?: boolean;
1181
- galleryHasNavLink?: boolean;
1182
- }, {
1183
- enabled?: boolean;
1184
- galleryIsIframe?: boolean;
1185
- galleryHasNavLink?: boolean;
1186
- }>;
1187
- export declare const iNutritionZoneSchema: z.ZodUnion<[z.ZodLiteral<"us">, z.ZodLiteral<"eu">, z.ZodLiteral<"au">, z.ZodLiteral<"ca">]>;
1188
- export declare const linkTargetSchema: z.ZodUnion<[z.ZodLiteral<"_blank">, z.ZodLiteral<"_self">, z.ZodLiteral<"_parent">, z.ZodLiteral<"_top">]>;
1189
- export declare const iProductDetailsPageLayoutSchema: z.ZodObject<{
1190
- desktop: z.ZodObject<{
1191
- 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">;
1192
- 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">;
1193
- }, "strip", z.ZodTypeAny, {
1194
- left?: string[];
1195
- right?: string[];
1196
- }, {
1197
- left?: string[];
1198
- right?: string[];
1199
- }>;
1200
- mobile: z.ZodObject<{
1201
- 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">;
1202
- 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">;
1203
- }, "strip", z.ZodTypeAny, {
1204
- left?: string[];
1205
- right?: string[];
1206
- }, {
1207
- left?: string[];
1208
- right?: string[];
1209
- }>;
1210
- }, "strip", z.ZodTypeAny, {
1211
- mobile?: {
1212
- left?: string[];
1213
- right?: string[];
1214
- };
1215
- desktop?: {
1216
- left?: string[];
1217
- right?: string[];
1218
- };
1219
- }, {
1220
- mobile?: {
1221
- left?: string[];
1222
- right?: string[];
1223
- };
1224
- desktop?: {
1225
- left?: string[];
1226
- right?: string[];
1227
- };
1228
- }>;
1229
- export declare const iSodiumWarningSchema: z.ZodObject<{
1230
- isEnabled: z.ZodBoolean;
1231
- threshold: z.ZodNumber;
1232
- }, "strip", z.ZodTypeAny, {
1233
- threshold?: number;
1234
- isEnabled?: boolean;
1235
- }, {
1236
- threshold?: number;
1237
- isEnabled?: boolean;
1238
- }>;
1239
- export declare const iProductCardsPropsSchema: z.ZodObject<{
1240
- gridRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
1241
- carouselsRowLength: z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodNumber>;
1242
- productCard: z.ZodObject<{
1243
- enabled: z.ZodBoolean;
1244
- layouts: z.ZodObject<{
1245
- ContainersGrid: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"pce-centered">, z.ZodLiteral<"prs-labels">, z.ZodLiteral<"dun-attributes">]>;
1246
- ContainersCarousel: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"pce-centered">, z.ZodLiteral<"prs-labels">, z.ZodLiteral<"dun-attributes">]>;
1247
- FlyerCard: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"detailed">]>;
1248
- SimplifiedCarousel: z.ZodLiteral<"default">;
1249
- }, "strip", z.ZodTypeAny, {
1250
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1251
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1252
- FlyerCard?: "default" | "detailed";
1253
- SimplifiedCarousel?: "default";
1254
- }, {
1255
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1256
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1257
- FlyerCard?: "default" | "detailed";
1258
- SimplifiedCarousel?: "default";
1259
- }>;
1260
- components: z.ZodObject<{
1261
- promotionLabel: z.ZodObject<{
1262
- showLines: z.ZodNumber;
1263
- labelSource: z.ZodUnion<[z.ZodLiteral<"name">, z.ZodLiteral<"description">]>;
1264
- labelsLimit: z.ZodNumber;
1265
- labelsPriority: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1266
- _type: z.ZodUnion<[z.ZodLiteral<"pointPromo">, z.ZodLiteral<"promo">]>;
1267
- limit: z.ZodNumber;
1268
- }, "strip", z.ZodTypeAny, {
1269
- _type?: "pointPromo" | "promo";
1270
- limit?: number;
1271
- }, {
1272
- _type?: "pointPromo" | "promo";
1273
- limit?: number;
1274
- }>, z.ZodObject<{
1275
- _type: z.ZodLiteral<"tprPromo">;
1276
- }, "strip", z.ZodTypeAny, {
1277
- _type?: "tprPromo";
1278
- }, {
1279
- _type?: "tprPromo";
1280
- }>]>, "many">;
1281
- }, "strip", z.ZodTypeAny, {
1282
- showLines?: number;
1283
- labelSource?: "description" | "name";
1284
- labelsLimit?: number;
1285
- labelsPriority?: ({
1286
- _type?: "pointPromo" | "promo";
1287
- limit?: number;
1288
- } | {
1289
- _type?: "tprPromo";
1290
- })[];
1291
- }, {
1292
- showLines?: number;
1293
- labelSource?: "description" | "name";
1294
- labelsLimit?: number;
1295
- labelsPriority?: ({
1296
- _type?: "pointPromo" | "promo";
1297
- limit?: number;
1298
- } | {
1299
- _type?: "tprPromo";
1300
- })[];
1301
- }>;
1302
- recommendedLabel: z.ZodObject<{
1303
- enabled: z.ZodBoolean;
1304
- }, "strip", z.ZodTypeAny, {
1305
- enabled?: boolean;
1306
- }, {
1307
- enabled?: boolean;
1308
- }>;
1309
- productAttributes: z.ZodObject<{
1310
- iconOpacity: z.ZodNumber;
1311
- }, "strip", z.ZodTypeAny, {
1312
- iconOpacity?: number;
1313
- }, {
1314
- iconOpacity?: number;
1315
- }>;
1316
- }, "strip", z.ZodTypeAny, {
1317
- promotionLabel?: {
1318
- showLines?: number;
1319
- labelSource?: "description" | "name";
1320
- labelsLimit?: number;
1321
- labelsPriority?: ({
1322
- _type?: "pointPromo" | "promo";
1323
- limit?: number;
1324
- } | {
1325
- _type?: "tprPromo";
1326
- })[];
1327
- };
1328
- recommendedLabel?: {
1329
- enabled?: boolean;
1330
- };
1331
- productAttributes?: {
1332
- iconOpacity?: number;
1333
- };
1334
- }, {
1335
- promotionLabel?: {
1336
- showLines?: number;
1337
- labelSource?: "description" | "name";
1338
- labelsLimit?: number;
1339
- labelsPriority?: ({
1340
- _type?: "pointPromo" | "promo";
1341
- limit?: number;
1342
- } | {
1343
- _type?: "tprPromo";
1344
- })[];
1345
- };
1346
- recommendedLabel?: {
1347
- enabled?: boolean;
1348
- };
1349
- productAttributes?: {
1350
- iconOpacity?: number;
1351
- };
1352
- }>;
1353
- }, "strip", z.ZodTypeAny, {
1354
- enabled?: boolean;
1355
- layouts?: {
1356
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1357
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1358
- FlyerCard?: "default" | "detailed";
1359
- SimplifiedCarousel?: "default";
1360
- };
1361
- components?: {
1362
- promotionLabel?: {
1363
- showLines?: number;
1364
- labelSource?: "description" | "name";
1365
- labelsLimit?: number;
1366
- labelsPriority?: ({
1367
- _type?: "pointPromo" | "promo";
1368
- limit?: number;
1369
- } | {
1370
- _type?: "tprPromo";
1371
- })[];
1372
- };
1373
- recommendedLabel?: {
1374
- enabled?: boolean;
1375
- };
1376
- productAttributes?: {
1377
- iconOpacity?: number;
1378
- };
1379
- };
1380
- }, {
1381
- enabled?: boolean;
1382
- layouts?: {
1383
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1384
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1385
- FlyerCard?: "default" | "detailed";
1386
- SimplifiedCarousel?: "default";
1387
- };
1388
- components?: {
1389
- promotionLabel?: {
1390
- showLines?: number;
1391
- labelSource?: "description" | "name";
1392
- labelsLimit?: number;
1393
- labelsPriority?: ({
1394
- _type?: "pointPromo" | "promo";
1395
- limit?: number;
1396
- } | {
1397
- _type?: "tprPromo";
1398
- })[];
1399
- };
1400
- recommendedLabel?: {
1401
- enabled?: boolean;
1402
- };
1403
- productAttributes?: {
1404
- iconOpacity?: number;
1405
- };
1406
- };
1407
- }>;
1408
- }, "strip", z.ZodTypeAny, {
1409
- productCard?: {
1410
- enabled?: boolean;
1411
- layouts?: {
1412
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1413
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1414
- FlyerCard?: "default" | "detailed";
1415
- SimplifiedCarousel?: "default";
1416
- };
1417
- components?: {
1418
- promotionLabel?: {
1419
- showLines?: number;
1420
- labelSource?: "description" | "name";
1421
- labelsLimit?: number;
1422
- labelsPriority?: ({
1423
- _type?: "pointPromo" | "promo";
1424
- limit?: number;
1425
- } | {
1426
- _type?: "tprPromo";
1427
- })[];
1428
- };
1429
- recommendedLabel?: {
1430
- enabled?: boolean;
1431
- };
1432
- productAttributes?: {
1433
- iconOpacity?: number;
1434
- };
1435
- };
1436
- };
1437
- gridRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1438
- carouselsRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1439
- }, {
1440
- productCard?: {
1441
- enabled?: boolean;
1442
- layouts?: {
1443
- ContainersGrid?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1444
- ContainersCarousel?: "default" | "pce-centered" | "prs-labels" | "dun-attributes";
1445
- FlyerCard?: "default" | "detailed";
1446
- SimplifiedCarousel?: "default";
1447
- };
1448
- components?: {
1449
- promotionLabel?: {
1450
- showLines?: number;
1451
- labelSource?: "description" | "name";
1452
- labelsLimit?: number;
1453
- labelsPriority?: ({
1454
- _type?: "pointPromo" | "promo";
1455
- limit?: number;
1456
- } | {
1457
- _type?: "tprPromo";
1458
- })[];
1459
- };
1460
- recommendedLabel?: {
1461
- enabled?: boolean;
1462
- };
1463
- productAttributes?: {
1464
- iconOpacity?: number;
1465
- };
1466
- };
1467
- };
1468
- gridRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1469
- carouselsRowLength?: Partial<Record<"mobile" | "tablet" | "desktop", number>>;
1470
- }>;
1471
- export declare const iCtaButtonsSchema: z.ZodObject<{
1472
- iconAlignment: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
1473
- 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">]>]>;
1474
- }, "strip", z.ZodTypeAny, {
1475
- iconAlignment?: "left" | "right";
1476
- 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";
1477
- }, {
1478
- iconAlignment?: "left" | "right";
1479
- 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";
1480
- }>;
1481
- export declare const iDefaultCountySchema: z.ZodUnion<[z.ZodLiteral<"USA">, z.ZodLiteral<"Canada">, z.ZodLiteral<"Ireland">, z.ZodLiteral<"Australia">, z.ZodString]>;
1482
- export declare const iDefaultSearchParamsSchema: z.ZodObject<{
1483
- q: z.ZodString;
1484
- page: z.ZodString;
1485
- skip: z.ZodString;
1486
- take: z.ZodString;
1487
- }, "strip", z.ZodTypeAny, {
1488
- q?: string;
1489
- page?: string;
1490
- skip?: string;
1491
- take?: string;
1492
- }, {
1493
- q?: string;
1494
- page?: string;
1495
- skip?: string;
1496
- take?: string;
1497
- }>;
1498
- export declare const iDefaultStoreLocationSchema: z.ZodObject<{
1499
- latitude: z.ZodNumber;
1500
- longitude: z.ZodNumber;
1501
- }, "strip", z.ZodTypeAny, {
1502
- latitude?: number;
1503
- longitude?: number;
1504
- }, {
1505
- latitude?: number;
1506
- longitude?: number;
1507
- }>;
1508
- export declare const iFooterTypesSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"version2">, z.ZodLiteral<"version3">, z.ZodLiteral<"version4">, z.ZodLiteral<"version5">, z.ZodLiteral<"version6">]>;
1509
- export declare const iGoogleAutocompleteSettingsSchema: z.ZodObject<{
1510
- types: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"geocode">, z.ZodLiteral<"address">, z.ZodLiteral<"establishment">, z.ZodLiteral<"(regions)">, z.ZodLiteral<"(cities)">]>>;
1511
- bounds: z.ZodOptional<z.ZodObject<{
1512
- east_longitude: z.ZodNumber;
1513
- north_latitude: z.ZodNumber;
1514
- south_latitude: z.ZodNumber;
1515
- west_longitude: z.ZodNumber;
1516
- }, "strip", z.ZodTypeAny, {
1517
- east_longitude?: number;
1518
- north_latitude?: number;
1519
- south_latitude?: number;
1520
- west_longitude?: number;
1521
- }, {
1522
- east_longitude?: number;
1523
- north_latitude?: number;
1524
- south_latitude?: number;
1525
- west_longitude?: number;
1526
- }>>;
1527
- strictBounds: z.ZodOptional<z.ZodBoolean>;
1528
- restrictCountries: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1529
- minCharLength: z.ZodOptional<z.ZodNumber>;
1530
- }, "strip", z.ZodTypeAny, {
1531
- types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
1532
- bounds?: {
1533
- east_longitude?: number;
1534
- north_latitude?: number;
1535
- south_latitude?: number;
1536
- west_longitude?: number;
1537
- };
1538
- strictBounds?: boolean;
1539
- restrictCountries?: string[];
1540
- minCharLength?: number;
1541
- }, {
1542
- types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
1543
- bounds?: {
1544
- east_longitude?: number;
1545
- north_latitude?: number;
1546
- south_latitude?: number;
1547
- west_longitude?: number;
1548
- };
1549
- strictBounds?: boolean;
1550
- restrictCountries?: string[];
1551
- minCharLength?: number;
1552
- }>;
1553
- export declare const iMaintainCustomerPreferencesSchema: z.ZodObject<{
1554
- enabled: z.ZodBoolean;
1555
- sections: z.ZodRecord<z.ZodEnum<["marketingPreferences"]>, z.ZodArray<z.ZodString, "many">>;
1556
- optInMarketingPreferences: z.ZodBoolean;
1557
- selectOptInMarketingPreferencesStore: z.ZodBoolean;
1558
- }, "strip", z.ZodTypeAny, {
1559
- enabled?: boolean;
1560
- sections?: Partial<Record<"marketingPreferences", string[]>>;
1561
- optInMarketingPreferences?: boolean;
1562
- selectOptInMarketingPreferencesStore?: boolean;
1563
- }, {
1564
- enabled?: boolean;
1565
- sections?: Partial<Record<"marketingPreferences", string[]>>;
1566
- optInMarketingPreferences?: boolean;
1567
- selectOptInMarketingPreferencesStore?: boolean;
1568
- }>;
1569
- export declare const iRestrictMapPlacesSchema: z.ZodObject<{
1570
- country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
1571
- postalCode: z.ZodOptional<z.ZodString>;
1572
- route: z.ZodOptional<z.ZodString>;
1573
- locality: z.ZodOptional<z.ZodString>;
1574
- administrativeArea: z.ZodOptional<z.ZodString>;
1575
- fetchNearStoresSettings: z.ZodOptional<z.ZodObject<{
1576
- kmRange: z.ZodNumber;
1577
- totalTake: z.ZodNumber;
1578
- }, "strip", z.ZodTypeAny, {
1579
- kmRange?: number;
1580
- totalTake?: number;
1581
- }, {
1582
- kmRange?: number;
1583
- totalTake?: number;
1584
- }>>;
1585
- }, "strip", z.ZodTypeAny, {
1586
- country?: string | string[];
1587
- postalCode?: string;
1588
- route?: string;
1589
- locality?: string;
1590
- administrativeArea?: string;
1591
- fetchNearStoresSettings?: {
1592
- kmRange?: number;
1593
- totalTake?: number;
1594
- };
1595
- }, {
1596
- country?: string | string[];
1597
- postalCode?: string;
1598
- route?: string;
1599
- locality?: string;
1600
- administrativeArea?: string;
1601
- fetchNearStoresSettings?: {
1602
- kmRange?: number;
1603
- totalTake?: number;
1604
- };
1605
- }>;
1606
- export declare const iRetailerCountrySchema: z.ZodUnion<[z.ZodLiteral<"us">, z.ZodLiteral<"ca">, z.ZodLiteral<"ie">, z.ZodLiteral<"au">]>;
1607
- export declare const iSearchPreviewVisibilitySchema: z.ZodObject<{
1608
- desktop: z.ZodOptional<z.ZodObject<{
1609
- suggestions: z.ZodBoolean;
1610
- products: z.ZodBoolean;
1611
- recipes: z.ZodBoolean;
1612
- }, "strip", z.ZodTypeAny, {
1613
- suggestions?: boolean;
1614
- products?: boolean;
1615
- recipes?: boolean;
1616
- }, {
1617
- suggestions?: boolean;
1618
- products?: boolean;
1619
- recipes?: boolean;
1620
- }>>;
1621
- mobile: z.ZodOptional<z.ZodObject<{
1622
- suggestions: z.ZodBoolean;
1623
- products: z.ZodBoolean;
1624
- recipes: z.ZodBoolean;
1625
- }, "strip", z.ZodTypeAny, {
1626
- suggestions?: boolean;
1627
- products?: boolean;
1628
- recipes?: boolean;
1629
- }, {
1630
- suggestions?: boolean;
1631
- products?: boolean;
1632
- recipes?: boolean;
1633
- }>>;
1634
- }, "strip", z.ZodTypeAny, {
1635
- mobile?: {
1636
- suggestions?: boolean;
1637
- products?: boolean;
1638
- recipes?: boolean;
1639
- };
1640
- desktop?: {
1641
- suggestions?: boolean;
1642
- products?: boolean;
1643
- recipes?: boolean;
1644
- };
1645
- }, {
1646
- mobile?: {
1647
- suggestions?: boolean;
1648
- products?: boolean;
1649
- recipes?: boolean;
1650
- };
1651
- desktop?: {
1652
- suggestions?: boolean;
1653
- products?: boolean;
1654
- recipes?: boolean;
1655
- };
1656
- }>;
1657
- export declare const iTimeslotModalSettingsSchema: z.ZodObject<{
1658
- showOnAddToCart: z.ZodBoolean;
1659
- timeslotRequiredToAddToCart: z.ZodBoolean;
1660
- timeslotRequiredToViewCartReview: z.ZodBoolean;
1661
- timeslotRequiredToViewCheckout: z.ZodBoolean;
1662
- enableSelectToContinueText: z.ZodBoolean;
1663
- }, "strip", z.ZodTypeAny, {
1664
- showOnAddToCart?: boolean;
1665
- timeslotRequiredToAddToCart?: boolean;
1666
- timeslotRequiredToViewCartReview?: boolean;
1667
- timeslotRequiredToViewCheckout?: boolean;
1668
- enableSelectToContinueText?: boolean;
1669
- }, {
1670
- showOnAddToCart?: boolean;
1671
- timeslotRequiredToAddToCart?: boolean;
1672
- timeslotRequiredToViewCartReview?: boolean;
1673
- timeslotRequiredToViewCheckout?: boolean;
1674
- enableSelectToContinueText?: boolean;
1675
- }>;