@open-tender/types 0.3.4 → 0.3.6
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.
|
@@ -61,10 +61,10 @@ export interface CheckoutConfigCurbside {
|
|
|
61
61
|
title: string;
|
|
62
62
|
}
|
|
63
63
|
export interface CheckoutConfigLoyalty {
|
|
64
|
-
balance:
|
|
64
|
+
balance: Money;
|
|
65
65
|
name: string;
|
|
66
66
|
per: 5;
|
|
67
|
-
remaining:
|
|
67
|
+
remaining: Money;
|
|
68
68
|
}
|
|
69
69
|
export interface CheckoutConfigSurcharge extends OrderSurcharge {
|
|
70
70
|
label: string;
|
|
@@ -94,6 +94,7 @@ export interface ConfigBrand {
|
|
|
94
94
|
has_rewards: boolean;
|
|
95
95
|
has_sms: boolean;
|
|
96
96
|
has_thanx: boolean;
|
|
97
|
+
hide_logo: boolean;
|
|
97
98
|
logo: string;
|
|
98
99
|
logoLight: string;
|
|
99
100
|
loyalty: ConfigLoyalty;
|
|
@@ -284,6 +285,9 @@ export interface ConfigContent {
|
|
|
284
285
|
menu: {
|
|
285
286
|
background: string;
|
|
286
287
|
cartErrors: ConfigContentField;
|
|
288
|
+
displayLogo: boolean;
|
|
289
|
+
displayLogoApp: boolean;
|
|
290
|
+
displayLogoMobile: boolean;
|
|
287
291
|
displayed: MenuSections;
|
|
288
292
|
displayedMobile: MenuSections;
|
|
289
293
|
loadingMessage: string;
|
|
@@ -61,10 +61,10 @@ export interface CheckoutConfigCurbside {
|
|
|
61
61
|
title: string;
|
|
62
62
|
}
|
|
63
63
|
export interface CheckoutConfigLoyalty {
|
|
64
|
-
balance:
|
|
64
|
+
balance: Money;
|
|
65
65
|
name: string;
|
|
66
66
|
per: 5;
|
|
67
|
-
remaining:
|
|
67
|
+
remaining: Money;
|
|
68
68
|
}
|
|
69
69
|
export interface CheckoutConfigSurcharge extends OrderSurcharge {
|
|
70
70
|
label: string;
|
|
@@ -94,6 +94,7 @@ export interface ConfigBrand {
|
|
|
94
94
|
has_rewards: boolean;
|
|
95
95
|
has_sms: boolean;
|
|
96
96
|
has_thanx: boolean;
|
|
97
|
+
hide_logo: boolean;
|
|
97
98
|
logo: string;
|
|
98
99
|
logoLight: string;
|
|
99
100
|
loyalty: ConfigLoyalty;
|
|
@@ -284,6 +285,9 @@ export interface ConfigContent {
|
|
|
284
285
|
menu: {
|
|
285
286
|
background: string;
|
|
286
287
|
cartErrors: ConfigContentField;
|
|
288
|
+
displayLogo: boolean;
|
|
289
|
+
displayLogoApp: boolean;
|
|
290
|
+
displayLogoMobile: boolean;
|
|
287
291
|
displayed: MenuSections;
|
|
288
292
|
displayedMobile: MenuSections;
|
|
289
293
|
loadingMessage: string;
|
package/package.json
CHANGED