@e-trias/woonplan 0.0.16 → 0.0.20

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 +11 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export interface Contact{
13
13
  password:string;
14
14
  securityroleid:string | null;
15
15
  companyid:string | null;
16
+ areaactioncollectionid:string | null;
16
17
  }
17
18
 
18
19
  export interface SecurityRole{
@@ -37,7 +38,7 @@ export interface Logged{
37
38
  deleted:boolean;
38
39
  }
39
40
 
40
- export interface CIASignupForm{
41
+ export interface SignupForm{
41
42
  salutation:string;
42
43
  firstname:string;
43
44
  infix:string;
@@ -53,17 +54,23 @@ export interface CIASignupForm{
53
54
  conditions:boolean;
54
55
  areaactionid: string;
55
56
  partnerid: string;
57
+ areaactioncollectionid:string;
56
58
  }
57
59
 
58
- export interface CIASignupFormResponse{
60
+ export interface CIASignupForm extends SignupForm{}
61
+ export interface MWASignupForm extends SignupForm{}
62
+
63
+ export interface SignupFormResponse{
59
64
  status: string;
60
65
  statuscode: number;
61
66
  title?: string;
62
67
  contact?:Contact;
63
68
  }
69
+ export interface CIASignupFormResponse extends SignupFormResponse{}
70
+ export interface MWASignupFormResponse extends SignupFormResponse{}
71
+
64
72
  export interface Userdata{
65
73
  id:string;
66
- name:string;
67
- sourceid:string;
74
+ sourceid:string | null;
68
75
  contactid:string
69
76
  }
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.16",
5
+ "version": "0.0.20",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"