@hy-capital/api-habit-tracker-types 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/dist/user.d.ts CHANGED
@@ -2,6 +2,12 @@ export interface User {
2
2
  id: number;
3
3
  name: string;
4
4
  email: string;
5
+ clerk_id: string;
6
+ is_on_boarding_done: boolean;
5
7
  created_at: string;
6
8
  updated_at: string;
7
9
  }
10
+ export interface CreateUserRequest {
11
+ email: string;
12
+ clerk_id: string;
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hy-capital/api-habit-tracker-types",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "types": "dist/index.d.ts",
package/src/user.ts CHANGED
@@ -2,6 +2,13 @@ export interface User {
2
2
  id: number;
3
3
  name: string;
4
4
  email: string;
5
+ clerk_id: string;
6
+ is_on_boarding_done: boolean;
5
7
  created_at: string;
6
8
  updated_at: string;
9
+ }
10
+
11
+ export interface CreateUserRequest {
12
+ email: string;
13
+ clerk_id: string;
7
14
  }