@leavittsoftware/lg-core-typescript 2.0.360 → 2.0.361
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/api2.leavitt.com.ts +1 -1
- package/lg.core.repository.ts +2 -0
- package/lg.core.ts +3 -3
- package/package.json +1 -1
package/api2.leavitt.com.ts
CHANGED
package/lg.core.repository.ts
CHANGED
|
@@ -450,6 +450,7 @@ export interface CallManagerCrmActivityDto {
|
|
|
450
450
|
}
|
|
451
451
|
|
|
452
452
|
export interface CallManagerCrmPhoneNumberDto {
|
|
453
|
+
AccountCoreId: number;
|
|
453
454
|
AccountId: string | null;
|
|
454
455
|
AccountOwnerCompanyId: number | null;
|
|
455
456
|
AccountOwnerCompanyName: string | null;
|
|
@@ -458,6 +459,7 @@ export interface CallManagerCrmPhoneNumberDto {
|
|
|
458
459
|
AccountOwnerPersonId: number | null;
|
|
459
460
|
Activities: Array<Partial<CallManagerCrmActivityDto>> | null;
|
|
460
461
|
City: string | null;
|
|
462
|
+
ContactCoreId: number | null;
|
|
461
463
|
ContactFirstName: string | null;
|
|
462
464
|
ContactLastName: string | null;
|
|
463
465
|
ContactTitle: string | null;
|
package/lg.core.ts
CHANGED
|
@@ -2701,7 +2701,7 @@ export interface GuidingPrinciple {
|
|
|
2701
2701
|
AgencyPrinciple: Partial<AgencyPrinciple> | null;
|
|
2702
2702
|
AgencyPrincipleId: number;
|
|
2703
2703
|
Description: string | null;
|
|
2704
|
-
Icon:
|
|
2704
|
+
Icon: Partial<GuidingPrincipleIconAttachment> | null;
|
|
2705
2705
|
Id: number;
|
|
2706
2706
|
Name: string | null;
|
|
2707
2707
|
Nominations: Array<Partial<Nomination>> | null;
|
|
@@ -2709,7 +2709,7 @@ export interface GuidingPrinciple {
|
|
|
2709
2709
|
}
|
|
2710
2710
|
|
|
2711
2711
|
export interface GuidingPrincipleIconAttachment extends IDatabaseAttachment {
|
|
2712
|
-
GuidingPrinciple:
|
|
2712
|
+
GuidingPrinciple: Partial<GuidingPrinciple> | null;
|
|
2713
2713
|
}
|
|
2714
2714
|
|
|
2715
2715
|
export interface Nomination extends ICreatedBy {
|
|
@@ -2719,7 +2719,7 @@ export interface Nomination extends ICreatedBy {
|
|
|
2719
2719
|
AwardedByPersonId: number | null;
|
|
2720
2720
|
AwardedDate: string | null;
|
|
2721
2721
|
CreatedDate: string;
|
|
2722
|
-
GuidingPrinciple:
|
|
2722
|
+
GuidingPrinciple: Partial<GuidingPrinciple> | null;
|
|
2723
2723
|
GuidingPrincipleId: number | null;
|
|
2724
2724
|
Id: number;
|
|
2725
2725
|
NominatedPerson: Partial<Person> | null;
|