@e-trias/woonplan 0.0.99 → 1.0.2

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 +20 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -53,6 +53,7 @@ export interface Logged{
53
53
  name:string;
54
54
  deleted:boolean;
55
55
  sortorder:number;
56
+ createdate:Date
56
57
  }
57
58
 
58
59
  export interface SignupForm{
@@ -151,6 +152,7 @@ export interface QuotationRequest{
151
152
  adviceid:string
152
153
  status:string
153
154
  data:JSON | null
155
+ files?:QuotationFile[]
154
156
  }
155
157
 
156
158
  export interface Collectivebuy{
@@ -256,6 +258,7 @@ export interface ISettings{
256
258
  mollie : {
257
259
  apiKey : string
258
260
  }
261
+ "ga-code" ?: string
259
262
  }
260
263
 
261
264
  export interface IPrice {
@@ -335,3 +338,20 @@ export interface IBagData {
335
338
  city: string
336
339
  surface:number
337
340
  }
341
+
342
+ export interface IWssProject{
343
+ id : string
344
+ name : string
345
+ }
346
+ export interface IWssAddress{
347
+ id : string
348
+ postcode : string
349
+ housenumber : number
350
+ extension : string
351
+ projectid : string
352
+ tags : string[]
353
+ }
354
+ export interface IWssTag{
355
+ id : string
356
+
357
+ }
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.99",
5
+ "version": "1.0.2",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"