@leavittsoftware/lg-core-typescript 2.0.375 → 2.0.376
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 +10 -1
- package/package.json +1 -1
package/lg.core.repository.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
-
import { SurgeSegment,SurgeCrmPoint,CLGameSegment,CLGamePoint } from './lg.core'
|
|
6
|
+
import { SurgeSegment,SurgeCrmPoint,CLGameSegment,CLGamePoint,Company } from './lg.core'
|
|
7
7
|
|
|
8
8
|
export interface PermissionHolderDto {
|
|
9
9
|
FirstName: string | null;
|
|
@@ -398,6 +398,15 @@ export interface FileExplorerMemberDto {
|
|
|
398
398
|
PersonId: number;
|
|
399
399
|
}
|
|
400
400
|
|
|
401
|
+
export interface AgencySearchInfo {
|
|
402
|
+
CanEditOwnership: boolean;
|
|
403
|
+
Company: Partial<Company> | null;
|
|
404
|
+
CompanyId: number;
|
|
405
|
+
JobRoles: Array<Partial<CompanyJobRoleDto>> | null;
|
|
406
|
+
RemoteEmployeeCount: number;
|
|
407
|
+
RemoteLocationCount: number;
|
|
408
|
+
}
|
|
409
|
+
|
|
401
410
|
export interface CompanyJobRoleDto {
|
|
402
411
|
Employees: Array<Partial<CompanyEmployeeDto>> | null;
|
|
403
412
|
JobRoleType: string | null;
|