automation-lib 5.3.8 → 5.3.9
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
- package/requirements.txt +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -8835,18 +8835,18 @@ interface FilterAccountDriveDto extends IFilterBaseDto {
|
|
|
8835
8835
|
status: EStatusAccountDrive[];
|
|
8836
8836
|
}
|
|
8837
8837
|
|
|
8838
|
-
interface CreateProxyDto
|
|
8838
|
+
interface CreateProxyDto {
|
|
8839
8839
|
proxyString: string;
|
|
8840
8840
|
type: ETypeProxy;
|
|
8841
|
-
provider:
|
|
8841
|
+
provider: string;
|
|
8842
8842
|
startDate: Date;
|
|
8843
8843
|
endDate: Date;
|
|
8844
8844
|
}
|
|
8845
|
-
interface UpdateProxyDto
|
|
8845
|
+
interface UpdateProxyDto {
|
|
8846
8846
|
oldProxyString?: string;
|
|
8847
8847
|
newProxyString?: string;
|
|
8848
8848
|
type: ETypeProxy;
|
|
8849
|
-
provider:
|
|
8849
|
+
provider: string;
|
|
8850
8850
|
startDate: Date;
|
|
8851
8851
|
endDate: Date;
|
|
8852
8852
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -8835,18 +8835,18 @@ interface FilterAccountDriveDto extends IFilterBaseDto {
|
|
|
8835
8835
|
status: EStatusAccountDrive[];
|
|
8836
8836
|
}
|
|
8837
8837
|
|
|
8838
|
-
interface CreateProxyDto
|
|
8838
|
+
interface CreateProxyDto {
|
|
8839
8839
|
proxyString: string;
|
|
8840
8840
|
type: ETypeProxy;
|
|
8841
|
-
provider:
|
|
8841
|
+
provider: string;
|
|
8842
8842
|
startDate: Date;
|
|
8843
8843
|
endDate: Date;
|
|
8844
8844
|
}
|
|
8845
|
-
interface UpdateProxyDto
|
|
8845
|
+
interface UpdateProxyDto {
|
|
8846
8846
|
oldProxyString?: string;
|
|
8847
8847
|
newProxyString?: string;
|
|
8848
8848
|
type: ETypeProxy;
|
|
8849
|
-
provider:
|
|
8849
|
+
provider: string;
|
|
8850
8850
|
startDate: Date;
|
|
8851
8851
|
endDate: Date;
|
|
8852
8852
|
}
|
package/package.json
CHANGED
package/requirements.txt
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
pyinstaller
|
|
2
|
-
pywin32
|
|
3
|
-
pytz
|
|
4
|
-
webdriver-manager
|
|
5
|
-
selenium
|
|
6
|
-
undetected-chromedriver
|
|
7
|
-
requests
|
|
1
|
+
pyinstaller
|
|
2
|
+
pywin32
|
|
3
|
+
pytz
|
|
4
|
+
webdriver-manager
|
|
5
|
+
selenium
|
|
6
|
+
undetected-chromedriver
|
|
7
|
+
requests
|
|
8
8
|
rapidfuzz
|