@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagsamurai/gsts-api-services",
3
- "version": "1.0.1-alpha.14",
3
+ "version": "1.0.1-alpha.16",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -38,6 +38,6 @@ export interface PUTAuditTAGBody {
38
38
  }
39
39
  export interface PUTAllocateTAGBody {
40
40
  ids: string[];
41
- group: number;
42
- module: ApplicationModule;
41
+ group?: number;
42
+ module?: ApplicationModule;
43
43
  }
@@ -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
+ }