@e-trias/woonplan 1.0.60 → 1.0.63

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 +54 -49
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.0.60",
5
+ "version": "1.0.63",
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
@@ -123,6 +123,7 @@ export interface IUserdata{
123
123
  protectedstatus ?: string
124
124
 
125
125
  flatroofshouldberedone ?: boolean
126
+ sloperoofshouldberedone ?: boolean
126
127
  shouldceilingbepaneled ?: boolean
127
128
  allowlowerceiling ?: string
128
129
 
@@ -148,8 +149,8 @@ export interface Quotation{
148
149
  expiredate:Date
149
150
  contractorid:string
150
151
  adviceid:string
151
- measuredataid?:string
152
- quotationrequestid:string
152
+ measuredataid?:string | null
153
+ quotationrequestid:string | null
153
154
  investment?:number
154
155
  status?:string
155
156
  accepteddate?:Date
@@ -160,8 +161,8 @@ export interface Quotation{
160
161
  export interface QuotationFile{
161
162
  id:string
162
163
  originalfilename:string
163
- quotationid?:string
164
- quotationrequestid?:string
164
+ quotationid?:string | null
165
+ quotationrequestid?:string | null
165
166
  folder?:string
166
167
  bucket?:string
167
168
  }
@@ -169,8 +170,8 @@ export interface QuotationFile{
169
170
  export interface QuotationRequest{
170
171
  id:string
171
172
  measureid:string
172
- measuredataid?:string
173
- contractorid?:string
173
+ measuredataid?:string | null
174
+ contractorid?:string | null
174
175
  adviceid:string
175
176
  status:string
176
177
  data:JSON | null
@@ -196,19 +197,19 @@ export interface IMeasuredata{
196
197
  startamount?:number
197
198
  rcvalue?:number
198
199
  investment?:number
199
- collectivebuyid?:string
200
- contractorid?:string
201
- measureid?:string
200
+ collectivebuyid?:string | null
201
+ contractorid?:string | null
202
+ measureid?:string | null
202
203
  requiressurvey?:boolean
203
204
  collectivebuystatus?:"now" | "future" | "never"
204
205
  collectivebuyquotationpossible?:boolean
205
206
  g_value ?: number
206
207
  u_value ?: number
207
208
 
208
- insulationmethodid ?: string
209
- insulationlocationid ?: string
210
- insulationtypeid ?: string
211
- glasstypeid ?: string
209
+ insulationmethodid ?: string | null
210
+ insulationlocationid ?: string | null
211
+ insulationtypeid ?: string | null
212
+ glasstypeid ?: string | null
212
213
  }
213
214
 
214
215
  export interface IMeasuredatainterestedcontact{
@@ -234,14 +235,14 @@ export interface Content{
234
235
  htmltitle?: string
235
236
  htmlkeywords?: string
236
237
  htmldescription?: string
237
- parentid?: string
238
- areaactionid?: string
238
+ parentid?: string | null
239
+ areaactionid?: string | null
239
240
  }
240
241
 
241
242
  export interface Measuretext{
242
243
  id:string
243
- measureid?:string
244
- measuredataid?:string
244
+ measureid?:string | null
245
+ measuredataid?:string | null
245
246
  excerpt?:string
246
247
  }
247
248
 
@@ -256,8 +257,8 @@ export interface IAppointment {
256
257
  status?: string
257
258
  start?: Date
258
259
  end?: Date
259
- userdataid?: string
260
- surveyorid?: string
260
+ userdataid?: string | null
261
+ surveyorid?: string | null
261
262
  needspayment?: true | false
262
263
  price? : number
263
264
  name?: string
@@ -348,7 +349,7 @@ export interface IPayment {
348
349
  // createdAt & updatedAt in ISO 8601 format
349
350
  createdAt: string
350
351
  updatedAt: string
351
- appointmentid?: string
352
+ appointmentid?: string | null
352
353
  status : string
353
354
  mollieid: string
354
355
  checkoutUrl?: string
@@ -454,7 +455,7 @@ export interface IWalltype extends IAbstractHouseObjectType{
454
455
 
455
456
  export interface ICrawlspace{
456
457
  deleted ?: boolean
457
- id ?: string
458
+ id ?: string | null
458
459
  sortorder ?: number
459
460
  accessible ?: boolean
460
461
  pumpable ?: boolean
@@ -467,15 +468,15 @@ export interface ICrawlspace{
467
468
  }
468
469
  export interface ICrawlspaceinfloor{
469
470
  deleted ?: boolean
470
- id ?: string
471
+ id ?: string | null
471
472
  sortorder ?: number
472
- floorid ?: string
473
+ floorid ?: string | null
473
474
  crawlspaceid ?: string
474
475
  surface ?: number
475
476
  }
476
477
 
477
478
  export interface IFloor extends IHouseobject{
478
- floortypeid ?: string
479
+ floortypeid ?: string | null
479
480
  floortype ?: IFloortype
480
481
  crawlspaces ?: ICrawlspace[]
481
482
  historic ?: boolean
@@ -499,11 +500,11 @@ export interface IWall extends IHouseobject{
499
500
  shadowpercentage ?: number
500
501
  angle ?: number
501
502
  side ?: ISide
502
- sideid ?: string
503
- walltypeid ?: string
503
+ sideid ?: string | null
504
+ walltypeid ?: string | null
504
505
  walltype ?: IWalltype
505
506
  insulationonownrisk ?: boolean
506
- wallfinishid ?: string
507
+ wallfinishid ?: string | null
507
508
  protectedstatus ?: string
508
509
  aircavity ?: boolean
509
510
  rcvalue ?: number
@@ -514,8 +515,12 @@ export interface IWall extends IHouseobject{
514
515
  export interface IRoof extends IHouseobject{
515
516
  shadowpercentage ?: number
516
517
  angle ?: number
517
- rooftypeid ?: string
518
+ rooftypeid ?: string | null
518
519
  rooftype ?: IRooftype
520
+ slope ?: boolean
521
+ ridgeheight ?: number
522
+ ceilingboarded ?: boolean
523
+ roofingid ?: string | null
519
524
  }
520
525
  export interface IWindowframe extends IHouseobject{
521
526
  userdataid : string
@@ -544,8 +549,8 @@ export interface IWindowframepart extends IHouseobject{
544
549
  topstoollength ?: number
545
550
  shadowpercentage ?: number
546
551
 
547
- windowframeparttypeid ?: string
548
- windowframeid ?: string
552
+ windowframeparttypeid ?: string | null
553
+ windowframeid ?: string | null
549
554
  windowframe ?: IWindowframe
550
555
  }
551
556
 
@@ -555,25 +560,25 @@ export interface IWindowframetype extends IAbstractHouseObjectType{
555
560
 
556
561
  export interface IRule{
557
562
  id : string
558
- energylossid ?: string
559
- floortypeid ?: string
560
- glasstypeid ?: string
561
- roofingid ?: string
562
- roofshapeid ?: string
563
- rooftypeid ?: string
564
- wallfinishid ?: string
565
- walltypeid ?: string
566
- windowframeparttypeid ?: string
567
- packageid ?: string
568
- rulesetid ?: string
569
- ruletypeid ?: string
570
- measuredataid ?: string
571
- targetMeasureid ?: string
572
- gasfreeoptionid ?: string
573
- measuretypeid ?: string
574
- insulationlocationid ?: string
575
- insulationmethodid ?: string
576
- insulationtypeid ?: string
563
+ energylossid ?: string | null
564
+ floortypeid ?: string | null
565
+ glasstypeid ?: string | null
566
+ roofingid ?: string | null
567
+ roofshapeid ?: string | null
568
+ rooftypeid ?: string | null
569
+ wallfinishid ?: string | null
570
+ walltypeid ?: string | null
571
+ windowframeparttypeid ?: string | null
572
+ packageid ?: string | null
573
+ rulesetid ?: string | null
574
+ ruletypeid ?: string | null
575
+ measuredataid ?: string | null
576
+ targetMeasureid ?: string | null
577
+ gasfreeoptionid ?: string | null
578
+ measuretypeid ?: string | null
579
+ insulationlocationid ?: string | null
580
+ insulationmethodid ?: string | null
581
+ insulationtypeid ?: string | null
577
582
 
578
583
  field ?: string
579
584
  operator ?: string