@leavittsoftware/lg-core-typescript 2.18.0 → 2.21.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 +60 -0
- package/lg.net.core.ts +5 -5
- package/lg.net.leavittlink.js.map +1 -1
- package/lg.net.leavittlink.ts +3 -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":"AAmzBA,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,63 @@ export interface FruitHolderDto {
|
|
|
55
55
|
PersonId: number;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
export interface SurgeAuditBreakdownCommissionDto {
|
|
59
|
+
Amount: Partial<number>;
|
|
60
|
+
Date: string | null;
|
|
61
|
+
Id: number;
|
|
62
|
+
LastModifiedDate: string | null;
|
|
63
|
+
LineOfCoverage: string | null;
|
|
64
|
+
Name: string | null;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface SurgeAuditBreakdownDto {
|
|
68
|
+
AmountsMatch: boolean;
|
|
69
|
+
CrmCommission: Partial<SurgeAuditBreakdownCommissionDto> | null;
|
|
70
|
+
DatesMatch: boolean;
|
|
71
|
+
IsCrmCommissionDeleted: boolean;
|
|
72
|
+
IsPointCreatedByAdmin: boolean;
|
|
73
|
+
SortDate: string | null;
|
|
74
|
+
SurgeCrmPoint: Partial<SurgeAuditCrmPointDto> | null;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface SurgeAuditBreakdownsBySegmentDto {
|
|
78
|
+
Breakdowns: Array<Partial<SurgeAuditBreakdownDto>> | null;
|
|
79
|
+
CrmTotal: Partial<number>;
|
|
80
|
+
IsAfterSurge: boolean;
|
|
81
|
+
IsBeforeSurge: boolean;
|
|
82
|
+
Segment: Partial<SurgeBreakDownSegmentDto> | null;
|
|
83
|
+
SegmentId: number | null;
|
|
84
|
+
SurgeTotal: Partial<number>;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface SurgeAuditCrmPointDto {
|
|
88
|
+
Amount: Partial<number>;
|
|
89
|
+
ClientName: string | null;
|
|
90
|
+
CommissionSplitId: string | null;
|
|
91
|
+
CreatedDate: string;
|
|
92
|
+
DeletedDate: string | null;
|
|
93
|
+
EffectiveDate: string | null;
|
|
94
|
+
IsDeleted: boolean;
|
|
95
|
+
IsEditedByAdmin: boolean;
|
|
96
|
+
LastModifiedDate: string | null;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface SurgeAuditSummaryDto {
|
|
100
|
+
Difference: Partial<number>;
|
|
101
|
+
FirstName: string | null;
|
|
102
|
+
IsEditedByAdmin: boolean;
|
|
103
|
+
LastName: string | null;
|
|
104
|
+
PersonId: number;
|
|
105
|
+
TotalCRMPoints: Partial<number>;
|
|
106
|
+
TotalPoints: Partial<number>;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface SurgeBreakDownSegmentDto {
|
|
110
|
+
EndDate: string | null;
|
|
111
|
+
Name: string | null;
|
|
112
|
+
StartDate: string | null;
|
|
113
|
+
}
|
|
114
|
+
|
|
58
115
|
export interface SurgeReportsPlayerBreakdownDto {
|
|
59
116
|
FirstName: string | null;
|
|
60
117
|
GrandPrizeName: string | null;
|
|
@@ -189,6 +246,7 @@ export interface NaicsSummaryDto {
|
|
|
189
246
|
export interface BopQuoteDto {
|
|
190
247
|
BusinessStartYear: number;
|
|
191
248
|
City: string | null;
|
|
249
|
+
ClassName: string | null;
|
|
192
250
|
IsTest: boolean;
|
|
193
251
|
Name: string | null;
|
|
194
252
|
PhoneNumber: string | null;
|
|
@@ -246,10 +304,12 @@ export interface CampaignSummaryDto {
|
|
|
246
304
|
|
|
247
305
|
export interface SmallBusinessSummaryDto {
|
|
248
306
|
BopQuotes: number;
|
|
307
|
+
BopQuotesWithError: number;
|
|
249
308
|
CampaignSummaries: Array<Partial<CampaignSummaryDto>> | null;
|
|
250
309
|
RatingFailed: number;
|
|
251
310
|
RatingReturnedQuote: number;
|
|
252
311
|
WcQuotes: number;
|
|
312
|
+
WcQuotesWithError: number;
|
|
253
313
|
}
|
|
254
314
|
|
|
255
315
|
export interface SequenceDto {
|
package/lg.net.core.ts
CHANGED
|
@@ -177,6 +177,7 @@ export interface SurgeTeamAttachment extends Attachment {
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
export interface SurgeTeamPersonRole extends PersonRole {
|
|
180
|
+
CrmPoints: Array<Partial<SurgeCrmPoint>> | null;
|
|
180
181
|
Points: Array<Partial<SurgePoint>> | null;
|
|
181
182
|
PrimaryScoreboardIndividualGrandPrizes: string | null;
|
|
182
183
|
PrimaryScoreboardIndividualPrizeAmount: Partial<number> | null;
|
|
@@ -188,7 +189,6 @@ export interface SurgeTeamPersonRole extends PersonRole {
|
|
|
188
189
|
PrimaryScoreboardTopOnTeamRank: number;
|
|
189
190
|
PrimaryScoreboardTotalPrizeAmount: Partial<number> | null;
|
|
190
191
|
Surge: Partial<Surge> | null;
|
|
191
|
-
SurgeCrmPoints: Array<Partial<SurgeCrmPoint>> | null;
|
|
192
192
|
SurgeId: number;
|
|
193
193
|
Team: Partial<SurgeTeam> | null;
|
|
194
194
|
TeamId: number | null;
|
|
@@ -2940,10 +2940,10 @@ export interface CrmBulkImportFailure {
|
|
|
2940
2940
|
export interface CrmCommission {
|
|
2941
2941
|
Amount: Partial<number>;
|
|
2942
2942
|
CommissionSplitId: string | null;
|
|
2943
|
-
CrmOpportunity: Partial<CrmOpportunity> | null;
|
|
2944
2943
|
Id: number;
|
|
2945
2944
|
LastModifiedDate: string | null;
|
|
2946
2945
|
Name: string | null;
|
|
2946
|
+
Opportunity: Partial<CrmOpportunity> | null;
|
|
2947
2947
|
OpportunityId: number;
|
|
2948
2948
|
OwnerId: string;
|
|
2949
2949
|
Percent: Partial<number>;
|
|
@@ -2976,13 +2976,13 @@ export interface CrmContact {
|
|
|
2976
2976
|
}
|
|
2977
2977
|
|
|
2978
2978
|
export interface CrmOpportunity {
|
|
2979
|
+
Account: Partial<CrmAccount> | null;
|
|
2979
2980
|
AccountId: number;
|
|
2980
2981
|
AppointmentDate: string | null;
|
|
2981
2982
|
Carrier: number | null;
|
|
2982
2983
|
CommissionFee: Partial<number>;
|
|
2983
2984
|
CommissionPercentage: Partial<number>;
|
|
2984
2985
|
ConversationDate: string | null;
|
|
2985
|
-
CrmAccount: Partial<CrmAccount> | null;
|
|
2986
2986
|
CrmCommissions: Array<Partial<CrmCommission>> | null;
|
|
2987
2987
|
EffectiveDate: string | null;
|
|
2988
2988
|
Id: number;
|
|
@@ -2998,7 +2998,7 @@ export interface CrmOpportunity {
|
|
|
2998
2998
|
Premium: Partial<number>;
|
|
2999
2999
|
PresentationDate: string | null;
|
|
3000
3000
|
QualifiedDate: string | null;
|
|
3001
|
-
ReportingDate: string;
|
|
3001
|
+
ReportingDate: string | null;
|
|
3002
3002
|
SalesStageCode: number;
|
|
3003
3003
|
SoldDate: string | null;
|
|
3004
3004
|
StateCode: StateCodeTypeString;
|
|
@@ -3867,7 +3867,6 @@ export interface Person {
|
|
|
3867
3867
|
CLGamePointDeletedByPeople: Array<Partial<CLGamePoint>> | null;
|
|
3868
3868
|
CLGamePointLastModifiedByPeople: Array<Partial<CLGamePoint>> | null;
|
|
3869
3869
|
Comments: Array<Partial<Comment>> | null;
|
|
3870
|
-
Commissions: Array<Partial<CrmCommission>> | null;
|
|
3871
3870
|
CompanyGroups: Array<Partial<CompanyGroup>> | null;
|
|
3872
3871
|
CompanyId: number | null;
|
|
3873
3872
|
CompanyName: string | null;
|
|
@@ -3891,6 +3890,7 @@ export interface Person {
|
|
|
3891
3890
|
CreatedDate: string | null;
|
|
3892
3891
|
CReportComments: Array<Partial<CReportComment>> | null;
|
|
3893
3892
|
CrmAccounts: Array<Partial<CrmAccount>> | null;
|
|
3893
|
+
CrmCommissions: Array<Partial<CrmCommission>> | null;
|
|
3894
3894
|
CrmContactToEloquaContacts: Array<Partial<CrmContactToEloquaContact>> | null;
|
|
3895
3895
|
DateOfBirth: string | null;
|
|
3896
3896
|
DifferedCompensationBreakdownCreatorPeople: Array<Partial<DifferedCompensationBreakdown>> | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lg.net.leavittlink.js","sourceRoot":"","sources":["lg.net.leavittlink.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;
|
|
1
|
+
{"version":3,"file":"lg.net.leavittlink.js","sourceRoot":"","sources":["lg.net.leavittlink.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AAmDzB,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,qEAAa,CAAA;IACb,mEAAY,CAAA;AAChB,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B;AAID,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,qEAAO,CAAA;IACP,qFAAe,CAAA;AACnB,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,QAGnC"}
|
package/lg.net.leavittlink.ts
CHANGED
|
@@ -21,13 +21,15 @@ export interface HartfordQuoteRequest {
|
|
|
21
21
|
BusinessStartYear: number;
|
|
22
22
|
CarrierErrors: Array<Partial<CarrierError>> | null;
|
|
23
23
|
City: string | null;
|
|
24
|
+
ClassName: string | null;
|
|
24
25
|
CreatedDate: string;
|
|
25
26
|
Email: string | null;
|
|
27
|
+
EmailSentDate: string | null;
|
|
26
28
|
HartfordQuote: Partial<HartfordQuote> | null;
|
|
27
29
|
Id: number;
|
|
28
30
|
IsTest: boolean;
|
|
29
31
|
Name: string | null;
|
|
30
|
-
NumberOfEmployees: number;
|
|
32
|
+
NumberOfEmployees: number | null;
|
|
31
33
|
PhoneNumber: string | null;
|
|
32
34
|
QuoteRequestSessionId: string | null;
|
|
33
35
|
RequestPayload: string | null;
|