@leavittsoftware/lg-core-typescript 2.0.386 → 2.0.387
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 +8 -0
- package/package.json +1 -1
package/api2.leavitt.com.ts
CHANGED
|
@@ -1435,6 +1435,14 @@ export interface ITEmployeeLookupEmailDto {
|
|
|
1435
1435
|
IsPrimary: boolean;
|
|
1436
1436
|
}
|
|
1437
1437
|
|
|
1438
|
+
export interface ITEmployeeLookupSearchDto {
|
|
1439
|
+
CompanyName: string | null;
|
|
1440
|
+
FirstName: string | null;
|
|
1441
|
+
Id: number;
|
|
1442
|
+
IsTerminated: boolean;
|
|
1443
|
+
LastName: string | null;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1438
1446
|
export interface ITEmployeeLookupPhoneDto {
|
|
1439
1447
|
AreaCode: string | null;
|
|
1440
1448
|
LineNumber: string | null;
|