@e-trias/woonplan 1.3.99 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +16 -8
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.99",
5
+ "version": "1.3.101",
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
@@ -41,11 +41,21 @@ export interface INote{
41
41
  logged ?: ILogged
42
42
  }
43
43
 
44
- export interface ICompany{
45
- id : string
46
- name : string
47
- logo ?: string
48
- settings ?: ICompanySettings
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
 
@@ -1384,6 +1391,7 @@ export interface IAreaaction extends ILogged{
1384
1391
  logo ?: string
1385
1392
  questionsets ?: IQuestionsetSettings[]
1386
1393
  htmltitle ?: string
1394
+ senderemail?: string
1387
1395
  }
1388
1396
 
1389
1397
  export interface IQuestionsetSettings{