@leavittsoftware/lg-core-typescript 2.0.359 → 2.0.360
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
|
@@ -2689,7 +2689,7 @@ export interface AgencyPrinciple {
|
|
|
2689
2689
|
Company: Partial<Company> | null;
|
|
2690
2690
|
CompanyId: number;
|
|
2691
2691
|
Description: string | null;
|
|
2692
|
-
|
|
2692
|
+
GuidingPrinciples: Array<Partial<GuidingPrinciple>> | null;
|
|
2693
2693
|
Id: number;
|
|
2694
2694
|
IsActive: boolean;
|
|
2695
2695
|
Nominations: Array<Partial<Nomination>> | null;
|
|
@@ -2719,8 +2719,8 @@ export interface Nomination extends ICreatedBy {
|
|
|
2719
2719
|
AwardedByPersonId: number | null;
|
|
2720
2720
|
AwardedDate: string | null;
|
|
2721
2721
|
CreatedDate: string;
|
|
2722
|
-
|
|
2723
|
-
|
|
2722
|
+
GuidingPrinciple: string | null;
|
|
2723
|
+
GuidingPrincipleId: number | null;
|
|
2724
2724
|
Id: number;
|
|
2725
2725
|
NominatedPerson: Partial<Person> | null;
|
|
2726
2726
|
NominatedPersonId: number;
|