@e-trias/woonplan 0.0.63 → 0.0.67
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 +17 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -194,7 +194,7 @@ export interface QuotationRequestForm{
|
|
|
194
194
|
contractorid : string
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
-
interface IAppointment {
|
|
197
|
+
export interface IAppointment {
|
|
198
198
|
id : string
|
|
199
199
|
status : string
|
|
200
200
|
startDate : Date
|
|
@@ -206,7 +206,7 @@ interface IAppointment {
|
|
|
206
206
|
needsPayment : true | false
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
interface ICreateAppointmentParams{
|
|
209
|
+
export interface ICreateAppointmentParams{
|
|
210
210
|
appointmentId: string
|
|
211
211
|
agendaId: string
|
|
212
212
|
appointmentTypeId: string
|
|
@@ -216,4 +216,19 @@ interface ICreateAppointmentParams{
|
|
|
216
216
|
endTime : Date
|
|
217
217
|
userdataId : string
|
|
218
218
|
customerId : string
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export interface IAppointmentFormParams{
|
|
222
|
+
agendaId: number
|
|
223
|
+
appointmentTypeId: number
|
|
224
|
+
startDate: Date
|
|
225
|
+
endDate: Date
|
|
226
|
+
startTime : Date
|
|
227
|
+
endTime : Date
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export interface ISettings{
|
|
231
|
+
onlineAfsprakenAgendaId ?: number
|
|
232
|
+
onlineAfsprakenActive ?: number
|
|
233
|
+
onlineAfsprakenAppointmentTypeId ?: number
|
|
219
234
|
}
|