automation-lib 5.3.11 → 5.3.12
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 +20 -5
- package/dist/index.d.ts +20 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8940,11 +8940,26 @@ interface FilterAccountVPSGroupDto extends IFilterBaseDto {
|
|
|
8940
8940
|
|
|
8941
8941
|
interface FindOverviewAccountEmailDto {
|
|
8942
8942
|
totalEmails: number;
|
|
8943
|
-
totalStatusNew:
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8947
|
-
|
|
8943
|
+
totalStatusNew: {
|
|
8944
|
+
total: number;
|
|
8945
|
+
percentage: number;
|
|
8946
|
+
};
|
|
8947
|
+
totalStatusActive: {
|
|
8948
|
+
total: number;
|
|
8949
|
+
percentage: number;
|
|
8950
|
+
};
|
|
8951
|
+
totalStatusSuspend: {
|
|
8952
|
+
total: number;
|
|
8953
|
+
percentage: number;
|
|
8954
|
+
};
|
|
8955
|
+
totalStatusWrong2FA: {
|
|
8956
|
+
total: number;
|
|
8957
|
+
percentage: number;
|
|
8958
|
+
};
|
|
8959
|
+
totalStatusWrongPassword: {
|
|
8960
|
+
total: number;
|
|
8961
|
+
percentage: number;
|
|
8962
|
+
};
|
|
8948
8963
|
totalIdeas: number;
|
|
8949
8964
|
totalNiches: number;
|
|
8950
8965
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -8940,11 +8940,26 @@ interface FilterAccountVPSGroupDto extends IFilterBaseDto {
|
|
|
8940
8940
|
|
|
8941
8941
|
interface FindOverviewAccountEmailDto {
|
|
8942
8942
|
totalEmails: number;
|
|
8943
|
-
totalStatusNew:
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8947
|
-
|
|
8943
|
+
totalStatusNew: {
|
|
8944
|
+
total: number;
|
|
8945
|
+
percentage: number;
|
|
8946
|
+
};
|
|
8947
|
+
totalStatusActive: {
|
|
8948
|
+
total: number;
|
|
8949
|
+
percentage: number;
|
|
8950
|
+
};
|
|
8951
|
+
totalStatusSuspend: {
|
|
8952
|
+
total: number;
|
|
8953
|
+
percentage: number;
|
|
8954
|
+
};
|
|
8955
|
+
totalStatusWrong2FA: {
|
|
8956
|
+
total: number;
|
|
8957
|
+
percentage: number;
|
|
8958
|
+
};
|
|
8959
|
+
totalStatusWrongPassword: {
|
|
8960
|
+
total: number;
|
|
8961
|
+
percentage: number;
|
|
8962
|
+
};
|
|
8948
8963
|
totalIdeas: number;
|
|
8949
8964
|
totalNiches: number;
|
|
8950
8965
|
}
|