@e-trias/woonplan 1.3.210 → 1.3.212

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 +24 -40
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.210",
5
+ "version": "1.3.212",
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
@@ -81,7 +81,7 @@ export interface IContractor extends ICompany{
81
81
  }
82
82
 
83
83
  export interface IAdvice{
84
- id:string ;
84
+ id?:string ;
85
85
  userdataid ?: string;
86
86
  status?:string;
87
87
  usage?:string
@@ -96,7 +96,7 @@ export interface IAdvice{
96
96
  }
97
97
 
98
98
  export interface EtriasDBContact{
99
- id:string ;
99
+ id?:string ;
100
100
  email:string;
101
101
  username:string;
102
102
  password:string;
@@ -105,15 +105,15 @@ export interface EtriasDBContact{
105
105
  }
106
106
 
107
107
  export interface ISecurityRole{
108
- id:string;
109
- name:string;
110
- deleted:boolean;
108
+ id?:string;
109
+ name?:string;
110
+ deleted?:boolean;
111
111
  menulist ?: string
112
112
  permissions ?: IPermission[]
113
113
  }
114
114
 
115
115
  export interface IPermission{
116
- id:string
116
+ id ?: string
117
117
  name:string
118
118
  deleted:boolean
119
119
  sortorder : number
@@ -129,7 +129,7 @@ export interface IPermission{
129
129
 
130
130
 
131
131
  export interface IAreaactionPermission{
132
- id:string
132
+ id?:string
133
133
  name:string
134
134
  deleted:boolean
135
135
  sortorder : number
@@ -143,33 +143,17 @@ export interface IAreaactionPermission{
143
143
  }
144
144
 
145
145
 
146
- export interface IPermission{
147
- id:string
148
- name:string
149
- deleted:boolean
150
- sortorder : number
151
- section ?: string
152
- create : boolean
153
- view : boolean
154
- change : boolean
155
- delete : boolean
156
- execute : boolean
157
- securityroleid ?: string
158
- securityrole ?: ISecurityRole
159
- }
160
-
161
-
162
146
  export interface Article{
163
- id:string;
147
+ id?:string;
164
148
  title:string;
165
149
  body: string;
166
150
  }
167
151
  export interface ILogged{
168
- id: string;
169
- name:string;
170
- deleted:boolean;
171
- sortorder:number;
172
- createdate:Date
152
+ id?: string;
153
+ name?:string;
154
+ deleted?:boolean;
155
+ sortorder?:number;
156
+ createdate?:Date
173
157
  createcontact ?: IContact
174
158
  translations ?: ITranslation[]
175
159
  }
@@ -293,7 +277,7 @@ export interface CIASignupFormResponse extends SignupFormResponse{}
293
277
  export interface MWASignupFormResponse extends SignupFormResponse{}
294
278
 
295
279
  export interface IUserdata{
296
- id:string;
280
+ id ?: string;
297
281
  sourceid ?:string
298
282
  contactid ?: string
299
283
  maxpanels?:number
@@ -462,7 +446,7 @@ export interface IHousetemplate{
462
446
  }
463
447
 
464
448
  export interface ISolarApicall{
465
- id:string
449
+ id?:string
466
450
  deleted:boolean
467
451
  name?:string
468
452
  sortorder?:number
@@ -478,7 +462,7 @@ export interface ISolarApicall{
478
462
  }
479
463
 
480
464
  export interface Quotation{
481
- id:string
465
+ id?:string
482
466
  expiredate:Date
483
467
  contractorid:string
484
468
  adviceid:string
@@ -492,7 +476,7 @@ export interface Quotation{
492
476
  }
493
477
 
494
478
  export interface IFile{
495
- id:string
479
+ id?:string
496
480
  originalfilename:string
497
481
  folder?:string
498
482
  bucket?:string
@@ -509,7 +493,7 @@ export interface IContactFile extends IFile{
509
493
  }
510
494
 
511
495
  export interface QuotationRequest{
512
- id:string
496
+ id?:string
513
497
  measureid:string
514
498
  measuredataid?:string
515
499
  contractorid?:string
@@ -522,7 +506,7 @@ export interface QuotationRequest{
522
506
  }
523
507
 
524
508
  export interface Collectivebuy{
525
- id:string
509
+ id?:string
526
510
  expiredate:Date
527
511
  partnerid:string
528
512
  }
@@ -532,7 +516,7 @@ export interface ISaving{
532
516
  }
533
517
 
534
518
  export interface IMeasuredata{
535
- id:string
519
+ id?:string
536
520
  name:string
537
521
  deleted:boolean
538
522
  sortorder?:number
@@ -628,7 +612,7 @@ export interface IMeasuredatainterestedcontact{
628
612
  }
629
613
 
630
614
  export interface IText{
631
- id:string
615
+ id?:string
632
616
  title: string
633
617
  body: string
634
618
  localeid?: string
@@ -636,7 +620,7 @@ export interface IText{
636
620
  }
637
621
 
638
622
  export interface IContent{
639
- id:string
623
+ id?:string
640
624
  fullyqualifiedaction : string
641
625
  subtitle?: string
642
626
  excerpt?: string
@@ -671,7 +655,7 @@ export interface IImage {
671
655
  }
672
656
 
673
657
  export interface IMeasuretext{
674
- id:string
658
+ id?:string
675
659
  measureid ?: string
676
660
  measuredataid ?: string
677
661
  excerpt ?: string
@@ -684,7 +668,7 @@ export interface QuotationRequestForm{
684
668
  }
685
669
 
686
670
  export interface IAppointment{
687
- id: string
671
+ id?: string
688
672
  status?: string
689
673
  start?: Date
690
674
  end?: Date