RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.14 → 1.0.15
hububb-models 1.0.14 → 1.0.15
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
+3
-4
package/src/models/user/user.ts
+3
-4
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "hububb-models",
3
-
"version": "1.0.
14
",
3
+
"version": "1.0.
15
",
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,9 +3,8 @@ export interface User {
3
3
phoneNumber: string;
4
4
fullName: string;
5
5
email: string;
6
-
onFido
?:
{
7
-
id
?:
string;
8
-
verified?: boolean;
9
-
};
6
+
kyc
?:{
7
+
verified
?:
boolean,
8
+
}
10
9
klevioId?: string;
11
10
}
package/src/models/user/user.ts
CHANGED
Viewed
@@ -3,9 +3,8 @@ export interface User {
3
3
phoneNumber: string;
4
4
fullName: string;
5
5
email: string;
6
-
onFido
?:
{
7
-
id
?:
string;
8
-
verified?: boolean;
9
-
};
6
+
kyc
?:{
7
+
verified
?:
boolean,
8
+
}
10
9
klevioId?: string;
11
10
}