automation-lib 5.1.36 → 5.1.37
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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3766,8 +3766,8 @@ type TOmitFilterDto = 'team' | 'leader' | 'department' | 'user' | 'createdBy' |
|
|
|
3766
3766
|
interface IFindBaseDto {
|
|
3767
3767
|
department: IDepartment;
|
|
3768
3768
|
departmentName: string;
|
|
3769
|
-
leader
|
|
3770
|
-
leaderName
|
|
3769
|
+
leader?: IUser;
|
|
3770
|
+
leaderName?: string;
|
|
3771
3771
|
team: ITeam;
|
|
3772
3772
|
teamName: string;
|
|
3773
3773
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -3766,8 +3766,8 @@ type TOmitFilterDto = 'team' | 'leader' | 'department' | 'user' | 'createdBy' |
|
|
|
3766
3766
|
interface IFindBaseDto {
|
|
3767
3767
|
department: IDepartment;
|
|
3768
3768
|
departmentName: string;
|
|
3769
|
-
leader
|
|
3770
|
-
leaderName
|
|
3769
|
+
leader?: IUser;
|
|
3770
|
+
leaderName?: string;
|
|
3771
3771
|
team: ITeam;
|
|
3772
3772
|
teamName: string;
|
|
3773
3773
|
}
|