automation-lib 6.6.292 → 6.6.293

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 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
- timeout /t 2 /nobreak >nul
10
+ sleep 2
11
11
 
12
12
  :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull hs main
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
- timeout /t 1 /nobreak >nul
44
+ sleep 1
45
45
  git commit -m "%commit_message%"
46
- timeout /t 2 /nobreak >nul
46
+ sleep 2
47
47
 
48
- git push hs main
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 IFilterBaseDto {
13085
+ interface FindViewBySlugBlogPostDto extends IFindBaseDto {
13088
13086
  sttPost: string;
13089
13087
  title: string;
13090
13088
  description: 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 IFilterBaseDto {
13085
+ interface FindViewBySlugBlogPostDto extends IFindBaseDto {
13088
13086
  sttPost: string;
13089
13087
  title: string;
13090
13088
  description: string;
package/dist/index.js CHANGED
@@ -581,7 +581,8 @@ var CONST_ROLES = {
581
581
  },
582
582
  ExternalTools: {
583
583
  Canva: "Canva",
584
- Lark: "Lark"
584
+ Lark: "Lark",
585
+ AllReport: "AllReport"
585
586
  },
586
587
  NotificationSystem: "NotificationSystem",
587
588
  Permissions: {
package/dist/index.mjs CHANGED
@@ -320,7 +320,8 @@ var CONST_ROLES = {
320
320
  },
321
321
  ExternalTools: {
322
322
  Canva: "Canva",
323
- Lark: "Lark"
323
+ Lark: "Lark",
324
+ AllReport: "AllReport"
324
325
  },
325
326
  NotificationSystem: "NotificationSystem",
326
327
  Permissions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.292",
3
+ "version": "6.6.293",
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"