RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.48 → 1.0.49
hububb-models 1.0.48 → 1.0.49
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.
48
",
3
+
"version": "1.0.
49
",
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
@@ -26,4 +26,5 @@ export interface User {
26
26
};
27
27
};
28
28
klevioId?: string;
29
+
favorites?: string[];
29
30
}
package/src/models/user/user.ts
CHANGED
Viewed
@@ -26,4 +26,5 @@ export interface User {
26
26
};
27
27
};
28
28
klevioId?: string;
29
+
favorites?: string[];
29
30
}