automation-lib 5.1.561 → 5.1.562
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 +12 -12
- package/dist/index.d.ts +12 -12
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4845,22 +4845,22 @@ declare namespace index$1 {
|
|
|
4845
4845
|
}
|
|
4846
4846
|
|
|
4847
4847
|
interface IFindBaseDto {
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4848
|
+
department?: IDepartment;
|
|
4849
|
+
departmentName?: string;
|
|
4850
|
+
leader?: IUser;
|
|
4851
|
+
leaderName?: string;
|
|
4852
|
+
team?: ITeam;
|
|
4853
|
+
teamName?: string;
|
|
4854
|
+
user?: IUser;
|
|
4855
|
+
userName?: string;
|
|
4856
4856
|
createdByName?: string;
|
|
4857
4857
|
updatedByName?: string;
|
|
4858
4858
|
}
|
|
4859
4859
|
interface IFilterBaseDto {
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4860
|
+
department: string[];
|
|
4861
|
+
leader: string[];
|
|
4862
|
+
team: string[];
|
|
4863
|
+
user: string[];
|
|
4864
4864
|
createdBy: string[];
|
|
4865
4865
|
updatedBy: string[];
|
|
4866
4866
|
createdAt: [Date, Date];
|
package/dist/index.d.ts
CHANGED
|
@@ -4845,22 +4845,22 @@ declare namespace index$1 {
|
|
|
4845
4845
|
}
|
|
4846
4846
|
|
|
4847
4847
|
interface IFindBaseDto {
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4848
|
+
department?: IDepartment;
|
|
4849
|
+
departmentName?: string;
|
|
4850
|
+
leader?: IUser;
|
|
4851
|
+
leaderName?: string;
|
|
4852
|
+
team?: ITeam;
|
|
4853
|
+
teamName?: string;
|
|
4854
|
+
user?: IUser;
|
|
4855
|
+
userName?: string;
|
|
4856
4856
|
createdByName?: string;
|
|
4857
4857
|
updatedByName?: string;
|
|
4858
4858
|
}
|
|
4859
4859
|
interface IFilterBaseDto {
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4860
|
+
department: string[];
|
|
4861
|
+
leader: string[];
|
|
4862
|
+
team: string[];
|
|
4863
|
+
user: string[];
|
|
4864
4864
|
createdBy: string[];
|
|
4865
4865
|
updatedBy: string[];
|
|
4866
4866
|
createdAt: [Date, Date];
|