@open-tender/types 0.4.55 → 0.4.56
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.
|
@@ -15,6 +15,7 @@ export interface PosScanner {
|
|
|
15
15
|
}
|
|
16
16
|
export declare type PosScanners = PosScanner[];
|
|
17
17
|
export declare type PosTerminalPrintReceipt = 'never' | 'always' | 'prompt';
|
|
18
|
+
export declare type PosScannerType = 'NONE' | 'USB' | 'CAMERA' | 'MORPHSTICK';
|
|
18
19
|
export interface PosTerminal {
|
|
19
20
|
description: string;
|
|
20
21
|
name: string;
|
|
@@ -22,6 +23,7 @@ export interface PosTerminal {
|
|
|
22
23
|
pos_printer_v2_id: number | null;
|
|
23
24
|
pos_scanner: PosScanner;
|
|
24
25
|
pos_scanner_id: number | null;
|
|
26
|
+
pos_scanner_type: PosScannerType;
|
|
25
27
|
pos_terminal_id: number;
|
|
26
28
|
print_kds: boolean;
|
|
27
29
|
print_receipt: PosTerminalPrintReceipt;
|
|
@@ -15,6 +15,7 @@ export interface PosScanner {
|
|
|
15
15
|
}
|
|
16
16
|
export declare type PosScanners = PosScanner[];
|
|
17
17
|
export declare type PosTerminalPrintReceipt = 'never' | 'always' | 'prompt';
|
|
18
|
+
export declare type PosScannerType = 'NONE' | 'USB' | 'CAMERA' | 'MORPHSTICK';
|
|
18
19
|
export interface PosTerminal {
|
|
19
20
|
description: string;
|
|
20
21
|
name: string;
|
|
@@ -22,6 +23,7 @@ export interface PosTerminal {
|
|
|
22
23
|
pos_printer_v2_id: number | null;
|
|
23
24
|
pos_scanner: PosScanner;
|
|
24
25
|
pos_scanner_id: number | null;
|
|
26
|
+
pos_scanner_type: PosScannerType;
|
|
25
27
|
pos_terminal_id: number;
|
|
26
28
|
print_kds: boolean;
|
|
27
29
|
print_receipt: PosTerminalPrintReceipt;
|
package/package.json
CHANGED