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