automation-lib 5.3.19 → 5.3.21
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 +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2049,9 +2049,9 @@ interface IDeviceLog extends IBaseModel {
|
|
|
2049
2049
|
deviceType: string;
|
|
2050
2050
|
deviceKey: string;
|
|
2051
2051
|
pcName: string;
|
|
2052
|
-
department: string;
|
|
2053
|
-
team: string;
|
|
2054
|
-
user: string;
|
|
2052
|
+
department: string | IDepartment;
|
|
2053
|
+
team: string | ITeam;
|
|
2054
|
+
user: string | IUser;
|
|
2055
2055
|
}
|
|
2056
2056
|
|
|
2057
2057
|
interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -9705,9 +9705,9 @@ interface FindDeviceLogDto {
|
|
|
9705
9705
|
deviceType: string;
|
|
9706
9706
|
deviceKey: string;
|
|
9707
9707
|
pcName: string;
|
|
9708
|
-
department:
|
|
9709
|
-
team:
|
|
9710
|
-
user:
|
|
9708
|
+
department: IDepartment;
|
|
9709
|
+
team: ITeam;
|
|
9710
|
+
user: IUser;
|
|
9711
9711
|
}
|
|
9712
9712
|
|
|
9713
9713
|
interface FindOverViewTaskAIContentDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -2049,9 +2049,9 @@ interface IDeviceLog extends IBaseModel {
|
|
|
2049
2049
|
deviceType: string;
|
|
2050
2050
|
deviceKey: string;
|
|
2051
2051
|
pcName: string;
|
|
2052
|
-
department: string;
|
|
2053
|
-
team: string;
|
|
2054
|
-
user: string;
|
|
2052
|
+
department: string | IDepartment;
|
|
2053
|
+
team: string | ITeam;
|
|
2054
|
+
user: string | IUser;
|
|
2055
2055
|
}
|
|
2056
2056
|
|
|
2057
2057
|
interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -9705,9 +9705,9 @@ interface FindDeviceLogDto {
|
|
|
9705
9705
|
deviceType: string;
|
|
9706
9706
|
deviceKey: string;
|
|
9707
9707
|
pcName: string;
|
|
9708
|
-
department:
|
|
9709
|
-
team:
|
|
9710
|
-
user:
|
|
9708
|
+
department: IDepartment;
|
|
9709
|
+
team: ITeam;
|
|
9710
|
+
user: IUser;
|
|
9711
9711
|
}
|
|
9712
9712
|
|
|
9713
9713
|
interface FindOverViewTaskAIContentDto {
|