@leavittsoftware/lg-core-typescript 2.0.366 → 2.0.370
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.apfc.ts +5 -0
- package/lg.core.repository.ts +5 -1
- package/lg.core.ts +1 -1
- package/package.json +1 -1
package/lg.apfc.ts
CHANGED
|
@@ -877,6 +877,11 @@ export interface AvgCancelationRate {
|
|
|
877
877
|
rate: Partial<number>;
|
|
878
878
|
}
|
|
879
879
|
|
|
880
|
+
export interface BankHoliday {
|
|
881
|
+
date: string;
|
|
882
|
+
id: number;
|
|
883
|
+
}
|
|
884
|
+
|
|
880
885
|
export interface InsuranceCompanyManual {
|
|
881
886
|
Address1: string | null;
|
|
882
887
|
Address2: string | null;
|
package/lg.core.repository.ts
CHANGED
|
@@ -397,9 +397,13 @@ export interface FileExplorerMemberDto {
|
|
|
397
397
|
PersonId: number;
|
|
398
398
|
}
|
|
399
399
|
|
|
400
|
+
export interface CompanyJobRoleDto {
|
|
401
|
+
Employees: Array<Partial<CompanyEmployeeDto>> | null;
|
|
402
|
+
JobRoleType: string | null;
|
|
403
|
+
}
|
|
404
|
+
|
|
400
405
|
export interface CompanyEmployeeDto {
|
|
401
406
|
FirstName: string | null;
|
|
402
|
-
GroupSource: Array<string> | null;
|
|
403
407
|
IsDirectEmployee: boolean;
|
|
404
408
|
LastName: string | null;
|
|
405
409
|
PersonId: number;
|
package/lg.core.ts
CHANGED
|
@@ -2733,7 +2733,7 @@ export interface GuidingPrinciple extends IIdentity {
|
|
|
2733
2733
|
Sequence: number;
|
|
2734
2734
|
}
|
|
2735
2735
|
|
|
2736
|
-
export interface GuidingPrincipleIconAttachment extends IDatabaseAttachment {
|
|
2736
|
+
export interface GuidingPrincipleIconAttachment extends IDatabaseAttachment, IIdentity {
|
|
2737
2737
|
GuidingPrinciple: Partial<GuidingPrinciple> | null;
|
|
2738
2738
|
}
|
|
2739
2739
|
|