@e-trias/woonplan 0.0.81 → 0.0.85

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 +14 -5
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -17,10 +17,9 @@ export interface Contact{
17
17
  areaactioncollectionid?: string | null
18
18
  questionairelocked?: boolean
19
19
  wantsnewsletter?: boolean
20
- coordinates?:unknown
21
- street?:unknown
22
- city?:unknown
23
- buildyear?:unknown
20
+ coordinates?:string
21
+ streetname?:string
22
+ city?:string
24
23
  }
25
24
  export interface Advice{
26
25
  id:string | null;
@@ -101,6 +100,7 @@ export interface Userdata{
101
100
  maxinvestment?:number
102
101
  cooksongas?:boolean
103
102
  source?:string
103
+ buildyear?:number
104
104
  }
105
105
 
106
106
  export interface Solarapicall{
@@ -305,4 +305,13 @@ export interface IBookableday{
305
305
  Day:number
306
306
  Year?:number
307
307
  JSDate?:Date
308
- }
308
+ }
309
+
310
+
311
+
312
+ export interface IBagData {
313
+ coordinates: number[]
314
+ buildyear: number
315
+ streetname: string
316
+ city: string
317
+ }
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": "0.0.81",
5
+ "version": "0.0.85",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"