@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 +6 -0
- package/package.json +1 -1
- package/src/user.ts +7 -0
package/dist/user.d.ts
CHANGED
package/package.json
CHANGED
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
|
}
|