@e-trias/woonplan 1.3.68 → 1.3.70

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +18 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.68",
5
+ "version": "1.3.70",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
package/types.d.ts CHANGED
@@ -94,6 +94,22 @@ export interface ILogged{
94
94
  createcontact ?: IContact
95
95
  }
96
96
 
97
+
98
+ export interface ILog{
99
+ id : string
100
+ name : string
101
+ deleted : boolean
102
+ sortorder : number
103
+ savedstate ?: string
104
+ dd : Date
105
+ ip ?: string
106
+ note ?: string
107
+ attachment ?: string
108
+ entityid ?: string
109
+ logactionid ?: string
110
+ contactid ?: string
111
+ }
112
+
97
113
  export interface SignupForm{
98
114
  salutation:string;
99
115
  firstname:string;
@@ -839,6 +855,7 @@ export interface IRoofing{
839
855
  sortorder ?: number
840
856
  name ?: string
841
857
  roofs ?: IRoof[]
858
+ image ?: string | null
842
859
  }
843
860
 
844
861
  export interface ICrawlspace{
@@ -1568,6 +1585,7 @@ export interface IInsulationlocation extends IAbstractInsulation{
1568
1585
  rooftypeid: string
1569
1586
  }[]
1570
1587
  insulationtypes ?: IInsulationtype[]
1588
+ image ?: string | null
1571
1589
  }
1572
1590
  export interface IInsulationtype extends IAbstractInsulation{
1573
1591
  lambda ?: number | null