@legalplace/conditions-runner 1.1.25 → 1.2.0

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.2.0](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/conditions-runner@1.1.25...@legalplace/conditions-runner@1.2.0) (2022-12-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * improving eslint config, adding basic config (without react) and linting all api[#7212](https://git.legalplace.eu/legalplace/monorepo/issues/7212) ([e4f9168](https://git.legalplace.eu/legalplace/monorepo/commits/e4f9168048ce0b5d8315aa918ff9cde3f03644c2))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.1.25](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/conditions-runner@1.1.24...@legalplace/conditions-runner@1.1.25) (2022-12-26)
7
18
 
8
19
  **Note:** Version bump only for package @legalplace/conditions-runner
@@ -1,7 +1,7 @@
1
- import { Types } from "@legalplace/referencesparser";
2
- import { ConditionV3 } from "@legalplace/models-v3-types";
1
+ import type { Types } from "@legalplace/referencesparser";
2
+ import type { ConditionV3 } from "@legalplace/models-v3-types";
3
3
  import type InputsType from "@legalplace/types/dist/inputs";
4
- import { ConditionDataMap } from "./types/conditions.d";
4
+ import type { ConditionDataMap } from "./types/conditions.d";
5
5
  declare class ConditionsRunner {
6
6
  private references;
7
7
  private ovc;
@@ -1,7 +1,7 @@
1
- import { Types } from "@legalplace/referencesparser";
1
+ import type { Types } from "@legalplace/referencesparser";
2
2
  import type InputsType from "@legalplace/types/dist/inputs";
3
- import ConditionsRunner from "./ConditionsRunner";
4
- import { ConditionData, ConditionDataMap } from "./types/conditions.d";
3
+ import type ConditionsRunner from "./ConditionsRunner";
4
+ import type { ConditionData, ConditionDataMap } from "./types/conditions.d";
5
5
  declare class DataPopulator {
6
6
  private references;
7
7
  private ovc;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/conditions-runner",
3
- "version": "1.1.25",
3
+ "version": "1.2.0",
4
4
  "description": "Package containing method to execute conditions",
5
5
  "license": "MIT",
6
6
  "main": "dist/ConditionsRunner.js",
@@ -26,7 +26,7 @@
26
26
  "@legalplace/referencesparser": "^1.7.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@legalplace/types": "^1.8.2"
29
+ "@legalplace/types": "^1.8.3"
30
30
  },
31
- "gitHead": "3d35bf3433a95dd7b1de71d7ea1dd59cc4400c45"
31
+ "gitHead": "9c632b92011012db9b5a466b608fcbcbd5401890"
32
32
  }
@@ -1,10 +1,10 @@
1
1
  /* eslint-disable max-len */
2
2
  import LpLogic from "@legalplace/lplogic";
3
- import { Types } from "@legalplace/referencesparser";
4
- import { ConditionV3 } from "@legalplace/models-v3-types";
3
+ import type { Types } from "@legalplace/referencesparser";
4
+ import type { ConditionV3 } from "@legalplace/models-v3-types";
5
5
  import type InputsType from "@legalplace/types/dist/inputs";
6
6
  import DataPopulator from "./DataPopulator";
7
- import { ConditionDataMap } from "./types/conditions.d";
7
+ import type { ConditionDataMap } from "./types/conditions.d";
8
8
 
9
9
  class ConditionsRunner {
10
10
  private references: Types.ReferencesType;
@@ -1,7 +1,7 @@
1
- import { Types } from "@legalplace/referencesparser";
1
+ import type { Types } from "@legalplace/referencesparser";
2
2
  import type InputsType from "@legalplace/types/dist/inputs";
3
- import ConditionsRunner from "./ConditionsRunner";
4
- import { ConditionData, ConditionDataMap } from "./types/conditions.d";
3
+ import type ConditionsRunner from "./ConditionsRunner";
4
+ import type { ConditionData, ConditionDataMap } from "./types/conditions.d";
5
5
 
6
6
  class DataPopulator {
7
7
  private references: Types.ReferencesType;