automation-lib 5.3.25 → 5.3.27
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 -8
- package/dist/index.d.ts +2 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -9669,7 +9669,7 @@ interface FindOverviewDeviceLog {
|
|
|
9669
9669
|
};
|
|
9670
9670
|
};
|
|
9671
9671
|
}
|
|
9672
|
-
interface FilterDeviceLogDto {
|
|
9672
|
+
interface FilterDeviceLogDto extends IFilterBaseDto {
|
|
9673
9673
|
type: ETypeDeviceLog[];
|
|
9674
9674
|
taskID: ETypeTaskID[];
|
|
9675
9675
|
statusFromStart: EStatusDeviceLog[];
|
|
@@ -9681,11 +9681,8 @@ interface FilterDeviceLogDto {
|
|
|
9681
9681
|
deviceModel: string[];
|
|
9682
9682
|
deviceKey: string[];
|
|
9683
9683
|
pcName: string[];
|
|
9684
|
-
department: string[];
|
|
9685
|
-
team: string[];
|
|
9686
|
-
user: string[];
|
|
9687
9684
|
}
|
|
9688
|
-
interface FindDeviceLogDto {
|
|
9685
|
+
interface FindDeviceLogDto extends IFindBaseDto {
|
|
9689
9686
|
eventDateStartTime: Date;
|
|
9690
9687
|
statusStart: EStatusDeviceLog;
|
|
9691
9688
|
eventDateEndTime: Date;
|
|
@@ -9703,9 +9700,6 @@ interface FindDeviceLogDto {
|
|
|
9703
9700
|
deviceType: string;
|
|
9704
9701
|
deviceKey: string;
|
|
9705
9702
|
pcName: string;
|
|
9706
|
-
department: string;
|
|
9707
|
-
team: string;
|
|
9708
|
-
user: string;
|
|
9709
9703
|
}
|
|
9710
9704
|
|
|
9711
9705
|
interface FindOverViewTaskAIContentDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -9669,7 +9669,7 @@ interface FindOverviewDeviceLog {
|
|
|
9669
9669
|
};
|
|
9670
9670
|
};
|
|
9671
9671
|
}
|
|
9672
|
-
interface FilterDeviceLogDto {
|
|
9672
|
+
interface FilterDeviceLogDto extends IFilterBaseDto {
|
|
9673
9673
|
type: ETypeDeviceLog[];
|
|
9674
9674
|
taskID: ETypeTaskID[];
|
|
9675
9675
|
statusFromStart: EStatusDeviceLog[];
|
|
@@ -9681,11 +9681,8 @@ interface FilterDeviceLogDto {
|
|
|
9681
9681
|
deviceModel: string[];
|
|
9682
9682
|
deviceKey: string[];
|
|
9683
9683
|
pcName: string[];
|
|
9684
|
-
department: string[];
|
|
9685
|
-
team: string[];
|
|
9686
|
-
user: string[];
|
|
9687
9684
|
}
|
|
9688
|
-
interface FindDeviceLogDto {
|
|
9685
|
+
interface FindDeviceLogDto extends IFindBaseDto {
|
|
9689
9686
|
eventDateStartTime: Date;
|
|
9690
9687
|
statusStart: EStatusDeviceLog;
|
|
9691
9688
|
eventDateEndTime: Date;
|
|
@@ -9703,9 +9700,6 @@ interface FindDeviceLogDto {
|
|
|
9703
9700
|
deviceType: string;
|
|
9704
9701
|
deviceKey: string;
|
|
9705
9702
|
pcName: string;
|
|
9706
|
-
department: string;
|
|
9707
|
-
team: string;
|
|
9708
|
-
user: string;
|
|
9709
9703
|
}
|
|
9710
9704
|
|
|
9711
9705
|
interface FindOverViewTaskAIContentDto {
|