@e-trias/woonplan 0.0.93 → 0.0.96
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 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -174,7 +174,7 @@ export interface Measuredata{
|
|
|
174
174
|
contractorid?:string
|
|
175
175
|
measureid?:string
|
|
176
176
|
requiressurvey?:boolean
|
|
177
|
-
|
|
177
|
+
collectivebuystatus?:"now" | "future" | "never"
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
export interface Text{
|
|
@@ -237,10 +237,8 @@ export interface ICreateAppointmentParams{
|
|
|
237
237
|
export interface IAppointmentFormParams{
|
|
238
238
|
agendaId: number
|
|
239
239
|
appointmentTypeId: number
|
|
240
|
-
startDate:
|
|
241
|
-
endDate:
|
|
242
|
-
startTime : string
|
|
243
|
-
endTime : string
|
|
240
|
+
startDate: string
|
|
241
|
+
endDate: string
|
|
244
242
|
measuredataids : string[]
|
|
245
243
|
}
|
|
246
244
|
|
|
@@ -305,6 +303,20 @@ export interface IBookableday{
|
|
|
305
303
|
Day:number
|
|
306
304
|
Year?:number
|
|
307
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
|
|
308
320
|
}
|
|
309
321
|
|
|
310
322
|
|