@leavittsoftware/lg-core-typescript 2.36.0 → 2.36.1
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.core.ts +5 -5
- package/package.json +1 -1
package/lg.core.ts
CHANGED
|
@@ -3137,15 +3137,13 @@ export interface CompanyGroupToCompany {
|
|
|
3137
3137
|
}
|
|
3138
3138
|
|
|
3139
3139
|
export interface CustomPeopleGroup extends PeopleGroup {
|
|
3140
|
-
GroupOperator: GroupLogicalOperatorString;
|
|
3141
|
-
PeopleGroups: Array<Partial<CustomPeopleGroupToPeopleGroup>> | null;
|
|
3142
3140
|
}
|
|
3143
3141
|
|
|
3144
|
-
export interface
|
|
3142
|
+
export interface PeopleGroupToPeopleGroup extends IExpirable, IIdentity {
|
|
3145
3143
|
ChildPeopleGroup: Partial<PeopleGroup> | null;
|
|
3146
3144
|
ChildPeopleGroupId: number;
|
|
3147
3145
|
ExcludeFromGroup: boolean;
|
|
3148
|
-
ParentPeopleGroup: Partial<
|
|
3146
|
+
ParentPeopleGroup: Partial<PeopleGroup> | null;
|
|
3149
3147
|
ParentPeopleGroupId: number;
|
|
3150
3148
|
}
|
|
3151
3149
|
|
|
@@ -3697,10 +3695,10 @@ export interface PersonAddress extends Address {
|
|
|
3697
3695
|
}
|
|
3698
3696
|
|
|
3699
3697
|
export interface PeopleGroup extends Group, IExpirable {
|
|
3698
|
+
ChildPeopleGroups: Array<Partial<PeopleGroupToPeopleGroup>> | null;
|
|
3700
3699
|
CourseAdminPeopleGroups: Array<Partial<CourseAdminPeopleGroup>> | null;
|
|
3701
3700
|
CourseMemberPeopleGroups: Array<Partial<CourseMemberPeopleGroup>> | null;
|
|
3702
3701
|
CourseReporteeToPeopleGroups: Array<Partial<CourseReporteeToPeopleGroup>> | null;
|
|
3703
|
-
CustomPeopleGroups: Array<Partial<CustomPeopleGroupToPeopleGroup>> | null;
|
|
3704
3702
|
DistributionGroupToPeopleGroups: Array<Partial<DistributionGroupToPeopleGroup>> | null;
|
|
3705
3703
|
DocumentTypeAgencyViewerToPeopleGroups: Array<Partial<DocumentTypeAgencyViewerToPeopleGroup>> | null;
|
|
3706
3704
|
DocumentTypeGlobalViewerToPeopleGroups: Array<Partial<DocumentTypeGlobalViewerToPeopleGroup>> | null;
|
|
@@ -3709,10 +3707,12 @@ export interface PeopleGroup extends Group, IExpirable {
|
|
|
3709
3707
|
FileExplorerViewersToPeopleGroups: Array<Partial<FileExplorerViewerToPeopleGroup>> | null;
|
|
3710
3708
|
ForumToPeopleGroups: Array<Partial<ForumToPeopleGroup>> | null;
|
|
3711
3709
|
FruitsToPeopleGroups: Array<Partial<FruitsToPeopleGroup>> | null;
|
|
3710
|
+
GroupOperator: GroupLogicalOperatorString;
|
|
3712
3711
|
GroupSurgeViewerToPeopleGroups: Array<Partial<SurgeViewerToPeopleGroup>> | null;
|
|
3713
3712
|
InvitedPeopleGroupToEvents: Array<Partial<InvitedPeopleGroupToEvent>> | null;
|
|
3714
3713
|
NewsToPeopleGroups: Array<Partial<NewsToPeopleGroup>> | null;
|
|
3715
3714
|
OutboundCallerIdToPeopleGroups: Array<Partial<OutboundCallerIdToPeopleGroup>> | null;
|
|
3715
|
+
ParentPeopleGroups: Array<Partial<PeopleGroupToPeopleGroup>> | null;
|
|
3716
3716
|
PeopleGroupToWebComponentSlides: Array<Partial<PeopleGroupToWebComponentSlide>> | null;
|
|
3717
3717
|
PermissionToPeopleGroups: Array<Partial<PermissionToPeopleGroup>> | null;
|
|
3718
3718
|
PermissionToPermissionManagerGroups: Array<Partial<PermissionToPermissionManagerGroup>> | null;
|