@tagsamurai/gsts-api-services 1.0.1-alpha.14 → 1.0.1-alpha.16
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.
- package/package.json +1 -1
- package/src/dto/tag.dto.d.ts +2 -2
- package/src/types/tag.type.d.ts +8 -1
package/package.json
CHANGED
package/src/dto/tag.dto.d.ts
CHANGED
package/src/types/tag.type.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type TAGType = 'rfid' | 'nfc';
|
|
1
|
+
export type TAGType = 'rfid' | 'nfc' | 'qr';
|
|
2
2
|
export type TAGTabType = 'all' | 'paired' | 'not-paired' | 'combine-tag';
|
|
3
3
|
export type ApplicationModule = 'Settings Portal' | 'Fixed Asset' | 'Supply Asset';
|
|
4
4
|
export interface TAGCountType {
|
|
@@ -19,3 +19,10 @@ export interface TAGDataType {
|
|
|
19
19
|
status: 'Available' | 'Paired' | 'Damaged/Missing';
|
|
20
20
|
pairedIn: ApplicationModule;
|
|
21
21
|
}
|
|
22
|
+
export interface TAGInfomartion {
|
|
23
|
+
_id: '662f63b17adde9b58b0eb152';
|
|
24
|
+
rfidCode: 'E*40B105';
|
|
25
|
+
nfcCode: 'B*EASD';
|
|
26
|
+
qrCode: 'C*EASDF';
|
|
27
|
+
module: 'Fixed Asset';
|
|
28
|
+
}
|