automation-lib 6.6.317 → 6.6.318
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/commit.bat +5 -5
- package/dist/index.d.mts +5 -24
- package/dist/index.d.ts +5 -24
- package/package.json +1 -1
package/commit.bat
CHANGED
|
@@ -7,10 +7,10 @@ git add .
|
|
|
7
7
|
echo Committing changes...
|
|
8
8
|
set /p commit_message="Enter commit message: "
|
|
9
9
|
git commit -m "%commit_message%"
|
|
10
|
-
|
|
10
|
+
timeout /t 2 /nobreak >nul
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
13
|
+
git pull hs main
|
|
14
14
|
|
|
15
15
|
:: Read the current version from package.json
|
|
16
16
|
for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
|
|
@@ -41,10 +41,10 @@ echo New version: %newVersion%
|
|
|
41
41
|
call npm run pub
|
|
42
42
|
|
|
43
43
|
git add .
|
|
44
|
-
|
|
44
|
+
timeout /t 1 /nobreak >nul
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
timeout /t 2 /nobreak >nul
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push hs main
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -4038,8 +4038,6 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4038
4038
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4039
4039
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4040
4040
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4041
|
-
[EAccountAIModelStatus.Suspend]: number;
|
|
4042
|
-
na: number;
|
|
4043
4041
|
total: number;
|
|
4044
4042
|
};
|
|
4045
4043
|
content: {
|
|
@@ -4273,7 +4271,11 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4273
4271
|
total: number;
|
|
4274
4272
|
percentage: number;
|
|
4275
4273
|
};
|
|
4276
|
-
|
|
4274
|
+
totalAccountWrongPassword: {
|
|
4275
|
+
total: number;
|
|
4276
|
+
percentage: number;
|
|
4277
|
+
};
|
|
4278
|
+
totalAccountNotExist: {
|
|
4277
4279
|
total: number;
|
|
4278
4280
|
percentage: number;
|
|
4279
4281
|
};
|
|
@@ -4415,10 +4417,6 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4415
4417
|
total: number;
|
|
4416
4418
|
percentage: number;
|
|
4417
4419
|
};
|
|
4418
|
-
totalAccountNA: {
|
|
4419
|
-
total: number;
|
|
4420
|
-
percentage: number;
|
|
4421
|
-
};
|
|
4422
4420
|
}
|
|
4423
4421
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
|
|
4424
4422
|
sheetName: string[];
|
|
@@ -4523,27 +4521,14 @@ interface FindOverviewAccountDriveDto {
|
|
|
4523
4521
|
total: number;
|
|
4524
4522
|
percentage: number;
|
|
4525
4523
|
};
|
|
4526
|
-
totalAccountInactiveError: {
|
|
4527
|
-
total: number;
|
|
4528
|
-
inactive: number;
|
|
4529
|
-
error: number;
|
|
4530
|
-
};
|
|
4531
4524
|
totalAccountWrongPassword: {
|
|
4532
4525
|
total: number;
|
|
4533
4526
|
percentage: number;
|
|
4534
4527
|
};
|
|
4535
|
-
totalAccountWrong2FA: {
|
|
4536
|
-
total: number;
|
|
4537
|
-
percentage: number;
|
|
4538
|
-
};
|
|
4539
4528
|
totalAccountNotExist: {
|
|
4540
4529
|
total: number;
|
|
4541
4530
|
percentage: number;
|
|
4542
4531
|
};
|
|
4543
|
-
totalAccountNA: {
|
|
4544
|
-
total: number;
|
|
4545
|
-
percentage: number;
|
|
4546
|
-
};
|
|
4547
4532
|
}
|
|
4548
4533
|
interface FilterAccountDriveDto extends IFilterBaseDto {
|
|
4549
4534
|
driveType: EAccountDriveType[];
|
|
@@ -5798,10 +5783,6 @@ interface FindOverviewAccountVPNDto {
|
|
|
5798
5783
|
total: number;
|
|
5799
5784
|
percentage: number;
|
|
5800
5785
|
};
|
|
5801
|
-
totalAccountNA: {
|
|
5802
|
-
total: number;
|
|
5803
|
-
percentage: number;
|
|
5804
|
-
};
|
|
5805
5786
|
}
|
|
5806
5787
|
|
|
5807
5788
|
interface DataImportAccountVPNDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -4038,8 +4038,6 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4038
4038
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4039
4039
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4040
4040
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4041
|
-
[EAccountAIModelStatus.Suspend]: number;
|
|
4042
|
-
na: number;
|
|
4043
4041
|
total: number;
|
|
4044
4042
|
};
|
|
4045
4043
|
content: {
|
|
@@ -4273,7 +4271,11 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4273
4271
|
total: number;
|
|
4274
4272
|
percentage: number;
|
|
4275
4273
|
};
|
|
4276
|
-
|
|
4274
|
+
totalAccountWrongPassword: {
|
|
4275
|
+
total: number;
|
|
4276
|
+
percentage: number;
|
|
4277
|
+
};
|
|
4278
|
+
totalAccountNotExist: {
|
|
4277
4279
|
total: number;
|
|
4278
4280
|
percentage: number;
|
|
4279
4281
|
};
|
|
@@ -4415,10 +4417,6 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4415
4417
|
total: number;
|
|
4416
4418
|
percentage: number;
|
|
4417
4419
|
};
|
|
4418
|
-
totalAccountNA: {
|
|
4419
|
-
total: number;
|
|
4420
|
-
percentage: number;
|
|
4421
|
-
};
|
|
4422
4420
|
}
|
|
4423
4421
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
|
|
4424
4422
|
sheetName: string[];
|
|
@@ -4523,27 +4521,14 @@ interface FindOverviewAccountDriveDto {
|
|
|
4523
4521
|
total: number;
|
|
4524
4522
|
percentage: number;
|
|
4525
4523
|
};
|
|
4526
|
-
totalAccountInactiveError: {
|
|
4527
|
-
total: number;
|
|
4528
|
-
inactive: number;
|
|
4529
|
-
error: number;
|
|
4530
|
-
};
|
|
4531
4524
|
totalAccountWrongPassword: {
|
|
4532
4525
|
total: number;
|
|
4533
4526
|
percentage: number;
|
|
4534
4527
|
};
|
|
4535
|
-
totalAccountWrong2FA: {
|
|
4536
|
-
total: number;
|
|
4537
|
-
percentage: number;
|
|
4538
|
-
};
|
|
4539
4528
|
totalAccountNotExist: {
|
|
4540
4529
|
total: number;
|
|
4541
4530
|
percentage: number;
|
|
4542
4531
|
};
|
|
4543
|
-
totalAccountNA: {
|
|
4544
|
-
total: number;
|
|
4545
|
-
percentage: number;
|
|
4546
|
-
};
|
|
4547
4532
|
}
|
|
4548
4533
|
interface FilterAccountDriveDto extends IFilterBaseDto {
|
|
4549
4534
|
driveType: EAccountDriveType[];
|
|
@@ -5798,10 +5783,6 @@ interface FindOverviewAccountVPNDto {
|
|
|
5798
5783
|
total: number;
|
|
5799
5784
|
percentage: number;
|
|
5800
5785
|
};
|
|
5801
|
-
totalAccountNA: {
|
|
5802
|
-
total: number;
|
|
5803
|
-
percentage: number;
|
|
5804
|
-
};
|
|
5805
5786
|
}
|
|
5806
5787
|
|
|
5807
5788
|
interface DataImportAccountVPNDto {
|