@tagsamurai/gsts-api-services 2.0.1-alpha.25 → 2.0.1-alpha.27

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": "2.0.1-alpha.25",
3
+ "version": "2.0.1-alpha.27",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -19,6 +19,7 @@ export type FilterOptions = {
19
19
  tagTypeOptions?: MultiSelectOption[];
20
20
  rfidSkuOptions?: MultiSelectOption[];
21
21
  nfcSkuOptions?: MultiSelectOption[];
22
+ lastScannedOptions?: MultiSelectOption[];
22
23
  actionOptions?: MultiSelectOption[];
23
24
  objectNameOptions?: MultiSelectOption[];
24
25
  };
@@ -78,8 +78,6 @@ export interface DeleteHardware {
78
78
  export interface PutEditReaderGroup {
79
79
  fixedAssetGroup?: string;
80
80
  supplyAssetGroup?: string;
81
- receivingFixedAssetGroup?: string[];
82
- receivingSupplyAssetGroup?: string[];
83
81
  }
84
82
  export interface PutEditIotReader {
85
83
  antennaPower: number[];
@@ -110,7 +108,7 @@ export interface SmartFixedReaderGroup {
110
108
  supplyAsset?: string;
111
109
  }
112
110
  export interface PutEditAntennaGroup {
113
- group: Omit<PutEditReaderGroup, 'receivingFixedAssetGroup' | 'receivingSupplyAssetGroup'>[];
111
+ group: PutEditReaderGroup[];
114
112
  }
115
113
  export interface PutEditAntennaPower {
116
114
  power: number[];