automation-lib 5.3.12 → 5.3.13

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
@@ -8840,6 +8840,7 @@ interface CreateProxyDto {
8840
8840
  provider: string;
8841
8841
  startDate: Date;
8842
8842
  endDate: Date;
8843
+ note?: string;
8843
8844
  }
8844
8845
  interface UpdateProxyDto {
8845
8846
  oldProxyString?: string;
@@ -8848,6 +8849,9 @@ interface UpdateProxyDto {
8848
8849
  provider?: string;
8849
8850
  startDate?: Date;
8850
8851
  endDate?: Date;
8852
+ note?: string;
8853
+ checked?: EStatusProxyChecked;
8854
+ lastUserUsed?: string;
8851
8855
  }
8852
8856
  interface AddToDeviceProxyDto {
8853
8857
  listDeviceIds: string[];
package/dist/index.d.ts CHANGED
@@ -8840,6 +8840,7 @@ interface CreateProxyDto {
8840
8840
  provider: string;
8841
8841
  startDate: Date;
8842
8842
  endDate: Date;
8843
+ note?: string;
8843
8844
  }
8844
8845
  interface UpdateProxyDto {
8845
8846
  oldProxyString?: string;
@@ -8848,6 +8849,9 @@ interface UpdateProxyDto {
8848
8849
  provider?: string;
8849
8850
  startDate?: Date;
8850
8851
  endDate?: Date;
8852
+ note?: string;
8853
+ checked?: EStatusProxyChecked;
8854
+ lastUserUsed?: string;
8851
8855
  }
8852
8856
  interface AddToDeviceProxyDto {
8853
8857
  listDeviceIds: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.3.12",
3
+ "version": "5.3.13",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",