@the-inkwell/shared 0.1.142 → 0.1.143
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.
package/package.json
CHANGED
|
@@ -56,8 +56,33 @@ export type AdminPersonUpdateInput = Pick<
|
|
|
56
56
|
'firstName' | 'lastName' | 'email' | 'phone' | 'linkedInUrl' | 'photoUrl'
|
|
57
57
|
>
|
|
58
58
|
export type AdminPersonUpdateParams = Pick<AdminPerson, 'id'>
|
|
59
|
-
export type AdminPersonUpdateResponse =
|
|
59
|
+
export type AdminPersonUpdateResponse =
|
|
60
|
+
| Pick<AdminPerson, 'id'>
|
|
61
|
+
| { error: string }
|
|
60
62
|
|
|
61
63
|
// delete
|
|
62
64
|
|
|
63
65
|
export type AdminPersonDeleteParams = Pick<AdminPerson, 'id'>
|
|
66
|
+
|
|
67
|
+
// resume upload and parsing
|
|
68
|
+
export type AdminPersonResumeUploadResponse = { resumeUrl: string }
|
|
69
|
+
|
|
70
|
+
export type AdminPersonResumeParsingResponse = {
|
|
71
|
+
firstName: string | null
|
|
72
|
+
lastName: string | null
|
|
73
|
+
email: string | null
|
|
74
|
+
phone: string | null
|
|
75
|
+
linkedInUrl: string | null
|
|
76
|
+
city: string | null
|
|
77
|
+
state: string | null
|
|
78
|
+
country: string | null
|
|
79
|
+
postalCode: string | null
|
|
80
|
+
website: string | null
|
|
81
|
+
gender: string | null
|
|
82
|
+
dateOfBirth: string | null
|
|
83
|
+
currentJobTitle: string | null
|
|
84
|
+
yearsOfExperience: number | null
|
|
85
|
+
skills: string[] | null
|
|
86
|
+
certifications: string[] | null
|
|
87
|
+
industry: string | null
|
|
88
|
+
}
|