automation-lib 6.6.282 → 6.6.289

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: {
@@ -2031,8 +2032,6 @@ interface FindOverviewRoleDto {
2031
2032
  numberTeams: number;
2032
2033
  numberMembers: number;
2033
2034
  numberRoles: number;
2034
- numberRolesActive: number;
2035
- numberRolesInActive: number;
2036
2035
  numberUserApplyRole: number;
2037
2036
  }
2038
2037
  interface FindRoleDetailDto extends IFindBaseDto, IRole {
@@ -13019,7 +13018,7 @@ interface FindBlogPostDto extends IFindBaseDto {
13019
13018
  sendNotiSystemStatus: ESendNotiStatusBlogPost;
13020
13019
  }
13021
13020
  interface FindDetailBlogPostDto {
13022
- sttPost: number;
13021
+ sttPost: string;
13023
13022
  title: string;
13024
13023
  description: string;
13025
13024
  slug: string;
@@ -13052,7 +13051,7 @@ interface FindTagsUserBlogPostDto {
13052
13051
  name: string;
13053
13052
  }
13054
13053
  interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
13055
- sttPost: number;
13054
+ sttPost: string;
13056
13055
  title: string;
13057
13056
  description: string;
13058
13057
  slug: string;
@@ -13083,7 +13082,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
13083
13082
  sendNotiSystemStatus: ESendNotiStatusBlogPost;
13084
13083
  }
13085
13084
  interface FindViewBySlugBlogPostDto extends IFilterBaseDto {
13086
- sttPost: number;
13085
+ sttPost: string;
13087
13086
  title: string;
13088
13087
  description: string;
13089
13088
  slug: 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: {
@@ -2031,8 +2032,6 @@ interface FindOverviewRoleDto {
2031
2032
  numberTeams: number;
2032
2033
  numberMembers: number;
2033
2034
  numberRoles: number;
2034
- numberRolesActive: number;
2035
- numberRolesInActive: number;
2036
2035
  numberUserApplyRole: number;
2037
2036
  }
2038
2037
  interface FindRoleDetailDto extends IFindBaseDto, IRole {
@@ -13019,7 +13018,7 @@ interface FindBlogPostDto extends IFindBaseDto {
13019
13018
  sendNotiSystemStatus: ESendNotiStatusBlogPost;
13020
13019
  }
13021
13020
  interface FindDetailBlogPostDto {
13022
- sttPost: number;
13021
+ sttPost: string;
13023
13022
  title: string;
13024
13023
  description: string;
13025
13024
  slug: string;
@@ -13052,7 +13051,7 @@ interface FindTagsUserBlogPostDto {
13052
13051
  name: string;
13053
13052
  }
13054
13053
  interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
13055
- sttPost: number;
13054
+ sttPost: string;
13056
13055
  title: string;
13057
13056
  description: string;
13058
13057
  slug: string;
@@ -13083,7 +13082,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
13083
13082
  sendNotiSystemStatus: ESendNotiStatusBlogPost;
13084
13083
  }
13085
13084
  interface FindViewBySlugBlogPostDto extends IFilterBaseDto {
13086
- sttPost: number;
13085
+ sttPost: string;
13087
13086
  title: string;
13088
13087
  description: string;
13089
13088
  slug: 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.282",
3
+ "version": "6.6.289",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",