@e-trias/woonplan 1.3.47 → 1.3.48

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 +48 -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.48",
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,51 @@ 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
+ }
1797
+
1798
+ export interface IBagData {
1799
+ coordinates: number[]
1800
+ buildyear: number
1801
+ streetname: string
1802
+ city: string
1803
+ surface: number
1804
+ input: IBAGPayload
1805
+ woonplaatsid : string
1806
+ }
1807
+
1808
+ export interface IBAGPayload {
1809
+ postcode?: string
1810
+ huisnummer?: number
1811
+ exacteMatch?: boolean
1812
+ huisnummertoevoeging?: string
1813
+ huisletter?: string
1814
+ }