@leavittsoftware/lg-core-typescript 2.0.482 → 2.0.483
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 +5 -5
- package/package.json +1 -1
package/lg.net.core.ts
CHANGED
|
@@ -2813,7 +2813,6 @@ export interface Address {
|
|
|
2813
2813
|
Id: number;
|
|
2814
2814
|
IsExpired: boolean | null;
|
|
2815
2815
|
LastModifiedDate: string | null;
|
|
2816
|
-
LGEmployeeRoleToCompanyAddresses: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
2817
2816
|
StartDate: string | null;
|
|
2818
2817
|
State: string | null;
|
|
2819
2818
|
Street1: string | null;
|
|
@@ -2995,6 +2994,7 @@ export interface CompanyAddress extends Address {
|
|
|
2995
2994
|
CompanyId: number;
|
|
2996
2995
|
CompanyLease: Partial<CompanyLease> | null;
|
|
2997
2996
|
Lease: Partial<Lease> | null;
|
|
2997
|
+
LGEmployeeRoleToCompanyAddresses: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
2998
2998
|
PhoneNumbers: Array<Partial<PhoneNumber>> | null;
|
|
2999
2999
|
ProspectiveProducerRoles: Array<Partial<ProspectiveProducerRole>> | null;
|
|
3000
3000
|
}
|
|
@@ -3389,7 +3389,7 @@ export interface LGEmployeeRoleTitle {
|
|
|
3389
3389
|
}
|
|
3390
3390
|
|
|
3391
3391
|
export interface LGEmployeeRoleToCompanyAddress {
|
|
3392
|
-
CompanyAddress: Partial<
|
|
3392
|
+
CompanyAddress: Partial<CompanyAddress> | null;
|
|
3393
3393
|
CompanyAddressId: number;
|
|
3394
3394
|
CreatedBy: Partial<Person> | null;
|
|
3395
3395
|
CreatedById: number;
|
|
@@ -3474,7 +3474,7 @@ export interface PeopleGroup {
|
|
|
3474
3474
|
CourseAdminPeopleGroups: Array<Partial<CourseAdminPeopleGroup>> | null;
|
|
3475
3475
|
CourseMemberPeopleGroups: Array<Partial<CourseMemberPeopleGroup>> | null;
|
|
3476
3476
|
CourseReporteeToPeopleGroups: Array<Partial<CourseReporteeToPeopleGroup>> | null;
|
|
3477
|
-
CreatedDate: string
|
|
3477
|
+
CreatedDate: string;
|
|
3478
3478
|
Description: string | null;
|
|
3479
3479
|
DistributionGroupToPeopleGroups: Array<Partial<DistributionGroupToPeopleGroup>> | null;
|
|
3480
3480
|
EndDate: string | null;
|
|
@@ -3487,7 +3487,7 @@ export interface PeopleGroup {
|
|
|
3487
3487
|
Id: number | null;
|
|
3488
3488
|
InvitedPeopleGroupToEvents: Array<Partial<InvitedPeopleGroupToEvent>> | null;
|
|
3489
3489
|
IsExpired: boolean | null;
|
|
3490
|
-
LastModifiedDate: string
|
|
3490
|
+
LastModifiedDate: string;
|
|
3491
3491
|
Name: string | null;
|
|
3492
3492
|
NewsToPeopleGroups: Array<Partial<NewsToPeopleGroup>> | null;
|
|
3493
3493
|
OutboundCallerIdToPeopleGroups: Array<Partial<OutboundCallerIdToPeopleGroup>> | null;
|
|
@@ -3496,7 +3496,7 @@ export interface PeopleGroup {
|
|
|
3496
3496
|
PermissionToPermissionManagerGroups: Array<Partial<PermissionToPermissionManagerGroup>> | null;
|
|
3497
3497
|
PersonToPeopleGroups: Array<Partial<PersonToPeopleGroup>> | null;
|
|
3498
3498
|
SnapshotViewershipToPeopleGroups: Array<Partial<SnapshotViewershipToPeopleGroup>> | null;
|
|
3499
|
-
StartDate: string
|
|
3499
|
+
StartDate: string;
|
|
3500
3500
|
SurgeViewerToPeopleGroups: Array<Partial<SurgeViewerToPeopleGroup>> | null;
|
|
3501
3501
|
SurveyAdminToPeopleGroups: Array<Partial<SurveyAdminToPeopleGroup>> | null;
|
|
3502
3502
|
SurveyRespondentToPeopleGroups: Array<Partial<SurveyRespondentToPeopleGroup>> | null;
|