@e-trias/woonplan 0.0.92 → 0.0.95
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 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ export interface IAppointment {
|
|
|
221
221
|
surveyorid?: string
|
|
222
222
|
needspayment?: true | false
|
|
223
223
|
price? : number
|
|
224
|
+
name?: string
|
|
224
225
|
}
|
|
225
226
|
|
|
226
227
|
export interface ICreateAppointmentParams{
|
|
@@ -236,10 +237,8 @@ export interface ICreateAppointmentParams{
|
|
|
236
237
|
export interface IAppointmentFormParams{
|
|
237
238
|
agendaId: number
|
|
238
239
|
appointmentTypeId: number
|
|
239
|
-
startDate:
|
|
240
|
-
endDate:
|
|
241
|
-
startTime : string
|
|
242
|
-
endTime : string
|
|
240
|
+
startDate: string
|
|
241
|
+
endDate: string
|
|
243
242
|
measuredataids : string[]
|
|
244
243
|
}
|
|
245
244
|
|
|
@@ -304,6 +303,20 @@ export interface IBookableday{
|
|
|
304
303
|
Day:number
|
|
305
304
|
Year?:number
|
|
306
305
|
JSDate?:Date
|
|
306
|
+
UTCDate?: string
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
export interface IBookabletime{
|
|
311
|
+
Date: string;
|
|
312
|
+
StartTime: string,
|
|
313
|
+
LabelTime: string
|
|
314
|
+
EndTime: string,
|
|
315
|
+
Timestamp: number,
|
|
316
|
+
JSDateStart?:Date
|
|
317
|
+
JSDateEnd?:Date
|
|
318
|
+
UTCDateStart?: string
|
|
319
|
+
UTCDateEnd?: string
|
|
307
320
|
}
|
|
308
321
|
|
|
309
322
|
|