@leavittsoftware/lg-core-typescript 2.0.477 → 2.0.478
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/lg.net.core.ts +15 -15
- package/package.json +1 -1
package/lg.net.core.ts
CHANGED
|
@@ -4,14 +4,6 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
|
|
7
|
-
export interface Department {
|
|
8
|
-
Company: Partial<Company> | null;
|
|
9
|
-
CompanyId: number;
|
|
10
|
-
Id: number;
|
|
11
|
-
Name: string | null;
|
|
12
|
-
Roles: Array<Partial<Role>> | null;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
7
|
export interface EloquaSyncLogEntry {
|
|
16
8
|
CompanyId: number;
|
|
17
9
|
EndDate: string | null;
|
|
@@ -1423,13 +1415,13 @@ export interface SalesExpectationStatus {
|
|
|
1423
1415
|
ApproverId: number | null;
|
|
1424
1416
|
FailReasons: Array<Partial<FailReason>> | null;
|
|
1425
1417
|
Id: number;
|
|
1426
|
-
IdNavigation: Partial<SalesExpectation> | null;
|
|
1427
1418
|
Reviewer: Partial<Person> | null;
|
|
1428
1419
|
ReviewerId: number | null;
|
|
1429
1420
|
ReviewerMessage: string | null;
|
|
1430
1421
|
ReviewRequestDate: string | null;
|
|
1431
1422
|
ReviewRequester: Partial<Person> | null;
|
|
1432
1423
|
ReviewRequesterId: number | null;
|
|
1424
|
+
SalesExpectation: Partial<SalesExpectation> | null;
|
|
1433
1425
|
StatusType: number;
|
|
1434
1426
|
}
|
|
1435
1427
|
|
|
@@ -2819,7 +2811,7 @@ export interface Address {
|
|
|
2819
2811
|
County: string | null;
|
|
2820
2812
|
CreatedDate: string | null;
|
|
2821
2813
|
EndDate: string | null;
|
|
2822
|
-
Id: number
|
|
2814
|
+
Id: number;
|
|
2823
2815
|
IsExpired: boolean | null;
|
|
2824
2816
|
LastModifiedDate: string | null;
|
|
2825
2817
|
LGEmployeeRoleToCompanyAddresses: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
@@ -3143,6 +3135,14 @@ export interface CredentialActivationCode {
|
|
|
3143
3135
|
StartDate: string;
|
|
3144
3136
|
}
|
|
3145
3137
|
|
|
3138
|
+
export interface Department {
|
|
3139
|
+
Company: Partial<Company> | null;
|
|
3140
|
+
CompanyId: number;
|
|
3141
|
+
Id: number;
|
|
3142
|
+
LGEmployeeRoles: Array<Partial<LGEmployeeRole>> | null;
|
|
3143
|
+
Name: string | null;
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3146
3146
|
export interface DisaffiliationClosureType extends CompanyRoleClosureType {
|
|
3147
3147
|
}
|
|
3148
3148
|
|
|
@@ -3375,6 +3375,8 @@ export interface LGEmployeeRole extends PersonRole {
|
|
|
3375
3375
|
DateLicensed: string | null;
|
|
3376
3376
|
DateStartedProducing: string | null;
|
|
3377
3377
|
Deductions: Array<Partial<Deduction>> | null;
|
|
3378
|
+
Department: Partial<Department> | null;
|
|
3379
|
+
DepartmentId: number | null;
|
|
3378
3380
|
EmploymentType: number | null;
|
|
3379
3381
|
FullTimeEquivalents: Array<Partial<FullTimeEquivalent>> | null;
|
|
3380
3382
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
@@ -3748,9 +3750,9 @@ export interface Person {
|
|
|
3748
3750
|
RoleCreatorPeople: Array<Partial<Role>> | null;
|
|
3749
3751
|
Roles: Array<Partial<PersonRole>> | null;
|
|
3750
3752
|
RolesCreated: Array<Partial<Role>> | null;
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3753
|
+
SalesExpectations: Array<Partial<SalesExpectation>> | null;
|
|
3754
|
+
SalesExpectationsCreated: Array<Partial<SalesExpectation>> | null;
|
|
3755
|
+
SalesExpectationsLastModified: Array<Partial<SalesExpectation>> | null;
|
|
3754
3756
|
SalesExpectationStatusApprovers: Array<Partial<SalesExpectationStatus>> | null;
|
|
3755
3757
|
SalesExpectationStatusReviewers: Array<Partial<SalesExpectationStatus>> | null;
|
|
3756
3758
|
SalesExpectationStatusReviewRequesters: Array<Partial<SalesExpectationStatus>> | null;
|
|
@@ -3941,8 +3943,6 @@ export interface Role {
|
|
|
3941
3943
|
CreatedDate: string;
|
|
3942
3944
|
CreatorPerson: Partial<Person> | null;
|
|
3943
3945
|
CreatorPersonId: number | null;
|
|
3944
|
-
Department: Partial<Department> | null;
|
|
3945
|
-
DepartmentId: number | null;
|
|
3946
3946
|
Description: string | null;
|
|
3947
3947
|
Discriminator: string | null;
|
|
3948
3948
|
EmpCode: Partial<Ams360EmpCode> | null;
|