@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.
Files changed (2) hide show
  1. package/index.d.ts +48 -19
  2. 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
- onlineAfsprakenAgendaId ?: number
278
- onlineAfsprakenActive ?: number
279
- onlineAfsprakenAppointmentTypeId ?: number
280
- cava ?: ICavaSettings
281
- perfectview ?: IPerfectviewSettings
282
- mollie : {
283
- apiKey : string
284
- }
285
- "ga-code" ?: string
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 ?: string
290
- pvMarkCategory ?: string
308
+ pvMark?: string
309
+ pvMarkCategory?: string
291
310
  }
292
311
 
293
- export interface IPerfectviewSettings {
294
- ApiKey ?: string
295
- UserId ?: string
296
- DatabaseId ?: string
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: string
522
- operator: string
523
- value : string
550
+ field ?: string
551
+ operator ?: string
552
+ value ?: string
524
553
  }
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": "1.0.32",
5
+ "version": "1.0.35",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"