@e-trias/woonplan 0.0.62 → 0.0.66
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 +23 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -199,6 +199,8 @@ export interface IAppointment {
|
|
|
199
199
|
status : string
|
|
200
200
|
startDate : Date
|
|
201
201
|
endDate : Date
|
|
202
|
+
startTime : Date
|
|
203
|
+
endTime : Date
|
|
202
204
|
userdataId : string
|
|
203
205
|
surveyorId : string
|
|
204
206
|
needsPayment : true | false
|
|
@@ -206,10 +208,27 @@ export interface IAppointment {
|
|
|
206
208
|
|
|
207
209
|
export interface ICreateAppointmentParams{
|
|
208
210
|
appointmentId: string
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
211
|
+
agendaId: string
|
|
212
|
+
appointmentTypeId: string
|
|
213
|
+
startDate: Date
|
|
214
|
+
endDate: Date
|
|
215
|
+
startTime : Date
|
|
216
|
+
endTime : Date
|
|
213
217
|
userdataId : string
|
|
214
218
|
customerId : string
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export interface IAppointmentFormParams{
|
|
222
|
+
agendaId: string
|
|
223
|
+
appointmentTypeId: string
|
|
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
|
|
215
234
|
}
|