@leavittsoftware/lg-core-typescript 4.40.0 → 4.41.0
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/api3.leavitt.com.ts +3 -3
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -2040,7 +2040,7 @@ export interface ContactJobRecruitersDto {
|
|
|
2040
2040
|
AgencyId: number;
|
|
2041
2041
|
Description: string | null;
|
|
2042
2042
|
EndDate: string | null;
|
|
2043
|
-
HiringManagerPersonId: number;
|
|
2043
|
+
HiringManagerPersonId: number | null;
|
|
2044
2044
|
JobTitle: string | null;
|
|
2045
2045
|
OpenPositions: string | null;
|
|
2046
2046
|
PayRangeLower: string | null;
|
|
@@ -2154,7 +2154,7 @@ export interface JobPostingDto {
|
|
|
2154
2154
|
AgencyId: number;
|
|
2155
2155
|
Description: string | null;
|
|
2156
2156
|
EndDate: string | null;
|
|
2157
|
-
HiringManagerPersonId: number;
|
|
2157
|
+
HiringManagerPersonId: number | null;
|
|
2158
2158
|
JobTitle: string | null;
|
|
2159
2159
|
StartDate: string | null;
|
|
2160
2160
|
}
|
|
@@ -2189,7 +2189,7 @@ export interface NewUserResult {
|
|
|
2189
2189
|
export interface OfferLetterDto {
|
|
2190
2190
|
AgencyId: number;
|
|
2191
2191
|
Details: string | null;
|
|
2192
|
-
HiringManagerPersonId: number;
|
|
2192
|
+
HiringManagerPersonId: number | null;
|
|
2193
2193
|
JobTitle: string | null;
|
|
2194
2194
|
StartDate: string | null;
|
|
2195
2195
|
}
|