@e-trias/woonplan 0.0.62 → 0.0.63

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.
Files changed (2) hide show
  1. package/index.d.ts +10 -6
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -194,22 +194,26 @@ export interface QuotationRequestForm{
194
194
  contractorid : string
195
195
  }
196
196
 
197
- export interface IAppointment {
197
+ interface IAppointment {
198
198
  id : string
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
205
207
  }
206
208
 
207
- export interface ICreateAppointmentParams{
209
+ interface ICreateAppointmentParams{
208
210
  appointmentId: string
209
- AgendaId: string
210
- AppointmentTypeId: string
211
- StartDate: Date
212
- EndDate: Date
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
215
219
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "index.d.ts",
5
- "version": "0.0.62",
5
+ "version": "0.0.63",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"