@leavittsoftware/lg-core-typescript 2.0.452 → 2.0.453
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 +38 -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":"AA+RA,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,44 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { SignatureValue,SignatureTemplateToCompany,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
|
+
export interface NaicsReportTopAgenciesDto {
|
|
9
|
+
Agency: string | null;
|
|
10
|
+
AgencyId: string | null;
|
|
11
|
+
NaicsCode: string | null;
|
|
12
|
+
Premium: number;
|
|
13
|
+
Rank: number;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface NaicsReportTopCarriersDto {
|
|
17
|
+
NaicsCode: string | null;
|
|
18
|
+
ParentCompany: string | null;
|
|
19
|
+
Premium: number;
|
|
20
|
+
Rank: number;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface NaicsReportTopIndustriesDto {
|
|
24
|
+
NaicsCode: string | null;
|
|
25
|
+
Premium: number;
|
|
26
|
+
Rank: number;
|
|
27
|
+
Title: string | null;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface NaicsReportTopProducersDto {
|
|
31
|
+
AgencyName: string | null;
|
|
32
|
+
NaicsCode: string | null;
|
|
33
|
+
PersonId: string | null;
|
|
34
|
+
Premium: number;
|
|
35
|
+
Producer: string | null;
|
|
36
|
+
Rank: number;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface NaicsReportTopStatesDto {
|
|
40
|
+
NaicsCode: string | null;
|
|
41
|
+
Premium: number | null;
|
|
42
|
+
Rank: number;
|
|
43
|
+
State: string | null;
|
|
44
|
+
}
|
|
45
|
+
|
|
8
46
|
export interface GetSignaturePrefillDataDto {
|
|
9
47
|
AgencyOrDepartment: string | null;
|
|
10
48
|
City: string | null;
|