@e-trias/woonplan 0.0.76 → 0.0.80
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 +34 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -124,6 +124,8 @@ export interface Quotation{
|
|
|
124
124
|
investment?:number
|
|
125
125
|
status?:string
|
|
126
126
|
accepteddate?:Date
|
|
127
|
+
rejectdate?:Date
|
|
128
|
+
rejectreason?:string
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
export interface QuotationFile{
|
|
@@ -267,4 +269,36 @@ export interface IPayment {
|
|
|
267
269
|
status : string
|
|
268
270
|
mollieid: string
|
|
269
271
|
checkoutUrl?: string
|
|
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
|
+
}
|
|
297
|
+
|
|
298
|
+
export interface IBookableday{
|
|
299
|
+
Date: string;
|
|
300
|
+
Month:number
|
|
301
|
+
Day:number
|
|
302
|
+
Year?:number
|
|
303
|
+
JSDate?:Date
|
|
270
304
|
}
|