automation-lib 6.6.111 → 6.6.112
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 +4 -0
- package/dist/index.d.ts +4 -0
- 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
|
@@ -5240,6 +5240,8 @@ interface AddCommentReportManagerDto {
|
|
|
5240
5240
|
interface CreateModuleWebSiteDto {
|
|
5241
5241
|
name: string;
|
|
5242
5242
|
mainModuleId: string;
|
|
5243
|
+
subModule1: string;
|
|
5244
|
+
subModule2: string;
|
|
5243
5245
|
}
|
|
5244
5246
|
interface FindModuleWebsiteDto {
|
|
5245
5247
|
id: string;
|
|
@@ -5273,6 +5275,8 @@ interface IReportManagerComment extends IBaseModel, ITrackingModel {
|
|
|
5273
5275
|
interface IModuleWebSite extends IBaseModel, ITrackingModel {
|
|
5274
5276
|
name: string;
|
|
5275
5277
|
mainModule: string | IModuleWebSite;
|
|
5278
|
+
subModule1: string | IModuleWebSite;
|
|
5279
|
+
subModule2: string | IModuleWebSite;
|
|
5276
5280
|
}
|
|
5277
5281
|
|
|
5278
5282
|
type index$5_AddCommentReportManagerDto = AddCommentReportManagerDto;
|
package/dist/index.d.ts
CHANGED
|
@@ -5240,6 +5240,8 @@ interface AddCommentReportManagerDto {
|
|
|
5240
5240
|
interface CreateModuleWebSiteDto {
|
|
5241
5241
|
name: string;
|
|
5242
5242
|
mainModuleId: string;
|
|
5243
|
+
subModule1: string;
|
|
5244
|
+
subModule2: string;
|
|
5243
5245
|
}
|
|
5244
5246
|
interface FindModuleWebsiteDto {
|
|
5245
5247
|
id: string;
|
|
@@ -5273,6 +5275,8 @@ interface IReportManagerComment extends IBaseModel, ITrackingModel {
|
|
|
5273
5275
|
interface IModuleWebSite extends IBaseModel, ITrackingModel {
|
|
5274
5276
|
name: string;
|
|
5275
5277
|
mainModule: string | IModuleWebSite;
|
|
5278
|
+
subModule1: string | IModuleWebSite;
|
|
5279
|
+
subModule2: string | IModuleWebSite;
|
|
5276
5280
|
}
|
|
5277
5281
|
|
|
5278
5282
|
type index$5_AddCommentReportManagerDto = AddCommentReportManagerDto;
|