automation-lib 6.6.303 → 6.6.305
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 -1
- package/dist/index.d.ts +3 -1
- 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
|
+
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
|
@@ -5491,6 +5491,7 @@ interface FindNotiReportManagerDto {
|
|
|
5491
5491
|
timeAssigned: Date;
|
|
5492
5492
|
createdAt: Date;
|
|
5493
5493
|
notificationType: ENotificationType;
|
|
5494
|
+
metadata?: Record<string, any>;
|
|
5494
5495
|
}
|
|
5495
5496
|
interface NotiUserStatus {
|
|
5496
5497
|
userId: string;
|
|
@@ -5511,6 +5512,7 @@ interface FindNotiReportGroupedDto {
|
|
|
5511
5512
|
totalUsers: number;
|
|
5512
5513
|
readCount: number;
|
|
5513
5514
|
unreadCount: number;
|
|
5515
|
+
metadata?: Record<string, any>;
|
|
5514
5516
|
}
|
|
5515
5517
|
|
|
5516
5518
|
interface IModuleWebSite extends IBaseModel, ITrackingModel {
|
|
@@ -13009,7 +13011,7 @@ interface IViewViewableBlogPostDto {
|
|
|
13009
13011
|
}>;
|
|
13010
13012
|
}
|
|
13011
13013
|
interface FindBlogPostDto extends IFindBaseDto {
|
|
13012
|
-
sttPost:
|
|
13014
|
+
sttPost: string;
|
|
13013
13015
|
title: string;
|
|
13014
13016
|
description: string;
|
|
13015
13017
|
slug: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -5491,6 +5491,7 @@ interface FindNotiReportManagerDto {
|
|
|
5491
5491
|
timeAssigned: Date;
|
|
5492
5492
|
createdAt: Date;
|
|
5493
5493
|
notificationType: ENotificationType;
|
|
5494
|
+
metadata?: Record<string, any>;
|
|
5494
5495
|
}
|
|
5495
5496
|
interface NotiUserStatus {
|
|
5496
5497
|
userId: string;
|
|
@@ -5511,6 +5512,7 @@ interface FindNotiReportGroupedDto {
|
|
|
5511
5512
|
totalUsers: number;
|
|
5512
5513
|
readCount: number;
|
|
5513
5514
|
unreadCount: number;
|
|
5515
|
+
metadata?: Record<string, any>;
|
|
5514
5516
|
}
|
|
5515
5517
|
|
|
5516
5518
|
interface IModuleWebSite extends IBaseModel, ITrackingModel {
|
|
@@ -13009,7 +13011,7 @@ interface IViewViewableBlogPostDto {
|
|
|
13009
13011
|
}>;
|
|
13010
13012
|
}
|
|
13011
13013
|
interface FindBlogPostDto extends IFindBaseDto {
|
|
13012
|
-
sttPost:
|
|
13014
|
+
sttPost: string;
|
|
13013
13015
|
title: string;
|
|
13014
13016
|
description: string;
|
|
13015
13017
|
slug: string;
|