@leavittsoftware/lg-core-typescript 2.5.0 → 2.8.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 +47 -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":"AAksBA,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
|
@@ -55,6 +55,39 @@ export interface FruitHolderDto {
|
|
|
55
55
|
PersonId: number;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
export interface SurgeReportsPlayerBreakdownDto {
|
|
59
|
+
FirstName: string | null;
|
|
60
|
+
GrandPrizeName: string | null;
|
|
61
|
+
IsTeamCaptain: boolean;
|
|
62
|
+
LastName: string | null;
|
|
63
|
+
PersonId: number;
|
|
64
|
+
PrizeAmount: Partial<number> | null;
|
|
65
|
+
TeamStartDate: string;
|
|
66
|
+
TotalSold: Partial<number>;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface SurgeReportsTeamBreakdownDto {
|
|
70
|
+
CdnFileName: string | null;
|
|
71
|
+
GrandPrizeName: string | null;
|
|
72
|
+
ImageExtension: string | null;
|
|
73
|
+
Players: Array<Partial<SurgeReportsPlayerBreakdownDto>> | null;
|
|
74
|
+
PreviewExtension: string | null;
|
|
75
|
+
PreviewSizes: string | null;
|
|
76
|
+
PrizeAmount: Partial<number> | null;
|
|
77
|
+
TeamId: number;
|
|
78
|
+
TeamName: string | null;
|
|
79
|
+
TeamTotalSold: Partial<number>;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface SurgeReportsTopPlayerDto {
|
|
83
|
+
FirstName: string | null;
|
|
84
|
+
GrandPrizeName: string | null;
|
|
85
|
+
LastName: string | null;
|
|
86
|
+
PersonId: number;
|
|
87
|
+
PrizeAmount: Partial<number> | null;
|
|
88
|
+
TotalSold: Partial<number>;
|
|
89
|
+
}
|
|
90
|
+
|
|
58
91
|
export interface NaicsCsvUploadDto {
|
|
59
92
|
FileName: string | null;
|
|
60
93
|
RecordCount: number;
|
|
@@ -217,6 +250,7 @@ export interface HireDTO {
|
|
|
217
250
|
Extension: string | null;
|
|
218
251
|
FirstName: string | null;
|
|
219
252
|
HireDate: string;
|
|
253
|
+
HiringManagerPersonId: number;
|
|
220
254
|
HomeAddress: Partial<CompanyAddress> | null;
|
|
221
255
|
Hours: number;
|
|
222
256
|
IpAddress: string | null;
|
|
@@ -274,6 +308,7 @@ export interface NewUserResult {
|
|
|
274
308
|
|
|
275
309
|
export interface RehireDTO {
|
|
276
310
|
AdditionalItInfo: string | null;
|
|
311
|
+
AdditionalPayPerMonth: Partial<number> | null;
|
|
277
312
|
BenefitPoint: boolean;
|
|
278
313
|
Comments: string | null;
|
|
279
314
|
CompanyAddressId: number | null;
|
|
@@ -284,13 +319,22 @@ export interface RehireDTO {
|
|
|
284
319
|
EmploymentType: EmploymentTypeString;
|
|
285
320
|
Extension: string | null;
|
|
286
321
|
HireDate: string;
|
|
322
|
+
HiringManagerPersonId: number;
|
|
287
323
|
HomeAddress: Partial<CompanyAddress> | null;
|
|
324
|
+
Hours: number;
|
|
288
325
|
IpAddress: string | null;
|
|
289
326
|
IsAcctManagerOrRepOrCSR: boolean;
|
|
290
327
|
IsProducerOrExecutive: boolean;
|
|
291
328
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
292
329
|
ModelAfter: string | null;
|
|
293
330
|
OrderEquipment: boolean;
|
|
331
|
+
PayRate: Partial<number> | null;
|
|
332
|
+
ProducerEarnings: Partial<number> | null;
|
|
333
|
+
PtoAccrualsPerMonth: number;
|
|
334
|
+
ShippingAddress: Partial<CompanyAddress> | null;
|
|
335
|
+
ShipToAgency: boolean;
|
|
336
|
+
SupervisorId: number | null;
|
|
337
|
+
TimeSupervisorId: number | null;
|
|
294
338
|
}
|
|
295
339
|
|
|
296
340
|
export interface TerminateDto {
|
|
@@ -605,6 +649,7 @@ export interface CompanyDetailsDto {
|
|
|
605
649
|
}
|
|
606
650
|
|
|
607
651
|
export interface CompanyEmployeeDto {
|
|
652
|
+
Email: string | null;
|
|
608
653
|
FirstName: string | null;
|
|
609
654
|
IsDirectEmployee: boolean;
|
|
610
655
|
LastName: string | null;
|
|
@@ -617,8 +662,10 @@ export interface CompanyJobRoleDto {
|
|
|
617
662
|
}
|
|
618
663
|
|
|
619
664
|
export interface CompanyUpsertDto {
|
|
665
|
+
AcquisitionDate: string | null;
|
|
620
666
|
CompanyRoleType: CompanyRoleTypeString | null;
|
|
621
667
|
DBAName: string | null;
|
|
668
|
+
EIN: string | null;
|
|
622
669
|
FaxPhoneAreaCode: string | null;
|
|
623
670
|
FaxPhoneLine: string | null;
|
|
624
671
|
FolderPath: string | null;
|