@e-trias/woonplan 1.0.80 → 1.0.83

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 +20 -3
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.80",
5
+ "version": "1.0.83",
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
@@ -256,14 +256,19 @@ export interface Quotation{
256
256
  rejectreason?:string
257
257
  }
258
258
 
259
- export interface QuotationFile{
259
+ export interface IFile{
260
260
  id:string
261
261
  originalfilename:string
262
- quotationid?:string | null
263
- quotationrequestid?:string | null
264
262
  folder?:string
265
263
  bucket?:string
266
264
  }
265
+ export interface QuotationFile extends IFile{
266
+ quotationid?:string | null
267
+ quotationrequestid?:string | null
268
+ }
269
+ export interface IContactFile extends IFile{
270
+ contactid?:string | null
271
+ }
267
272
 
268
273
  export interface QuotationRequest{
269
274
  id:string
@@ -308,6 +313,16 @@ export interface IMeasuredata{
308
313
  insulationlocationid ?: string | null
309
314
  insulationtypeid ?: string | null
310
315
  glasstypeid ?: string | null
316
+ glasstype ?: IGlasstype
317
+ }
318
+
319
+ interface IGlasstype{
320
+ id : string
321
+ deleted : boolean
322
+ sortorder : number
323
+ measuredatas : IMeasuredata[]
324
+ gvalue : number
325
+ uvalue : number
311
326
  }
312
327
 
313
328
  export interface IMeasuredatainterestedcontact{
@@ -591,6 +606,7 @@ export interface IFloor extends IHouseobject{
591
606
  crawlspacesinfloor ?: ICrawlspaceinfloor[]
592
607
  basementhasceiling ?: boolean
593
608
  basementunderneath ?: boolean
609
+ rcvalue ?: number
594
610
  }
595
611
 
596
612
 
@@ -628,6 +644,7 @@ export interface IRoof extends IHouseobject{
628
644
  roofingid ?: string | null
629
645
  sideid ?: string | null
630
646
  side ?: ISide
647
+ rcvalue ?: number
631
648
  }
632
649
  export interface IWindowframe extends IHouseobject{
633
650
  userdataid : string