automation-lib 6.6.292 → 6.6.294
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 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -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
|
+
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
|
@@ -288,6 +288,7 @@ declare const CONST_ROLES: {
|
|
|
288
288
|
ExternalTools: {
|
|
289
289
|
Canva: string;
|
|
290
290
|
Lark: string;
|
|
291
|
+
AllReport: string;
|
|
291
292
|
};
|
|
292
293
|
NotificationSystem: string;
|
|
293
294
|
Permissions: {
|
|
@@ -1955,7 +1956,6 @@ interface FindRoleOfMe {
|
|
|
1955
1956
|
interface FilterUserDto extends IFilterBaseDto {
|
|
1956
1957
|
departmentOfUser: string[];
|
|
1957
1958
|
teamOfUser: string[];
|
|
1958
|
-
leaderOfUser: string[];
|
|
1959
1959
|
status: EStatusUser[];
|
|
1960
1960
|
roles: string[];
|
|
1961
1961
|
hasPermission: EHaveData[];
|
|
@@ -2032,8 +2032,6 @@ interface FindOverviewRoleDto {
|
|
|
2032
2032
|
numberTeams: number;
|
|
2033
2033
|
numberMembers: number;
|
|
2034
2034
|
numberRoles: number;
|
|
2035
|
-
numberRolesActive: number;
|
|
2036
|
-
numberRolesInActive: number;
|
|
2037
2035
|
numberUserApplyRole: number;
|
|
2038
2036
|
}
|
|
2039
2037
|
interface FindRoleDetailDto extends IFindBaseDto, IRole {
|
|
@@ -13084,7 +13082,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13084
13082
|
isSendNotiSystem: EYesNo;
|
|
13085
13083
|
sendNotiSystemStatus: ESendNotiStatusBlogPost;
|
|
13086
13084
|
}
|
|
13087
|
-
interface FindViewBySlugBlogPostDto extends
|
|
13085
|
+
interface FindViewBySlugBlogPostDto extends IFindBaseDto {
|
|
13088
13086
|
sttPost: string;
|
|
13089
13087
|
title: string;
|
|
13090
13088
|
description: string;
|
|
@@ -13096,6 +13094,7 @@ interface FindViewBySlugBlogPostDto extends IFilterBaseDto {
|
|
|
13096
13094
|
};
|
|
13097
13095
|
comments: Array<{
|
|
13098
13096
|
id: string;
|
|
13097
|
+
createdByName: string;
|
|
13099
13098
|
avatar: string;
|
|
13100
13099
|
createdAt: Date;
|
|
13101
13100
|
content: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -288,6 +288,7 @@ declare const CONST_ROLES: {
|
|
|
288
288
|
ExternalTools: {
|
|
289
289
|
Canva: string;
|
|
290
290
|
Lark: string;
|
|
291
|
+
AllReport: string;
|
|
291
292
|
};
|
|
292
293
|
NotificationSystem: string;
|
|
293
294
|
Permissions: {
|
|
@@ -1955,7 +1956,6 @@ interface FindRoleOfMe {
|
|
|
1955
1956
|
interface FilterUserDto extends IFilterBaseDto {
|
|
1956
1957
|
departmentOfUser: string[];
|
|
1957
1958
|
teamOfUser: string[];
|
|
1958
|
-
leaderOfUser: string[];
|
|
1959
1959
|
status: EStatusUser[];
|
|
1960
1960
|
roles: string[];
|
|
1961
1961
|
hasPermission: EHaveData[];
|
|
@@ -2032,8 +2032,6 @@ interface FindOverviewRoleDto {
|
|
|
2032
2032
|
numberTeams: number;
|
|
2033
2033
|
numberMembers: number;
|
|
2034
2034
|
numberRoles: number;
|
|
2035
|
-
numberRolesActive: number;
|
|
2036
|
-
numberRolesInActive: number;
|
|
2037
2035
|
numberUserApplyRole: number;
|
|
2038
2036
|
}
|
|
2039
2037
|
interface FindRoleDetailDto extends IFindBaseDto, IRole {
|
|
@@ -13084,7 +13082,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13084
13082
|
isSendNotiSystem: EYesNo;
|
|
13085
13083
|
sendNotiSystemStatus: ESendNotiStatusBlogPost;
|
|
13086
13084
|
}
|
|
13087
|
-
interface FindViewBySlugBlogPostDto extends
|
|
13085
|
+
interface FindViewBySlugBlogPostDto extends IFindBaseDto {
|
|
13088
13086
|
sttPost: string;
|
|
13089
13087
|
title: string;
|
|
13090
13088
|
description: string;
|
|
@@ -13096,6 +13094,7 @@ interface FindViewBySlugBlogPostDto extends IFilterBaseDto {
|
|
|
13096
13094
|
};
|
|
13097
13095
|
comments: Array<{
|
|
13098
13096
|
id: string;
|
|
13097
|
+
createdByName: string;
|
|
13099
13098
|
avatar: string;
|
|
13100
13099
|
createdAt: Date;
|
|
13101
13100
|
content: string;
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "automation-lib",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.294",
|
|
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,6 @@
|
|
|
30
30
|
"typescript": "^5.4.5"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"automation-lib": "^6.6.283",
|
|
34
33
|
"http-status-codes": "^2.3.0",
|
|
35
34
|
"nodemailer": "^6.9.13",
|
|
36
35
|
"sharp": "^0.33.3"
|