@thryveai/theme-interfaces 2.8.42 → 2.8.44
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 +274 -193
- package/dist/JSONSchemas/index.js +613 -466
- package/dist/interfaces/default-theme.interface.d.ts +17 -0
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -0
- package/dist/storefront/commonSharedSettings.js +1 -0
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSharedSettings.js +1 -0
- package/dist/storefront/defaultThemeStorefront.js +16 -0
- package/package.json +36 -36
|
@@ -249,6 +249,7 @@ export interface IDefaultThemeInterface {
|
|
|
249
249
|
input: ILoyaltyCardInput;
|
|
250
250
|
infoList: ILoyaltyCardInfoList;
|
|
251
251
|
};
|
|
252
|
+
loyaltyMembersPrice: ILoyaltyMembersPrice;
|
|
252
253
|
promoBadges: {
|
|
253
254
|
backgroundColor: {
|
|
254
255
|
promotion: string;
|
|
@@ -869,6 +870,22 @@ export interface ITimeSlot {
|
|
|
869
870
|
fontWeight: ITimeSlotStateMap<ITimeSlotVarType<IFontWeights>>;
|
|
870
871
|
};
|
|
871
872
|
}
|
|
873
|
+
export interface ILoyaltyMembersPrice {
|
|
874
|
+
label: {
|
|
875
|
+
backgroundColor: string;
|
|
876
|
+
color: string;
|
|
877
|
+
fontWeight: IFontWeights;
|
|
878
|
+
};
|
|
879
|
+
price: {
|
|
880
|
+
backgroundColor: string;
|
|
881
|
+
color: string;
|
|
882
|
+
fontWeight: IFontWeights;
|
|
883
|
+
};
|
|
884
|
+
unitPrice: {
|
|
885
|
+
color: string;
|
|
886
|
+
fontWeight: IFontWeights;
|
|
887
|
+
};
|
|
888
|
+
}
|
|
872
889
|
export declare type DefaultImagesForSchema = DeepPartial<IDefaultThemeImages>;
|
|
873
890
|
export declare type DefaultThemeForSchema = DeepPartial<IDefaultThemeInterface>;
|
|
874
891
|
export {};
|
|
@@ -10,6 +10,7 @@ export interface ISharedSettings {
|
|
|
10
10
|
export interface ISharedFeatures {
|
|
11
11
|
recommendedSubstitutions: IRecommendedSubstitutions;
|
|
12
12
|
multilingual: boolean;
|
|
13
|
+
attendedDeliveryDefaultValue: boolean;
|
|
13
14
|
specialRequestItems: ISpecialRequestItems;
|
|
14
15
|
couponGallery: ICouponGallery;
|
|
15
16
|
flyerConfiguration: IFlyerConfiguration | null;
|