@leavittsoftware/lg-core-typescript 2.0.509 → 2.0.510
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 +3 -3
- package/package.json +1 -1
package/lg.core.ts
CHANGED
|
@@ -3837,8 +3837,6 @@ export interface Permission extends IIdentity, ISynchronizable, IExpirable {
|
|
|
3837
3837
|
}
|
|
3838
3838
|
|
|
3839
3839
|
export interface Person extends IIdentity, ISynchronizable {
|
|
3840
|
-
ActivityCreatedByPerson: Partial<Activity> | null;
|
|
3841
|
-
ActivityPersonAffected: Partial<Activity> | null;
|
|
3842
3840
|
Addresses: Array<Partial<PersonAddress>> | null;
|
|
3843
3841
|
AdpAccount: Partial<PersonAdpAccount> | null;
|
|
3844
3842
|
Attachments: Array<Partial<Attachment>> | null;
|
|
@@ -3860,6 +3858,7 @@ export interface Person extends IIdentity, ISynchronizable {
|
|
|
3860
3858
|
CourseReportees: Array<Partial<CourseReportee>> | null;
|
|
3861
3859
|
CreatedAnswers: Array<Partial<EducationAnswer>> | null;
|
|
3862
3860
|
CreatedBusinessCardTemplates: Array<Partial<BusinessCardTemplate>> | null;
|
|
3861
|
+
CreatedByPersonActivities: Array<Partial<Activity>> | null;
|
|
3863
3862
|
CreatedCourses: Array<Partial<EducationCourse>> | null;
|
|
3864
3863
|
CreatedDocuments: Array<Partial<Document>> | null;
|
|
3865
3864
|
CreatedExpenseForms: Array<Partial<ExpenseForm>> | null;
|
|
@@ -3893,7 +3892,6 @@ export interface Person extends IIdentity, ISynchronizable {
|
|
|
3893
3892
|
EmailAddresses: Array<Partial<PersonEmailAddress>> | null;
|
|
3894
3893
|
EmailRecipients: Array<Partial<CourseEmailRecipient>> | null;
|
|
3895
3894
|
EmailStyles: Array<Partial<EmailStyle>> | null;
|
|
3896
|
-
EmployeeManagerActivities: Array<Partial<Activity>> | null;
|
|
3897
3895
|
ExpenseForms: Array<Partial<ExpenseForm>> | null;
|
|
3898
3896
|
FileExplorerAdminships: Array<Partial<FileExplorerAdmin>> | null;
|
|
3899
3897
|
FileExplorerViewerships: Array<Partial<FileExplorerViewer>> | null;
|
|
@@ -3920,6 +3918,7 @@ export interface Person extends IIdentity, ISynchronizable {
|
|
|
3920
3918
|
NewsRecipients: Array<Partial<NewsRecipient>> | null;
|
|
3921
3919
|
NotificationActivityLogs: Array<Partial<NotificationActivityLog>> | null;
|
|
3922
3920
|
PermissionManagerToPermissions: Array<Partial<PermissionManagerToPermission>> | null;
|
|
3921
|
+
PersonAffectedActivities: Array<Partial<Activity>> | null;
|
|
3923
3922
|
PersonMondayAccount: Partial<PersonMondayAccount> | null;
|
|
3924
3923
|
PersonToNotifications: Array<Partial<PersonToNotification>> | null;
|
|
3925
3924
|
PersonToPeopleGroups: Array<Partial<PersonToPeopleGroup>> | null;
|
|
@@ -3933,6 +3932,7 @@ export interface Person extends IIdentity, ISynchronizable {
|
|
|
3933
3932
|
QuickLinks: Array<Partial<QuickLink>> | null;
|
|
3934
3933
|
Reactions: Array<Partial<Reaction>> | null;
|
|
3935
3934
|
RegisteredPersonToEvents: Array<Partial<RegisteredPersonToEvent>> | null;
|
|
3935
|
+
RequestorActivities: Array<Partial<Activity>> | null;
|
|
3936
3936
|
Reservations: Array<Partial<Reservation>> | null;
|
|
3937
3937
|
ReviewedCompanyLeases: Array<Partial<CompanyLease>> | null;
|
|
3938
3938
|
Roles: Array<Partial<PersonRole>> | null;
|