@thryveai/theme-interfaces 2.7.154 → 2.7.155-2.zod
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.
- package/dist/core/interfaces/default-settings.interfaces.d.ts +3 -0
- package/dist/core/interfaces/default-settings.interfaces.js +2 -0
- package/dist/core/storefront-zod/retailer-settings/accountPage.d.ts +687 -0
- package/dist/core/storefront-zod/retailer-settings/accountPage.js +54 -0
- package/dist/core/storefront-zod/retailer-settings/addressSettings.d.ts +828 -0
- package/dist/core/storefront-zod/retailer-settings/addressSettings.js +23 -0
- package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.d.ts +11 -0
- package/dist/core/storefront-zod/retailer-settings/adminPanelOnly.js +8 -0
- package/dist/core/storefront-zod/retailer-settings/cartSummary.d.ts +14 -0
- package/dist/core/storefront-zod/retailer-settings/cartSummary.js +9 -0
- package/dist/core/storefront-zod/retailer-settings/checkout.d.ts +238 -0
- package/dist/core/storefront-zod/retailer-settings/checkout.js +15 -0
- package/dist/core/storefront-zod/retailer-settings/features.d.ts +890 -0
- package/dist/core/storefront-zod/retailer-settings/features.js +63 -0
- package/dist/core/storefront-zod/retailer-settings/index.d.ts +9917 -0
- package/dist/core/storefront-zod/retailer-settings/index.js +31 -0
- package/dist/core/storefront-zod/retailer-settings/integration.d.ts +28 -0
- package/dist/core/storefront-zod/retailer-settings/integration.js +12 -0
- package/dist/core/storefront-zod/retailer-settings/pdpSettings.d.ts +157 -0
- package/dist/core/storefront-zod/retailer-settings/pdpSettings.js +59 -0
- package/dist/core/storefront-zod/retailer-settings/performance.d.ts +8 -0
- package/dist/core/storefront-zod/retailer-settings/performance.js +7 -0
- package/dist/core/storefront-zod/retailer-settings/productCard.d.ts +307 -0
- package/dist/core/storefront-zod/retailer-settings/productCard.js +10 -0
- package/dist/core/storefront-zod/retailer-settings/sharedSchemas.d.ts +1675 -0
- package/dist/core/storefront-zod/retailer-settings/sharedSchemas.js +590 -0
- package/dist/core/storefront-zod/retailer-settings/siteSettings.d.ts +594 -0
- package/dist/core/storefront-zod/retailer-settings/siteSettings.js +79 -0
- package/dist/core/storefront-zod/retailer-settings/welcomeModal.d.ts +17 -0
- package/dist/core/storefront-zod/retailer-settings/welcomeModal.js +11 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +20 -18
- package/dist/interfaces/retailer-settings.interfaces.d.ts +2 -2
- package/dist/storefront/SFUIImagesTemplate.AdminUi.js +1 -1
- package/dist/storefront/SFUIThemesTemplate.AdminUi.js +36 -47
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultImagesStorefront.js +32 -32
- package/dist/storefront/defaultSettingsStorefront.js +1 -1
- package/dist/storefront/defaultSharedSettings.js +1 -1
- package/dist/storefront/defaultThemeStorefront.js +978 -981
- package/dist/sts/STSImagesTemplate.AdminUi.js +1 -1
- package/dist/sts/STSSettingsTemplate.AdminUi.js +1 -1
- package/dist/sts/defaultSettingsSts.js +1 -1
- package/dist/theme-templates/index.js +2 -2
- package/dist/zodSchemas/generator.d.ts +6 -0
- package/dist/zodSchemas/generator.js +12 -0
- package/dist/zodSchemas/retailer-settings-zod.d.ts +1 -0
- package/dist/zodSchemas/retailer-settings-zod.js +315 -0
- package/package.json +5 -2
|
@@ -0,0 +1,594 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const iCookieProSchema: z.ZodObject<{
|
|
3
|
+
enabled: z.ZodBoolean;
|
|
4
|
+
src: z.ZodString;
|
|
5
|
+
domain: z.ZodString;
|
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
enabled?: boolean;
|
|
8
|
+
src?: string;
|
|
9
|
+
domain?: string;
|
|
10
|
+
}, {
|
|
11
|
+
enabled?: boolean;
|
|
12
|
+
src?: string;
|
|
13
|
+
domain?: string;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const iMobileViewCardLayoutSchema: z.ZodObject<{
|
|
16
|
+
enabled: z.ZodBoolean;
|
|
17
|
+
defaultView: z.ZodUnion<[z.ZodLiteral<"List">, z.ZodLiteral<"Grid">]>;
|
|
18
|
+
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
enabled?: boolean;
|
|
20
|
+
defaultView?: "List" | "Grid";
|
|
21
|
+
}, {
|
|
22
|
+
enabled?: boolean;
|
|
23
|
+
defaultView?: "List" | "Grid";
|
|
24
|
+
}>;
|
|
25
|
+
export declare const iHeaderLinksLayoutSchema: z.ZodObject<{
|
|
26
|
+
enabled: z.ZodBoolean;
|
|
27
|
+
dimension: z.ZodNumber;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
enabled?: boolean;
|
|
30
|
+
dimension?: number;
|
|
31
|
+
}, {
|
|
32
|
+
enabled?: boolean;
|
|
33
|
+
dimension?: number;
|
|
34
|
+
}>;
|
|
35
|
+
export declare const iScrollToTopButtonSchema: z.ZodObject<{
|
|
36
|
+
enabled: z.ZodBoolean;
|
|
37
|
+
percentOffset: z.ZodObject<{
|
|
38
|
+
right: z.ZodNumber;
|
|
39
|
+
bottom: z.ZodNumber;
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
41
|
+
bottom?: number;
|
|
42
|
+
right?: number;
|
|
43
|
+
}, {
|
|
44
|
+
bottom?: number;
|
|
45
|
+
right?: number;
|
|
46
|
+
}>;
|
|
47
|
+
}, "strip", z.ZodTypeAny, {
|
|
48
|
+
enabled?: boolean;
|
|
49
|
+
percentOffset?: {
|
|
50
|
+
bottom?: number;
|
|
51
|
+
right?: number;
|
|
52
|
+
};
|
|
53
|
+
}, {
|
|
54
|
+
enabled?: boolean;
|
|
55
|
+
percentOffset?: {
|
|
56
|
+
bottom?: number;
|
|
57
|
+
right?: number;
|
|
58
|
+
};
|
|
59
|
+
}>;
|
|
60
|
+
export declare const iShowShopAllLinkSchema: z.ZodObject<{
|
|
61
|
+
enabled: z.ZodBoolean;
|
|
62
|
+
}, "strip", z.ZodTypeAny, {
|
|
63
|
+
enabled?: boolean;
|
|
64
|
+
}, {
|
|
65
|
+
enabled?: boolean;
|
|
66
|
+
}>;
|
|
67
|
+
export declare const iSiteSettingsV2Schema: z.ZodObject<{
|
|
68
|
+
clientSideOrderModify: z.ZodBoolean;
|
|
69
|
+
cookiePro: z.ZodObject<{
|
|
70
|
+
enabled: z.ZodBoolean;
|
|
71
|
+
src: z.ZodString;
|
|
72
|
+
domain: z.ZodString;
|
|
73
|
+
}, "strip", z.ZodTypeAny, {
|
|
74
|
+
enabled?: boolean;
|
|
75
|
+
src?: string;
|
|
76
|
+
domain?: string;
|
|
77
|
+
}, {
|
|
78
|
+
enabled?: boolean;
|
|
79
|
+
src?: string;
|
|
80
|
+
domain?: string;
|
|
81
|
+
}>;
|
|
82
|
+
anonymousCart: z.ZodBoolean;
|
|
83
|
+
ctaButtons: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
84
|
+
iconAlignment: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
|
|
85
|
+
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">]>]>;
|
|
86
|
+
}, "strip", z.ZodTypeAny, {
|
|
87
|
+
iconAlignment?: "left" | "right";
|
|
88
|
+
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";
|
|
89
|
+
}, {
|
|
90
|
+
iconAlignment?: "left" | "right";
|
|
91
|
+
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";
|
|
92
|
+
}>, z.ZodUndefined]>>;
|
|
93
|
+
cmsLazyLoadRows: z.ZodNumber;
|
|
94
|
+
daysToRemainSignedIn: z.ZodNumber;
|
|
95
|
+
defaultCountry: z.ZodUnion<[z.ZodLiteral<"USA">, z.ZodLiteral<"Canada">, z.ZodLiteral<"Ireland">, z.ZodLiteral<"Australia">, z.ZodString]>;
|
|
96
|
+
defaultLanguage: z.ZodString;
|
|
97
|
+
defaultSearchParams: z.ZodObject<{
|
|
98
|
+
q: z.ZodString;
|
|
99
|
+
page: z.ZodString;
|
|
100
|
+
skip: z.ZodString;
|
|
101
|
+
take: z.ZodString;
|
|
102
|
+
}, "strip", z.ZodTypeAny, {
|
|
103
|
+
q?: string;
|
|
104
|
+
page?: string;
|
|
105
|
+
skip?: string;
|
|
106
|
+
take?: string;
|
|
107
|
+
}, {
|
|
108
|
+
q?: string;
|
|
109
|
+
page?: string;
|
|
110
|
+
skip?: string;
|
|
111
|
+
take?: string;
|
|
112
|
+
}>;
|
|
113
|
+
defaultShoppingMode: z.ZodUnion<[z.ZodLiteral<"pickup">, z.ZodLiteral<"planning">, z.ZodLiteral<"delivery">]>;
|
|
114
|
+
defaultStoreLocation: z.ZodObject<{
|
|
115
|
+
latitude: z.ZodNumber;
|
|
116
|
+
longitude: z.ZodNumber;
|
|
117
|
+
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
latitude?: number;
|
|
119
|
+
longitude?: number;
|
|
120
|
+
}, {
|
|
121
|
+
latitude?: number;
|
|
122
|
+
longitude?: number;
|
|
123
|
+
}>;
|
|
124
|
+
defaultTabView: z.ZodUnion<[z.ZodLiteral<"listView">, z.ZodLiteral<"mapView">]>;
|
|
125
|
+
showChangeCustomerEmail: z.ZodBoolean;
|
|
126
|
+
disableTprPrice: z.ZodBoolean;
|
|
127
|
+
mobileViewCardLayout: z.ZodObject<{
|
|
128
|
+
enabled: z.ZodBoolean;
|
|
129
|
+
defaultView: z.ZodUnion<[z.ZodLiteral<"List">, z.ZodLiteral<"Grid">]>;
|
|
130
|
+
}, "strip", z.ZodTypeAny, {
|
|
131
|
+
enabled?: boolean;
|
|
132
|
+
defaultView?: "List" | "Grid";
|
|
133
|
+
}, {
|
|
134
|
+
enabled?: boolean;
|
|
135
|
+
defaultView?: "List" | "Grid";
|
|
136
|
+
}>;
|
|
137
|
+
footerVersion: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"version2">, z.ZodLiteral<"version3">, z.ZodLiteral<"version4">, z.ZodLiteral<"version5">, z.ZodLiteral<"version6">]>;
|
|
138
|
+
googleAutocompleteSettings: z.ZodObject<{
|
|
139
|
+
types: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"geocode">, z.ZodLiteral<"address">, z.ZodLiteral<"establishment">, z.ZodLiteral<"(regions)">, z.ZodLiteral<"(cities)">]>>;
|
|
140
|
+
bounds: z.ZodOptional<z.ZodObject<{
|
|
141
|
+
east_longitude: z.ZodNumber;
|
|
142
|
+
north_latitude: z.ZodNumber;
|
|
143
|
+
south_latitude: z.ZodNumber;
|
|
144
|
+
west_longitude: z.ZodNumber;
|
|
145
|
+
}, "strip", z.ZodTypeAny, {
|
|
146
|
+
east_longitude?: number;
|
|
147
|
+
north_latitude?: number;
|
|
148
|
+
south_latitude?: number;
|
|
149
|
+
west_longitude?: number;
|
|
150
|
+
}, {
|
|
151
|
+
east_longitude?: number;
|
|
152
|
+
north_latitude?: number;
|
|
153
|
+
south_latitude?: number;
|
|
154
|
+
west_longitude?: number;
|
|
155
|
+
}>>;
|
|
156
|
+
strictBounds: z.ZodOptional<z.ZodBoolean>;
|
|
157
|
+
restrictCountries: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
158
|
+
minCharLength: z.ZodOptional<z.ZodNumber>;
|
|
159
|
+
}, "strip", z.ZodTypeAny, {
|
|
160
|
+
types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
|
|
161
|
+
bounds?: {
|
|
162
|
+
east_longitude?: number;
|
|
163
|
+
north_latitude?: number;
|
|
164
|
+
south_latitude?: number;
|
|
165
|
+
west_longitude?: number;
|
|
166
|
+
};
|
|
167
|
+
strictBounds?: boolean;
|
|
168
|
+
restrictCountries?: string[];
|
|
169
|
+
minCharLength?: number;
|
|
170
|
+
}, {
|
|
171
|
+
types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
|
|
172
|
+
bounds?: {
|
|
173
|
+
east_longitude?: number;
|
|
174
|
+
north_latitude?: number;
|
|
175
|
+
south_latitude?: number;
|
|
176
|
+
west_longitude?: number;
|
|
177
|
+
};
|
|
178
|
+
strictBounds?: boolean;
|
|
179
|
+
restrictCountries?: string[];
|
|
180
|
+
minCharLength?: number;
|
|
181
|
+
}>;
|
|
182
|
+
gtmId: z.ZodString;
|
|
183
|
+
hideWelcomeModalOnCorporate: z.ZodBoolean;
|
|
184
|
+
isPlanningOnly: z.ZodBoolean;
|
|
185
|
+
RemoveAllOutOfStock: z.ZodBoolean;
|
|
186
|
+
mainHeaderHeight: z.ZodNumber;
|
|
187
|
+
maintainCustomerJourney: z.ZodBoolean;
|
|
188
|
+
maintainCustomerPreferences: z.ZodObject<{
|
|
189
|
+
enabled: z.ZodBoolean;
|
|
190
|
+
sections: z.ZodRecord<z.ZodEnum<["marketingPreferences"]>, z.ZodArray<z.ZodString, "many">>;
|
|
191
|
+
optInMarketingPreferences: z.ZodBoolean;
|
|
192
|
+
selectOptInMarketingPreferencesStore: z.ZodBoolean;
|
|
193
|
+
}, "strip", z.ZodTypeAny, {
|
|
194
|
+
enabled?: boolean;
|
|
195
|
+
sections?: Partial<Record<"marketingPreferences", string[]>>;
|
|
196
|
+
optInMarketingPreferences?: boolean;
|
|
197
|
+
selectOptInMarketingPreferencesStore?: boolean;
|
|
198
|
+
}, {
|
|
199
|
+
enabled?: boolean;
|
|
200
|
+
sections?: Partial<Record<"marketingPreferences", string[]>>;
|
|
201
|
+
optInMarketingPreferences?: boolean;
|
|
202
|
+
selectOptInMarketingPreferencesStore?: boolean;
|
|
203
|
+
}>;
|
|
204
|
+
mapZoom: z.ZodNumber;
|
|
205
|
+
promoTemplateVersion: z.ZodNumber;
|
|
206
|
+
restrictMapPlacesResults: z.ZodObject<{
|
|
207
|
+
country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
208
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
209
|
+
route: z.ZodOptional<z.ZodString>;
|
|
210
|
+
locality: z.ZodOptional<z.ZodString>;
|
|
211
|
+
administrativeArea: z.ZodOptional<z.ZodString>;
|
|
212
|
+
fetchNearStoresSettings: z.ZodOptional<z.ZodObject<{
|
|
213
|
+
kmRange: z.ZodNumber;
|
|
214
|
+
totalTake: z.ZodNumber;
|
|
215
|
+
}, "strip", z.ZodTypeAny, {
|
|
216
|
+
kmRange?: number;
|
|
217
|
+
totalTake?: number;
|
|
218
|
+
}, {
|
|
219
|
+
kmRange?: number;
|
|
220
|
+
totalTake?: number;
|
|
221
|
+
}>>;
|
|
222
|
+
}, "strip", z.ZodTypeAny, {
|
|
223
|
+
country?: string | string[];
|
|
224
|
+
postalCode?: string;
|
|
225
|
+
route?: string;
|
|
226
|
+
locality?: string;
|
|
227
|
+
administrativeArea?: string;
|
|
228
|
+
fetchNearStoresSettings?: {
|
|
229
|
+
kmRange?: number;
|
|
230
|
+
totalTake?: number;
|
|
231
|
+
};
|
|
232
|
+
}, {
|
|
233
|
+
country?: string | string[];
|
|
234
|
+
postalCode?: string;
|
|
235
|
+
route?: string;
|
|
236
|
+
locality?: string;
|
|
237
|
+
administrativeArea?: string;
|
|
238
|
+
fetchNearStoresSettings?: {
|
|
239
|
+
kmRange?: number;
|
|
240
|
+
totalTake?: number;
|
|
241
|
+
};
|
|
242
|
+
}>;
|
|
243
|
+
retailerCountry: z.ZodUnion<[z.ZodLiteral<"us">, z.ZodLiteral<"ca">, z.ZodLiteral<"ie">, z.ZodLiteral<"au">]>;
|
|
244
|
+
retailerName: z.ZodString;
|
|
245
|
+
searchPreview: z.ZodObject<{
|
|
246
|
+
desktop: z.ZodOptional<z.ZodObject<{
|
|
247
|
+
suggestions: z.ZodBoolean;
|
|
248
|
+
products: z.ZodBoolean;
|
|
249
|
+
recipes: z.ZodBoolean;
|
|
250
|
+
}, "strip", z.ZodTypeAny, {
|
|
251
|
+
suggestions?: boolean;
|
|
252
|
+
products?: boolean;
|
|
253
|
+
recipes?: boolean;
|
|
254
|
+
}, {
|
|
255
|
+
suggestions?: boolean;
|
|
256
|
+
products?: boolean;
|
|
257
|
+
recipes?: boolean;
|
|
258
|
+
}>>;
|
|
259
|
+
mobile: z.ZodOptional<z.ZodObject<{
|
|
260
|
+
suggestions: z.ZodBoolean;
|
|
261
|
+
products: z.ZodBoolean;
|
|
262
|
+
recipes: z.ZodBoolean;
|
|
263
|
+
}, "strip", z.ZodTypeAny, {
|
|
264
|
+
suggestions?: boolean;
|
|
265
|
+
products?: boolean;
|
|
266
|
+
recipes?: boolean;
|
|
267
|
+
}, {
|
|
268
|
+
suggestions?: boolean;
|
|
269
|
+
products?: boolean;
|
|
270
|
+
recipes?: boolean;
|
|
271
|
+
}>>;
|
|
272
|
+
}, "strip", z.ZodTypeAny, {
|
|
273
|
+
mobile?: {
|
|
274
|
+
suggestions?: boolean;
|
|
275
|
+
products?: boolean;
|
|
276
|
+
recipes?: boolean;
|
|
277
|
+
};
|
|
278
|
+
desktop?: {
|
|
279
|
+
suggestions?: boolean;
|
|
280
|
+
products?: boolean;
|
|
281
|
+
recipes?: boolean;
|
|
282
|
+
};
|
|
283
|
+
}, {
|
|
284
|
+
mobile?: {
|
|
285
|
+
suggestions?: boolean;
|
|
286
|
+
products?: boolean;
|
|
287
|
+
recipes?: boolean;
|
|
288
|
+
};
|
|
289
|
+
desktop?: {
|
|
290
|
+
suggestions?: boolean;
|
|
291
|
+
products?: boolean;
|
|
292
|
+
recipes?: boolean;
|
|
293
|
+
};
|
|
294
|
+
}>;
|
|
295
|
+
subHeaderHeight: z.ZodNumber;
|
|
296
|
+
timeslotModalSettings: z.ZodObject<{
|
|
297
|
+
showOnAddToCart: z.ZodBoolean;
|
|
298
|
+
timeslotRequiredToAddToCart: z.ZodBoolean;
|
|
299
|
+
timeslotRequiredToViewCartReview: z.ZodBoolean;
|
|
300
|
+
timeslotRequiredToViewCheckout: z.ZodBoolean;
|
|
301
|
+
enableSelectToContinueText: z.ZodBoolean;
|
|
302
|
+
}, "strip", z.ZodTypeAny, {
|
|
303
|
+
showOnAddToCart?: boolean;
|
|
304
|
+
timeslotRequiredToAddToCart?: boolean;
|
|
305
|
+
timeslotRequiredToViewCartReview?: boolean;
|
|
306
|
+
timeslotRequiredToViewCheckout?: boolean;
|
|
307
|
+
enableSelectToContinueText?: boolean;
|
|
308
|
+
}, {
|
|
309
|
+
showOnAddToCart?: boolean;
|
|
310
|
+
timeslotRequiredToAddToCart?: boolean;
|
|
311
|
+
timeslotRequiredToViewCartReview?: boolean;
|
|
312
|
+
timeslotRequiredToViewCheckout?: boolean;
|
|
313
|
+
enableSelectToContinueText?: boolean;
|
|
314
|
+
}>;
|
|
315
|
+
useContentEngineV2Components: z.ZodRecord<z.ZodEnum<["Carousel" | "ContactUs" | "Freeform" | "HeroBanner" | "Image" | "ImageTextButton" | "LargePromotion" | "LayoutExtraLargeBanner2" | "PageTopperWithFullBackground" | "ProductCardStory" | "Recipe" | "Sale" | "SmallPromotion" | "ThreeBannerContainer" | "TwoBannerContainer" | "Video" | "VideoWithContent" | "ImageWithContent" | "SmallBannerWithBackgroundImage" | "SmallBannerWithSupportingImage" | "SmallCarousel" | "SmallImageWithContent"]>, z.ZodBoolean>;
|
|
316
|
+
isLegacyProductURL: z.ZodBoolean;
|
|
317
|
+
headerLinks: z.ZodObject<{
|
|
318
|
+
enabled: z.ZodBoolean;
|
|
319
|
+
dimension: z.ZodNumber;
|
|
320
|
+
}, "strip", z.ZodTypeAny, {
|
|
321
|
+
enabled?: boolean;
|
|
322
|
+
dimension?: number;
|
|
323
|
+
}, {
|
|
324
|
+
enabled?: boolean;
|
|
325
|
+
dimension?: number;
|
|
326
|
+
}>;
|
|
327
|
+
useAdsV1: z.ZodBoolean;
|
|
328
|
+
advertProductView: z.ZodBoolean;
|
|
329
|
+
showCartValueOnMobile: z.ZodBoolean;
|
|
330
|
+
scrollToTopButton: z.ZodObject<{
|
|
331
|
+
enabled: z.ZodBoolean;
|
|
332
|
+
percentOffset: z.ZodObject<{
|
|
333
|
+
right: z.ZodNumber;
|
|
334
|
+
bottom: z.ZodNumber;
|
|
335
|
+
}, "strip", z.ZodTypeAny, {
|
|
336
|
+
bottom?: number;
|
|
337
|
+
right?: number;
|
|
338
|
+
}, {
|
|
339
|
+
bottom?: number;
|
|
340
|
+
right?: number;
|
|
341
|
+
}>;
|
|
342
|
+
}, "strip", z.ZodTypeAny, {
|
|
343
|
+
enabled?: boolean;
|
|
344
|
+
percentOffset?: {
|
|
345
|
+
bottom?: number;
|
|
346
|
+
right?: number;
|
|
347
|
+
};
|
|
348
|
+
}, {
|
|
349
|
+
enabled?: boolean;
|
|
350
|
+
percentOffset?: {
|
|
351
|
+
bottom?: number;
|
|
352
|
+
right?: number;
|
|
353
|
+
};
|
|
354
|
+
}>;
|
|
355
|
+
clientRenderCoupons: z.ZodBoolean;
|
|
356
|
+
showShopAllLink: z.ZodObject<{
|
|
357
|
+
enabled: z.ZodBoolean;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
enabled?: boolean;
|
|
360
|
+
}, {
|
|
361
|
+
enabled?: boolean;
|
|
362
|
+
}>;
|
|
363
|
+
showEmptyMiniList: z.ZodBoolean;
|
|
364
|
+
}, "strip", z.ZodTypeAny, {
|
|
365
|
+
clientSideOrderModify?: boolean;
|
|
366
|
+
cookiePro?: {
|
|
367
|
+
enabled?: boolean;
|
|
368
|
+
src?: string;
|
|
369
|
+
domain?: string;
|
|
370
|
+
};
|
|
371
|
+
anonymousCart?: boolean;
|
|
372
|
+
ctaButtons?: {
|
|
373
|
+
iconAlignment?: "left" | "right";
|
|
374
|
+
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";
|
|
375
|
+
};
|
|
376
|
+
cmsLazyLoadRows?: number;
|
|
377
|
+
daysToRemainSignedIn?: number;
|
|
378
|
+
defaultCountry?: string;
|
|
379
|
+
defaultLanguage?: string;
|
|
380
|
+
defaultSearchParams?: {
|
|
381
|
+
q?: string;
|
|
382
|
+
page?: string;
|
|
383
|
+
skip?: string;
|
|
384
|
+
take?: string;
|
|
385
|
+
};
|
|
386
|
+
defaultShoppingMode?: "pickup" | "planning" | "delivery";
|
|
387
|
+
defaultStoreLocation?: {
|
|
388
|
+
latitude?: number;
|
|
389
|
+
longitude?: number;
|
|
390
|
+
};
|
|
391
|
+
defaultTabView?: "listView" | "mapView";
|
|
392
|
+
showChangeCustomerEmail?: boolean;
|
|
393
|
+
disableTprPrice?: boolean;
|
|
394
|
+
mobileViewCardLayout?: {
|
|
395
|
+
enabled?: boolean;
|
|
396
|
+
defaultView?: "List" | "Grid";
|
|
397
|
+
};
|
|
398
|
+
footerVersion?: "default" | "version2" | "version3" | "version4" | "version5" | "version6";
|
|
399
|
+
googleAutocompleteSettings?: {
|
|
400
|
+
types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
|
|
401
|
+
bounds?: {
|
|
402
|
+
east_longitude?: number;
|
|
403
|
+
north_latitude?: number;
|
|
404
|
+
south_latitude?: number;
|
|
405
|
+
west_longitude?: number;
|
|
406
|
+
};
|
|
407
|
+
strictBounds?: boolean;
|
|
408
|
+
restrictCountries?: string[];
|
|
409
|
+
minCharLength?: number;
|
|
410
|
+
};
|
|
411
|
+
gtmId?: string;
|
|
412
|
+
hideWelcomeModalOnCorporate?: boolean;
|
|
413
|
+
isPlanningOnly?: boolean;
|
|
414
|
+
RemoveAllOutOfStock?: boolean;
|
|
415
|
+
mainHeaderHeight?: number;
|
|
416
|
+
maintainCustomerJourney?: boolean;
|
|
417
|
+
maintainCustomerPreferences?: {
|
|
418
|
+
enabled?: boolean;
|
|
419
|
+
sections?: Partial<Record<"marketingPreferences", string[]>>;
|
|
420
|
+
optInMarketingPreferences?: boolean;
|
|
421
|
+
selectOptInMarketingPreferencesStore?: boolean;
|
|
422
|
+
};
|
|
423
|
+
mapZoom?: number;
|
|
424
|
+
promoTemplateVersion?: number;
|
|
425
|
+
restrictMapPlacesResults?: {
|
|
426
|
+
country?: string | string[];
|
|
427
|
+
postalCode?: string;
|
|
428
|
+
route?: string;
|
|
429
|
+
locality?: string;
|
|
430
|
+
administrativeArea?: string;
|
|
431
|
+
fetchNearStoresSettings?: {
|
|
432
|
+
kmRange?: number;
|
|
433
|
+
totalTake?: number;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
retailerCountry?: "us" | "au" | "ca" | "ie";
|
|
437
|
+
retailerName?: string;
|
|
438
|
+
searchPreview?: {
|
|
439
|
+
mobile?: {
|
|
440
|
+
suggestions?: boolean;
|
|
441
|
+
products?: boolean;
|
|
442
|
+
recipes?: boolean;
|
|
443
|
+
};
|
|
444
|
+
desktop?: {
|
|
445
|
+
suggestions?: boolean;
|
|
446
|
+
products?: boolean;
|
|
447
|
+
recipes?: boolean;
|
|
448
|
+
};
|
|
449
|
+
};
|
|
450
|
+
subHeaderHeight?: number;
|
|
451
|
+
timeslotModalSettings?: {
|
|
452
|
+
showOnAddToCart?: boolean;
|
|
453
|
+
timeslotRequiredToAddToCart?: boolean;
|
|
454
|
+
timeslotRequiredToViewCartReview?: boolean;
|
|
455
|
+
timeslotRequiredToViewCheckout?: boolean;
|
|
456
|
+
enableSelectToContinueText?: boolean;
|
|
457
|
+
};
|
|
458
|
+
useContentEngineV2Components?: Partial<Record<"Carousel" | "ContactUs" | "Freeform" | "HeroBanner" | "Image" | "ImageTextButton" | "LargePromotion" | "LayoutExtraLargeBanner2" | "PageTopperWithFullBackground" | "ProductCardStory" | "Recipe" | "Sale" | "SmallPromotion" | "ThreeBannerContainer" | "TwoBannerContainer" | "Video" | "VideoWithContent" | "ImageWithContent" | "SmallBannerWithBackgroundImage" | "SmallBannerWithSupportingImage" | "SmallCarousel" | "SmallImageWithContent", boolean>>;
|
|
459
|
+
isLegacyProductURL?: boolean;
|
|
460
|
+
headerLinks?: {
|
|
461
|
+
enabled?: boolean;
|
|
462
|
+
dimension?: number;
|
|
463
|
+
};
|
|
464
|
+
useAdsV1?: boolean;
|
|
465
|
+
advertProductView?: boolean;
|
|
466
|
+
showCartValueOnMobile?: boolean;
|
|
467
|
+
scrollToTopButton?: {
|
|
468
|
+
enabled?: boolean;
|
|
469
|
+
percentOffset?: {
|
|
470
|
+
bottom?: number;
|
|
471
|
+
right?: number;
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
clientRenderCoupons?: boolean;
|
|
475
|
+
showShopAllLink?: {
|
|
476
|
+
enabled?: boolean;
|
|
477
|
+
};
|
|
478
|
+
showEmptyMiniList?: boolean;
|
|
479
|
+
}, {
|
|
480
|
+
clientSideOrderModify?: boolean;
|
|
481
|
+
cookiePro?: {
|
|
482
|
+
enabled?: boolean;
|
|
483
|
+
src?: string;
|
|
484
|
+
domain?: string;
|
|
485
|
+
};
|
|
486
|
+
anonymousCart?: boolean;
|
|
487
|
+
ctaButtons?: {
|
|
488
|
+
iconAlignment?: "left" | "right";
|
|
489
|
+
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";
|
|
490
|
+
};
|
|
491
|
+
cmsLazyLoadRows?: number;
|
|
492
|
+
daysToRemainSignedIn?: number;
|
|
493
|
+
defaultCountry?: string;
|
|
494
|
+
defaultLanguage?: string;
|
|
495
|
+
defaultSearchParams?: {
|
|
496
|
+
q?: string;
|
|
497
|
+
page?: string;
|
|
498
|
+
skip?: string;
|
|
499
|
+
take?: string;
|
|
500
|
+
};
|
|
501
|
+
defaultShoppingMode?: "pickup" | "planning" | "delivery";
|
|
502
|
+
defaultStoreLocation?: {
|
|
503
|
+
latitude?: number;
|
|
504
|
+
longitude?: number;
|
|
505
|
+
};
|
|
506
|
+
defaultTabView?: "listView" | "mapView";
|
|
507
|
+
showChangeCustomerEmail?: boolean;
|
|
508
|
+
disableTprPrice?: boolean;
|
|
509
|
+
mobileViewCardLayout?: {
|
|
510
|
+
enabled?: boolean;
|
|
511
|
+
defaultView?: "List" | "Grid";
|
|
512
|
+
};
|
|
513
|
+
footerVersion?: "default" | "version2" | "version3" | "version4" | "version5" | "version6";
|
|
514
|
+
googleAutocompleteSettings?: {
|
|
515
|
+
types?: "address" | "geocode" | "establishment" | "(regions)" | "(cities)";
|
|
516
|
+
bounds?: {
|
|
517
|
+
east_longitude?: number;
|
|
518
|
+
north_latitude?: number;
|
|
519
|
+
south_latitude?: number;
|
|
520
|
+
west_longitude?: number;
|
|
521
|
+
};
|
|
522
|
+
strictBounds?: boolean;
|
|
523
|
+
restrictCountries?: string[];
|
|
524
|
+
minCharLength?: number;
|
|
525
|
+
};
|
|
526
|
+
gtmId?: string;
|
|
527
|
+
hideWelcomeModalOnCorporate?: boolean;
|
|
528
|
+
isPlanningOnly?: boolean;
|
|
529
|
+
RemoveAllOutOfStock?: boolean;
|
|
530
|
+
mainHeaderHeight?: number;
|
|
531
|
+
maintainCustomerJourney?: boolean;
|
|
532
|
+
maintainCustomerPreferences?: {
|
|
533
|
+
enabled?: boolean;
|
|
534
|
+
sections?: Partial<Record<"marketingPreferences", string[]>>;
|
|
535
|
+
optInMarketingPreferences?: boolean;
|
|
536
|
+
selectOptInMarketingPreferencesStore?: boolean;
|
|
537
|
+
};
|
|
538
|
+
mapZoom?: number;
|
|
539
|
+
promoTemplateVersion?: number;
|
|
540
|
+
restrictMapPlacesResults?: {
|
|
541
|
+
country?: string | string[];
|
|
542
|
+
postalCode?: string;
|
|
543
|
+
route?: string;
|
|
544
|
+
locality?: string;
|
|
545
|
+
administrativeArea?: string;
|
|
546
|
+
fetchNearStoresSettings?: {
|
|
547
|
+
kmRange?: number;
|
|
548
|
+
totalTake?: number;
|
|
549
|
+
};
|
|
550
|
+
};
|
|
551
|
+
retailerCountry?: "us" | "au" | "ca" | "ie";
|
|
552
|
+
retailerName?: string;
|
|
553
|
+
searchPreview?: {
|
|
554
|
+
mobile?: {
|
|
555
|
+
suggestions?: boolean;
|
|
556
|
+
products?: boolean;
|
|
557
|
+
recipes?: boolean;
|
|
558
|
+
};
|
|
559
|
+
desktop?: {
|
|
560
|
+
suggestions?: boolean;
|
|
561
|
+
products?: boolean;
|
|
562
|
+
recipes?: boolean;
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
subHeaderHeight?: number;
|
|
566
|
+
timeslotModalSettings?: {
|
|
567
|
+
showOnAddToCart?: boolean;
|
|
568
|
+
timeslotRequiredToAddToCart?: boolean;
|
|
569
|
+
timeslotRequiredToViewCartReview?: boolean;
|
|
570
|
+
timeslotRequiredToViewCheckout?: boolean;
|
|
571
|
+
enableSelectToContinueText?: boolean;
|
|
572
|
+
};
|
|
573
|
+
useContentEngineV2Components?: Partial<Record<"Carousel" | "ContactUs" | "Freeform" | "HeroBanner" | "Image" | "ImageTextButton" | "LargePromotion" | "LayoutExtraLargeBanner2" | "PageTopperWithFullBackground" | "ProductCardStory" | "Recipe" | "Sale" | "SmallPromotion" | "ThreeBannerContainer" | "TwoBannerContainer" | "Video" | "VideoWithContent" | "ImageWithContent" | "SmallBannerWithBackgroundImage" | "SmallBannerWithSupportingImage" | "SmallCarousel" | "SmallImageWithContent", boolean>>;
|
|
574
|
+
isLegacyProductURL?: boolean;
|
|
575
|
+
headerLinks?: {
|
|
576
|
+
enabled?: boolean;
|
|
577
|
+
dimension?: number;
|
|
578
|
+
};
|
|
579
|
+
useAdsV1?: boolean;
|
|
580
|
+
advertProductView?: boolean;
|
|
581
|
+
showCartValueOnMobile?: boolean;
|
|
582
|
+
scrollToTopButton?: {
|
|
583
|
+
enabled?: boolean;
|
|
584
|
+
percentOffset?: {
|
|
585
|
+
bottom?: number;
|
|
586
|
+
right?: number;
|
|
587
|
+
};
|
|
588
|
+
};
|
|
589
|
+
clientRenderCoupons?: boolean;
|
|
590
|
+
showShopAllLink?: {
|
|
591
|
+
enabled?: boolean;
|
|
592
|
+
};
|
|
593
|
+
showEmptyMiniList?: boolean;
|
|
594
|
+
}>;
|