@open-tender/types 0.4.122 → 0.4.123
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.
|
@@ -28,6 +28,7 @@ export interface PosTerminal {
|
|
|
28
28
|
print_kds: boolean;
|
|
29
29
|
print_receipt: PosTerminalPrintReceipt;
|
|
30
30
|
printers: PosPrinters;
|
|
31
|
+
disable_kiosk_until: string | null;
|
|
31
32
|
}
|
|
32
33
|
export declare type PosTerminals = PosTerminal[];
|
|
33
34
|
export declare type PrepStationPrepType = 'ASSEMBLY' | 'EXPO';
|
|
@@ -127,7 +127,6 @@ export interface Store {
|
|
|
127
127
|
walkin_prep_minutes: number;
|
|
128
128
|
warning_minutes: number;
|
|
129
129
|
week_start_day: Weekday;
|
|
130
|
-
disable_kiosk_until: ISOString | null;
|
|
131
130
|
display_category_nav_page: boolean;
|
|
132
131
|
guest_name_required: boolean;
|
|
133
132
|
menu_type: MenuType;
|
|
@@ -141,5 +140,6 @@ export interface Store {
|
|
|
141
140
|
display_default_prep_type: boolean;
|
|
142
141
|
display_category_image: boolean;
|
|
143
142
|
display_descriptions: boolean;
|
|
143
|
+
disable_kiosk_message: ISOString | null;
|
|
144
144
|
}
|
|
145
145
|
export declare type Stores = Store[];
|
|
@@ -28,6 +28,7 @@ export interface PosTerminal {
|
|
|
28
28
|
print_kds: boolean;
|
|
29
29
|
print_receipt: PosTerminalPrintReceipt;
|
|
30
30
|
printers: PosPrinters;
|
|
31
|
+
disable_kiosk_until: string | null;
|
|
31
32
|
}
|
|
32
33
|
export declare type PosTerminals = PosTerminal[];
|
|
33
34
|
export declare type PrepStationPrepType = 'ASSEMBLY' | 'EXPO';
|
|
@@ -127,7 +127,6 @@ export interface Store {
|
|
|
127
127
|
walkin_prep_minutes: number;
|
|
128
128
|
warning_minutes: number;
|
|
129
129
|
week_start_day: Weekday;
|
|
130
|
-
disable_kiosk_until: ISOString | null;
|
|
131
130
|
display_category_nav_page: boolean;
|
|
132
131
|
guest_name_required: boolean;
|
|
133
132
|
menu_type: MenuType;
|
|
@@ -141,5 +140,6 @@ export interface Store {
|
|
|
141
140
|
display_default_prep_type: boolean;
|
|
142
141
|
display_category_image: boolean;
|
|
143
142
|
display_descriptions: boolean;
|
|
143
|
+
disable_kiosk_message: ISOString | null;
|
|
144
144
|
}
|
|
145
145
|
export declare type Stores = Store[];
|
package/package.json
CHANGED