@hy-capital/api-habit-tracker-types 1.0.9 → 1.0.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- export interface UserStat {
1
+ export interface DbUserStat {
2
2
  user_id: number;
3
3
  type: 'Mental Clarity' | 'Purpose' | 'Discipline' | 'Mindset';
4
4
  initial_score: number;
package/dist/user.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export interface User {
1
+ export interface DbUser {
2
2
  id: number;
3
3
  name: string | null;
4
4
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hy-capital/api-habit-tracker-types",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "types": "dist/index.d.ts",
package/src/user-stat.ts CHANGED
@@ -1,4 +1,4 @@
1
- export interface UserStat {
1
+ export interface DbUserStat {
2
2
  user_id: number;
3
3
  type: 'Mental Clarity' | 'Purpose' | 'Discipline' | 'Mindset';
4
4
  initial_score: number;
package/src/user.ts CHANGED
@@ -1,4 +1,4 @@
1
- export interface User {
1
+ export interface DbUser {
2
2
  id: number;
3
3
  name: string | null;
4
4
  email: string;