@e-trias/woonplan 0.0.74 → 0.0.78
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 +21 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -122,6 +122,10 @@ export interface Quotation{
|
|
|
122
122
|
measuredataid?:string
|
|
123
123
|
quotationrequestid:string
|
|
124
124
|
investment?:number
|
|
125
|
+
status?:string
|
|
126
|
+
accepteddate?:Date
|
|
127
|
+
rejectdate?:Date
|
|
128
|
+
rejectreason?:string
|
|
125
129
|
}
|
|
126
130
|
|
|
127
131
|
export interface QuotationFile{
|
|
@@ -265,4 +269,20 @@ export interface IPayment {
|
|
|
265
269
|
status : string
|
|
266
270
|
mollieid: string
|
|
267
271
|
checkoutUrl?: string
|
|
268
|
-
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
export interface IGetBookableDaysParams {
|
|
277
|
+
userdataid: string,
|
|
278
|
+
ResourceId?: string,
|
|
279
|
+
StartDate: string // YYYY-MM-DD
|
|
280
|
+
EndDate: string // YYYY-MM-DD
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export interface IGetBookableTimesParams {
|
|
284
|
+
Date: string // YYYY-MM-DD
|
|
285
|
+
userdataid: string,
|
|
286
|
+
ResourceId?: string,
|
|
287
|
+
EndDate?: string // YYYY-MM-DD
|
|
288
|
+
}
|