@leavittsoftware/lg-core-typescript 2.4.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 +14 -1
- 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
|
@@ -53,7 +53,6 @@ export interface FruitHolderDto {
|
|
|
53
53
|
GroupSource: Array<string> | null;
|
|
54
54
|
LastName: string | null;
|
|
55
55
|
PersonId: number;
|
|
56
|
-
TestProp: string | null;
|
|
57
56
|
}
|
|
58
57
|
|
|
59
58
|
export interface NaicsCsvUploadDto {
|
|
@@ -218,6 +217,7 @@ export interface HireDTO {
|
|
|
218
217
|
Extension: string | null;
|
|
219
218
|
FirstName: string | null;
|
|
220
219
|
HireDate: string;
|
|
220
|
+
HiringManagerPersonId: number;
|
|
221
221
|
HomeAddress: Partial<CompanyAddress> | null;
|
|
222
222
|
Hours: number;
|
|
223
223
|
IpAddress: string | null;
|
|
@@ -275,6 +275,7 @@ export interface NewUserResult {
|
|
|
275
275
|
|
|
276
276
|
export interface RehireDTO {
|
|
277
277
|
AdditionalItInfo: string | null;
|
|
278
|
+
AdditionalPayPerMonth: Partial<number> | null;
|
|
278
279
|
BenefitPoint: boolean;
|
|
279
280
|
Comments: string | null;
|
|
280
281
|
CompanyAddressId: number | null;
|
|
@@ -285,13 +286,22 @@ export interface RehireDTO {
|
|
|
285
286
|
EmploymentType: EmploymentTypeString;
|
|
286
287
|
Extension: string | null;
|
|
287
288
|
HireDate: string;
|
|
289
|
+
HiringManagerPersonId: number;
|
|
288
290
|
HomeAddress: Partial<CompanyAddress> | null;
|
|
291
|
+
Hours: number;
|
|
289
292
|
IpAddress: string | null;
|
|
290
293
|
IsAcctManagerOrRepOrCSR: boolean;
|
|
291
294
|
IsProducerOrExecutive: boolean;
|
|
292
295
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
293
296
|
ModelAfter: string | null;
|
|
294
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;
|
|
295
305
|
}
|
|
296
306
|
|
|
297
307
|
export interface TerminateDto {
|
|
@@ -606,6 +616,7 @@ export interface CompanyDetailsDto {
|
|
|
606
616
|
}
|
|
607
617
|
|
|
608
618
|
export interface CompanyEmployeeDto {
|
|
619
|
+
Email: string | null;
|
|
609
620
|
FirstName: string | null;
|
|
610
621
|
IsDirectEmployee: boolean;
|
|
611
622
|
LastName: string | null;
|
|
@@ -618,8 +629,10 @@ export interface CompanyJobRoleDto {
|
|
|
618
629
|
}
|
|
619
630
|
|
|
620
631
|
export interface CompanyUpsertDto {
|
|
632
|
+
AcquisitionDate: string | null;
|
|
621
633
|
CompanyRoleType: CompanyRoleTypeString | null;
|
|
622
634
|
DBAName: string | null;
|
|
635
|
+
EIN: string | null;
|
|
623
636
|
FaxPhoneAreaCode: string | null;
|
|
624
637
|
FaxPhoneLine: string | null;
|
|
625
638
|
FolderPath: string | null;
|