automation-lib 6.6.341 → 6.6.343
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 +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- 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
|
@@ -4044,6 +4044,7 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4044
4044
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4045
4045
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4046
4046
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4047
|
+
[EAccountAIModelStatus.Suspend]: number;
|
|
4047
4048
|
total: number;
|
|
4048
4049
|
};
|
|
4049
4050
|
content: {
|
|
@@ -4247,7 +4248,10 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
|
|
|
4247
4248
|
declare enum EStatusAccountCanva {
|
|
4248
4249
|
New = "New",
|
|
4249
4250
|
Working = "Working",
|
|
4250
|
-
|
|
4251
|
+
Active = "Active",
|
|
4252
|
+
Error = "Error",
|
|
4253
|
+
AccountNotExist = "AccountNotExist",
|
|
4254
|
+
WrongPassword = "WrongPassword"
|
|
4251
4255
|
}
|
|
4252
4256
|
|
|
4253
4257
|
/**
|
|
@@ -4361,7 +4365,7 @@ declare enum EStatusAccountCHPlayICloud {
|
|
|
4361
4365
|
AccountNotExist = "AccountNotExist",
|
|
4362
4366
|
WrongPassword = "WrongPassword",
|
|
4363
4367
|
Error = "Error",
|
|
4364
|
-
|
|
4368
|
+
Expired = "Expired"
|
|
4365
4369
|
}
|
|
4366
4370
|
|
|
4367
4371
|
/**
|
|
@@ -4415,6 +4419,7 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4415
4419
|
};
|
|
4416
4420
|
totalAccountsExpired: {
|
|
4417
4421
|
total: number;
|
|
4422
|
+
percentage: number;
|
|
4418
4423
|
};
|
|
4419
4424
|
totalAccountsActiveWorking: {
|
|
4420
4425
|
total: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -4044,6 +4044,7 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4044
4044
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4045
4045
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4046
4046
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4047
|
+
[EAccountAIModelStatus.Suspend]: number;
|
|
4047
4048
|
total: number;
|
|
4048
4049
|
};
|
|
4049
4050
|
content: {
|
|
@@ -4247,7 +4248,10 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
|
|
|
4247
4248
|
declare enum EStatusAccountCanva {
|
|
4248
4249
|
New = "New",
|
|
4249
4250
|
Working = "Working",
|
|
4250
|
-
|
|
4251
|
+
Active = "Active",
|
|
4252
|
+
Error = "Error",
|
|
4253
|
+
AccountNotExist = "AccountNotExist",
|
|
4254
|
+
WrongPassword = "WrongPassword"
|
|
4251
4255
|
}
|
|
4252
4256
|
|
|
4253
4257
|
/**
|
|
@@ -4361,7 +4365,7 @@ declare enum EStatusAccountCHPlayICloud {
|
|
|
4361
4365
|
AccountNotExist = "AccountNotExist",
|
|
4362
4366
|
WrongPassword = "WrongPassword",
|
|
4363
4367
|
Error = "Error",
|
|
4364
|
-
|
|
4368
|
+
Expired = "Expired"
|
|
4365
4369
|
}
|
|
4366
4370
|
|
|
4367
4371
|
/**
|
|
@@ -4415,6 +4419,7 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4415
4419
|
};
|
|
4416
4420
|
totalAccountsExpired: {
|
|
4417
4421
|
total: number;
|
|
4422
|
+
percentage: number;
|
|
4418
4423
|
};
|
|
4419
4424
|
totalAccountsActiveWorking: {
|
|
4420
4425
|
total: number;
|
package/dist/index.js
CHANGED
|
@@ -2907,7 +2907,10 @@ var EAccountAIContentChannelStatus = /* @__PURE__ */ ((EAccountAIContentChannelS
|
|
|
2907
2907
|
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
2908
2908
|
EStatusAccountCanva2["New"] = "New";
|
|
2909
2909
|
EStatusAccountCanva2["Working"] = "Working";
|
|
2910
|
+
EStatusAccountCanva2["Active"] = "Active";
|
|
2910
2911
|
EStatusAccountCanva2["Error"] = "Error";
|
|
2912
|
+
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2913
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2911
2914
|
return EStatusAccountCanva2;
|
|
2912
2915
|
})(EStatusAccountCanva || {});
|
|
2913
2916
|
|
|
@@ -2926,7 +2929,7 @@ var EStatusAccountCHPlayICloud = /* @__PURE__ */ ((EStatusAccountCHPlayICloud2)
|
|
|
2926
2929
|
EStatusAccountCHPlayICloud2["AccountNotExist"] = "AccountNotExist";
|
|
2927
2930
|
EStatusAccountCHPlayICloud2["WrongPassword"] = "WrongPassword";
|
|
2928
2931
|
EStatusAccountCHPlayICloud2["Error"] = "Error";
|
|
2929
|
-
EStatusAccountCHPlayICloud2["
|
|
2932
|
+
EStatusAccountCHPlayICloud2["Expired"] = "Expired";
|
|
2930
2933
|
return EStatusAccountCHPlayICloud2;
|
|
2931
2934
|
})(EStatusAccountCHPlayICloud || {});
|
|
2932
2935
|
|
package/dist/index.mjs
CHANGED
|
@@ -2643,7 +2643,10 @@ var EAccountAIContentChannelStatus = /* @__PURE__ */ ((EAccountAIContentChannelS
|
|
|
2643
2643
|
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
2644
2644
|
EStatusAccountCanva2["New"] = "New";
|
|
2645
2645
|
EStatusAccountCanva2["Working"] = "Working";
|
|
2646
|
+
EStatusAccountCanva2["Active"] = "Active";
|
|
2646
2647
|
EStatusAccountCanva2["Error"] = "Error";
|
|
2648
|
+
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2649
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2647
2650
|
return EStatusAccountCanva2;
|
|
2648
2651
|
})(EStatusAccountCanva || {});
|
|
2649
2652
|
|
|
@@ -2662,7 +2665,7 @@ var EStatusAccountCHPlayICloud = /* @__PURE__ */ ((EStatusAccountCHPlayICloud2)
|
|
|
2662
2665
|
EStatusAccountCHPlayICloud2["AccountNotExist"] = "AccountNotExist";
|
|
2663
2666
|
EStatusAccountCHPlayICloud2["WrongPassword"] = "WrongPassword";
|
|
2664
2667
|
EStatusAccountCHPlayICloud2["Error"] = "Error";
|
|
2665
|
-
EStatusAccountCHPlayICloud2["
|
|
2668
|
+
EStatusAccountCHPlayICloud2["Expired"] = "Expired";
|
|
2666
2669
|
return EStatusAccountCHPlayICloud2;
|
|
2667
2670
|
})(EStatusAccountCHPlayICloud || {});
|
|
2668
2671
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "automation-lib",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.343",
|
|
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.342",
|
|
34
34
|
"http-status-codes": "^2.3.0",
|
|
35
35
|
"nodemailer": "^6.9.13",
|
|
36
36
|
"sharp": "^0.33.3"
|