@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,890 +0,0 @@
1
- import { z } from "zod";
2
- export declare const iFeaturesV2Schema: z.ZodObject<{
3
- additionalCharges: z.ZodBoolean;
4
- creditBalance: z.ZodBoolean;
5
- subscriptions: z.ZodBoolean;
6
- clientCache: z.ZodBoolean;
7
- vouchers: z.ZodObject<{
8
- enabled: z.ZodBoolean;
9
- reCaptcha: z.ZodBoolean;
10
- manualVouchers: z.ZodBoolean;
11
- }, "strip", z.ZodTypeAny, {
12
- enabled?: boolean;
13
- reCaptcha?: boolean;
14
- manualVouchers?: boolean;
15
- }, {
16
- enabled?: boolean;
17
- reCaptcha?: boolean;
18
- manualVouchers?: boolean;
19
- }>;
20
- promotionDetailsPage: z.ZodObject<{
21
- bundlePromotionCalculator: z.ZodBoolean;
22
- nonBundlePromotionCalculator: z.ZodBoolean;
23
- }, "strip", z.ZodTypeAny, {
24
- bundlePromotionCalculator?: boolean;
25
- nonBundlePromotionCalculator?: boolean;
26
- }, {
27
- bundlePromotionCalculator?: boolean;
28
- nonBundlePromotionCalculator?: boolean;
29
- }>;
30
- giftCards: z.ZodObject<{
31
- enabled: z.ZodBoolean;
32
- giftCardInputValidation: z.ZodString;
33
- pinInputValidation: z.ZodString;
34
- reCaptcha: z.ZodBoolean;
35
- }, "strip", z.ZodTypeAny, {
36
- enabled?: boolean;
37
- reCaptcha?: boolean;
38
- giftCardInputValidation?: string;
39
- pinInputValidation?: string;
40
- }, {
41
- enabled?: boolean;
42
- reCaptcha?: boolean;
43
- giftCardInputValidation?: string;
44
- pinInputValidation?: string;
45
- }>;
46
- smartbanner: z.ZodObject<{
47
- enabled: z.ZodBoolean;
48
- title: z.ZodString;
49
- author: z.ZodString;
50
- price: z.ZodString;
51
- priceSuffixApple: z.ZodString;
52
- priceSuffixGoogle: z.ZodString;
53
- iconApple: z.ZodString;
54
- iconGoogle: z.ZodString;
55
- button: z.ZodString;
56
- buttonUrlApple: z.ZodString;
57
- buttonUrlGoogle: z.ZodString;
58
- closeLabel: z.ZodString;
59
- }, "strip", z.ZodTypeAny, {
60
- button?: string;
61
- title?: string;
62
- enabled?: boolean;
63
- author?: string;
64
- price?: string;
65
- priceSuffixApple?: string;
66
- priceSuffixGoogle?: string;
67
- iconApple?: string;
68
- iconGoogle?: string;
69
- buttonUrlApple?: string;
70
- buttonUrlGoogle?: string;
71
- closeLabel?: string;
72
- }, {
73
- button?: string;
74
- title?: string;
75
- enabled?: boolean;
76
- author?: string;
77
- price?: string;
78
- priceSuffixApple?: string;
79
- priceSuffixGoogle?: string;
80
- iconApple?: string;
81
- iconGoogle?: string;
82
- buttonUrlApple?: string;
83
- buttonUrlGoogle?: string;
84
- closeLabel?: string;
85
- }>;
86
- entryModalVersion: z.ZodUnion<[z.ZodLiteral<"entry">, z.ZodLiteral<"geolocation">, z.ZodLiteral<"skipStoreSelection">]>;
87
- hideAlcoholRule: z.ZodObject<{
88
- modal: z.ZodBoolean;
89
- pdp: z.ZodBoolean;
90
- productCard: z.ZodBoolean;
91
- }, "strip", z.ZodTypeAny, {
92
- modal?: boolean;
93
- pdp?: boolean;
94
- productCard?: boolean;
95
- }, {
96
- modal?: boolean;
97
- pdp?: boolean;
98
- productCard?: boolean;
99
- }>;
100
- addressIntegrationV2: z.ZodBoolean;
101
- allowInStorePurchases: z.ZodBoolean;
102
- allowPastPurchases: z.ZodBoolean;
103
- advertSettings: z.ZodObject<{
104
- page_homepage: z.ZodOptional<z.ZodObject<{
105
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
106
- }, "strip", z.ZodTypeAny, {
107
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
108
- }, {
109
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
110
- }>>;
111
- page_search: z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
112
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
113
- }, "strip", z.ZodTypeAny, {
114
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
115
- }, {
116
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
117
- }>, z.ZodObject<{
118
- productGrid: z.ZodOptional<z.ZodObject<{
119
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
120
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
121
- }, "strip", z.ZodTypeAny, {
122
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
123
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
124
- }, {
125
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
126
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
127
- }>>;
128
- }, "strip", z.ZodTypeAny, {
129
- productGrid?: {
130
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
131
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
132
- };
133
- }, {
134
- productGrid?: {
135
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
136
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
137
- };
138
- }>>, z.ZodObject<{
139
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
140
- }, "strip", z.ZodTypeAny, {
141
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
142
- }, {
143
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
144
- }>>>;
145
- page_cart: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
146
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
147
- }, "strip", z.ZodTypeAny, {
148
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
149
- }, {
150
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
151
- }>, z.ZodObject<{
152
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
153
- }, "strip", z.ZodTypeAny, {
154
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
155
- }, {
156
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
157
- }>>>;
158
- "page_product-categories": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
159
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
160
- }, "strip", z.ZodTypeAny, {
161
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
162
- }, {
163
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
164
- }>, z.ZodObject<{
165
- productGrid: z.ZodOptional<z.ZodObject<{
166
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
167
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
168
- }, "strip", z.ZodTypeAny, {
169
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
170
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
171
- }, {
172
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
173
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
174
- }>>;
175
- }, "strip", z.ZodTypeAny, {
176
- productGrid?: {
177
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
178
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
179
- };
180
- }, {
181
- productGrid?: {
182
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
183
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
184
- };
185
- }>>, z.ZodObject<{
186
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
187
- }, "strip", z.ZodTypeAny, {
188
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
189
- }, {
190
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
191
- }>>>;
192
- "page_product-listing": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
193
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
194
- }, "strip", z.ZodTypeAny, {
195
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
196
- }, {
197
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
198
- }>, z.ZodObject<{
199
- productGrid: z.ZodOptional<z.ZodObject<{
200
- leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
201
- productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
202
- }, "strip", z.ZodTypeAny, {
203
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
204
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
205
- }, {
206
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
207
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
208
- }>>;
209
- }, "strip", z.ZodTypeAny, {
210
- productGrid?: {
211
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
212
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
213
- };
214
- }, {
215
- productGrid?: {
216
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
217
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
218
- };
219
- }>>, z.ZodObject<{
220
- skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
221
- }, "strip", z.ZodTypeAny, {
222
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
223
- }, {
224
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
225
- }>>>;
226
- }, "strip", z.ZodTypeAny, {
227
- page_homepage?: {
228
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
229
- };
230
- page_search?: {
231
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
232
- } & {
233
- productGrid?: {
234
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
235
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
236
- };
237
- } & {
238
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
239
- };
240
- page_cart?: {
241
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
242
- } & {
243
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
244
- };
245
- "page_product-categories"?: {
246
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
247
- } & {
248
- productGrid?: {
249
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
250
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
251
- };
252
- } & {
253
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
254
- };
255
- "page_product-listing"?: {
256
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
257
- } & {
258
- productGrid?: {
259
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
260
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
261
- };
262
- } & {
263
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
264
- };
265
- }, {
266
- page_homepage?: {
267
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
268
- };
269
- page_search?: {
270
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
271
- } & {
272
- productGrid?: {
273
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
274
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
275
- };
276
- } & {
277
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
278
- };
279
- page_cart?: {
280
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
281
- } & {
282
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
283
- };
284
- "page_product-categories"?: {
285
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
286
- } & {
287
- productGrid?: {
288
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
289
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
290
- };
291
- } & {
292
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
293
- };
294
- "page_product-listing"?: {
295
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
296
- } & {
297
- productGrid?: {
298
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
299
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
300
- };
301
- } & {
302
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
303
- };
304
- }>;
305
- ebtPayments: z.ZodBoolean;
306
- emailCartOrShoppingList: z.ZodObject<{
307
- enabled: z.ZodBoolean;
308
- messageField: z.ZodBoolean;
309
- }, "strip", z.ZodTypeAny, {
310
- enabled?: boolean;
311
- messageField?: boolean;
312
- }, {
313
- enabled?: boolean;
314
- messageField?: boolean;
315
- }>;
316
- googleTranslateWidget: z.ZodObject<{
317
- enabled: z.ZodBoolean;
318
- position: z.ZodUnion<[z.ZodLiteral<"header">, z.ZodLiteral<"footer">]>;
319
- headerLayout: z.ZodObject<{
320
- mobile: z.ZodUnion<[z.ZodLiteral<"horizontal">, z.ZodLiteral<"vertical">]>;
321
- desktop: z.ZodUnion<[z.ZodLiteral<"horizontal">, z.ZodLiteral<"vertical">]>;
322
- }, "strip", z.ZodTypeAny, {
323
- mobile?: "horizontal" | "vertical";
324
- desktop?: "horizontal" | "vertical";
325
- }, {
326
- mobile?: "horizontal" | "vertical";
327
- desktop?: "horizontal" | "vertical";
328
- }>;
329
- }, "strip", z.ZodTypeAny, {
330
- position?: "footer" | "header";
331
- enabled?: boolean;
332
- headerLayout?: {
333
- mobile?: "horizontal" | "vertical";
334
- desktop?: "horizontal" | "vertical";
335
- };
336
- }, {
337
- position?: "footer" | "header";
338
- enabled?: boolean;
339
- headerLayout?: {
340
- mobile?: "horizontal" | "vertical";
341
- desktop?: "horizontal" | "vertical";
342
- };
343
- }>;
344
- enableNewsletterSignup: z.ZodBoolean;
345
- enableNotifications: z.ZodBoolean;
346
- enableRecipeSearch: z.ZodBoolean;
347
- externalStoreSelectorUrl: z.ZodObject<{
348
- enabled: z.ZodBoolean;
349
- url: z.ZodString;
350
- }, "strip", z.ZodTypeAny, {
351
- url?: string;
352
- enabled?: boolean;
353
- }, {
354
- url?: string;
355
- enabled?: boolean;
356
- }>;
357
- favoritesV1: z.ZodBoolean;
358
- flipp: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
359
- version: z.ZodLiteral<1>;
360
- production: z.ZodBoolean;
361
- 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">]>;
362
- retailer: z.ZodUnion<[z.ZodLiteral<"wakefernpricerite">, z.ZodLiteral<"saveonfoods">, z.ZodLiteral<"unitedsupermarkets">, z.ZodLiteral<"dearbornmarket">, z.ZodLiteral<"saveonfoods">]>;
363
- autoLocate: z.ZodBoolean;
364
- useRequestedDomain: z.ZodBoolean;
365
- }, "strip", z.ZodTypeAny, {
366
- version?: 1;
367
- production?: boolean;
368
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
369
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
370
- autoLocate?: boolean;
371
- useRequestedDomain?: boolean;
372
- }, {
373
- version?: 1;
374
- production?: boolean;
375
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
376
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
377
- autoLocate?: boolean;
378
- useRequestedDomain?: boolean;
379
- }>, z.ZodObject<{
380
- accessToken: z.ZodString;
381
- hideHeader: z.ZodBoolean;
382
- locale: z.ZodString;
383
- merchantId: z.ZodString;
384
- retailer: z.ZodString;
385
- slideOutView: z.ZodBoolean;
386
- version: z.ZodLiteral<2>;
387
- zoom: z.ZodNumber;
388
- excludeFlyer: z.ZodOptional<z.ZodString>;
389
- }, "strip", z.ZodTypeAny, {
390
- version?: 2;
391
- retailer?: string;
392
- accessToken?: string;
393
- hideHeader?: boolean;
394
- locale?: string;
395
- merchantId?: string;
396
- slideOutView?: boolean;
397
- zoom?: number;
398
- excludeFlyer?: string;
399
- }, {
400
- version?: 2;
401
- retailer?: string;
402
- accessToken?: string;
403
- hideHeader?: boolean;
404
- locale?: string;
405
- merchantId?: string;
406
- slideOutView?: boolean;
407
- zoom?: number;
408
- excludeFlyer?: string;
409
- }>]>>;
410
- globalAnimations: z.ZodObject<{
411
- confetti: z.ZodObject<{
412
- enableConfettiAnimation: z.ZodBoolean;
413
- }, "strip", z.ZodTypeAny, {
414
- enableConfettiAnimation?: boolean;
415
- }, {
416
- enableConfettiAnimation?: boolean;
417
- }>;
418
- }, "strip", z.ZodTypeAny, {
419
- confetti?: {
420
- enableConfettiAnimation?: boolean;
421
- };
422
- }, {
423
- confetti?: {
424
- enableConfettiAnimation?: boolean;
425
- };
426
- }>;
427
- instacart: z.ZodObject<{
428
- enabled: z.ZodBoolean;
429
- url: z.ZodString;
430
- }, "strip", z.ZodTypeAny, {
431
- url?: string;
432
- enabled?: boolean;
433
- }, {
434
- url?: string;
435
- enabled?: boolean;
436
- }>;
437
- recipeLegacyShareLink: z.ZodBoolean;
438
- registrationFields: z.ZodArray<z.ZodObject<{
439
- name: z.ZodUnion<[z.ZodLiteral<"phone">, z.ZodLiteral<"loyaltyId">, z.ZodLiteral<"isAdultConfirmed">, z.ZodLiteral<"marketingConsent">, z.ZodLiteral<"dateOfBirth">]>;
440
- label: z.ZodString;
441
- placeholder: z.ZodString;
442
- designVersion: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"version2">]>;
443
- validationTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
444
- _type: z.ZodLiteral<"overYears">;
445
- overYears: z.ZodNumber;
446
- }, "strip", z.ZodTypeAny, {
447
- _type?: "overYears";
448
- overYears?: number;
449
- }, {
450
- _type?: "overYears";
451
- overYears?: number;
452
- }>, z.ZodObject<{
453
- _type: z.ZodUnion<[z.ZodLiteral<"less">, z.ZodLiteral<"more">, z.ZodLiteral<"exact">]>;
454
- length: z.ZodNumber;
455
- }, "strip", z.ZodTypeAny, {
456
- length?: number;
457
- _type?: "exact" | "less" | "more";
458
- }, {
459
- length?: number;
460
- _type?: "exact" | "less" | "more";
461
- }>, z.ZodObject<{
462
- _type: z.ZodLiteral<"multi">;
463
- multiLength: z.ZodArray<z.ZodNumber, "many">;
464
- }, "strip", z.ZodTypeAny, {
465
- _type?: "multi";
466
- multiLength?: number[];
467
- }, {
468
- _type?: "multi";
469
- multiLength?: number[];
470
- }>, 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">;
471
- alwaysVisible: z.ZodOptional<z.ZodBoolean>;
472
- editable: z.ZodOptional<z.ZodBoolean>;
473
- }, "strip", z.ZodTypeAny, {
474
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
475
- label?: string;
476
- placeholder?: string;
477
- designVersion?: "default" | "version2";
478
- validationTypes?: ("required" | "password" | "email" | {
479
- _type?: "overYears";
480
- overYears?: number;
481
- } | {
482
- length?: number;
483
- _type?: "exact" | "less" | "more";
484
- } | {
485
- _type?: "multi";
486
- multiLength?: number[];
487
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
488
- alwaysVisible?: boolean;
489
- editable?: boolean;
490
- }, {
491
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
492
- label?: string;
493
- placeholder?: string;
494
- designVersion?: "default" | "version2";
495
- validationTypes?: ("required" | "password" | "email" | {
496
- _type?: "overYears";
497
- overYears?: number;
498
- } | {
499
- length?: number;
500
- _type?: "exact" | "less" | "more";
501
- } | {
502
- _type?: "multi";
503
- multiLength?: number[];
504
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
505
- alwaysVisible?: boolean;
506
- editable?: boolean;
507
- }>, "many">;
508
- secondTierAuthorization: z.ZodOptional<z.ZodObject<{
509
- time: z.ZodNullable<z.ZodUnion<[z.ZodUndefined, z.ZodNumber]>>;
510
- pages: z.ZodArray<z.ZodString, "many">;
511
- }, "strip", z.ZodTypeAny, {
512
- time?: number;
513
- pages?: string[];
514
- }, {
515
- time?: number;
516
- pages?: string[];
517
- }>>;
518
- showCheckoutPromoCode: z.ZodBoolean;
519
- showImgOnOrder: z.ZodBoolean;
520
- showRewardPromoChangeTimeslotMsg: z.ZodBoolean;
521
- smsNotifications: z.ZodObject<{
522
- enabled: z.ZodBoolean;
523
- getEnrollmentUrl: z.ZodString;
524
- postEnrollmentUrl: z.ZodString;
525
- }, "strip", z.ZodTypeAny, {
526
- enabled?: boolean;
527
- getEnrollmentUrl?: string;
528
- postEnrollmentUrl?: string;
529
- }, {
530
- enabled?: boolean;
531
- getEnrollmentUrl?: string;
532
- postEnrollmentUrl?: string;
533
- }>;
534
- specialRequestItems: z.ZodBoolean;
535
- couponGallery: z.ZodObject<{
536
- enabled: z.ZodBoolean;
537
- galleryIsIframe: z.ZodBoolean;
538
- galleryHasNavLink: z.ZodBoolean;
539
- }, "strip", z.ZodTypeAny, {
540
- enabled?: boolean;
541
- galleryIsIframe?: boolean;
542
- galleryHasNavLink?: boolean;
543
- }, {
544
- enabled?: boolean;
545
- galleryIsIframe?: boolean;
546
- galleryHasNavLink?: boolean;
547
- }>;
548
- gsaSupportedBrowser: z.ZodBoolean;
549
- acquiaAuthService: z.ZodBoolean;
550
- }, "strip", z.ZodTypeAny, {
551
- additionalCharges?: boolean;
552
- creditBalance?: boolean;
553
- subscriptions?: boolean;
554
- clientCache?: boolean;
555
- vouchers?: {
556
- enabled?: boolean;
557
- reCaptcha?: boolean;
558
- manualVouchers?: boolean;
559
- };
560
- promotionDetailsPage?: {
561
- bundlePromotionCalculator?: boolean;
562
- nonBundlePromotionCalculator?: boolean;
563
- };
564
- giftCards?: {
565
- enabled?: boolean;
566
- reCaptcha?: boolean;
567
- giftCardInputValidation?: string;
568
- pinInputValidation?: string;
569
- };
570
- smartbanner?: {
571
- button?: string;
572
- title?: string;
573
- enabled?: boolean;
574
- author?: string;
575
- price?: string;
576
- priceSuffixApple?: string;
577
- priceSuffixGoogle?: string;
578
- iconApple?: string;
579
- iconGoogle?: string;
580
- buttonUrlApple?: string;
581
- buttonUrlGoogle?: string;
582
- closeLabel?: string;
583
- };
584
- entryModalVersion?: "geolocation" | "entry" | "skipStoreSelection";
585
- hideAlcoholRule?: {
586
- modal?: boolean;
587
- pdp?: boolean;
588
- productCard?: boolean;
589
- };
590
- addressIntegrationV2?: boolean;
591
- allowInStorePurchases?: boolean;
592
- allowPastPurchases?: boolean;
593
- advertSettings?: {
594
- page_homepage?: {
595
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
596
- };
597
- page_search?: {
598
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
599
- } & {
600
- productGrid?: {
601
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
602
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
603
- };
604
- } & {
605
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
606
- };
607
- page_cart?: {
608
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
609
- } & {
610
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
611
- };
612
- "page_product-categories"?: {
613
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
614
- } & {
615
- productGrid?: {
616
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
617
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
618
- };
619
- } & {
620
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
621
- };
622
- "page_product-listing"?: {
623
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
624
- } & {
625
- productGrid?: {
626
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
627
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
628
- };
629
- } & {
630
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
631
- };
632
- };
633
- ebtPayments?: boolean;
634
- emailCartOrShoppingList?: {
635
- enabled?: boolean;
636
- messageField?: boolean;
637
- };
638
- googleTranslateWidget?: {
639
- position?: "footer" | "header";
640
- enabled?: boolean;
641
- headerLayout?: {
642
- mobile?: "horizontal" | "vertical";
643
- desktop?: "horizontal" | "vertical";
644
- };
645
- };
646
- enableNewsletterSignup?: boolean;
647
- enableNotifications?: boolean;
648
- enableRecipeSearch?: boolean;
649
- externalStoreSelectorUrl?: {
650
- url?: string;
651
- enabled?: boolean;
652
- };
653
- favoritesV1?: boolean;
654
- flipp?: {
655
- version?: 1;
656
- production?: boolean;
657
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
658
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
659
- autoLocate?: boolean;
660
- useRequestedDomain?: boolean;
661
- } | {
662
- version?: 2;
663
- retailer?: string;
664
- accessToken?: string;
665
- hideHeader?: boolean;
666
- locale?: string;
667
- merchantId?: string;
668
- slideOutView?: boolean;
669
- zoom?: number;
670
- excludeFlyer?: string;
671
- };
672
- globalAnimations?: {
673
- confetti?: {
674
- enableConfettiAnimation?: boolean;
675
- };
676
- };
677
- instacart?: {
678
- url?: string;
679
- enabled?: boolean;
680
- };
681
- recipeLegacyShareLink?: boolean;
682
- registrationFields?: {
683
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
684
- label?: string;
685
- placeholder?: string;
686
- designVersion?: "default" | "version2";
687
- validationTypes?: ("required" | "password" | "email" | {
688
- _type?: "overYears";
689
- overYears?: number;
690
- } | {
691
- length?: number;
692
- _type?: "exact" | "less" | "more";
693
- } | {
694
- _type?: "multi";
695
- multiLength?: number[];
696
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
697
- alwaysVisible?: boolean;
698
- editable?: boolean;
699
- }[];
700
- secondTierAuthorization?: {
701
- time?: number;
702
- pages?: string[];
703
- };
704
- showCheckoutPromoCode?: boolean;
705
- showImgOnOrder?: boolean;
706
- showRewardPromoChangeTimeslotMsg?: boolean;
707
- smsNotifications?: {
708
- enabled?: boolean;
709
- getEnrollmentUrl?: string;
710
- postEnrollmentUrl?: string;
711
- };
712
- specialRequestItems?: boolean;
713
- couponGallery?: {
714
- enabled?: boolean;
715
- galleryIsIframe?: boolean;
716
- galleryHasNavLink?: boolean;
717
- };
718
- gsaSupportedBrowser?: boolean;
719
- acquiaAuthService?: boolean;
720
- }, {
721
- additionalCharges?: boolean;
722
- creditBalance?: boolean;
723
- subscriptions?: boolean;
724
- clientCache?: boolean;
725
- vouchers?: {
726
- enabled?: boolean;
727
- reCaptcha?: boolean;
728
- manualVouchers?: boolean;
729
- };
730
- promotionDetailsPage?: {
731
- bundlePromotionCalculator?: boolean;
732
- nonBundlePromotionCalculator?: boolean;
733
- };
734
- giftCards?: {
735
- enabled?: boolean;
736
- reCaptcha?: boolean;
737
- giftCardInputValidation?: string;
738
- pinInputValidation?: string;
739
- };
740
- smartbanner?: {
741
- button?: string;
742
- title?: string;
743
- enabled?: boolean;
744
- author?: string;
745
- price?: string;
746
- priceSuffixApple?: string;
747
- priceSuffixGoogle?: string;
748
- iconApple?: string;
749
- iconGoogle?: string;
750
- buttonUrlApple?: string;
751
- buttonUrlGoogle?: string;
752
- closeLabel?: string;
753
- };
754
- entryModalVersion?: "geolocation" | "entry" | "skipStoreSelection";
755
- hideAlcoholRule?: {
756
- modal?: boolean;
757
- pdp?: boolean;
758
- productCard?: boolean;
759
- };
760
- addressIntegrationV2?: boolean;
761
- allowInStorePurchases?: boolean;
762
- allowPastPurchases?: boolean;
763
- advertSettings?: {
764
- page_homepage?: {
765
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
766
- };
767
- page_search?: {
768
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
769
- } & {
770
- productGrid?: {
771
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
772
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
773
- };
774
- } & {
775
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
776
- };
777
- page_cart?: {
778
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
779
- } & {
780
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
781
- };
782
- "page_product-categories"?: {
783
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
784
- } & {
785
- productGrid?: {
786
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
787
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
788
- };
789
- } & {
790
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
791
- };
792
- "page_product-listing"?: {
793
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
794
- } & {
795
- productGrid?: {
796
- leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
797
- productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
798
- };
799
- } & {
800
- skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
801
- };
802
- };
803
- ebtPayments?: boolean;
804
- emailCartOrShoppingList?: {
805
- enabled?: boolean;
806
- messageField?: boolean;
807
- };
808
- googleTranslateWidget?: {
809
- position?: "footer" | "header";
810
- enabled?: boolean;
811
- headerLayout?: {
812
- mobile?: "horizontal" | "vertical";
813
- desktop?: "horizontal" | "vertical";
814
- };
815
- };
816
- enableNewsletterSignup?: boolean;
817
- enableNotifications?: boolean;
818
- enableRecipeSearch?: boolean;
819
- externalStoreSelectorUrl?: {
820
- url?: string;
821
- enabled?: boolean;
822
- };
823
- favoritesV1?: boolean;
824
- flipp?: {
825
- version?: 1;
826
- production?: boolean;
827
- scriptUrl?: "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
828
- retailer?: "wakefernpricerite" | "saveonfoods" | "unitedsupermarkets" | "dearbornmarket";
829
- autoLocate?: boolean;
830
- useRequestedDomain?: boolean;
831
- } | {
832
- version?: 2;
833
- retailer?: string;
834
- accessToken?: string;
835
- hideHeader?: boolean;
836
- locale?: string;
837
- merchantId?: string;
838
- slideOutView?: boolean;
839
- zoom?: number;
840
- excludeFlyer?: string;
841
- };
842
- globalAnimations?: {
843
- confetti?: {
844
- enableConfettiAnimation?: boolean;
845
- };
846
- };
847
- instacart?: {
848
- url?: string;
849
- enabled?: boolean;
850
- };
851
- recipeLegacyShareLink?: boolean;
852
- registrationFields?: {
853
- name?: "phone" | "loyaltyId" | "isAdultConfirmed" | "marketingConsent" | "dateOfBirth";
854
- label?: string;
855
- placeholder?: string;
856
- designVersion?: "default" | "version2";
857
- validationTypes?: ("required" | "password" | "email" | {
858
- _type?: "overYears";
859
- overYears?: number;
860
- } | {
861
- length?: number;
862
- _type?: "exact" | "less" | "more";
863
- } | {
864
- _type?: "multi";
865
- multiLength?: number[];
866
- } | "alphaNumeric" | "alphaOnly" | "alphaOnlyNoDots" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone")[];
867
- alwaysVisible?: boolean;
868
- editable?: boolean;
869
- }[];
870
- secondTierAuthorization?: {
871
- time?: number;
872
- pages?: string[];
873
- };
874
- showCheckoutPromoCode?: boolean;
875
- showImgOnOrder?: boolean;
876
- showRewardPromoChangeTimeslotMsg?: boolean;
877
- smsNotifications?: {
878
- enabled?: boolean;
879
- getEnrollmentUrl?: string;
880
- postEnrollmentUrl?: string;
881
- };
882
- specialRequestItems?: boolean;
883
- couponGallery?: {
884
- enabled?: boolean;
885
- galleryIsIframe?: boolean;
886
- galleryHasNavLink?: boolean;
887
- };
888
- gsaSupportedBrowser?: boolean;
889
- acquiaAuthService?: boolean;
890
- }>;