automation-lib 5.4.352 → 5.4.354
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
|
@@ -2158,8 +2158,8 @@ interface IBaseModel {
|
|
|
2158
2158
|
version: number;
|
|
2159
2159
|
}
|
|
2160
2160
|
interface ITrackingModel {
|
|
2161
|
-
createdBy: IUser;
|
|
2162
|
-
updatedBy: IUser;
|
|
2161
|
+
createdBy: string | IUser;
|
|
2162
|
+
updatedBy: string | IUser;
|
|
2163
2163
|
}
|
|
2164
2164
|
interface IAssignUser {
|
|
2165
2165
|
timeLastUsed: Date;
|
|
@@ -2563,7 +2563,7 @@ interface FindPCDetail {
|
|
|
2563
2563
|
timeActive: Date;
|
|
2564
2564
|
status: EStatusPC;
|
|
2565
2565
|
statusControl: EStatusPCControl;
|
|
2566
|
-
|
|
2566
|
+
timeStatusChange: Date;
|
|
2567
2567
|
departmentAssign: string;
|
|
2568
2568
|
teamAssign: string;
|
|
2569
2569
|
userAssign: string;
|
|
@@ -2592,13 +2592,13 @@ interface FindPCDto extends IFindBaseDto {
|
|
|
2592
2592
|
ip: string;
|
|
2593
2593
|
maxDevice: number;
|
|
2594
2594
|
os: string;
|
|
2595
|
-
timeActive: Date;
|
|
2596
2595
|
status: EStatusPC;
|
|
2597
2596
|
statusControl: EStatusPCControl;
|
|
2598
|
-
|
|
2597
|
+
timeStatusChange: Date;
|
|
2599
2598
|
departmentAssign: string;
|
|
2600
2599
|
teamAssign: string;
|
|
2601
2600
|
userAssign: string;
|
|
2601
|
+
timeActive: Date;
|
|
2602
2602
|
note: string;
|
|
2603
2603
|
startStop: EStartStop;
|
|
2604
2604
|
isNotifyConnection: boolean;
|
|
@@ -2642,7 +2642,7 @@ interface IPC extends IBaseModel, IAssignUser, ITrackingModel {
|
|
|
2642
2642
|
os: string;
|
|
2643
2643
|
status: EStatusPC;
|
|
2644
2644
|
statusControl: EStatusPCControl;
|
|
2645
|
-
|
|
2645
|
+
timeStatusChange: Date;
|
|
2646
2646
|
note: string;
|
|
2647
2647
|
startStop: EStartStop;
|
|
2648
2648
|
isNotifyConnection: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2158,8 +2158,8 @@ interface IBaseModel {
|
|
|
2158
2158
|
version: number;
|
|
2159
2159
|
}
|
|
2160
2160
|
interface ITrackingModel {
|
|
2161
|
-
createdBy: IUser;
|
|
2162
|
-
updatedBy: IUser;
|
|
2161
|
+
createdBy: string | IUser;
|
|
2162
|
+
updatedBy: string | IUser;
|
|
2163
2163
|
}
|
|
2164
2164
|
interface IAssignUser {
|
|
2165
2165
|
timeLastUsed: Date;
|
|
@@ -2563,7 +2563,7 @@ interface FindPCDetail {
|
|
|
2563
2563
|
timeActive: Date;
|
|
2564
2564
|
status: EStatusPC;
|
|
2565
2565
|
statusControl: EStatusPCControl;
|
|
2566
|
-
|
|
2566
|
+
timeStatusChange: Date;
|
|
2567
2567
|
departmentAssign: string;
|
|
2568
2568
|
teamAssign: string;
|
|
2569
2569
|
userAssign: string;
|
|
@@ -2592,13 +2592,13 @@ interface FindPCDto extends IFindBaseDto {
|
|
|
2592
2592
|
ip: string;
|
|
2593
2593
|
maxDevice: number;
|
|
2594
2594
|
os: string;
|
|
2595
|
-
timeActive: Date;
|
|
2596
2595
|
status: EStatusPC;
|
|
2597
2596
|
statusControl: EStatusPCControl;
|
|
2598
|
-
|
|
2597
|
+
timeStatusChange: Date;
|
|
2599
2598
|
departmentAssign: string;
|
|
2600
2599
|
teamAssign: string;
|
|
2601
2600
|
userAssign: string;
|
|
2601
|
+
timeActive: Date;
|
|
2602
2602
|
note: string;
|
|
2603
2603
|
startStop: EStartStop;
|
|
2604
2604
|
isNotifyConnection: boolean;
|
|
@@ -2642,7 +2642,7 @@ interface IPC extends IBaseModel, IAssignUser, ITrackingModel {
|
|
|
2642
2642
|
os: string;
|
|
2643
2643
|
status: EStatusPC;
|
|
2644
2644
|
statusControl: EStatusPCControl;
|
|
2645
|
-
|
|
2645
|
+
timeStatusChange: Date;
|
|
2646
2646
|
note: string;
|
|
2647
2647
|
startStop: EStartStop;
|
|
2648
2648
|
isNotifyConnection: boolean;
|