automation-lib 6.6.311 → 6.6.313
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 +24 -8
- package/dist/index.d.ts +24 -8
- package/package.json +2 -2
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
|
@@ -4037,6 +4037,8 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4037
4037
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4038
4038
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4039
4039
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4040
|
+
[EAccountAIModelStatus.Suspend]: number;
|
|
4041
|
+
na: number;
|
|
4040
4042
|
total: number;
|
|
4041
4043
|
};
|
|
4042
4044
|
content: {
|
|
@@ -4270,11 +4272,7 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4270
4272
|
total: number;
|
|
4271
4273
|
percentage: number;
|
|
4272
4274
|
};
|
|
4273
|
-
|
|
4274
|
-
total: number;
|
|
4275
|
-
percentage: number;
|
|
4276
|
-
};
|
|
4277
|
-
totalAccountNotExist: {
|
|
4275
|
+
totalAccountNA: {
|
|
4278
4276
|
total: number;
|
|
4279
4277
|
percentage: number;
|
|
4280
4278
|
};
|
|
@@ -4416,6 +4414,10 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4416
4414
|
total: number;
|
|
4417
4415
|
percentage: number;
|
|
4418
4416
|
};
|
|
4417
|
+
totalAccountNA: {
|
|
4418
|
+
total: number;
|
|
4419
|
+
percentage: number;
|
|
4420
|
+
};
|
|
4419
4421
|
}
|
|
4420
4422
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
|
|
4421
4423
|
sheetName: string[];
|
|
@@ -4520,14 +4522,27 @@ interface FindOverviewAccountDriveDto {
|
|
|
4520
4522
|
total: number;
|
|
4521
4523
|
percentage: number;
|
|
4522
4524
|
};
|
|
4525
|
+
totalAccountInactiveError: {
|
|
4526
|
+
total: number;
|
|
4527
|
+
inactive: number;
|
|
4528
|
+
error: number;
|
|
4529
|
+
};
|
|
4523
4530
|
totalAccountWrongPassword: {
|
|
4524
4531
|
total: number;
|
|
4525
4532
|
percentage: number;
|
|
4526
4533
|
};
|
|
4534
|
+
totalAccountWrong2FA: {
|
|
4535
|
+
total: number;
|
|
4536
|
+
percentage: number;
|
|
4537
|
+
};
|
|
4527
4538
|
totalAccountNotExist: {
|
|
4528
4539
|
total: number;
|
|
4529
4540
|
percentage: number;
|
|
4530
4541
|
};
|
|
4542
|
+
totalAccountNA: {
|
|
4543
|
+
total: number;
|
|
4544
|
+
percentage: number;
|
|
4545
|
+
};
|
|
4531
4546
|
}
|
|
4532
4547
|
interface FilterAccountDriveDto extends IFilterBaseDto {
|
|
4533
4548
|
driveType: EAccountDriveType[];
|
|
@@ -5753,6 +5768,7 @@ interface FindOverviewAccountVPNDto {
|
|
|
5753
5768
|
total: number;
|
|
5754
5769
|
free: number;
|
|
5755
5770
|
premium: number;
|
|
5771
|
+
na: number;
|
|
5756
5772
|
};
|
|
5757
5773
|
totalAccountsActiveWorking: {
|
|
5758
5774
|
total: number;
|
|
@@ -5777,11 +5793,11 @@ interface FindOverviewAccountVPNDto {
|
|
|
5777
5793
|
android: number;
|
|
5778
5794
|
ios: number;
|
|
5779
5795
|
};
|
|
5780
|
-
|
|
5796
|
+
totalAccountNotExist: {
|
|
5781
5797
|
total: number;
|
|
5782
5798
|
percentage: number;
|
|
5783
5799
|
};
|
|
5784
|
-
|
|
5800
|
+
totalAccountNA: {
|
|
5785
5801
|
total: number;
|
|
5786
5802
|
percentage: number;
|
|
5787
5803
|
};
|
|
@@ -13084,7 +13100,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13084
13100
|
};
|
|
13085
13101
|
status: EBlogPostStatus;
|
|
13086
13102
|
pin: EYesNo;
|
|
13087
|
-
pathBlogCategory: string
|
|
13103
|
+
pathBlogCategory: string;
|
|
13088
13104
|
blogRootCategory: string;
|
|
13089
13105
|
blogChildCategory: string;
|
|
13090
13106
|
viewableDepartments: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -4037,6 +4037,8 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4037
4037
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4038
4038
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4039
4039
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4040
|
+
[EAccountAIModelStatus.Suspend]: number;
|
|
4041
|
+
na: number;
|
|
4040
4042
|
total: number;
|
|
4041
4043
|
};
|
|
4042
4044
|
content: {
|
|
@@ -4270,11 +4272,7 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4270
4272
|
total: number;
|
|
4271
4273
|
percentage: number;
|
|
4272
4274
|
};
|
|
4273
|
-
|
|
4274
|
-
total: number;
|
|
4275
|
-
percentage: number;
|
|
4276
|
-
};
|
|
4277
|
-
totalAccountNotExist: {
|
|
4275
|
+
totalAccountNA: {
|
|
4278
4276
|
total: number;
|
|
4279
4277
|
percentage: number;
|
|
4280
4278
|
};
|
|
@@ -4416,6 +4414,10 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4416
4414
|
total: number;
|
|
4417
4415
|
percentage: number;
|
|
4418
4416
|
};
|
|
4417
|
+
totalAccountNA: {
|
|
4418
|
+
total: number;
|
|
4419
|
+
percentage: number;
|
|
4420
|
+
};
|
|
4419
4421
|
}
|
|
4420
4422
|
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
|
|
4421
4423
|
sheetName: string[];
|
|
@@ -4520,14 +4522,27 @@ interface FindOverviewAccountDriveDto {
|
|
|
4520
4522
|
total: number;
|
|
4521
4523
|
percentage: number;
|
|
4522
4524
|
};
|
|
4525
|
+
totalAccountInactiveError: {
|
|
4526
|
+
total: number;
|
|
4527
|
+
inactive: number;
|
|
4528
|
+
error: number;
|
|
4529
|
+
};
|
|
4523
4530
|
totalAccountWrongPassword: {
|
|
4524
4531
|
total: number;
|
|
4525
4532
|
percentage: number;
|
|
4526
4533
|
};
|
|
4534
|
+
totalAccountWrong2FA: {
|
|
4535
|
+
total: number;
|
|
4536
|
+
percentage: number;
|
|
4537
|
+
};
|
|
4527
4538
|
totalAccountNotExist: {
|
|
4528
4539
|
total: number;
|
|
4529
4540
|
percentage: number;
|
|
4530
4541
|
};
|
|
4542
|
+
totalAccountNA: {
|
|
4543
|
+
total: number;
|
|
4544
|
+
percentage: number;
|
|
4545
|
+
};
|
|
4531
4546
|
}
|
|
4532
4547
|
interface FilterAccountDriveDto extends IFilterBaseDto {
|
|
4533
4548
|
driveType: EAccountDriveType[];
|
|
@@ -5753,6 +5768,7 @@ interface FindOverviewAccountVPNDto {
|
|
|
5753
5768
|
total: number;
|
|
5754
5769
|
free: number;
|
|
5755
5770
|
premium: number;
|
|
5771
|
+
na: number;
|
|
5756
5772
|
};
|
|
5757
5773
|
totalAccountsActiveWorking: {
|
|
5758
5774
|
total: number;
|
|
@@ -5777,11 +5793,11 @@ interface FindOverviewAccountVPNDto {
|
|
|
5777
5793
|
android: number;
|
|
5778
5794
|
ios: number;
|
|
5779
5795
|
};
|
|
5780
|
-
|
|
5796
|
+
totalAccountNotExist: {
|
|
5781
5797
|
total: number;
|
|
5782
5798
|
percentage: number;
|
|
5783
5799
|
};
|
|
5784
|
-
|
|
5800
|
+
totalAccountNA: {
|
|
5785
5801
|
total: number;
|
|
5786
5802
|
percentage: number;
|
|
5787
5803
|
};
|
|
@@ -13084,7 +13100,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13084
13100
|
};
|
|
13085
13101
|
status: EBlogPostStatus;
|
|
13086
13102
|
pin: EYesNo;
|
|
13087
|
-
pathBlogCategory: string
|
|
13103
|
+
pathBlogCategory: string;
|
|
13088
13104
|
blogRootCategory: string;
|
|
13089
13105
|
blogChildCategory: string;
|
|
13090
13106
|
viewableDepartments: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "automation-lib",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.313",
|
|
4
4
|
"description": "Common features and type of applications auto",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"typescript": "^5.4.5"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"automation-lib": "^6.6.
|
|
33
|
+
"automation-lib": "^6.6.306",
|
|
34
34
|
"http-status-codes": "^2.3.0",
|
|
35
35
|
"nodemailer": "^6.9.13",
|
|
36
36
|
"sharp": "^0.33.3"
|