@leavittsoftware/lg-core-typescript 2.0.362 → 2.0.363
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.repository.ts +8 -0
- package/package.json +1 -1
package/lg.core.repository.ts
CHANGED
|
@@ -397,6 +397,14 @@ export interface FileExplorerMemberDto {
|
|
|
397
397
|
PersonId: number;
|
|
398
398
|
}
|
|
399
399
|
|
|
400
|
+
export interface CompanyEmployeeDto {
|
|
401
|
+
FirstName: string | null;
|
|
402
|
+
GroupSource: Array<string> | null;
|
|
403
|
+
IsDirectEmployee: boolean;
|
|
404
|
+
LastName: string | null;
|
|
405
|
+
PersonId: number;
|
|
406
|
+
}
|
|
407
|
+
|
|
400
408
|
export interface BenefitPointContactDto {
|
|
401
409
|
AccountId: string | null;
|
|
402
410
|
AccountName: string | null;
|