@nomalism-com/types 0.33.81 → 0.33.82
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.
|
@@ -9,14 +9,9 @@ export type IFindDetailedResponse = Entity & {
|
|
|
9
9
|
};
|
|
10
10
|
export type IPrinterData = Omit<Printer, 'id' | 'npc_id' | 'created_at' | 'updated_at'>;
|
|
11
11
|
export type IUpdateRequest = Omit<IPrinterData, 'connected' | 'device_os_name'>;
|
|
12
|
-
export interface IPrinter {
|
|
13
|
-
device_os_name: string;
|
|
14
|
-
name: string;
|
|
15
|
-
data?: IPrinterData;
|
|
16
|
-
}
|
|
17
12
|
export interface IPrinters {
|
|
18
|
-
printers_a4:
|
|
19
|
-
printers_pos:
|
|
13
|
+
printers_a4: IPrinterData[];
|
|
14
|
+
printers_pos: IPrinterData[];
|
|
20
15
|
}
|
|
21
16
|
export interface IGetOrSetPrintersRequest extends IPrinters {
|
|
22
17
|
computer_id: string;
|