RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.23 → 1.0.24
hububb-models 1.0.23 → 1.0.24
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
+1
-0
package/src/models/user/user.ts
+1
-0
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "hububb-models",
3
-
"version": "1.0.
23
",
3
+
"version": "1.0.
24
",
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
@@ -3,6 +3,7 @@ export interface User {
3
3
phoneNumber: string;
4
4
fullName: string;
5
5
email: string;
6
+
verified?:boolean;
6
7
kyc?:{
7
8
verified?:boolean,
8
9
state?: 'processing'| 'success' | "declined",
package/src/models/user/user.ts
CHANGED
Viewed
@@ -3,6 +3,7 @@ export interface User {
3
3
phoneNumber: string;
4
4
fullName: string;
5
5
email: string;
6
+
verified?:boolean;
6
7
kyc?:{
7
8
verified?:boolean,
8
9
state?: 'processing'| 'success' | "declined",