@leavittsoftware/lg-core-typescript 2.6.0 → 2.7.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.js.map +1 -1
- package/api3.leavitt.com.ts +11 -0
- package/package.json +1 -1
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAiqBA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -217,6 +217,7 @@ export interface HireDTO {
|
|
|
217
217
|
Extension: string | null;
|
|
218
218
|
FirstName: string | null;
|
|
219
219
|
HireDate: string;
|
|
220
|
+
HiringManagerPersonId: number;
|
|
220
221
|
HomeAddress: Partial<CompanyAddress> | null;
|
|
221
222
|
Hours: number;
|
|
222
223
|
IpAddress: string | null;
|
|
@@ -274,6 +275,7 @@ export interface NewUserResult {
|
|
|
274
275
|
|
|
275
276
|
export interface RehireDTO {
|
|
276
277
|
AdditionalItInfo: string | null;
|
|
278
|
+
AdditionalPayPerMonth: Partial<number> | null;
|
|
277
279
|
BenefitPoint: boolean;
|
|
278
280
|
Comments: string | null;
|
|
279
281
|
CompanyAddressId: number | null;
|
|
@@ -284,13 +286,22 @@ export interface RehireDTO {
|
|
|
284
286
|
EmploymentType: EmploymentTypeString;
|
|
285
287
|
Extension: string | null;
|
|
286
288
|
HireDate: string;
|
|
289
|
+
HiringManagerPersonId: number;
|
|
287
290
|
HomeAddress: Partial<CompanyAddress> | null;
|
|
291
|
+
Hours: number;
|
|
288
292
|
IpAddress: string | null;
|
|
289
293
|
IsAcctManagerOrRepOrCSR: boolean;
|
|
290
294
|
IsProducerOrExecutive: boolean;
|
|
291
295
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
292
296
|
ModelAfter: string | null;
|
|
293
297
|
OrderEquipment: boolean;
|
|
298
|
+
PayRate: Partial<number> | null;
|
|
299
|
+
ProducerEarnings: Partial<number> | null;
|
|
300
|
+
PtoAccrualsPerMonth: number;
|
|
301
|
+
ShippingAddress: Partial<CompanyAddress> | null;
|
|
302
|
+
ShipToAgency: boolean;
|
|
303
|
+
SupervisorId: number | null;
|
|
304
|
+
TimeSupervisorId: number | null;
|
|
294
305
|
}
|
|
295
306
|
|
|
296
307
|
export interface TerminateDto {
|