@thryveai/theme-interfaces 2.8.13 → 2.8.15
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 +120 -84
- package/dist/interfaces/retailer-settings.interfaces.d.ts +4 -0
- package/dist/interfaces/shared-settings.interfaces.d.ts +5 -1
- package/dist/storefront/commonSharedSettings.js +5 -2
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSharedSettings.js +5 -2
- package/package.json +1 -1
|
@@ -194,12 +194,16 @@ export interface INewFlippConfig {
|
|
|
194
194
|
retailer: string;
|
|
195
195
|
slideOutView: boolean;
|
|
196
196
|
zoom: number;
|
|
197
|
+
tabletZoom: number;
|
|
198
|
+
mobileZoom: number;
|
|
197
199
|
excludeFlyer?: string;
|
|
198
200
|
}
|
|
199
201
|
export declare type IFlippScriptUrls = "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
|
|
200
202
|
export interface IRedPepperConfig {
|
|
201
203
|
locale: string;
|
|
202
204
|
zoom: number;
|
|
205
|
+
tabletZoom: number;
|
|
206
|
+
mobileZoom: number;
|
|
203
207
|
clientId: string;
|
|
204
208
|
clientUrl: string;
|
|
205
209
|
storeValue?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAdminOnlyV2, IFlippConfig, IFlippConfigV2, IFlyerProviders, IRedPepperConfig } from "./retailer-settings.interfaces";
|
|
2
2
|
import { IDateFormat } from "./theme.interfaces";
|
|
3
|
-
export declare type Format =
|
|
3
|
+
export declare type Format = "UPC" | "CODE128" | "EAN13" | "CODE39" | "CODE128A" | "CODE128B" | "CODE128C" | "EAN8" | "EAN5" | "EAN2" | "UPCE" | "ITF14" | "ITF" | "MSI" | "MSI10" | "MSI11" | "MSI1010" | "MSI1110" | "pharmacode" | "codabar";
|
|
4
4
|
export interface ISharedSettings {
|
|
5
5
|
features: ISharedFeatures;
|
|
6
6
|
checkout: ISharedCheckout;
|
|
@@ -15,6 +15,7 @@ export interface ISharedFeatures {
|
|
|
15
15
|
flyerConfiguration: IFlyerConfiguration | null;
|
|
16
16
|
ageVerification: IAgeVerification;
|
|
17
17
|
loyalty: ILoyalty;
|
|
18
|
+
idp: IIdp;
|
|
18
19
|
}
|
|
19
20
|
export interface ISharedCheckout {
|
|
20
21
|
preserveOrderNote: IOrderInstructions;
|
|
@@ -64,4 +65,7 @@ export interface IAgeVerification {
|
|
|
64
65
|
export interface ILoyalty {
|
|
65
66
|
barcodeFormat: Format;
|
|
66
67
|
}
|
|
68
|
+
interface IIdp {
|
|
69
|
+
organization: string;
|
|
70
|
+
}
|
|
67
71
|
export {};
|