@e-trias/woonplan 1.3.63 → 1.3.65
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 +15 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -439,6 +439,7 @@ export interface IGlasstype{
|
|
|
439
439
|
gvalue : number
|
|
440
440
|
uvalue : number
|
|
441
441
|
name : string
|
|
442
|
+
image ?: string | null
|
|
442
443
|
}
|
|
443
444
|
|
|
444
445
|
export interface IMeasuredatainterestedcontact{
|
|
@@ -619,6 +620,17 @@ export interface ISettings {
|
|
|
619
620
|
gamification ?: "1" | "0"
|
|
620
621
|
showQuotationReadon ? : "1" | "0"
|
|
621
622
|
allowedMunicipalities ?: string
|
|
623
|
+
|
|
624
|
+
hideMenuItems?: {
|
|
625
|
+
"my-home"?: boolean | "1" | "0"
|
|
626
|
+
"my-advice"?: boolean | "1" | "0"
|
|
627
|
+
"advice-and-support"?: boolean | "1" | "0"
|
|
628
|
+
"measures"?: boolean | "1" | "0"
|
|
629
|
+
"quotations"?: boolean | "1" | "0"
|
|
630
|
+
"faq"?: boolean | "1" | "0"
|
|
631
|
+
"about-us"?: boolean | "1" | "0"
|
|
632
|
+
"contact"?: boolean | "1" | "0"
|
|
633
|
+
}
|
|
622
634
|
}
|
|
623
635
|
|
|
624
636
|
export interface IMailchimpSettings {
|
|
@@ -799,9 +811,11 @@ export interface IAbstractHouseObjectType{
|
|
|
799
811
|
export interface IFloortype extends IAbstractHouseObjectType{
|
|
800
812
|
lambda ?: number
|
|
801
813
|
rcvalue ?: number
|
|
814
|
+
image ?: string | null
|
|
802
815
|
}
|
|
803
816
|
|
|
804
817
|
export interface IRooftype extends IAbstractHouseObjectType{
|
|
818
|
+
image ?: string | null
|
|
805
819
|
}
|
|
806
820
|
|
|
807
821
|
export interface IWalltype extends IAbstractHouseObjectType{
|
|
@@ -817,6 +831,7 @@ export interface IWallfinish{
|
|
|
817
831
|
id ?: string
|
|
818
832
|
sortorder ?: number
|
|
819
833
|
name ?: string
|
|
834
|
+
image ?: string | null
|
|
820
835
|
}
|
|
821
836
|
export interface IRoofing{
|
|
822
837
|
deleted ?: boolean
|