@legalplace/models-v3-types 5.15.10 → 5.15.12
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 +19 -0
- package/index.ts +8 -0
- 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.15.12](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.15.11...@legalplace/models-v3-types@5.15.12) (2026-02-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @legalplace/models-v3-types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [5.15.11](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.15.10...@legalplace/models-v3-types@5.15.11) (2026-02-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* add randomize option meta and last order children ([2bcb1d7](https://git.legalplace.eu/legalplace/monorepo/commits/2bcb1d73fe64da319f342b748390bcc1673fded8)), closes [api#86c7h46](https://git.legalplace.eu/api/issues/86c7h46)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [5.15.10](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.15.9...@legalplace/models-v3-types@5.15.10) (2026-01-28)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @legalplace/models-v3-types
|
package/index.ts
CHANGED
|
@@ -291,6 +291,14 @@ export interface OptionV3 {
|
|
|
291
291
|
* Option's grantLevel
|
|
292
292
|
*/
|
|
293
293
|
grantLevel?: ROLE;
|
|
294
|
+
/**
|
|
295
|
+
* Option's randomize order of children
|
|
296
|
+
*/
|
|
297
|
+
randomizeChildren?: boolean;
|
|
298
|
+
/**
|
|
299
|
+
* Option's fixed last order of children
|
|
300
|
+
*/
|
|
301
|
+
fixedChildrenLastOrder?: string;
|
|
294
302
|
/**
|
|
295
303
|
* Option style
|
|
296
304
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legalplace/models-v3-types",
|
|
3
|
-
"version": "5.15.
|
|
3
|
+
"version": "5.15.12",
|
|
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.
|
|
12
|
+
"@legalplace/typeorm-constants": "^3.82.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@legalplace/eslint-config": "^2.3.0",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"typescript-json-schema": "^0.43.0"
|
|
18
18
|
},
|
|
19
19
|
"prettier": "@legalplace/prettier-config",
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "814197f6e8049e05f2f24e8670bc562cf521ed05"
|
|
21
21
|
}
|