@e-trias/woonplan 0.0.70 → 0.0.74
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/index.d.ts +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -124,6 +124,13 @@ export interface Quotation{
|
|
|
124
124
|
investment?:number
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
+
export interface QuotationFile{
|
|
128
|
+
id:string
|
|
129
|
+
originalfilename:string
|
|
130
|
+
quotationid:string
|
|
131
|
+
folder:string
|
|
132
|
+
}
|
|
133
|
+
|
|
127
134
|
export interface QuotationRequest{
|
|
128
135
|
id:string
|
|
129
136
|
measureid:string
|
|
@@ -156,6 +163,7 @@ export interface Measuredata{
|
|
|
156
163
|
collectivebuyid?:string
|
|
157
164
|
contractorid?:string
|
|
158
165
|
measureid?:string
|
|
166
|
+
requiressurvey?:boolean
|
|
159
167
|
|
|
160
168
|
}
|
|
161
169
|
|
|
@@ -225,6 +233,7 @@ export interface IAppointmentFormParams{
|
|
|
225
233
|
endDate: Date
|
|
226
234
|
startTime : string
|
|
227
235
|
endTime : string
|
|
236
|
+
measuredataids : string[]
|
|
228
237
|
}
|
|
229
238
|
|
|
230
239
|
export interface ISettings{
|