@the-inkwell/shared 0.1.28 → 0.1.29

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -4,19 +4,73 @@ import { ListResponse } from '../../shared'
4
4
 
5
5
  export type AdminPerson = {
6
6
  id: string
7
+ email: string | null
8
+ emailVerified: boolean
7
9
  firstName: string | null
8
10
  lastName: string | null
9
- email: string
10
- phone: string | null
11
11
  linkedInUrl: string | null
12
+ phone: string | null
13
+ phoneVerified: boolean | null
14
+ emailOptOut: boolean
15
+ smsOptOut: boolean
16
+ resumeUrl: string | null
12
17
  photoUrl: string | null
13
- createdAt: Date
14
- updatedAt: Date
15
- source: 'ADMIN' | 'WEBSITE' | null
16
- // TODO add this
17
- // roles: AdminRole[]
18
- // permissions: AdminPermission[]
19
- } // TODO add this
18
+ lat: number | null
19
+ lon: number | null
20
+ city: string | null
21
+ state: string | null
22
+ postalCode: string | null
23
+ country: string | null
24
+ additionalEmails: string[] | null
25
+ additionalPhones: string[] | null
26
+ source: any // TODO add this
27
+ website: string | null
28
+ currentSalary: number | null
29
+ expectedSalary: number | null
30
+ currentEmployer: string | null
31
+ currentTitle: string | null
32
+ careerLevel: any // TODO add this
33
+ certifications: string[] | null
34
+ openToRelocate: boolean | null
35
+ highestDegreeObtained: any // TODO add this
36
+ undergraduateInstitution: string | null
37
+ typeOfUndergraduateDegree: string | null
38
+ graduateInstitution: string | null
39
+ typeOfGraduateDegree: string | null
40
+ gender: any // TODO add this
41
+ howDidYouHearAboutUs: string | null
42
+
43
+ sourcePersonId: string | null
44
+ sourcePerson: AdminPerson | null
45
+ sourcedPersons: AdminPerson[] | null
46
+
47
+ bestiedByPersons: AdminPerson[] | null
48
+ bestPersons: AdminPerson[]
49
+
50
+ clientId: string | null
51
+ client: any // TODO add this
52
+
53
+ actions: any // TODO add this
54
+ admin: any // TODO add this
55
+ candidacies: any // TODO add this
56
+ clubs: any // TODO add this
57
+ conversations: any // TODO add this
58
+ enrichment: any // TODO add this
59
+ messages: any // TODO add this
60
+ networks: any // TODO add this
61
+ notes: any // TODO add this
62
+ referrals: any // TODO add this
63
+ skills: any // TODO add this
64
+ tags: any // TODO add this
65
+
66
+ deactivatedAt: string | null
67
+ lastSignedInAt: string | null
68
+ signInCount: number
69
+
70
+ deletedAt: string | null
71
+ createdAt: string
72
+ updatedAt: string
73
+ }
20
74
 
21
75
  // detail
22
76