@e-trias/woonplan 0.0.75 → 0.0.79
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 +28 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -123,6 +123,9 @@ export interface Quotation{
|
|
|
123
123
|
quotationrequestid:string
|
|
124
124
|
investment?:number
|
|
125
125
|
status?:string
|
|
126
|
+
accepteddate?:Date
|
|
127
|
+
rejectdate?:Date
|
|
128
|
+
rejectreason?:string
|
|
126
129
|
}
|
|
127
130
|
|
|
128
131
|
export interface QuotationFile{
|
|
@@ -266,4 +269,28 @@ export interface IPayment {
|
|
|
266
269
|
status : string
|
|
267
270
|
mollieid: string
|
|
268
271
|
checkoutUrl?: string
|
|
269
|
-
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
export interface IOnlineAfsprakenSettings{
|
|
275
|
+
apiKey: string
|
|
276
|
+
apiSecret: string
|
|
277
|
+
appointmentTypeId: number
|
|
278
|
+
agendaId: number
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
export interface IGetBookableDaysParams {
|
|
283
|
+
userdataid: string,
|
|
284
|
+
ResourceId?: string,
|
|
285
|
+
StartDate: string // YYYY-MM-DD
|
|
286
|
+
EndDate: string // YYYY-MM-DD
|
|
287
|
+
settings?:IOnlineAfsprakenSettings
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
export interface IGetBookableTimesParams {
|
|
291
|
+
Date: string // YYYY-MM-DD
|
|
292
|
+
userdataid: string,
|
|
293
|
+
ResourceId?: string,
|
|
294
|
+
EndDate?: string // YYYY-MM-DD
|
|
295
|
+
settings?:IOnlineAfsprakenSettings
|
|
296
|
+
}
|