@e-trias/woonplan 1.3.240 → 1.3.242
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/.gitattributes +2 -2
- package/package.json +1 -1
- package/types.d.ts +5 -5
package/.gitattributes
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# Auto detect text files and perform LF normalization
|
|
2
|
-
* text=auto
|
|
1
|
+
# Auto detect text files and perform LF normalization
|
|
2
|
+
* text=auto
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1887,11 +1887,11 @@ export interface IAbstractInsulation{
|
|
|
1887
1887
|
deleted ?: boolean
|
|
1888
1888
|
sortorder ?: number
|
|
1889
1889
|
measures : IMeasure[]
|
|
1890
|
-
measuredatas
|
|
1890
|
+
measuredatas : IMeasuredata[]
|
|
1891
1891
|
}
|
|
1892
1892
|
|
|
1893
1893
|
export interface IInsulationmethod extends IAbstractInsulation{
|
|
1894
|
-
insulationtypes
|
|
1894
|
+
insulationtypes : IInsulationtype[]
|
|
1895
1895
|
image ?: string
|
|
1896
1896
|
walltypes ?: IWalltype[]
|
|
1897
1897
|
floortypes ?: IFloortype[]
|
|
@@ -1900,14 +1900,14 @@ export interface IInsulationlocation extends IAbstractInsulation{
|
|
|
1900
1900
|
rooftypeinsulationlocations ?: {
|
|
1901
1901
|
rooftypeid: string
|
|
1902
1902
|
}[]
|
|
1903
|
-
insulationtypes
|
|
1903
|
+
insulationtypes : IInsulationtype[]
|
|
1904
1904
|
image ?: string
|
|
1905
1905
|
}
|
|
1906
1906
|
export interface IInsulationtype extends IAbstractInsulation{
|
|
1907
1907
|
lambda ?: number
|
|
1908
1908
|
rcvalue ?: number
|
|
1909
|
-
insulationmethods
|
|
1910
|
-
insulationlocations
|
|
1909
|
+
insulationmethods : IInsulationmethod[]
|
|
1910
|
+
insulationlocations : IInsulationlocation[]
|
|
1911
1911
|
image ?: string
|
|
1912
1912
|
walltypes ?: IWalltype[]
|
|
1913
1913
|
floortypes ?: IFloortype[]
|