@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.
@@ -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;
@@ -7,6 +7,7 @@ var CommonSharedSettingsConfig = {
7
7
  },
8
8
  features: {
9
9
  multilingual: false,
10
+ attendedDeliveryDefaultValue: false,
10
11
  recommendedSubstitutions: {
11
12
  enable: false,
12
13
  search: { enable: false },