RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.17 → 1.0.18
hububb-models 1.0.17 → 1.0.18
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (3)
hide
show
package/package.json
+1
-1
package/src/models/user/user.d.ts
+6
-0
package/src/models/user/user.ts
+6
-0
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "hububb-models",
3
-
"version": "1.0.
17
",
3
+
"version": "1.0.
18
",
4
4
"description": "Models for Hububb application",
5
5
"main": "index.js",
6
6
"types": "./src/index.d.ts",
package/src/models/user/user.d.ts
CHANGED
Viewed
@@ -7,6 +7,12 @@ export interface User {
7
7
verified?:boolean,
8
8
state?: 'processing'| 'success' | "declined",
9
9
declinedReason?:string,
10
+
form:{
11
+
firstName?:string,
12
+
lastName?:string,
13
+
dob?:string,
14
+
phoneNumber?:string
15
+
}
10
16
};
11
17
klevioId?: string;
12
18
}
package/src/models/user/user.ts
CHANGED
Viewed
@@ -7,6 +7,12 @@ export interface User {
7
7
verified?:boolean,
8
8
state?: 'processing'| 'success' | "declined",
9
9
declinedReason?:string,
10
+
form:{
11
+
firstName?:string,
12
+
lastName?:string,
13
+
dob?:string,
14
+
phoneNumber?:string
15
+
}
10
16
};
11
17
klevioId?: string;
12
18
}