@e-trias/woonplan 1.0.81 → 1.0.84

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 +19 -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.81",
5
+ "version": "1.0.84",
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,20 @@ 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
+ category ?:string
272
+ }
267
273
 
268
274
  export interface QuotationRequest{
269
275
  id:string
@@ -308,6 +314,16 @@ export interface IMeasuredata{
308
314
  insulationlocationid ?: string | null
309
315
  insulationtypeid ?: string | null
310
316
  glasstypeid ?: string | null
317
+ glasstype ?: IGlasstype
318
+ }
319
+
320
+ interface IGlasstype{
321
+ id : string
322
+ deleted : boolean
323
+ sortorder : number
324
+ measuredatas : IMeasuredata[]
325
+ gvalue : number
326
+ uvalue : number
311
327
  }
312
328
 
313
329
  export interface IMeasuredatainterestedcontact{