tsv2-library 0.3.36 → 0.3.38

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.
@@ -21,6 +21,19 @@ export type Device = {
21
21
  qrScan: boolean;
22
22
  };
23
23
 
24
+ export type RegisteredDevice = {
25
+ _id: string;
26
+ imageSmall: string;
27
+ imageBig: string;
28
+ serialNumber: string;
29
+ status: string;
30
+ lastReportDate: string;
31
+ createdAt: string;
32
+ updatedAt: string;
33
+ group: null;
34
+ name: string;
35
+ };
36
+
24
37
  export type DeviceList = Device[];
25
38
 
26
39
  export interface ButtonScanProps extends TSButtonProps {
@@ -0,0 +1,5 @@
1
+ import { AxiosResponse } from 'axios';
2
+ declare const DeviceIOTServices: {
3
+ getReader: (serialNumber: string[]) => Promise<AxiosResponse>;
4
+ };
5
+ export default DeviceIOTServices;