@thryveai/theme-interfaces 2.8.26 → 2.8.28
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/JSONSchemas/index.d.ts +61 -31
- package/dist/JSONSchemas/index.js +113 -83
- package/dist/interfaces/retailer-settings.interfaces.d.ts +10 -0
- package/dist/storefront/commonSettingsStorefront.js +5 -0
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSettingsStorefront.js +5 -0
- package/package.json +1 -1
|
@@ -186,6 +186,8 @@ export interface IFlippConfigV2 {
|
|
|
186
186
|
version: 2;
|
|
187
187
|
zoom: number;
|
|
188
188
|
excludeFlyer?: string;
|
|
189
|
+
configUrl?: string;
|
|
190
|
+
mibUrl?: string;
|
|
189
191
|
}
|
|
190
192
|
export interface INewFlippConfig {
|
|
191
193
|
accessToken: string;
|
|
@@ -198,6 +200,8 @@ export interface INewFlippConfig {
|
|
|
198
200
|
tabletZoom: number;
|
|
199
201
|
mobileZoom: number;
|
|
200
202
|
excludeFlyer?: string;
|
|
203
|
+
configUrl?: string;
|
|
204
|
+
mibUrl?: string;
|
|
201
205
|
}
|
|
202
206
|
export declare type IFlippScriptUrls = "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
|
|
203
207
|
export interface IRedPepperConfig {
|
|
@@ -455,6 +459,11 @@ export interface ICookiePro {
|
|
|
455
459
|
src: string;
|
|
456
460
|
domain: string;
|
|
457
461
|
}
|
|
462
|
+
interface ICategoryDocumentTitle {
|
|
463
|
+
includeBannerTitle: boolean;
|
|
464
|
+
categoryLevels: number;
|
|
465
|
+
delimiter: string;
|
|
466
|
+
}
|
|
458
467
|
export interface ISiteSettingsV2 {
|
|
459
468
|
clientSideOrderModify: boolean;
|
|
460
469
|
cookiePro: ICookiePro;
|
|
@@ -501,6 +510,7 @@ export interface ISiteSettingsV2 {
|
|
|
501
510
|
showEmptyMiniList: boolean;
|
|
502
511
|
preserveStore: IPreserveStore;
|
|
503
512
|
carousel: ILayoutCarousel;
|
|
513
|
+
categoryDocumentTitle: ICategoryDocumentTitle;
|
|
504
514
|
}
|
|
505
515
|
export interface IHeaderLinksLayout {
|
|
506
516
|
enabled: boolean;
|