@e-trias/woonplan 1.3.98 → 1.3.101
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 +17 -9
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -41,11 +41,21 @@ export interface INote{
|
|
|
41
41
|
logged ?: ILogged
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
export interface ICompany{
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
44
|
+
export interface ICompany extends ILogged {
|
|
45
|
+
logo?: string
|
|
46
|
+
senderemail?: string
|
|
47
|
+
website?: string
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface IPartner extends ICompany {
|
|
51
|
+
termsandconditions?: string
|
|
52
|
+
measuredatas?: IMeasuredata[]
|
|
53
|
+
texts?: IText[]
|
|
54
|
+
areaactions?: IAreaaction[]
|
|
55
|
+
packages?: IPackage[]
|
|
56
|
+
questionsets?: IQuestionset[]
|
|
57
|
+
settings?: ICompanySettings
|
|
58
|
+
abbreviatedname?: string
|
|
49
59
|
}
|
|
50
60
|
|
|
51
61
|
export interface ICompanySettings{
|
|
@@ -55,9 +65,6 @@ export interface ICompanySettings{
|
|
|
55
65
|
}
|
|
56
66
|
}
|
|
57
67
|
|
|
58
|
-
export interface IPartner extends ICompany{
|
|
59
|
-
termsandconditions ?: string
|
|
60
|
-
}
|
|
61
68
|
export interface IContractor extends ICompany{
|
|
62
69
|
}
|
|
63
70
|
|
|
@@ -1383,7 +1390,8 @@ export interface IAreaaction extends ILogged{
|
|
|
1383
1390
|
partnerid ?: string
|
|
1384
1391
|
logo ?: string
|
|
1385
1392
|
questionsets ?: IQuestionsetSettings[]
|
|
1386
|
-
|
|
1393
|
+
htmltitle ?: string
|
|
1394
|
+
senderemail?: string
|
|
1387
1395
|
}
|
|
1388
1396
|
|
|
1389
1397
|
export interface IQuestionsetSettings{
|