@leavittsoftware/lg-core-typescript 2.0.456 → 2.0.459
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.js.map +1 -1
- package/lg.net.core.ts +17 -9
- 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":"AAoWA,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
|
@@ -5,6 +5,23 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { SignatureValue,SignatureTemplateToCompany,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
|
+
export interface NaicsCsvUploadDto {
|
|
9
|
+
FileName: string | null;
|
|
10
|
+
RecordCount: number;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface NaicsGetLineOfBusinessDto {
|
|
14
|
+
LineOfBusiness: string | null;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface NaicsReportTopAgenciesCsvDto {
|
|
18
|
+
Agency: string | null;
|
|
19
|
+
AgencyId: string | null;
|
|
20
|
+
NaicsCode: string | null;
|
|
21
|
+
PolicyType: string | null;
|
|
22
|
+
Premium: number;
|
|
23
|
+
}
|
|
24
|
+
|
|
8
25
|
export interface NaicsReportTopAgenciesDto {
|
|
9
26
|
Agency: string | null;
|
|
10
27
|
AgencyId: string | null;
|
|
@@ -13,6 +30,13 @@ export interface NaicsReportTopAgenciesDto {
|
|
|
13
30
|
Rank: number;
|
|
14
31
|
}
|
|
15
32
|
|
|
33
|
+
export interface NaicsReportTopCarriersCsvDto {
|
|
34
|
+
NaicsCode: string | null;
|
|
35
|
+
ParentCompany: string | null;
|
|
36
|
+
PolicyType: string | null;
|
|
37
|
+
Premium: number;
|
|
38
|
+
}
|
|
39
|
+
|
|
16
40
|
export interface NaicsReportTopCarriersDto {
|
|
17
41
|
NaicsCode: string | null;
|
|
18
42
|
ParentCompany: string | null;
|
|
@@ -20,6 +44,13 @@ export interface NaicsReportTopCarriersDto {
|
|
|
20
44
|
Rank: number;
|
|
21
45
|
}
|
|
22
46
|
|
|
47
|
+
export interface NaicsReportTopIndustriesCsvDto {
|
|
48
|
+
NaicsCode: string | null;
|
|
49
|
+
Premium: number;
|
|
50
|
+
Rank: number;
|
|
51
|
+
Title: string | null;
|
|
52
|
+
}
|
|
53
|
+
|
|
23
54
|
export interface NaicsReportTopIndustriesDto {
|
|
24
55
|
NaicsCode: string | null;
|
|
25
56
|
Premium: number;
|
|
@@ -27,6 +58,16 @@ export interface NaicsReportTopIndustriesDto {
|
|
|
27
58
|
Title: string | null;
|
|
28
59
|
}
|
|
29
60
|
|
|
61
|
+
export interface NaicsReportTopProducersCsvDto {
|
|
62
|
+
AgencyId: string | null;
|
|
63
|
+
AgencyName: string | null;
|
|
64
|
+
NaicsCode: string | null;
|
|
65
|
+
PolicyType: string | null;
|
|
66
|
+
Premium: number;
|
|
67
|
+
Producer: string | null;
|
|
68
|
+
ProducerId: string | null;
|
|
69
|
+
}
|
|
70
|
+
|
|
30
71
|
export interface NaicsReportTopProducersDto {
|
|
31
72
|
AgencyName: string | null;
|
|
32
73
|
NaicsCode: string | null;
|
|
@@ -36,6 +77,13 @@ export interface NaicsReportTopProducersDto {
|
|
|
36
77
|
Rank: number;
|
|
37
78
|
}
|
|
38
79
|
|
|
80
|
+
export interface NaicsReportTopStatesCsvDto {
|
|
81
|
+
NaicsCode: string | null;
|
|
82
|
+
PolicyType: string | null;
|
|
83
|
+
Premium: number;
|
|
84
|
+
State: string | null;
|
|
85
|
+
}
|
|
86
|
+
|
|
39
87
|
export interface NaicsReportTopStatesDto {
|
|
40
88
|
NaicsCode: string | null;
|
|
41
89
|
Premium: number | null;
|
|
@@ -43,6 +91,18 @@ export interface NaicsReportTopStatesDto {
|
|
|
43
91
|
State: string | null;
|
|
44
92
|
}
|
|
45
93
|
|
|
94
|
+
export interface NaicsRow {
|
|
95
|
+
Code: string | null;
|
|
96
|
+
Title: string | null;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface NaicsSummaryDto {
|
|
100
|
+
Code: number;
|
|
101
|
+
Id: number;
|
|
102
|
+
Title: string | null;
|
|
103
|
+
TotalPremiums: number;
|
|
104
|
+
}
|
|
105
|
+
|
|
46
106
|
export interface GetSignaturePrefillDataDto {
|
|
47
107
|
AgencyOrDepartment: string | null;
|
|
48
108
|
City: string | null;
|
package/lg.net.core.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lg.net.core.js","sourceRoot":"","sources":["lg.net.core.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;
|
|
1
|
+
{"version":3,"file":"lg.net.core.js","sourceRoot":"","sources":["lg.net.core.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AAwsJzB,MAAM,CAAN,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,+DAAiB,CAAA;IACjB,+DAAiB,CAAA;AACrB,CAAC,EAHW,eAAe,KAAf,eAAe,QAG1B;AAID,MAAM,CAAN,IAAY,kBAOX;AAPD,WAAY,kBAAkB;IAC1B,2DAAQ,CAAA;IACR,2DAAQ,CAAA;IACR,iEAAW,CAAA;IACX,6DAAS,CAAA;IACT,6DAAS,CAAA;IACT,kFAAoB,CAAA;AACxB,CAAC,EAPW,kBAAkB,KAAlB,kBAAkB,QAO7B;AAID,MAAM,CAAN,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IACxB,qDAAO,CAAA;IACP,6DAAW,CAAA;AACf,CAAC,EAHW,gBAAgB,KAAhB,gBAAgB,QAG3B;AAID,MAAM,CAAN,IAAY,0BAOX;AAPD,WAAY,0BAA0B;IAClC,yEAAO,CAAA;IACP,6EAAS,CAAA;IACT,6EAAS,CAAA;IACT,yEAAO,CAAA;IACP,2EAAQ,CAAA;IACR,2EAAQ,CAAA;AACZ,CAAC,EAPW,0BAA0B,KAA1B,0BAA0B,QAOrC;AAID,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;AAChB,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AAID,MAAM,CAAN,IAAY,OAKX;AALD,WAAY,OAAO;IACf,yCAAU,CAAA;IACV,yCAAU,CAAA;IACV,yCAAU,CAAA;IACV,qCAAQ,CAAA;AACZ,CAAC,EALW,OAAO,KAAP,OAAO,QAKlB;AAID,MAAM,CAAN,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,+DAAc,CAAA;IACd,+DAAc,CAAA;IACd,6DAAa,CAAA;AACjB,CAAC,EAJW,cAAc,KAAd,cAAc,QAIzB;AAID,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,mEAAY,CAAA;IACZ,+DAAU,CAAA;AACd,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B;AAID,MAAM,CAAN,IAAY,sBAOX;AAPD,WAAY,sBAAsB;IAC9B,mEAAQ,CAAA;IACR,uEAAU,CAAA;IACV,qEAAS,CAAA;IACT,qEAAS,CAAA;IACT,+HAAsC,CAAA;IACtC,mFAAgB,CAAA;AACpB,CAAC,EAPW,sBAAsB,KAAtB,sBAAsB,QAOjC;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,2DAAc,CAAA;IACd,6CAAO,CAAA;IACP,qDAAW,CAAA;AACf,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACjB,2CAAS,CAAA;IACT,yDAAgB,CAAA;AACpB,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAID,MAAM,CAAN,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAC7B,qEAAU,CAAA;IACV,yEAAY,CAAA;AAChB,CAAC,EAHW,qBAAqB,KAArB,qBAAqB,QAGhC;AAID,MAAM,CAAN,IAAY,YAwBX;AAxBD,WAAY,YAAY;IACpB,gEAAkB,CAAA;IAClB,oDAAY,CAAA;IACZ,gDAAU,CAAA;IACV,sEAAqB,CAAA;IACrB,sDAAa,CAAA;IACb,0EAAuB,CAAA;IACvB,8DAAiB,CAAA;IACjB,4DAAgB,CAAA;IAChB,8DAAiB,CAAA;IACjB,kDAAW,CAAA;IACX,wEAAsB,CAAA;IACtB,kFAA2B,CAAA;IAC3B,0EAAuB,CAAA;IACvB,0EAAuB,CAAA;IACvB,oEAAoB,CAAA;IACpB,mEAAoB,CAAA;IACpB,yEAAuB,CAAA;IACvB,uDAAc,CAAA;IACd,yDAAe,CAAA;IACf,qGAAqC,CAAA;IACrC,mGAAoC,CAAA;IACpC,mEAAoB,CAAA;IACpB,uEAAsB,CAAA;AAC1B,CAAC,EAxBW,YAAY,KAAZ,YAAY,QAwBvB;AAID,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IACvB,6DAAgB,CAAA;IAChB,mEAAmB,CAAA;IACnB,qEAAoB,CAAA;IACpB,iEAAkB,CAAA;AACtB,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAID,MAAM,CAAN,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,yDAAc,CAAA;IACd,2CAAO,CAAA;IACP,2CAAO,CAAA;AACX,CAAC,EAJW,WAAW,KAAX,WAAW,QAItB;AAID,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACnB,qDAAY,CAAA;IACZ,6CAAQ,CAAA;AACZ,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB;AAID,MAAM,CAAN,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IACxB,uDAAQ,CAAA;IACR,uDAAQ,CAAA;AACZ,CAAC,EAHW,gBAAgB,KAAhB,gBAAgB,QAG3B;AAID,MAAM,CAAN,IAAY,eAMX;AAND,WAAY,eAAe;IACvB,uEAAiB,CAAA;IACjB,6EAAoB,CAAA;IACpB,uDAAS,CAAA;IACT,uDAAS,CAAA;IACT,qDAAQ,CAAA;AACZ,CAAC,EANW,eAAe,KAAf,eAAe,QAM1B;AAID,MAAM,CAAN,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,uEAAe,CAAA;IACf,iEAAY,CAAA;AAChB,CAAC,EAHW,iBAAiB,KAAjB,iBAAiB,QAG5B;AAID,MAAM,CAAN,IAAY,eAUX;AAVD,WAAY,eAAe;IACvB,uEAAiB,CAAA;IACjB,qEAAgB,CAAA;IAChB,yEAAkB,CAAA;IAClB,qFAAwB,CAAA;IACxB,mFAAuB,CAAA;IACvB,mEAAe,CAAA;IACf,mEAAe,CAAA;IACf,0DAAW,CAAA;IACX,oDAAQ,CAAA;AACZ,CAAC,EAVW,eAAe,KAAf,eAAe,QAU1B;AAID,MAAM,CAAN,IAAY,eAOX;AAPD,WAAY,eAAe;IACvB,qEAAgB,CAAA;IAChB,2EAAmB,CAAA;IACnB,qEAAgB,CAAA;IAChB,6DAAY,CAAA;IACZ,uDAAS,CAAA;IACT,uEAAiB,CAAA;AACrB,CAAC,EAPW,eAAe,KAAf,eAAe,QAO1B"}
|
package/lg.net.core.ts
CHANGED
|
@@ -1456,6 +1456,13 @@ export interface GpPrinciple {
|
|
|
1456
1456
|
Title: string | null;
|
|
1457
1457
|
}
|
|
1458
1458
|
|
|
1459
|
+
export interface NaicsCode {
|
|
1460
|
+
Code: number;
|
|
1461
|
+
Id: number;
|
|
1462
|
+
Industries: number;
|
|
1463
|
+
Title: string | null;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1459
1466
|
export interface CrmAccountMondayItem {
|
|
1460
1467
|
CrmAccountId: number;
|
|
1461
1468
|
Id: number;
|
|
@@ -2794,16 +2801,13 @@ export interface Address {
|
|
|
2794
2801
|
City: string | null;
|
|
2795
2802
|
Country: string | null;
|
|
2796
2803
|
County: string | null;
|
|
2797
|
-
CreatedDate: string;
|
|
2798
|
-
Discriminator: string | null;
|
|
2804
|
+
CreatedDate: string | null;
|
|
2799
2805
|
EndDate: string | null;
|
|
2800
|
-
Id: number;
|
|
2806
|
+
Id: number | null;
|
|
2801
2807
|
IsExpired: boolean | null;
|
|
2802
|
-
LastModifiedDate: string;
|
|
2808
|
+
LastModifiedDate: string | null;
|
|
2803
2809
|
LGEmployeeRoleToCompanyAddresses: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
2804
|
-
|
|
2805
|
-
PersonId: number | null;
|
|
2806
|
-
StartDate: string;
|
|
2810
|
+
StartDate: string | null;
|
|
2807
2811
|
State: string | null;
|
|
2808
2812
|
Street1: string | null;
|
|
2809
2813
|
Street2: string | null;
|
|
@@ -2986,7 +2990,6 @@ export interface CompanyAddress extends Address {
|
|
|
2986
2990
|
Company: Partial<Company> | null;
|
|
2987
2991
|
CompanyId: number;
|
|
2988
2992
|
CompanyLease: Partial<CompanyLease> | null;
|
|
2989
|
-
Discriminator: string | null;
|
|
2990
2993
|
Lease: Partial<Lease> | null;
|
|
2991
2994
|
PhoneNumbers: Array<Partial<PhoneNumber>> | null;
|
|
2992
2995
|
ProspectiveProducerRoles: Array<Partial<ProspectiveProducerRole>> | null;
|
|
@@ -3554,7 +3557,7 @@ export interface PermissionToPermissionManagerGroup {
|
|
|
3554
3557
|
export interface Person {
|
|
3555
3558
|
Accounts: Array<Partial<CrmAccount>> | null;
|
|
3556
3559
|
ActivityPlanners: Array<Partial<CrmActivityPlanner>> | null;
|
|
3557
|
-
Addresses: Array<Partial<
|
|
3560
|
+
Addresses: Array<Partial<PersonAddress>> | null;
|
|
3558
3561
|
AgencyCommissionRateCreatorPeople: Array<Partial<AgencyCommissionRate>> | null;
|
|
3559
3562
|
AgencyCommissionRateLastModifiedByPeople: Array<Partial<AgencyCommissionRate>> | null;
|
|
3560
3563
|
AgencyViewerToPeople: Array<Partial<DocumentTypeAgencyViewerToPerson>> | null;
|
|
@@ -3748,6 +3751,11 @@ export interface Person {
|
|
|
3748
3751
|
Triggers: Array<Partial<Trigger>> | null;
|
|
3749
3752
|
}
|
|
3750
3753
|
|
|
3754
|
+
export interface PersonAddress extends Address {
|
|
3755
|
+
Person: Partial<Person> | null;
|
|
3756
|
+
PersonId: number | null;
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3751
3759
|
export interface PersonAdpAccount {
|
|
3752
3760
|
AssociateOid: string | null;
|
|
3753
3761
|
Id: number;
|