@legalplace/models-v3-types 5.8.3 → 5.9.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 +11 -0
- package/index.ts +20 -2
- package/package.json +3 -3
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
|
+
# [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)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* 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)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [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
18
|
|
|
8
19
|
**Note:** Version bump only for package @legalplace/models-v3-types
|
package/index.ts
CHANGED
|
@@ -664,7 +664,10 @@ export interface FDFBoxesV3 {
|
|
|
664
664
|
/**
|
|
665
665
|
* Autocomplete datasets
|
|
666
666
|
*/
|
|
667
|
-
export type AutocompleteDatasetType =
|
|
667
|
+
export type AutocompleteDatasetType =
|
|
668
|
+
| "datagouv_addresses"
|
|
669
|
+
| "pappers"
|
|
670
|
+
| "activities";
|
|
668
671
|
|
|
669
672
|
/**
|
|
670
673
|
* Autocomplete linkedvariables
|
|
@@ -684,4 +687,19 @@ export type AutocompleteLinkedVariableType =
|
|
|
684
687
|
| "company_hq_postcode"
|
|
685
688
|
| "company_legal_status"
|
|
686
689
|
| "company_naf_code"
|
|
687
|
-
| "company_siren"
|
|
690
|
+
| "company_siren"
|
|
691
|
+
| "category"
|
|
692
|
+
| "nafCode"
|
|
693
|
+
| "type"
|
|
694
|
+
| "level1Id"
|
|
695
|
+
| "level2Id"
|
|
696
|
+
| "level3Id"
|
|
697
|
+
| "level4Id"
|
|
698
|
+
| "shouldAskIfAlcohol"
|
|
699
|
+
| "shouldAskIfCommercialPremises"
|
|
700
|
+
| "comptaplaceEligibility"
|
|
701
|
+
| "comptaplaceCategory"
|
|
702
|
+
| "regulatedActivityProofNeeded"
|
|
703
|
+
| "description"
|
|
704
|
+
| "descriptionIfSellsAlcohol"
|
|
705
|
+
| "warningText";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legalplace/models-v3-types",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.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.2"
|
|
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": "5579d2d7f01bc14b5235986a2a5aa77fde01fef2"
|
|
21
21
|
}
|