automation-lib 5.10.3 → 5.10.5
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 +2 -1
- package/dist/index.d.ts +2 -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
|
@@ -11301,6 +11301,7 @@ interface FilterManagerImageAIInstagramDto extends IFilterBaseDto, IFilterAssign
|
|
|
11301
11301
|
startStop: EStartStop[];
|
|
11302
11302
|
sheetName: string[];
|
|
11303
11303
|
accountGroup: string[];
|
|
11304
|
+
accountSocial: string[];
|
|
11304
11305
|
}
|
|
11305
11306
|
|
|
11306
11307
|
interface IManagerImageAIInstagram extends IBaseModel, ITrackingModel, IAssignUser {
|
|
@@ -12455,6 +12456,7 @@ interface DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto {
|
|
|
12455
12456
|
note: string;
|
|
12456
12457
|
createdAt: Date;
|
|
12457
12458
|
}>;
|
|
12459
|
+
lastUpdate: Date;
|
|
12458
12460
|
}
|
|
12459
12461
|
interface FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto {
|
|
12460
12462
|
department: number;
|
|
@@ -12625,7 +12627,6 @@ interface FindTaskAIImageVideoVoiceCanvaInstagramDto extends IFindBaseDto {
|
|
|
12625
12627
|
countLogCanva: number;
|
|
12626
12628
|
}
|
|
12627
12629
|
interface FilterTaskAIImageVideoVoiceCanvaInstagramDto extends IFilterBaseDto {
|
|
12628
|
-
sheetId: string[];
|
|
12629
12630
|
username: string[];
|
|
12630
12631
|
ratio: ERatioImage[];
|
|
12631
12632
|
statusTaskImageVideo: ETaskStatus[];
|
package/dist/index.d.ts
CHANGED
|
@@ -11301,6 +11301,7 @@ interface FilterManagerImageAIInstagramDto extends IFilterBaseDto, IFilterAssign
|
|
|
11301
11301
|
startStop: EStartStop[];
|
|
11302
11302
|
sheetName: string[];
|
|
11303
11303
|
accountGroup: string[];
|
|
11304
|
+
accountSocial: string[];
|
|
11304
11305
|
}
|
|
11305
11306
|
|
|
11306
11307
|
interface IManagerImageAIInstagram extends IBaseModel, ITrackingModel, IAssignUser {
|
|
@@ -12455,6 +12456,7 @@ interface DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto {
|
|
|
12455
12456
|
note: string;
|
|
12456
12457
|
createdAt: Date;
|
|
12457
12458
|
}>;
|
|
12459
|
+
lastUpdate: Date;
|
|
12458
12460
|
}
|
|
12459
12461
|
interface FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto {
|
|
12460
12462
|
department: number;
|
|
@@ -12625,7 +12627,6 @@ interface FindTaskAIImageVideoVoiceCanvaInstagramDto extends IFindBaseDto {
|
|
|
12625
12627
|
countLogCanva: number;
|
|
12626
12628
|
}
|
|
12627
12629
|
interface FilterTaskAIImageVideoVoiceCanvaInstagramDto extends IFilterBaseDto {
|
|
12628
|
-
sheetId: string[];
|
|
12629
12630
|
username: string[];
|
|
12630
12631
|
ratio: ERatioImage[];
|
|
12631
12632
|
statusTaskImageVideo: ETaskStatus[];
|