@e-trias/woonplan 1.0.32 → 1.0.35
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 +48 -19
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -273,27 +273,55 @@ export interface IAppointmentFormParams{
|
|
|
273
273
|
measuredataids : string[]
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
-
export interface ISettings{
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
276
|
+
export interface ISettings {
|
|
277
|
+
"2fa"?: "email"
|
|
278
|
+
"ga-api-key"?: string
|
|
279
|
+
"ga-code"?: string
|
|
280
|
+
"gtm-code"?: string
|
|
281
|
+
adviceUrl?: string
|
|
282
|
+
cava?: ICavaSettings
|
|
283
|
+
createProjectInPerfectview?: boolean
|
|
284
|
+
houseScan?: boolean
|
|
285
|
+
initialQuestionsetP?: number
|
|
286
|
+
mollie?: { apiKey: string }
|
|
287
|
+
municipalityManagesLandingPage?: boolean
|
|
288
|
+
onlineAfsprakenActive?: number
|
|
289
|
+
onlineAfsprakenAgendaId?: number
|
|
290
|
+
onlineAfsprakenAppointmentTypeId?: number
|
|
291
|
+
perfectview?: IPerfectviewSettings
|
|
292
|
+
perfectviewProject?: IPerfectviewProject
|
|
293
|
+
priceMargin?: IPriceMargin
|
|
294
|
+
primaryPackage?: IPackage
|
|
295
|
+
quotationSalesContact?: string
|
|
296
|
+
showCollectiveHeatSourceText?: boolean
|
|
297
|
+
showPackages?: boolean
|
|
298
|
+
startpercentagequestionaire?: number
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export interface IPerfectviewSettings {
|
|
302
|
+
ApiKey?: string
|
|
303
|
+
DatabaseId?: string
|
|
304
|
+
UserId?: string
|
|
286
305
|
}
|
|
287
306
|
|
|
288
307
|
export interface ICavaSettings {
|
|
289
|
-
pvMark
|
|
290
|
-
pvMarkCategory
|
|
308
|
+
pvMark?: string
|
|
309
|
+
pvMarkCategory?: string
|
|
291
310
|
}
|
|
292
311
|
|
|
293
|
-
export interface
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
312
|
+
export interface IPerfectviewProject {
|
|
313
|
+
phase?: string
|
|
314
|
+
type?: string
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
export interface IPackage {
|
|
318
|
+
id: string
|
|
319
|
+
name: string
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface IPriceMargin {
|
|
323
|
+
priceMarginMin?: number
|
|
324
|
+
priceMarginMax?: number
|
|
297
325
|
}
|
|
298
326
|
|
|
299
327
|
export interface IPrice {
|
|
@@ -436,6 +464,7 @@ export interface IFloor extends IHouseobject{
|
|
|
436
464
|
floortypeid ?: string
|
|
437
465
|
floortype ?: IFloortype
|
|
438
466
|
crawlspaces ?: ICrawlspace[]
|
|
467
|
+
historic ?: boolean
|
|
439
468
|
}
|
|
440
469
|
|
|
441
470
|
|
|
@@ -518,7 +547,7 @@ export interface IRule{
|
|
|
518
547
|
insulationmethodid ?: string
|
|
519
548
|
insulationtypeid ?: string
|
|
520
549
|
|
|
521
|
-
field
|
|
522
|
-
operator
|
|
523
|
-
value
|
|
550
|
+
field ?: string
|
|
551
|
+
operator ?: string
|
|
552
|
+
value ?: string
|
|
524
553
|
}
|