@legalplace/models-v3-types 5.11.3 → 5.11.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/index.ts +5 -0
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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
+ ## [5.11.5](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.11.4...@legalplace/models-v3-types@5.11.5) (2024-06-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * adding ExtraInformations ti fix multiples disabled ([de9ad5c](https://git.legalplace.eu/legalplace/monorepo/commits/de9ad5c7a952a0179d818c285c1b0296cc56aa1f)), closes [api#86byw36x6](https://git.legalplace.eu/api/issues/86byw36x6)
12
+
13
+
14
+
15
+
16
+
17
+ ## [5.11.4](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.11.3...@legalplace/models-v3-types@5.11.4) (2024-05-30)
18
+
19
+ **Note:** Version bump only for package @legalplace/models-v3-types
20
+
21
+
22
+
23
+
24
+
6
25
  ## [5.11.3](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.11.2...@legalplace/models-v3-types@5.11.3) (2024-05-28)
7
26
 
8
27
  **Note:** Version bump only for package @legalplace/models-v3-types
package/index.ts CHANGED
@@ -604,6 +604,11 @@ export interface VariableV3 {
604
604
  */
605
605
  hide?: boolean;
606
606
  };
607
+
608
+ /**
609
+ * ExtraInformations (used for disabled with multiple)
610
+ */
611
+ extraInformations?: Record<string, boolean[]>;
607
612
  }
608
613
 
609
614
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "5.11.3",
3
+ "version": "5.11.5",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
@@ -9,7 +9,7 @@
9
9
  "write-schema": "typescript-json-schema tsconfig.json ModelV3 -o schema.json"
10
10
  },
11
11
  "dependencies": {
12
- "@legalplace/typeorm-constants": "^3.31.0"
12
+ "@legalplace/typeorm-constants": "^3.32.1"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@legalplace/eslint-config": "^2.2.0",
@@ -17,5 +17,5 @@
17
17
  "typescript-json-schema": "^0.43.0"
18
18
  },
19
19
  "prettier": "@legalplace/prettier-config",
20
- "gitHead": "220038f6ba7dd41a43d359b88a11447e1f61b93d"
20
+ "gitHead": "1c66efb5a8066dc72f28eeb9758edc577d039df5"
21
21
  }