fix(BusinessRecord): Add missing field registrationType to BusinessRecord data
This commit is contained in:
parent
9b2dcd7377
commit
bc43e4c44a
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-02 - 1.2.1 - fix(BusinessRecord)
|
||||||
|
Add missing field registrationType to BusinessRecord data
|
||||||
|
|
||||||
|
- Introduced the 'registrationType' field to the BusinessRecord data schema with possible values 'HRA' or 'HRB'.
|
||||||
|
|
||||||
## 2025-01-02 - 1.2.0 - feat(core)
|
## 2025-01-02 - 1.2.0 - feat(core)
|
||||||
Integrate Handelsregister search for company data retrieval
|
Integrate Handelsregister search for company data retrieval
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@fin.cx/opendata',
|
name: '@fin.cx/opendata',
|
||||||
version: '1.2.0',
|
version: '1.2.1',
|
||||||
description: 'A TypeScript library for accessing, managing, and updating open business data, focused on German companies and integrating with MongoDB.'
|
description: 'A TypeScript library for accessing, managing, and updating open business data, focused on German companies and integrating with MongoDB.'
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,7 @@ export class BusinessRecord extends plugins.smartdata.SmartDataDbDoc<BusinessRec
|
|||||||
email?: string,
|
email?: string,
|
||||||
website?: string,
|
website?: string,
|
||||||
businessType?: string,
|
businessType?: string,
|
||||||
|
registrationType?: 'HRA' | 'HRB';
|
||||||
registrationNumber?: string,
|
registrationNumber?: string,
|
||||||
registrationCourt?: string,
|
registrationCourt?: string,
|
||||||
legalForm?: string,
|
legalForm?: string,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user