@leavittsoftware/lg-core-typescript 2.0.451 → 2.0.454
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 +54 -0
- package/lg.net.core.ts +6 -6
- 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+SA,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;
|
|
@@ -39,6 +77,22 @@ export interface SignatureTemplateDto {
|
|
|
39
77
|
TemplateWebComponentName: string | null;
|
|
40
78
|
}
|
|
41
79
|
|
|
80
|
+
export interface GetAgencyAccessUsersDto {
|
|
81
|
+
AccessSource: Array<string> | null;
|
|
82
|
+
FirstName: string | null;
|
|
83
|
+
IsAdmin: boolean;
|
|
84
|
+
LastName: string | null;
|
|
85
|
+
PersonId: number;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface GetGlobalAccessUsersDto {
|
|
89
|
+
AccessSource: Array<string> | null;
|
|
90
|
+
FirstName: string | null;
|
|
91
|
+
IsAdmin: boolean;
|
|
92
|
+
LastName: string | null;
|
|
93
|
+
PersonId: number;
|
|
94
|
+
}
|
|
95
|
+
|
|
42
96
|
export interface UpdateDocumentDto {
|
|
43
97
|
CompanyId: number;
|
|
44
98
|
Name: string | null;
|
package/lg.net.core.ts
CHANGED
|
@@ -2798,7 +2798,7 @@ export interface Address {
|
|
|
2798
2798
|
Discriminator: string | null;
|
|
2799
2799
|
EndDate: string | null;
|
|
2800
2800
|
Id: number;
|
|
2801
|
-
IsExpired: boolean;
|
|
2801
|
+
IsExpired: boolean | null;
|
|
2802
2802
|
LastModifiedDate: string;
|
|
2803
2803
|
LGEmployeeRoleToCompanyAddresses: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
2804
2804
|
Person: Partial<Person> | null;
|
|
@@ -2967,7 +2967,7 @@ export interface Company {
|
|
|
2967
2967
|
ExpenseFormItemCompanies: Array<Partial<ExpenseFormItem>> | null;
|
|
2968
2968
|
ExpenseFormItemRequestingAgencies: Array<Partial<ExpenseFormItem>> | null;
|
|
2969
2969
|
Id: number;
|
|
2970
|
-
IsExpired: boolean;
|
|
2970
|
+
IsExpired: boolean | null;
|
|
2971
2971
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
2972
2972
|
LastModifiedDate: string;
|
|
2973
2973
|
ManagementSystems: Array<Partial<ManagementSystem>> | null;
|
|
@@ -3315,7 +3315,7 @@ export interface JobRoleType {
|
|
|
3315
3315
|
CreatorPersonId: number;
|
|
3316
3316
|
EndDate: string | null;
|
|
3317
3317
|
Id: number;
|
|
3318
|
-
IsExpired: boolean;
|
|
3318
|
+
IsExpired: boolean | null;
|
|
3319
3319
|
IsFullTimeEquivalenceType: boolean;
|
|
3320
3320
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
3321
3321
|
LastModifiedByPerson: Partial<Person> | null;
|
|
@@ -3360,7 +3360,7 @@ export interface LGEmployeeRoleToCompanyAddress {
|
|
|
3360
3360
|
CreatedDate: string;
|
|
3361
3361
|
EndDate: string | null;
|
|
3362
3362
|
Id: number;
|
|
3363
|
-
IsExpired: boolean;
|
|
3363
|
+
IsExpired: boolean | null;
|
|
3364
3364
|
LastModifiedBy: Partial<Person> | null;
|
|
3365
3365
|
LastModifiedById: number | null;
|
|
3366
3366
|
LastModifiedDate: string;
|
|
@@ -3833,7 +3833,7 @@ export interface PersonToPeopleGroup {
|
|
|
3833
3833
|
CreatedDate: string;
|
|
3834
3834
|
EndDate: string | null;
|
|
3835
3835
|
Id: number;
|
|
3836
|
-
IsExpired: boolean;
|
|
3836
|
+
IsExpired: boolean | null;
|
|
3837
3837
|
LastModifiedDate: string;
|
|
3838
3838
|
PeopleGroup: Partial<PeopleGroup> | null;
|
|
3839
3839
|
PeopleGroupId: number;
|
|
@@ -3905,7 +3905,7 @@ export interface Role {
|
|
|
3905
3905
|
InstanceId: number | null;
|
|
3906
3906
|
IsCLTeamCaptain: boolean | null;
|
|
3907
3907
|
IsEmployee: boolean | null;
|
|
3908
|
-
IsExpired: boolean;
|
|
3908
|
+
IsExpired: boolean | null;
|
|
3909
3909
|
IsManual: boolean | null;
|
|
3910
3910
|
IsSpouse: boolean | null;
|
|
3911
3911
|
IsTeamCapitan: boolean | null;
|