@legalplace/models-v3-types 5.8.3 → 5.10.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 +22 -0
- package/index.ts +21 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.10.0](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.9.0...@legalplace/models-v3-types@5.10.0) (2024-03-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add new autocomplete dataset config ([06968c1](https://git.legalplace.eu/legalplace/monorepo/commits/06968c10109795ba00b282dfe29075bc8f1444b0)), closes [api#11160](https://git.legalplace.eu/api/issues/11160)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [5.9.0](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.8.3...@legalplace/models-v3-types@5.9.0) (2024-03-19)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* implement activities linked variables and autocomplete type ([1ac0dea](https://git.legalplace.eu/legalplace/monorepo/commits/1ac0dea67aa3cb8ec64bea2fc9673dacdf0f088c)), closes [api#11122](https://git.legalplace.eu/api/issues/11122)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [5.8.3](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/models-v3-types@5.8.2...@legalplace/models-v3-types@5.8.3) (2024-03-19)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @legalplace/models-v3-types
|
package/index.ts
CHANGED
|
@@ -664,7 +664,11 @@ export interface FDFBoxesV3 {
|
|
|
664
664
|
/**
|
|
665
665
|
* Autocomplete datasets
|
|
666
666
|
*/
|
|
667
|
-
export type AutocompleteDatasetType =
|
|
667
|
+
export type AutocompleteDatasetType =
|
|
668
|
+
| "datagouv_addresses"
|
|
669
|
+
| "datagouv_cities"
|
|
670
|
+
| "pappers"
|
|
671
|
+
| "activities";
|
|
668
672
|
|
|
669
673
|
/**
|
|
670
674
|
* Autocomplete linkedvariables
|
|
@@ -684,4 +688,19 @@ export type AutocompleteLinkedVariableType =
|
|
|
684
688
|
| "company_hq_postcode"
|
|
685
689
|
| "company_legal_status"
|
|
686
690
|
| "company_naf_code"
|
|
687
|
-
| "company_siren"
|
|
691
|
+
| "company_siren"
|
|
692
|
+
| "category"
|
|
693
|
+
| "nafCode"
|
|
694
|
+
| "type"
|
|
695
|
+
| "level1Id"
|
|
696
|
+
| "level2Id"
|
|
697
|
+
| "level3Id"
|
|
698
|
+
| "level4Id"
|
|
699
|
+
| "shouldAskIfAlcohol"
|
|
700
|
+
| "shouldAskIfCommercialPremises"
|
|
701
|
+
| "comptaplaceEligibility"
|
|
702
|
+
| "comptaplaceCategory"
|
|
703
|
+
| "regulatedActivityProofNeeded"
|
|
704
|
+
| "description"
|
|
705
|
+
| "descriptionIfSellsAlcohol"
|
|
706
|
+
| "warningText";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legalplace/models-v3-types",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.10.0",
|
|
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.27.
|
|
12
|
+
"@legalplace/typeorm-constants": "^3.27.3"
|
|
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": "
|
|
20
|
+
"gitHead": "d0889f36d9b0c52f65477fba495363609217f0c3"
|
|
21
21
|
}
|