automation-lib 5.3.26 → 5.3.28
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 -5
- package/dist/index.d.ts +2 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1927,7 +1927,7 @@ interface IBaseModel {
|
|
|
1927
1927
|
}
|
|
1928
1928
|
interface ITrackingModel<T> {
|
|
1929
1929
|
createdBy: T | string;
|
|
1930
|
-
updatedBy
|
|
1930
|
+
updatedBy: T | string;
|
|
1931
1931
|
}
|
|
1932
1932
|
interface ITrackingTimeScript {
|
|
1933
1933
|
timeStart: Date;
|
|
@@ -9682,7 +9682,7 @@ interface FilterDeviceLogDto extends IFilterBaseDto {
|
|
|
9682
9682
|
deviceKey: string[];
|
|
9683
9683
|
pcName: string[];
|
|
9684
9684
|
}
|
|
9685
|
-
interface FindDeviceLogDto {
|
|
9685
|
+
interface FindDeviceLogDto extends IFindBaseDto {
|
|
9686
9686
|
eventDateStartTime: Date;
|
|
9687
9687
|
statusStart: EStatusDeviceLog;
|
|
9688
9688
|
eventDateEndTime: Date;
|
|
@@ -9700,9 +9700,6 @@ interface FindDeviceLogDto {
|
|
|
9700
9700
|
deviceType: string;
|
|
9701
9701
|
deviceKey: string;
|
|
9702
9702
|
pcName: string;
|
|
9703
|
-
department: string;
|
|
9704
|
-
team: string;
|
|
9705
|
-
user: string;
|
|
9706
9703
|
}
|
|
9707
9704
|
|
|
9708
9705
|
interface FindOverViewTaskAIContentDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -1927,7 +1927,7 @@ interface IBaseModel {
|
|
|
1927
1927
|
}
|
|
1928
1928
|
interface ITrackingModel<T> {
|
|
1929
1929
|
createdBy: T | string;
|
|
1930
|
-
updatedBy
|
|
1930
|
+
updatedBy: T | string;
|
|
1931
1931
|
}
|
|
1932
1932
|
interface ITrackingTimeScript {
|
|
1933
1933
|
timeStart: Date;
|
|
@@ -9682,7 +9682,7 @@ interface FilterDeviceLogDto extends IFilterBaseDto {
|
|
|
9682
9682
|
deviceKey: string[];
|
|
9683
9683
|
pcName: string[];
|
|
9684
9684
|
}
|
|
9685
|
-
interface FindDeviceLogDto {
|
|
9685
|
+
interface FindDeviceLogDto extends IFindBaseDto {
|
|
9686
9686
|
eventDateStartTime: Date;
|
|
9687
9687
|
statusStart: EStatusDeviceLog;
|
|
9688
9688
|
eventDateEndTime: Date;
|
|
@@ -9700,9 +9700,6 @@ interface FindDeviceLogDto {
|
|
|
9700
9700
|
deviceType: string;
|
|
9701
9701
|
deviceKey: string;
|
|
9702
9702
|
pcName: string;
|
|
9703
|
-
department: string;
|
|
9704
|
-
team: string;
|
|
9705
|
-
user: string;
|
|
9706
9703
|
}
|
|
9707
9704
|
|
|
9708
9705
|
interface FindOverViewTaskAIContentDto {
|