@e-trias/woonplan 0.0.6 → 0.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 +8 -6
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -12,15 +12,15 @@ export interface SecurityRole{
12
12
  deleted:boolean;
13
13
  }
14
14
 
15
- export interface Content {
16
- subject: string
17
- body: string
15
+ export interface Content{
16
+ subject: string;
17
+ body: string;
18
18
  }
19
19
 
20
20
  export interface Article{
21
- id:string
22
- title:string
23
- body: string
21
+ id:string;
22
+ title:string;
23
+ body: string;
24
24
  }
25
25
  export interface Logged{
26
26
  id: string;
@@ -42,6 +42,8 @@ export interface CIASignupForm{
42
42
  password:string;
43
43
  password_repeat:string;
44
44
  conditions:boolean;
45
+ areaactionid: string;
46
+ partnerid: string;
45
47
  }
46
48
 
47
49
  export interface CIASignupFormResponse{
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "index.d.ts",
5
- "version": "0.0.6",
6
- "main": "index.js",
5
+ "version": "0.0.10",
6
+ "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
9
9
  },