@e-trias/woonplan 1.0.7 → 1.0.10

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 +54 -13
  2. package/package.json +24 -24
package/index.d.ts CHANGED
@@ -21,19 +21,20 @@ export interface Contact{
21
21
  streetname?:string
22
22
  city?:string
23
23
  simpleid?:number
24
- salutation?:string;
24
+ salutation?: string
25
+ pvid?: string
25
26
  }
26
27
  export interface Advice{
27
28
  id:string | null;
28
29
  userdataid:string;
29
30
  status:string;
30
31
  usage:string
31
- adviceinfo:string
32
- advicedusage:string
33
- userinput:string
34
- advicedinput:string
35
- advicedstates:string
36
- workerresult:string
32
+ adviceinfo:string
33
+ advicedusage:string
34
+ userinput:string
35
+ advicedinput:string
36
+ advicedstates:string
37
+ workerresult:string
37
38
  calculatedmeasures:string
38
39
  }
39
40
 
@@ -146,8 +147,8 @@ export interface Quotation{
146
147
  }
147
148
 
148
149
  export interface QuotationFile{
149
- id:string
150
- originalfilename:string
150
+ id:string
151
+ originalfilename:string
151
152
  quotationid?:string
152
153
  quotationrequestid?:string
153
154
  folder?:string
@@ -189,6 +190,7 @@ export interface Measuredata{
189
190
  measureid?:string
190
191
  requiressurvey?:boolean
191
192
  collectivebuystatus?:"now" | "future" | "never"
193
+ collectivebuyquotationpossible?:boolean
192
194
  }
193
195
 
194
196
  export interface Measuredatainterestedcontact{
@@ -354,14 +356,53 @@ export interface IWssProject{
354
356
  name : string
355
357
  }
356
358
  export interface IWssAddress{
357
- id : string
358
- postcode : string
359
+ id : string
360
+ postcode : string
359
361
  housenumber : number
360
- extension : string
361
- projectid : string
362
+ extension : string
363
+ projectid : string
362
364
  tags : string[]
363
365
  }
364
366
  export interface IWssTag{
367
+ id : string
368
+
369
+ }
370
+
371
+ export interface IHouseobject{
372
+ deleted : boolean
365
373
  id : string
374
+ sortorder : number
375
+ surface ?: number
376
+ measuredatas ?: Measuredata[]
377
+ }
366
378
 
379
+ export interface IFloor extends IHouseobject{
380
+
367
381
  }
382
+
383
+
384
+ export interface IWall extends IHouseobject{
385
+ shadowpercentage ?: number
386
+
387
+ }
388
+
389
+
390
+ export interface IRoof extends IHouseobject{
391
+ shadowpercentage ?: number
392
+
393
+ }
394
+
395
+ export interface IWindowframepart extends IHouseobject{
396
+ framewidth ?: number
397
+ frameheight ?: number
398
+ glasswidth ?: number
399
+ glassheight ?: number
400
+ leftcasinglength ?: number
401
+ rightcasinglength ?: number
402
+ bottomstoollength ?: number
403
+ topstoollength ?: number
404
+ shadowpercentage ?: number
405
+
406
+ windowframeparttypeid ?: string
407
+ windowframeid ?: string
408
+ }
package/package.json CHANGED
@@ -1,24 +1,24 @@
1
- {
2
- "name": "@e-trias/woonplan",
3
- "private": false,
4
- "types": "index.d.ts",
5
- "version": "1.0.7",
6
- "main": "index.d.ts",
7
- "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/e-line-websolutions/woonplan-types.git"
13
- },
14
- "author": "Jasper Denk",
15
- "license": "ISC",
16
- "bugs": {
17
- "url": "https://github.com/e-line-websolutions/woonplan-types/issues"
18
- },
19
- "homepage": "https://github.com/e-line-websolutions/woonplan-types#readme",
20
- "description": "",
21
- "dependencies": {
22
- "@types/uuidv4": "^5.0.0"
23
- }
24
- }
1
+ {
2
+ "name": "@e-trias/woonplan",
3
+ "private": false,
4
+ "types": "index.d.ts",
5
+ "version": "1.0.10",
6
+ "main": "index.d.ts",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/e-line-websolutions/woonplan-types.git"
13
+ },
14
+ "author": "Jasper Denk",
15
+ "license": "ISC",
16
+ "bugs": {
17
+ "url": "https://github.com/e-line-websolutions/woonplan-types/issues"
18
+ },
19
+ "homepage": "https://github.com/e-line-websolutions/woonplan-types#readme",
20
+ "description": "",
21
+ "dependencies": {
22
+ "@types/uuidv4": "^5.0.0"
23
+ }
24
+ }