@open-tender/types 0.4.65 → 0.4.67
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.
|
@@ -6,10 +6,11 @@ export interface Dimensions {
|
|
|
6
6
|
export declare type KioskContent = Record<string, unknown>;
|
|
7
7
|
export declare type KioskStyles = Record<string, Record<string, string | number>>;
|
|
8
8
|
export interface KioskBrand {
|
|
9
|
+
brand: string;
|
|
9
10
|
email: string;
|
|
10
11
|
logo: string;
|
|
11
12
|
logoLight: string;
|
|
12
|
-
|
|
13
|
+
webAppUrl: string;
|
|
13
14
|
}
|
|
14
15
|
export interface KioskDisplaySettings {
|
|
15
16
|
hasCustomize: boolean;
|
|
@@ -52,6 +52,10 @@ export interface StoreMessage {
|
|
|
52
52
|
message_url: string | null;
|
|
53
53
|
is_active: boolean;
|
|
54
54
|
}
|
|
55
|
+
export interface StoreGratuity {
|
|
56
|
+
default_gratuity_percentage: number;
|
|
57
|
+
percentage_options: number[];
|
|
58
|
+
}
|
|
55
59
|
export interface Store {
|
|
56
60
|
address: StoreAddress;
|
|
57
61
|
alert_minutes: number;
|
|
@@ -88,6 +92,7 @@ export interface Store {
|
|
|
88
92
|
display_upsells_item: boolean;
|
|
89
93
|
done_on_print: boolean;
|
|
90
94
|
end_of_day: TimeString;
|
|
95
|
+
gratuity: StoreGratuity;
|
|
91
96
|
greeting: string;
|
|
92
97
|
has_loyalty: boolean;
|
|
93
98
|
hide_default_mods: boolean;
|
|
@@ -6,10 +6,11 @@ export interface Dimensions {
|
|
|
6
6
|
export declare type KioskContent = Record<string, unknown>;
|
|
7
7
|
export declare type KioskStyles = Record<string, Record<string, string | number>>;
|
|
8
8
|
export interface KioskBrand {
|
|
9
|
+
brand: string;
|
|
9
10
|
email: string;
|
|
10
11
|
logo: string;
|
|
11
12
|
logoLight: string;
|
|
12
|
-
|
|
13
|
+
webAppUrl: string;
|
|
13
14
|
}
|
|
14
15
|
export interface KioskDisplaySettings {
|
|
15
16
|
hasCustomize: boolean;
|
|
@@ -52,6 +52,10 @@ export interface StoreMessage {
|
|
|
52
52
|
message_url: string | null;
|
|
53
53
|
is_active: boolean;
|
|
54
54
|
}
|
|
55
|
+
export interface StoreGratuity {
|
|
56
|
+
default_gratuity_percentage: number;
|
|
57
|
+
percentage_options: number[];
|
|
58
|
+
}
|
|
55
59
|
export interface Store {
|
|
56
60
|
address: StoreAddress;
|
|
57
61
|
alert_minutes: number;
|
|
@@ -88,6 +92,7 @@ export interface Store {
|
|
|
88
92
|
display_upsells_item: boolean;
|
|
89
93
|
done_on_print: boolean;
|
|
90
94
|
end_of_day: TimeString;
|
|
95
|
+
gratuity: StoreGratuity;
|
|
91
96
|
greeting: string;
|
|
92
97
|
has_loyalty: boolean;
|
|
93
98
|
hide_default_mods: boolean;
|
package/package.json
CHANGED