elemento-alpha-tools 1.2.27 → 1.2.28

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.
@@ -18,7 +18,7 @@ export interface IOptimizationSearchDetails {
18
18
  userId?: number;
19
19
  businessId?: number;
20
20
  typeId?: number;
21
- statusId?: number;
21
+ statusId?: number | number[];
22
22
  timestamp?: number;
23
23
  settings?: object;
24
24
  details?: object;
@@ -11,7 +11,7 @@ class PortfolioSpace {
11
11
  }
12
12
  equals(one, two) {
13
13
  for (let i = 0; i < one.length; i++)
14
- if (Math.abs(one[i] - two[i]) > 1e-4)
14
+ if (Math.abs(one[i] - two[i]) > 1e-3)
15
15
  return false;
16
16
  return true;
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elemento-alpha-tools",
3
- "version": "1.2.27",
3
+ "version": "1.2.28",
4
4
  "description": "Librería para los servicios de elemento alpha",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",