@leavittsoftware/lg-core-typescript 2.0.458 → 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 +39 -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":"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
|
@@ -14,6 +14,14 @@ export interface NaicsGetLineOfBusinessDto {
|
|
|
14
14
|
LineOfBusiness: string | null;
|
|
15
15
|
}
|
|
16
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
|
+
|
|
17
25
|
export interface NaicsReportTopAgenciesDto {
|
|
18
26
|
Agency: string | null;
|
|
19
27
|
AgencyId: string | null;
|
|
@@ -22,6 +30,13 @@ export interface NaicsReportTopAgenciesDto {
|
|
|
22
30
|
Rank: number;
|
|
23
31
|
}
|
|
24
32
|
|
|
33
|
+
export interface NaicsReportTopCarriersCsvDto {
|
|
34
|
+
NaicsCode: string | null;
|
|
35
|
+
ParentCompany: string | null;
|
|
36
|
+
PolicyType: string | null;
|
|
37
|
+
Premium: number;
|
|
38
|
+
}
|
|
39
|
+
|
|
25
40
|
export interface NaicsReportTopCarriersDto {
|
|
26
41
|
NaicsCode: string | null;
|
|
27
42
|
ParentCompany: string | null;
|
|
@@ -29,6 +44,13 @@ export interface NaicsReportTopCarriersDto {
|
|
|
29
44
|
Rank: number;
|
|
30
45
|
}
|
|
31
46
|
|
|
47
|
+
export interface NaicsReportTopIndustriesCsvDto {
|
|
48
|
+
NaicsCode: string | null;
|
|
49
|
+
Premium: number;
|
|
50
|
+
Rank: number;
|
|
51
|
+
Title: string | null;
|
|
52
|
+
}
|
|
53
|
+
|
|
32
54
|
export interface NaicsReportTopIndustriesDto {
|
|
33
55
|
NaicsCode: string | null;
|
|
34
56
|
Premium: number;
|
|
@@ -36,6 +58,16 @@ export interface NaicsReportTopIndustriesDto {
|
|
|
36
58
|
Title: string | null;
|
|
37
59
|
}
|
|
38
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
|
+
|
|
39
71
|
export interface NaicsReportTopProducersDto {
|
|
40
72
|
AgencyName: string | null;
|
|
41
73
|
NaicsCode: string | null;
|
|
@@ -45,6 +77,13 @@ export interface NaicsReportTopProducersDto {
|
|
|
45
77
|
Rank: number;
|
|
46
78
|
}
|
|
47
79
|
|
|
80
|
+
export interface NaicsReportTopStatesCsvDto {
|
|
81
|
+
NaicsCode: string | null;
|
|
82
|
+
PolicyType: string | null;
|
|
83
|
+
Premium: number;
|
|
84
|
+
State: string | null;
|
|
85
|
+
}
|
|
86
|
+
|
|
48
87
|
export interface NaicsReportTopStatesDto {
|
|
49
88
|
NaicsCode: string | null;
|
|
50
89
|
Premium: number | null;
|