automation-lib 5.3.11 → 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[];
@@ -8940,11 +8944,26 @@ interface FilterAccountVPSGroupDto extends IFilterBaseDto {
8940
8944
 
8941
8945
  interface FindOverviewAccountEmailDto {
8942
8946
  totalEmails: number;
8943
- totalStatusNew: number;
8944
- totalStatusActive: number;
8945
- totalStatusSuspend: number;
8946
- totalStatusWrong2FA: number;
8947
- totalStatusWrongPassword: number;
8947
+ totalStatusNew: {
8948
+ total: number;
8949
+ percentage: number;
8950
+ };
8951
+ totalStatusActive: {
8952
+ total: number;
8953
+ percentage: number;
8954
+ };
8955
+ totalStatusSuspend: {
8956
+ total: number;
8957
+ percentage: number;
8958
+ };
8959
+ totalStatusWrong2FA: {
8960
+ total: number;
8961
+ percentage: number;
8962
+ };
8963
+ totalStatusWrongPassword: {
8964
+ total: number;
8965
+ percentage: number;
8966
+ };
8948
8967
  totalIdeas: number;
8949
8968
  totalNiches: number;
8950
8969
  }
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[];
@@ -8940,11 +8944,26 @@ interface FilterAccountVPSGroupDto extends IFilterBaseDto {
8940
8944
 
8941
8945
  interface FindOverviewAccountEmailDto {
8942
8946
  totalEmails: number;
8943
- totalStatusNew: number;
8944
- totalStatusActive: number;
8945
- totalStatusSuspend: number;
8946
- totalStatusWrong2FA: number;
8947
- totalStatusWrongPassword: number;
8947
+ totalStatusNew: {
8948
+ total: number;
8949
+ percentage: number;
8950
+ };
8951
+ totalStatusActive: {
8952
+ total: number;
8953
+ percentage: number;
8954
+ };
8955
+ totalStatusSuspend: {
8956
+ total: number;
8957
+ percentage: number;
8958
+ };
8959
+ totalStatusWrong2FA: {
8960
+ total: number;
8961
+ percentage: number;
8962
+ };
8963
+ totalStatusWrongPassword: {
8964
+ total: number;
8965
+ percentage: number;
8966
+ };
8948
8967
  totalIdeas: number;
8949
8968
  totalNiches: number;
8950
8969
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.3.11",
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",