@open-tender/types 0.4.147 → 0.4.149

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.
@@ -230,6 +230,7 @@ export interface ConfigContent {
230
230
  title: string;
231
231
  videoUrl: string;
232
232
  videoUrlMobile: string;
233
+ useAppHomeHeading: boolean;
233
234
  };
234
235
  accountHistory: ConfigContentField;
235
236
  accountSettings: ConfigContentField;
@@ -328,6 +329,7 @@ export interface ConfigContent {
328
329
  title: string;
329
330
  videoUrl: string;
330
331
  videoUrlMobile: string;
332
+ useAppHomeHeading: boolean;
331
333
  };
332
334
  home: ConfigContentField & {
333
335
  background: string;
@@ -23,6 +23,11 @@ export interface ThemeColorsBase extends Record<string, string> {
23
23
  }
24
24
  export interface ThemeBackgroundColors extends ThemeColorsBase {
25
25
  highlight: string;
26
+ hamburgerMenu: string;
27
+ home: string;
28
+ checkout: string;
29
+ tabNavigator: string;
30
+ homeIcon: string;
26
31
  }
27
32
  export interface ThemeBorder extends Record<string, string> {
28
33
  color: string;
@@ -170,6 +175,7 @@ export interface ThemeCategory extends Record<string, string | number | boolean>
170
175
  imageRatio: number;
171
176
  imageScale: number;
172
177
  imageScaleHover: number;
178
+ imageBoxShadow: string;
173
179
  justifyContent: ThemeJustifyContent;
174
180
  lineHeight: string;
175
181
  lineMargin: string;
@@ -713,7 +719,7 @@ export interface ThemeLoyaltyRewardCard {
713
719
  export interface ThemeLoyalty {
714
720
  accountWidget: ThemeLoyaltyAccountWidget;
715
721
  pointsShopCard: ThemeLoyaltyPointsShopCard;
716
- rewardCard: ThemeLoyaltyRewardCard;
722
+ rewardsCard: ThemeLoyaltyRewardCard;
717
723
  }
718
724
  export interface Theme {
719
725
  alert: ThemeAlert;
@@ -230,6 +230,7 @@ export interface ConfigContent {
230
230
  title: string;
231
231
  videoUrl: string;
232
232
  videoUrlMobile: string;
233
+ useAppHomeHeading: boolean;
233
234
  };
234
235
  accountHistory: ConfigContentField;
235
236
  accountSettings: ConfigContentField;
@@ -328,6 +329,7 @@ export interface ConfigContent {
328
329
  title: string;
329
330
  videoUrl: string;
330
331
  videoUrlMobile: string;
332
+ useAppHomeHeading: boolean;
331
333
  };
332
334
  home: ConfigContentField & {
333
335
  background: string;
@@ -23,6 +23,11 @@ export interface ThemeColorsBase extends Record<string, string> {
23
23
  }
24
24
  export interface ThemeBackgroundColors extends ThemeColorsBase {
25
25
  highlight: string;
26
+ hamburgerMenu: string;
27
+ home: string;
28
+ checkout: string;
29
+ tabNavigator: string;
30
+ homeIcon: string;
26
31
  }
27
32
  export interface ThemeBorder extends Record<string, string> {
28
33
  color: string;
@@ -170,6 +175,7 @@ export interface ThemeCategory extends Record<string, string | number | boolean>
170
175
  imageRatio: number;
171
176
  imageScale: number;
172
177
  imageScaleHover: number;
178
+ imageBoxShadow: string;
173
179
  justifyContent: ThemeJustifyContent;
174
180
  lineHeight: string;
175
181
  lineMargin: string;
@@ -713,7 +719,7 @@ export interface ThemeLoyaltyRewardCard {
713
719
  export interface ThemeLoyalty {
714
720
  accountWidget: ThemeLoyaltyAccountWidget;
715
721
  pointsShopCard: ThemeLoyaltyPointsShopCard;
716
- rewardCard: ThemeLoyaltyRewardCard;
722
+ rewardsCard: ThemeLoyaltyRewardCard;
717
723
  }
718
724
  export interface Theme {
719
725
  alert: ThemeAlert;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.147",
3
+ "version": "0.4.149",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",