@leavittsoftware/lg-core-typescript 2.0.415 → 2.0.416
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 +21 -22
- package/package.json +1 -1
package/lg.net.core.ts
CHANGED
|
@@ -877,6 +877,12 @@ export interface CompanyAddressUltiProAccount {
|
|
|
877
877
|
LocCodePlusCoId: string | null;
|
|
878
878
|
}
|
|
879
879
|
|
|
880
|
+
export interface CompanyContactPersonRole extends PersonRole {
|
|
881
|
+
ContactCompany: Partial<Company> | null;
|
|
882
|
+
ContactCompanyId: number;
|
|
883
|
+
Title: string | null;
|
|
884
|
+
}
|
|
885
|
+
|
|
880
886
|
export interface CompanyDivision {
|
|
881
887
|
Company: Partial<Company> | null;
|
|
882
888
|
CompanyId: number;
|
|
@@ -1115,7 +1121,7 @@ export interface JobRoleAssignmentPercentage {
|
|
|
1115
1121
|
EndDate: string | null;
|
|
1116
1122
|
Id: number;
|
|
1117
1123
|
IsExpired: boolean | null;
|
|
1118
|
-
JobRole: Partial<
|
|
1124
|
+
JobRole: Partial<JobRole> | null;
|
|
1119
1125
|
JobRoleId: number;
|
|
1120
1126
|
Percentage: number;
|
|
1121
1127
|
StartDate: string;
|
|
@@ -1205,11 +1211,11 @@ export interface LGEmployeeRoleToCompanyAddress {
|
|
|
1205
1211
|
}
|
|
1206
1212
|
|
|
1207
1213
|
export interface LGEmployeeRoleUltiProAccount {
|
|
1208
|
-
CreatedDate: string;
|
|
1214
|
+
CreatedDate: string | null;
|
|
1209
1215
|
EmpNo: string | null;
|
|
1210
1216
|
Id: number;
|
|
1211
|
-
|
|
1212
|
-
|
|
1217
|
+
LastModifiedDate: string | null;
|
|
1218
|
+
Role: Partial<Role> | null;
|
|
1213
1219
|
}
|
|
1214
1220
|
|
|
1215
1221
|
export interface Notification {
|
|
@@ -1395,7 +1401,7 @@ export interface Person {
|
|
|
1395
1401
|
CourseReporteePeople: Array<Partial<CourseReportee>> | null;
|
|
1396
1402
|
CourseReporteeToPeopleGroupCreatorPeople: Array<Partial<CourseReporteeToPeopleGroup>> | null;
|
|
1397
1403
|
CourseReporteeToPeopleGroupLastModifiedByPeople: Array<Partial<CourseReporteeToPeopleGroup>> | null;
|
|
1398
|
-
CreatedDate: string;
|
|
1404
|
+
CreatedDate: string | null;
|
|
1399
1405
|
CReportComments: Array<Partial<CReportComment>> | null;
|
|
1400
1406
|
CrmContactToEloquaContacts: Array<Partial<CrmContactToEloquaContact>> | null;
|
|
1401
1407
|
DateOfBirth: string | null;
|
|
@@ -1451,7 +1457,7 @@ export interface Person {
|
|
|
1451
1457
|
JobRoleTypeCreatorPeople: Array<Partial<JobRoleType>> | null;
|
|
1452
1458
|
JobRoleTypeLastModifiedByPeople: Array<Partial<JobRoleType>> | null;
|
|
1453
1459
|
JobTitle: string | null;
|
|
1454
|
-
LastModifiedDate: string;
|
|
1460
|
+
LastModifiedDate: string | null;
|
|
1455
1461
|
LastName: string | null;
|
|
1456
1462
|
LessonParticipantStatuses: Array<Partial<LessonParticipantStatus>> | null;
|
|
1457
1463
|
LGEmployeeRoleToCompanyAddressCreatedBies: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
@@ -1460,6 +1466,7 @@ export interface Person {
|
|
|
1460
1466
|
MessageCreators: Array<Partial<Message>> | null;
|
|
1461
1467
|
MessageNotifications: Array<Partial<MessageNotification>> | null;
|
|
1462
1468
|
MiddleName: string | null;
|
|
1469
|
+
ModifiedRoles: Array<Partial<Role>> | null;
|
|
1463
1470
|
MondayAccount: Partial<PersonMondayAccount> | null;
|
|
1464
1471
|
NewsRecipients: Array<Partial<NewsRecipient>> | null;
|
|
1465
1472
|
NotificationActivityLogs: Array<Partial<NotificationActivityLog>> | null;
|
|
@@ -1494,14 +1501,13 @@ export interface Person {
|
|
|
1494
1501
|
QuickLinks: Array<Partial<QuickLink>> | null;
|
|
1495
1502
|
Reactions: Array<Partial<Reaction>> | null;
|
|
1496
1503
|
RegisteredPersonToEvents: Array<Partial<RegisteredPersonToEvent>> | null;
|
|
1504
|
+
RegisteredRoles: Array<Partial<Role>> | null;
|
|
1497
1505
|
Replies: Array<Partial<Reply>> | null;
|
|
1506
|
+
RequestedRoles: Array<Partial<Role>> | null;
|
|
1498
1507
|
Reservations: Array<Partial<Reservation>> | null;
|
|
1499
|
-
RoleCreatedBies: Array<Partial<Role>> | null;
|
|
1500
1508
|
RoleCreatorPeople: Array<Partial<Role>> | null;
|
|
1501
|
-
RoleLastModifiedBies: Array<Partial<Role>> | null;
|
|
1502
|
-
RoleRegisteredBies: Array<Partial<Role>> | null;
|
|
1503
|
-
RoleRequestedByPeople: Array<Partial<Role>> | null;
|
|
1504
1509
|
Roles: Array<Partial<PersonRole>> | null;
|
|
1510
|
+
RolesCreated: Array<Partial<Role>> | null;
|
|
1505
1511
|
SalesExpectationCreatorPeople: Array<Partial<SalesExpectation>> | null;
|
|
1506
1512
|
SalesExpectationLastModifiedByPeople: Array<Partial<SalesExpectation>> | null;
|
|
1507
1513
|
SalesExpectationPeople: Array<Partial<SalesExpectation>> | null;
|
|
@@ -1547,7 +1553,7 @@ export interface Person {
|
|
|
1547
1553
|
export interface PersonAdpAccount {
|
|
1548
1554
|
AssociateOid: string | null;
|
|
1549
1555
|
Id: number;
|
|
1550
|
-
|
|
1556
|
+
Person: Partial<Person> | null;
|
|
1551
1557
|
}
|
|
1552
1558
|
|
|
1553
1559
|
export interface PersonEmailAddress extends EmailAddress {
|
|
@@ -1557,10 +1563,10 @@ export interface PersonEmailAddress extends EmailAddress {
|
|
|
1557
1563
|
|
|
1558
1564
|
export interface PersonLdapAccount {
|
|
1559
1565
|
CreatedDate: string;
|
|
1560
|
-
Guid: string;
|
|
1566
|
+
Guid: string | null;
|
|
1561
1567
|
Id: number;
|
|
1562
|
-
|
|
1563
|
-
|
|
1568
|
+
LastModifiedDate: string | null;
|
|
1569
|
+
Person: Partial<Person> | null;
|
|
1564
1570
|
SamAccountName: string | null;
|
|
1565
1571
|
Sid: string | null;
|
|
1566
1572
|
}
|
|
@@ -1585,12 +1591,6 @@ export interface PersonRole extends Role {
|
|
|
1585
1591
|
PersonId: number;
|
|
1586
1592
|
}
|
|
1587
1593
|
|
|
1588
|
-
export interface CompanyContactPersonRole extends PersonRole {
|
|
1589
|
-
ContactCompany: Partial<Company> | null;
|
|
1590
|
-
ContactCompanyId: number;
|
|
1591
|
-
Title: string | null;
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
1594
|
export interface PersonToAttachmentPermission {
|
|
1595
1595
|
Attachment: Partial<Attachment> | null;
|
|
1596
1596
|
AttachmentId: number;
|
|
@@ -1719,7 +1719,6 @@ export interface Role {
|
|
|
1719
1719
|
IsSpouse: boolean | null;
|
|
1720
1720
|
IsTeamCapitan: boolean | null;
|
|
1721
1721
|
IsTeamCaptain: boolean | null;
|
|
1722
|
-
JobRoleAssignmentPercentages: Array<Partial<JobRoleAssignmentPercentage>> | null;
|
|
1723
1722
|
JobRoleCompanyId: number | null;
|
|
1724
1723
|
JobRoleToDivisions: Array<Partial<JobRoleToDivision>> | null;
|
|
1725
1724
|
JobRoleToTeams: Array<Partial<JobRoleToTeam>> | null;
|
|
@@ -3930,7 +3929,7 @@ export interface Fruit {
|
|
|
3930
3929
|
FruitsToPeopleGroups: Array<Partial<FruitsToPeopleGroup>> | null;
|
|
3931
3930
|
Guid1: string;
|
|
3932
3931
|
Guid1nullable: string | null;
|
|
3933
|
-
Id: number;
|
|
3932
|
+
Id: number | null;
|
|
3934
3933
|
Int1: number;
|
|
3935
3934
|
Int1nullable: number | null;
|
|
3936
3935
|
Int641: number;
|