@e-trias/woonplan 0.0.91 → 0.0.94
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
|
@@ -217,10 +217,11 @@ export interface IAppointment {
|
|
|
217
217
|
status?: string
|
|
218
218
|
start?: Date
|
|
219
219
|
end?: Date
|
|
220
|
-
|
|
221
|
-
|
|
220
|
+
userdataid?: string
|
|
221
|
+
surveyorid?: string
|
|
222
222
|
needspayment?: true | false
|
|
223
223
|
price? : number
|
|
224
|
+
name?: string
|
|
224
225
|
}
|
|
225
226
|
|
|
226
227
|
export interface ICreateAppointmentParams{
|
|
@@ -304,6 +305,20 @@ export interface IBookableday{
|
|
|
304
305
|
Day:number
|
|
305
306
|
Year?:number
|
|
306
307
|
JSDate?:Date
|
|
308
|
+
UTCDate?: string
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
export interface IBookabletime{
|
|
313
|
+
Date: string;
|
|
314
|
+
StartTime: string,
|
|
315
|
+
LabelTime: string
|
|
316
|
+
EndTime: string,
|
|
317
|
+
Timestamp: number,
|
|
318
|
+
JSDateStart?:Date
|
|
319
|
+
JSDateEnd?:Date
|
|
320
|
+
UTCDateStart?: string
|
|
321
|
+
UTCDateEnd?: string
|
|
307
322
|
}
|
|
308
323
|
|
|
309
324
|
|