@e-trias/woonplan 1.0.82 → 1.0.85
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.
- package/package.json +1 -1
- package/types.d.ts +27 -3
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -256,14 +256,20 @@ export interface Quotation{
|
|
|
256
256
|
rejectreason?:string
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
-
export interface
|
|
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
|
|
@@ -707,6 +713,24 @@ export interface IRule{
|
|
|
707
713
|
}
|
|
708
714
|
|
|
709
715
|
|
|
716
|
+
interface IGasfreeoption{
|
|
717
|
+
name : string
|
|
718
|
+
deleted : boolean
|
|
719
|
+
sortorder : number
|
|
720
|
+
riskfactor : number
|
|
721
|
+
gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
|
|
722
|
+
}
|
|
723
|
+
interface IGasfreeoptionmeasure{
|
|
724
|
+
name : string
|
|
725
|
+
deleted : boolean
|
|
726
|
+
sortorder : number
|
|
727
|
+
measureid : string
|
|
728
|
+
gasfreeoptionid : string
|
|
729
|
+
gasfreeoption ?: IGasfreeoption
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
|
|
710
734
|
|
|
711
735
|
interface ZonatlasAddress {
|
|
712
736
|
add_on: string
|