@e-trias/woonplan 1.3.47 → 1.3.49

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 (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +50 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.47",
5
+ "version": "1.3.49",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
package/types.d.ts CHANGED
@@ -1764,4 +1764,53 @@ export interface IQuestionnaireTagDependency{
1764
1764
  questionid ?: string
1765
1765
  value ?: string
1766
1766
  operator ?: string
1767
- }
1767
+ }
1768
+
1769
+
1770
+ export interface IAddress {
1771
+ openbareRuimteNaam: string
1772
+ korteNaam: string
1773
+ huisnummer: number
1774
+ postcode: string
1775
+ woonplaatsNaam: string
1776
+ nummeraanduidingIdentificatie: string
1777
+ openbareRuimteIdentificatie: string
1778
+ woonplaatsIdentificatie: string
1779
+ adresseerbaarObjectIdentificatie: string
1780
+ pandIdentificaties: string[]
1781
+ }
1782
+ export interface IAddressUitgebreid extends IAddress{
1783
+
1784
+ typeAdresseerbaarObject: string,
1785
+ adresseerbaarObjectGeometrie: {
1786
+ punt: {
1787
+ type : string,
1788
+ coordinates : number[]
1789
+ }
1790
+ },
1791
+ adresseerbaarObjectStatus: string
1792
+ gebruiksdoelen: string[]
1793
+ oppervlakte: number
1794
+ oorspronkelijkBouwjaar: string[]
1795
+ woonplaatsid : string
1796
+ huisnummertoevoeging ?: string | number
1797
+ }
1798
+
1799
+ export interface IBagData {
1800
+ coordinates: number[]
1801
+ buildyear: number
1802
+ streetname: string
1803
+ city: string
1804
+ surface: number
1805
+ input: IBAGPayload
1806
+ woonplaatsid : string
1807
+ extension ?: string | number
1808
+ }
1809
+
1810
+ export interface IBAGPayload {
1811
+ postcode?: string
1812
+ huisnummer?: number
1813
+ exacteMatch?: boolean
1814
+ huisnummertoevoeging?: string
1815
+ huisletter?: string
1816
+ }