@frontegg/entitlements-javascript-commons 1.0.0-alpha.7 → 1.0.0-alpha.8
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.
|
@@ -17,9 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.NumericOperationsMapper = void 0;
|
|
18
18
|
const types_1 = require("../types");
|
|
19
19
|
const operations_1 = require("./operations");
|
|
20
|
-
__exportStar(require("./operations"), exports);
|
|
21
|
-
__exportStar(require("./sanitizers"), exports);
|
|
22
|
-
__exportStar(require("./types"), exports);
|
|
23
20
|
exports.NumericOperationsMapper = {
|
|
24
21
|
[types_1.OperationEnum.Equal]: (value) => (0, operations_1.useEqualsOperation)(value),
|
|
25
22
|
[types_1.OperationEnum.GreaterThan]: (value) => (0, operations_1.useGreaterThanOperation)(value),
|
|
@@ -28,4 +25,7 @@ exports.NumericOperationsMapper = {
|
|
|
28
25
|
[types_1.OperationEnum.LesserThanEqual]: (value) => (0, operations_1.useLesserThanEqualOperation)(value),
|
|
29
26
|
[types_1.OperationEnum.BetweenNumeric]: (value) => (0, operations_1.useBetweenNumericOperation)(value),
|
|
30
27
|
};
|
|
28
|
+
__exportStar(require("./operations"), exports);
|
|
29
|
+
__exportStar(require("./sanitizers"), exports);
|
|
30
|
+
__exportStar(require("./types"), exports);
|
|
31
31
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operations/numeric/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,oCAA2D;AAC3D,6CAOsB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operations/numeric/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,oCAA2D;AAC3D,6CAOsB;AAGT,QAAA,uBAAuB,GAAqB;IACvD,CAAC,qBAAa,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,+BAAkB,EAAC,KAAsC,CAAC;IAC5F,CAAC,qBAAa,CAAC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,oCAAuB,EAAC,KAAsC,CAAC;IACvG,CAAC,qBAAa,CAAC,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,yCAA4B,EAAC,KAAsC,CAAC;IACjH,CAAC,qBAAa,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,mCAAsB,EAAC,KAAsC,CAAC;IACrG,CAAC,qBAAa,CAAC,eAAe,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,wCAA2B,EAAC,KAAsC,CAAC;IAC/G,CAAC,qBAAa,CAAC,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,uCAA0B,EAAC,KAAuC,CAAC;CAC/G,CAAC;AAEF,+CAA6B;AAC7B,+CAA6B;AAC7B,0CAAwB"}
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.0.0-alpha.8](https://github.com/frontegg/entitlements-javascript-commons/compare/v-1.0.0-alpha.7...v-1.0.0-alpha.8) (2023-10-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix export order ([#16](https://github.com/frontegg/entitlements-javascript-commons/issues/16)) ([d7fafa4](https://github.com/frontegg/entitlements-javascript-commons/commit/d7fafa427e5f99fffe541f9fa78fd9b7507045c3))
|
|
7
|
+
|
|
1
8
|
# [1.0.0-alpha.7](https://github.com/frontegg/entitlements-javascript-commons/compare/v-1.0.0-alpha.6...v-1.0.0-alpha.7) (2023-10-11)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -9,10 +9,6 @@ import {
|
|
|
9
9
|
} from './operations';
|
|
10
10
|
import { BetweenNumericOperationPayload, SingleNumericOperationPayload } from './types';
|
|
11
11
|
|
|
12
|
-
export * from './operations';
|
|
13
|
-
export * from './sanitizers';
|
|
14
|
-
export * from './types';
|
|
15
|
-
|
|
16
12
|
export const NumericOperationsMapper: OperationsMapper = {
|
|
17
13
|
[OperationEnum.Equal]: (value) => useEqualsOperation(value as SingleNumericOperationPayload),
|
|
18
14
|
[OperationEnum.GreaterThan]: (value) => useGreaterThanOperation(value as SingleNumericOperationPayload),
|
|
@@ -21,3 +17,7 @@ export const NumericOperationsMapper: OperationsMapper = {
|
|
|
21
17
|
[OperationEnum.LesserThanEqual]: (value) => useLesserThanEqualOperation(value as SingleNumericOperationPayload),
|
|
22
18
|
[OperationEnum.BetweenNumeric]: (value) => useBetweenNumericOperation(value as BetweenNumericOperationPayload),
|
|
23
19
|
};
|
|
20
|
+
|
|
21
|
+
export * from './operations';
|
|
22
|
+
export * from './sanitizers';
|
|
23
|
+
export * from './types';
|