automation-lib 5.4.313 → 5.4.315

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 CHANGED
@@ -1169,9 +1169,8 @@ declare enum EStatusGenerate {
1169
1169
  }
1170
1170
 
1171
1171
  declare enum EStatusPC {
1172
- Connected = "Connected",
1173
- Disconnected = "Disconnected",
1174
- Maintenance = "Maintenance"
1172
+ Online = "Online",
1173
+ Offline = "Offline"
1175
1174
  }
1176
1175
 
1177
1176
  declare enum EStatusTaskAIContent {
@@ -9439,13 +9438,6 @@ interface FindDeviceDto extends IFindBaseDto {
9439
9438
  };
9440
9439
  };
9441
9440
  nameSystemInformation: string;
9442
- runDevice: {
9443
- pcName: string;
9444
- department: string;
9445
- team: string;
9446
- user: string;
9447
- };
9448
- statusPC: EStatusPC;
9449
9441
  hubConnection: string;
9450
9442
  hubStatus: EStatusDeviceHubStatus;
9451
9443
  statusConnectPC: EStatusDeviceConnectPC;
@@ -9462,6 +9454,11 @@ interface FindDeviceDto extends IFindBaseDto {
9462
9454
  statusReplace: EStatusDeviceReplace;
9463
9455
  idea: string;
9464
9456
  niche: string;
9457
+ pcInfo: {
9458
+ id: string;
9459
+ name: string;
9460
+ status: EStatusPC;
9461
+ };
9465
9462
  deviceInfo: {
9466
9463
  os: ETypeDeviceOS;
9467
9464
  model: string;
package/dist/index.d.ts CHANGED
@@ -1169,9 +1169,8 @@ declare enum EStatusGenerate {
1169
1169
  }
1170
1170
 
1171
1171
  declare enum EStatusPC {
1172
- Connected = "Connected",
1173
- Disconnected = "Disconnected",
1174
- Maintenance = "Maintenance"
1172
+ Online = "Online",
1173
+ Offline = "Offline"
1175
1174
  }
1176
1175
 
1177
1176
  declare enum EStatusTaskAIContent {
@@ -9439,13 +9438,6 @@ interface FindDeviceDto extends IFindBaseDto {
9439
9438
  };
9440
9439
  };
9441
9440
  nameSystemInformation: string;
9442
- runDevice: {
9443
- pcName: string;
9444
- department: string;
9445
- team: string;
9446
- user: string;
9447
- };
9448
- statusPC: EStatusPC;
9449
9441
  hubConnection: string;
9450
9442
  hubStatus: EStatusDeviceHubStatus;
9451
9443
  statusConnectPC: EStatusDeviceConnectPC;
@@ -9462,6 +9454,11 @@ interface FindDeviceDto extends IFindBaseDto {
9462
9454
  statusReplace: EStatusDeviceReplace;
9463
9455
  idea: string;
9464
9456
  niche: string;
9457
+ pcInfo: {
9458
+ id: string;
9459
+ name: string;
9460
+ status: EStatusPC;
9461
+ };
9465
9462
  deviceInfo: {
9466
9463
  os: ETypeDeviceOS;
9467
9464
  model: string;
package/dist/index.js CHANGED
@@ -1632,9 +1632,8 @@ var EStatusGenerate = /* @__PURE__ */ ((EStatusGenerate2) => {
1632
1632
 
1633
1633
  // src/enums/status/tools/EStatusPC.enum.ts
1634
1634
  var EStatusPC = /* @__PURE__ */ ((EStatusPC2) => {
1635
- EStatusPC2["Connected"] = "Connected";
1636
- EStatusPC2["Disconnected"] = "Disconnected";
1637
- EStatusPC2["Maintenance"] = "Maintenance";
1635
+ EStatusPC2["Online"] = "Online";
1636
+ EStatusPC2["Offline"] = "Offline";
1638
1637
  return EStatusPC2;
1639
1638
  })(EStatusPC || {});
1640
1639
 
package/dist/index.mjs CHANGED
@@ -1469,9 +1469,8 @@ var EStatusGenerate = /* @__PURE__ */ ((EStatusGenerate2) => {
1469
1469
 
1470
1470
  // src/enums/status/tools/EStatusPC.enum.ts
1471
1471
  var EStatusPC = /* @__PURE__ */ ((EStatusPC2) => {
1472
- EStatusPC2["Connected"] = "Connected";
1473
- EStatusPC2["Disconnected"] = "Disconnected";
1474
- EStatusPC2["Maintenance"] = "Maintenance";
1472
+ EStatusPC2["Online"] = "Online";
1473
+ EStatusPC2["Offline"] = "Offline";
1475
1474
  return EStatusPC2;
1476
1475
  })(EStatusPC || {});
1477
1476
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.4.313",
3
+ "version": "5.4.315",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",