@e-trias/woonplan 1.3.86 → 1.3.88
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 +64 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export interface IContact{
|
|
|
12
12
|
houseno?: number
|
|
13
13
|
extension?: string
|
|
14
14
|
password?: string
|
|
15
|
+
securityrole ?: ISecurityRole
|
|
15
16
|
securityroleid?: string | null
|
|
16
17
|
companyid?: string | null
|
|
17
18
|
areaactionid?: string | null
|
|
@@ -920,6 +921,9 @@ export interface IFloor extends IHouseobject{
|
|
|
920
921
|
floorinrooms ?: IFloorinroom[]
|
|
921
922
|
allowcarpetingtoberemoved ?: boolean
|
|
922
923
|
preferredcarpeting ?: string
|
|
924
|
+
|
|
925
|
+
annexid ?: string
|
|
926
|
+
annex ?: IAnnex
|
|
923
927
|
}
|
|
924
928
|
|
|
925
929
|
|
|
@@ -950,6 +954,9 @@ export interface IWall extends IHouseobject{
|
|
|
950
954
|
monumentaloutside ?: boolean
|
|
951
955
|
monumentalinside ?: boolean
|
|
952
956
|
|
|
957
|
+
annexid ?: string
|
|
958
|
+
annex ?: IAnnex
|
|
959
|
+
|
|
953
960
|
}
|
|
954
961
|
|
|
955
962
|
export interface IRoom extends IHouseobject{
|
|
@@ -1002,6 +1009,9 @@ export interface IRoof extends IHouseobject{
|
|
|
1002
1009
|
|
|
1003
1010
|
replaceroofsheathing ?: boolean
|
|
1004
1011
|
replaceraftersorjoists ?: boolean
|
|
1012
|
+
|
|
1013
|
+
annexid ?: string
|
|
1014
|
+
annex ?: IAnnex
|
|
1005
1015
|
}
|
|
1006
1016
|
|
|
1007
1017
|
export interface IWindowframe extends IHouseobject{
|
|
@@ -1889,3 +1899,57 @@ export interface IBAGPayload {
|
|
|
1889
1899
|
huisnummertoevoeging?: string
|
|
1890
1900
|
huisletter?: string
|
|
1891
1901
|
}
|
|
1902
|
+
|
|
1903
|
+
|
|
1904
|
+
export interface IAnnex{
|
|
1905
|
+
id : string
|
|
1906
|
+
logged ?: ILogged
|
|
1907
|
+
userdataid ?: string
|
|
1908
|
+
annexsides ?: IAnnexside[]
|
|
1909
|
+
annextemplate ?: IAnnextemplate
|
|
1910
|
+
annextemplateid ?: string
|
|
1911
|
+
floors ?: IFloor[]
|
|
1912
|
+
roofs ?: IRoof[]
|
|
1913
|
+
walls ?: IWall[]
|
|
1914
|
+
buildyear ?: number
|
|
1915
|
+
shouldceilingbepaneled ?: boolean
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
export interface IAnnexside{
|
|
1919
|
+
deleted : boolean
|
|
1920
|
+
id : string
|
|
1921
|
+
sortorder : number
|
|
1922
|
+
annexid ?: string
|
|
1923
|
+
annex ?: IAnnex
|
|
1924
|
+
annextemplateid ?: string
|
|
1925
|
+
annextemplate ?: IAnnextemplate
|
|
1926
|
+
attachedtohouse : boolean
|
|
1927
|
+
attachedtoneighbour : boolean
|
|
1928
|
+
width : number
|
|
1929
|
+
height : number
|
|
1930
|
+
deviationtopleft : number
|
|
1931
|
+
deviationbottomright : number
|
|
1932
|
+
sideno : number
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
export interface IAnnextemplate{
|
|
1936
|
+
id : string
|
|
1937
|
+
logged ?: ILogged
|
|
1938
|
+
userdataid ?: string
|
|
1939
|
+
annexes ?: IAnnex[]
|
|
1940
|
+
annexsides ?: IAnnexside[]
|
|
1941
|
+
nr ?: number
|
|
1942
|
+
surfacefloor ?: number
|
|
1943
|
+
surfacewall ?: number
|
|
1944
|
+
surfaceroof ?: number
|
|
1945
|
+
percentageglassleft ?: number
|
|
1946
|
+
percentageglassright ?: number
|
|
1947
|
+
percentageglassback ?: number
|
|
1948
|
+
percentageglassfront ?: number
|
|
1949
|
+
wallreductionleft ?: number
|
|
1950
|
+
wallreductionright ?: number
|
|
1951
|
+
wallreductionback ?: number
|
|
1952
|
+
wallreductionfront ?: number
|
|
1953
|
+
floorunattachedfactor : number
|
|
1954
|
+
}
|
|
1955
|
+
|