@hy-capital/api-habit-tracker-types 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/user.d.ts +4 -0
- package/package.json +1 -1
- package/src/user.ts +5 -1
package/dist/user.d.ts
CHANGED
package/package.json
CHANGED
package/src/user.ts
CHANGED
@@ -8,12 +8,16 @@ export interface User {
|
|
8
8
|
updated_at: string;
|
9
9
|
}
|
10
10
|
|
11
|
-
|
12
11
|
export interface CreateUserRequest {
|
13
12
|
email: string;
|
14
13
|
clerk_id: string;
|
15
14
|
}
|
16
15
|
|
16
|
+
export interface UpsertUserRequest {
|
17
|
+
email: string;
|
18
|
+
clerk_id: string;
|
19
|
+
}
|
20
|
+
|
17
21
|
export interface UpdateUserRequest {
|
18
22
|
clerk_id: string;
|
19
23
|
name?: string;
|