@briza/illogical 1.7.4 → 1.7.5

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/changelog.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # illogical changelog
2
2
 
3
+ ## 1.7.5
4
+
5
+ - Exported type that was missing
6
+
7
+ ## 1.7.4
8
+
9
+ - Upgrade dependencies
10
+ - Deleted removed types
11
+ - Exported types that were missing
12
+
3
13
  ## 1.7.3
4
14
 
5
15
  - Updating tsconfig and other dependencies.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@briza/illogical",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "A micro conditional javascript engine used to parse the raw logical and comparison expressions, evaluate the expression in the given data context, and provide access to a text form of the given expressions.",
5
5
  "main": "./lib/illogical.js",
6
6
  "module": "./lib/illogical.esm.js",
package/types/index.d.ts CHANGED
@@ -30,7 +30,7 @@ import { ExpressionInput, Input } from './parser';
30
30
  import { Options } from './parser/options';
31
31
  export { defaultOptions } from './parser/options';
32
32
  export { isEvaluable, OPERATOR_EQ, OPERATOR_NE, OPERATOR_GT, OPERATOR_GE, OPERATOR_LT, OPERATOR_LE, OPERATOR_IN, OPERATOR_NOT_IN, OPERATOR_PREFIX, OPERATOR_SUFFIX, OPERATOR_OVERLAP, OPERATOR_UNDEFINED, OPERATOR_PRESENT, OPERATOR_AND, OPERATOR_OR, OPERATOR_NOR, OPERATOR_XOR, OPERATOR_NOT, OPERATOR_DIVIDE, OPERATOR_MULTIPLY, OPERATOR_SUBTRACT, OPERATOR_SUM, };
33
- export type { Context, ExpressionInput };
33
+ export type { Context, Evaluable, ExpressionInput };
34
34
  /**
35
35
  * Condition engine
36
36
  */