lancer-shared 1.0.144 → 1.0.145
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { loginSchema, registerSchema, userSchema } from "../../schemas";
|
|
2
|
+
import { loginSchema, registerSchema, upworkProfileSchema, userSchema } from "../../schemas";
|
|
3
3
|
import { Lead } from "../job";
|
|
4
4
|
import { SavedSearch } from "../saved-search";
|
|
5
5
|
export interface User extends z.infer<typeof userSchema> {
|
|
@@ -10,3 +10,5 @@ export interface RegisterSchema extends z.infer<typeof registerSchema> {
|
|
|
10
10
|
}
|
|
11
11
|
export interface LoginSchema extends z.infer<typeof loginSchema> {
|
|
12
12
|
}
|
|
13
|
+
export interface UpworkProfile extends z.infer<typeof upworkProfileSchema> {
|
|
14
|
+
}
|