@e-trias/woonplan 1.3.46 → 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.
- package/package.json +1 -1
- package/types.d.ts +49 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -612,6 +612,7 @@ export interface ISettings {
|
|
|
612
612
|
'buildyear-gt-1995-quotations-contractor' ?: string
|
|
613
613
|
'buildyear-lte-1995-quotations-contractor' ?: string
|
|
614
614
|
gamification ?: "1" | "0"
|
|
615
|
+
showQuotationReadon ? : "1" | "0"
|
|
615
616
|
}
|
|
616
617
|
|
|
617
618
|
export interface IMailchimpSettings {
|
|
@@ -1763,4 +1764,51 @@ export interface IQuestionnaireTagDependency{
|
|
|
1763
1764
|
questionid ?: string
|
|
1764
1765
|
value ?: string
|
|
1765
1766
|
operator ?: string
|
|
1766
|
-
}
|
|
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
|
+
}
|