automation-lib 6.6.340 → 6.6.341
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 +3 -7
- package/dist/index.d.ts +3 -7
- package/dist/index.js +1 -4
- package/dist/index.mjs +1 -4
- 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
|
+
sleep 2
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
13
|
+
git pull origin toan
|
|
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
|
+
sleep 1
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
sleep 2
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push origin toan
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -4044,7 +4044,6 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4044
4044
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4045
4045
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4046
4046
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4047
|
-
[EAccountAIModelStatus.Suspend]: number;
|
|
4048
4047
|
total: number;
|
|
4049
4048
|
};
|
|
4050
4049
|
content: {
|
|
@@ -4248,10 +4247,7 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
|
|
|
4248
4247
|
declare enum EStatusAccountCanva {
|
|
4249
4248
|
New = "New",
|
|
4250
4249
|
Working = "Working",
|
|
4251
|
-
|
|
4252
|
-
Error = "Error",
|
|
4253
|
-
AccountNotExist = "AccountNotExist",
|
|
4254
|
-
WrongPassword = "WrongPassword"
|
|
4250
|
+
Error = "Error"
|
|
4255
4251
|
}
|
|
4256
4252
|
|
|
4257
4253
|
/**
|
|
@@ -4365,7 +4361,7 @@ declare enum EStatusAccountCHPlayICloud {
|
|
|
4365
4361
|
AccountNotExist = "AccountNotExist",
|
|
4366
4362
|
WrongPassword = "WrongPassword",
|
|
4367
4363
|
Error = "Error",
|
|
4368
|
-
|
|
4364
|
+
NotExist = "NotExist"
|
|
4369
4365
|
}
|
|
4370
4366
|
|
|
4371
4367
|
/**
|
|
@@ -4419,7 +4415,6 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4419
4415
|
};
|
|
4420
4416
|
totalAccountsExpired: {
|
|
4421
4417
|
total: number;
|
|
4422
|
-
percentage: number;
|
|
4423
4418
|
};
|
|
4424
4419
|
totalAccountsActiveWorking: {
|
|
4425
4420
|
total: number;
|
|
@@ -13138,6 +13133,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13138
13133
|
pin: EYesNo;
|
|
13139
13134
|
pathBlogCategory: string;
|
|
13140
13135
|
blogRootCategory: string;
|
|
13136
|
+
blogRootCategoryName: string;
|
|
13141
13137
|
blogChildCategory: string;
|
|
13142
13138
|
viewableDepartments: string[];
|
|
13143
13139
|
viewableTeams: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -4044,7 +4044,6 @@ interface FindOverviewAccountAIGoogleDto {
|
|
|
4044
4044
|
[EAccountAIModelStatus.Wrong2FA]: number;
|
|
4045
4045
|
[EAccountAIModelStatus.WrongEmailRecover]: number;
|
|
4046
4046
|
[EAccountAIModelStatus.ErrorInternet]: number;
|
|
4047
|
-
[EAccountAIModelStatus.Suspend]: number;
|
|
4048
4047
|
total: number;
|
|
4049
4048
|
};
|
|
4050
4049
|
content: {
|
|
@@ -4248,10 +4247,7 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
|
|
|
4248
4247
|
declare enum EStatusAccountCanva {
|
|
4249
4248
|
New = "New",
|
|
4250
4249
|
Working = "Working",
|
|
4251
|
-
|
|
4252
|
-
Error = "Error",
|
|
4253
|
-
AccountNotExist = "AccountNotExist",
|
|
4254
|
-
WrongPassword = "WrongPassword"
|
|
4250
|
+
Error = "Error"
|
|
4255
4251
|
}
|
|
4256
4252
|
|
|
4257
4253
|
/**
|
|
@@ -4365,7 +4361,7 @@ declare enum EStatusAccountCHPlayICloud {
|
|
|
4365
4361
|
AccountNotExist = "AccountNotExist",
|
|
4366
4362
|
WrongPassword = "WrongPassword",
|
|
4367
4363
|
Error = "Error",
|
|
4368
|
-
|
|
4364
|
+
NotExist = "NotExist"
|
|
4369
4365
|
}
|
|
4370
4366
|
|
|
4371
4367
|
/**
|
|
@@ -4419,7 +4415,6 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
4419
4415
|
};
|
|
4420
4416
|
totalAccountsExpired: {
|
|
4421
4417
|
total: number;
|
|
4422
|
-
percentage: number;
|
|
4423
4418
|
};
|
|
4424
4419
|
totalAccountsActiveWorking: {
|
|
4425
4420
|
total: number;
|
|
@@ -13138,6 +13133,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13138
13133
|
pin: EYesNo;
|
|
13139
13134
|
pathBlogCategory: string;
|
|
13140
13135
|
blogRootCategory: string;
|
|
13136
|
+
blogRootCategoryName: string;
|
|
13141
13137
|
blogChildCategory: string;
|
|
13142
13138
|
viewableDepartments: string[];
|
|
13143
13139
|
viewableTeams: string[];
|
package/dist/index.js
CHANGED
|
@@ -2907,10 +2907,7 @@ var EAccountAIContentChannelStatus = /* @__PURE__ */ ((EAccountAIContentChannelS
|
|
|
2907
2907
|
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
2908
2908
|
EStatusAccountCanva2["New"] = "New";
|
|
2909
2909
|
EStatusAccountCanva2["Working"] = "Working";
|
|
2910
|
-
EStatusAccountCanva2["Active"] = "Active";
|
|
2911
2910
|
EStatusAccountCanva2["Error"] = "Error";
|
|
2912
|
-
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2913
|
-
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2914
2911
|
return EStatusAccountCanva2;
|
|
2915
2912
|
})(EStatusAccountCanva || {});
|
|
2916
2913
|
|
|
@@ -2929,7 +2926,7 @@ var EStatusAccountCHPlayICloud = /* @__PURE__ */ ((EStatusAccountCHPlayICloud2)
|
|
|
2929
2926
|
EStatusAccountCHPlayICloud2["AccountNotExist"] = "AccountNotExist";
|
|
2930
2927
|
EStatusAccountCHPlayICloud2["WrongPassword"] = "WrongPassword";
|
|
2931
2928
|
EStatusAccountCHPlayICloud2["Error"] = "Error";
|
|
2932
|
-
EStatusAccountCHPlayICloud2["
|
|
2929
|
+
EStatusAccountCHPlayICloud2["NotExist"] = "NotExist";
|
|
2933
2930
|
return EStatusAccountCHPlayICloud2;
|
|
2934
2931
|
})(EStatusAccountCHPlayICloud || {});
|
|
2935
2932
|
|
package/dist/index.mjs
CHANGED
|
@@ -2643,10 +2643,7 @@ var EAccountAIContentChannelStatus = /* @__PURE__ */ ((EAccountAIContentChannelS
|
|
|
2643
2643
|
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
2644
2644
|
EStatusAccountCanva2["New"] = "New";
|
|
2645
2645
|
EStatusAccountCanva2["Working"] = "Working";
|
|
2646
|
-
EStatusAccountCanva2["Active"] = "Active";
|
|
2647
2646
|
EStatusAccountCanva2["Error"] = "Error";
|
|
2648
|
-
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2649
|
-
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2650
2647
|
return EStatusAccountCanva2;
|
|
2651
2648
|
})(EStatusAccountCanva || {});
|
|
2652
2649
|
|
|
@@ -2665,7 +2662,7 @@ var EStatusAccountCHPlayICloud = /* @__PURE__ */ ((EStatusAccountCHPlayICloud2)
|
|
|
2665
2662
|
EStatusAccountCHPlayICloud2["AccountNotExist"] = "AccountNotExist";
|
|
2666
2663
|
EStatusAccountCHPlayICloud2["WrongPassword"] = "WrongPassword";
|
|
2667
2664
|
EStatusAccountCHPlayICloud2["Error"] = "Error";
|
|
2668
|
-
EStatusAccountCHPlayICloud2["
|
|
2665
|
+
EStatusAccountCHPlayICloud2["NotExist"] = "NotExist";
|
|
2669
2666
|
return EStatusAccountCHPlayICloud2;
|
|
2670
2667
|
})(EStatusAccountCHPlayICloud || {});
|
|
2671
2668
|
|