@e-trias/woonplan 1.2.80 → 1.2.82
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 +43 -41
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -37,8 +37,8 @@ export interface INote{
|
|
|
37
37
|
logged ?: ILogged
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
export interface ICompany{
|
|
41
|
-
|
|
40
|
+
export interface ICompany{
|
|
41
|
+
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export interface IPartner extends ICompany{
|
|
@@ -527,11 +527,7 @@ export interface ISettings {
|
|
|
527
527
|
createProjectInPerfectview?: boolean
|
|
528
528
|
houseScan?: boolean
|
|
529
529
|
initialQuestionsetP?: number
|
|
530
|
-
mailchimp?:
|
|
531
|
-
apiKey?: string
|
|
532
|
-
serverPrefix?: string
|
|
533
|
-
audience?: string
|
|
534
|
-
}
|
|
530
|
+
mailchimp?: IMailchimpSettings
|
|
535
531
|
mollie?: { apiKey: string }
|
|
536
532
|
municipalityManagesLandingPage?: boolean
|
|
537
533
|
onlineAfsprakenActive?: number
|
|
@@ -575,6 +571,10 @@ export interface ISettings {
|
|
|
575
571
|
hasNationalFinancing ?: string
|
|
576
572
|
}
|
|
577
573
|
|
|
574
|
+
export interface IMailchimpSettings {
|
|
575
|
+
apiKey?: string
|
|
576
|
+
audienceId?: string
|
|
577
|
+
}
|
|
578
578
|
|
|
579
579
|
|
|
580
580
|
export interface IPerfectviewSettings {
|
|
@@ -1589,81 +1589,83 @@ export interface IManufacturer extends ICompany{
|
|
|
1589
1589
|
}
|
|
1590
1590
|
|
|
1591
1591
|
export interface IAppliancetype{
|
|
1592
|
-
name : string
|
|
1593
|
-
deleted : boolean
|
|
1594
|
-
sortorder : number
|
|
1592
|
+
name : string
|
|
1593
|
+
deleted : boolean
|
|
1594
|
+
sortorder : number
|
|
1595
1595
|
appliances ?: IAppliance[]
|
|
1596
1596
|
}
|
|
1597
1597
|
|
|
1598
1598
|
export interface IVentilationsystemtype{
|
|
1599
|
-
name : string
|
|
1600
|
-
deleted : boolean
|
|
1601
|
-
sortorder : number
|
|
1599
|
+
name : string
|
|
1600
|
+
deleted : boolean
|
|
1601
|
+
sortorder : number
|
|
1602
1602
|
ventilationsystems ?: IVentilationsystem[]
|
|
1603
1603
|
}
|
|
1604
1604
|
|
|
1605
1605
|
export interface IHeatingappliancetype{
|
|
1606
|
-
name : string
|
|
1607
|
-
deleted : boolean
|
|
1608
|
-
sortorder : number
|
|
1606
|
+
name : string
|
|
1607
|
+
deleted : boolean
|
|
1608
|
+
sortorder : number
|
|
1609
1609
|
heatingappliances ?: IHeatingappliance[]
|
|
1610
1610
|
}
|
|
1611
1611
|
export interface IWaterheatertype{
|
|
1612
|
-
name : string
|
|
1613
|
-
deleted : boolean
|
|
1614
|
-
sortorder : number
|
|
1612
|
+
name : string
|
|
1613
|
+
deleted : boolean
|
|
1614
|
+
sortorder : number
|
|
1615
1615
|
waterheaters ?: IWaterheater[]
|
|
1616
1616
|
}
|
|
1617
1617
|
|
|
1618
1618
|
export interface IWaterheaterCwclass{
|
|
1619
|
-
name : string
|
|
1620
|
-
deleted : boolean
|
|
1621
|
-
sortorder : number
|
|
1619
|
+
name : string
|
|
1620
|
+
deleted : boolean
|
|
1621
|
+
sortorder : number
|
|
1622
1622
|
waterheaters ?: IWaterheater[]
|
|
1623
1623
|
}
|
|
1624
1624
|
|
|
1625
1625
|
export interface IAppliance{
|
|
1626
|
-
name : string
|
|
1626
|
+
name : string
|
|
1627
1627
|
id : string
|
|
1628
|
-
deleted : boolean
|
|
1629
|
-
sortorder : number
|
|
1630
|
-
userdataid ?: string
|
|
1628
|
+
deleted : boolean
|
|
1629
|
+
sortorder : number
|
|
1630
|
+
userdataid ?: string
|
|
1631
1631
|
userdata ?: IUserdata
|
|
1632
1632
|
manufacturerid ?: string
|
|
1633
1633
|
manufacturer ?: IManufacturer
|
|
1634
|
-
appliancetypeid ?: string
|
|
1634
|
+
appliancetypeid ?: string
|
|
1635
1635
|
appliancetype ?: IAppliancetype
|
|
1636
|
-
buildyear : number
|
|
1637
|
-
needsreplacing : boolean
|
|
1638
|
-
othermanufacturer ?: string
|
|
1636
|
+
buildyear : number
|
|
1637
|
+
needsreplacing : boolean
|
|
1638
|
+
othermanufacturer ?: string
|
|
1639
|
+
|
|
1640
|
+
heatingappliance ?: IHeatingappliance
|
|
1639
1641
|
}
|
|
1640
1642
|
export interface IVentilationsystem{
|
|
1641
|
-
name : string
|
|
1643
|
+
name : string
|
|
1642
1644
|
id : string
|
|
1643
|
-
deleted : boolean
|
|
1644
|
-
sortorder : number
|
|
1645
|
-
userdataid ?: string
|
|
1645
|
+
deleted : boolean
|
|
1646
|
+
sortorder : number
|
|
1647
|
+
userdataid ?: string
|
|
1646
1648
|
userdata ?: IUserdata
|
|
1647
1649
|
manufacturerid ?: string
|
|
1648
1650
|
manufacturer ?: IManufacturer
|
|
1649
|
-
ventilationsystemtypeid ?: string
|
|
1651
|
+
ventilationsystemtypeid ?: string
|
|
1650
1652
|
ventilationsystemtype ?: IVentilationsystem
|
|
1651
|
-
buildyear : number
|
|
1652
|
-
needsreplacing : boolean
|
|
1653
|
-
othermanufacturer ?: string
|
|
1653
|
+
buildyear : number
|
|
1654
|
+
needsreplacing : boolean
|
|
1655
|
+
othermanufacturer ?: string
|
|
1654
1656
|
}
|
|
1655
1657
|
|
|
1656
1658
|
export interface IHeatingappliance{
|
|
1657
1659
|
appliance : IAppliance
|
|
1658
|
-
heatingappliancetypeid ?: string
|
|
1660
|
+
heatingappliancetypeid ?: string
|
|
1659
1661
|
heatingappliancetype ?: IHeatingappliancetype
|
|
1660
1662
|
}
|
|
1661
1663
|
|
|
1662
1664
|
export interface IWaterheater{
|
|
1663
1665
|
appliance : IAppliance
|
|
1664
|
-
waterheatertypeid ?: string
|
|
1666
|
+
waterheatertypeid ?: string
|
|
1665
1667
|
waterheatertype ?: IWaterheatertype
|
|
1666
|
-
waterheatercwclassid ?: string
|
|
1668
|
+
waterheatercwclassid ?: string
|
|
1667
1669
|
waterheatercwclass ?: IWaterheaterCwclass
|
|
1668
1670
|
|
|
1669
1671
|
}
|