@omniumretail/shared-resources 0.1.55 → 0.1.56

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": "@omniumretail/shared-resources",
3
- "version": "0.1.55",
3
+ "version": "0.1.56",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
@@ -8,10 +8,10 @@ export interface RfidQueryHookProps extends UseQueryOptions<ResponseList<"Barcod
8
8
 
9
9
  export const getRfidQueryHook = ({ delay, ...options }: RfidQueryHookProps) => {
10
10
  return useQuery(
11
- ['ASTT_RFID', delay],
11
+ ['ASTT_RFID', delay, options],
12
12
  () => get<ResponseList<"Barcodes", Rfid>>('/ASTT/RFID', {
13
13
  pDelay: delay|| 3,
14
- options
15
14
  }),
15
+ options
16
16
  );
17
17
  }