automation-lib 6.5.43 → 6.6.1
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 +2 -0
- package/dist/index.d.mts +7 -14
- package/dist/index.d.ts +7 -14
- package/docs.txt +2 -2
- package/package.json +1 -1
- package/read-file-path.bat +81 -81
package/commit.bat
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -14860,6 +14860,7 @@ interface DataUpsertImageVideoVoiceCanvaInstagramDto {
|
|
|
14860
14860
|
textPage7: string;
|
|
14861
14861
|
linkAddHistory: string;
|
|
14862
14862
|
nicheLinkCategory: string;
|
|
14863
|
+
folderTemplate: 'vertical' | 'horizontal' | 'square' | 'square_product';
|
|
14863
14864
|
styleName: string;
|
|
14864
14865
|
effectAudioPage1: string;
|
|
14865
14866
|
effectAudioPage234567: string;
|
|
@@ -15373,6 +15374,8 @@ interface DataUpsertAvatarCoverCanvaInstagramDto {
|
|
|
15373
15374
|
statusGenerateImage: ETaskStatus;
|
|
15374
15375
|
timeStatusGenerateImageChange: Date;
|
|
15375
15376
|
retryCountGenerateImage: number;
|
|
15377
|
+
folderTemplate: 'avatar_social' | 'cover_social';
|
|
15378
|
+
styleName: string;
|
|
15376
15379
|
currentStepGenerateCanvaAvatar: number;
|
|
15377
15380
|
totalStepGenerateCanvaAvatar: number;
|
|
15378
15381
|
statusGenerateCanvaAvatar: ETaskStatus;
|
|
@@ -15450,6 +15453,8 @@ interface ITaskAIAvatarCoverInstagram extends IBaseModel, ITrackingModel {
|
|
|
15450
15453
|
statusGenerateImage: ETaskStatus;
|
|
15451
15454
|
timeStatusGenerateImageChange: Date;
|
|
15452
15455
|
retryCountGenerateImage: number;
|
|
15456
|
+
folderTemplate: 'avatar_social' | 'cover_social';
|
|
15457
|
+
styleName: string;
|
|
15453
15458
|
currentStepGenerateCanvaAvatar: number;
|
|
15454
15459
|
totalStepGenerateCanvaAvatar: number;
|
|
15455
15460
|
statusGenerateCanvaAvatar: ETaskStatus;
|
|
@@ -15577,6 +15582,7 @@ interface ITaskAIImageVideoVoiceCanvaInstagram extends IBaseModel, ITrackingMode
|
|
|
15577
15582
|
textPage7: string;
|
|
15578
15583
|
linkAddHistory: string;
|
|
15579
15584
|
nicheLinkCategory: string;
|
|
15585
|
+
folderTemplate: 'vertical' | 'horizontal' | 'square' | 'square_product';
|
|
15580
15586
|
styleName: string;
|
|
15581
15587
|
effectAudioPage1: string;
|
|
15582
15588
|
effectAudioPage234567: string;
|
|
@@ -16680,13 +16686,8 @@ declare enum ETaskWorkflowNodeThreads {
|
|
|
16680
16686
|
}
|
|
16681
16687
|
|
|
16682
16688
|
interface CreateTaskWorkflowDto {
|
|
16683
|
-
group: string;
|
|
16684
|
-
name: string;
|
|
16685
|
-
description: string;
|
|
16686
|
-
status: ETaskWorkflowStatus;
|
|
16687
|
-
typeSocial: ETypeSocial;
|
|
16688
16689
|
}
|
|
16689
|
-
interface UpdateTaskWorkflowDto
|
|
16690
|
+
interface UpdateTaskWorkflowDto {
|
|
16690
16691
|
}
|
|
16691
16692
|
interface FindTaskWorkflowDto extends IFindBaseDto {
|
|
16692
16693
|
typeSocial: ETypeSocial;
|
|
@@ -16709,27 +16710,19 @@ interface FilterTaskWorkflowDto {
|
|
|
16709
16710
|
interface CreateTaskWorkflowGroupDto {
|
|
16710
16711
|
name: string;
|
|
16711
16712
|
description: string;
|
|
16712
|
-
color: string;
|
|
16713
|
-
typeSocial: ETypeSocial;
|
|
16714
16713
|
}
|
|
16715
16714
|
interface UpdateTaskWorkflowGroupDto {
|
|
16716
16715
|
name?: string;
|
|
16717
16716
|
description?: string;
|
|
16718
|
-
color: string;
|
|
16719
|
-
typeSocial: ETypeSocial;
|
|
16720
16717
|
}
|
|
16721
16718
|
interface FindTaskWorkflowGroupDto extends IFindBaseDto {
|
|
16722
16719
|
name: string;
|
|
16723
16720
|
description: string;
|
|
16724
|
-
color: string;
|
|
16725
|
-
typeSocial: ETypeSocial;
|
|
16726
16721
|
}
|
|
16727
16722
|
|
|
16728
16723
|
interface ITaskWorkflowGroup extends IBaseModel, ITrackingModel {
|
|
16729
16724
|
name: string;
|
|
16730
16725
|
description: string;
|
|
16731
|
-
color: string;
|
|
16732
|
-
typeSocial: ETypeSocial;
|
|
16733
16726
|
}
|
|
16734
16727
|
|
|
16735
16728
|
interface ITaskWorkflow extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -14860,6 +14860,7 @@ interface DataUpsertImageVideoVoiceCanvaInstagramDto {
|
|
|
14860
14860
|
textPage7: string;
|
|
14861
14861
|
linkAddHistory: string;
|
|
14862
14862
|
nicheLinkCategory: string;
|
|
14863
|
+
folderTemplate: 'vertical' | 'horizontal' | 'square' | 'square_product';
|
|
14863
14864
|
styleName: string;
|
|
14864
14865
|
effectAudioPage1: string;
|
|
14865
14866
|
effectAudioPage234567: string;
|
|
@@ -15373,6 +15374,8 @@ interface DataUpsertAvatarCoverCanvaInstagramDto {
|
|
|
15373
15374
|
statusGenerateImage: ETaskStatus;
|
|
15374
15375
|
timeStatusGenerateImageChange: Date;
|
|
15375
15376
|
retryCountGenerateImage: number;
|
|
15377
|
+
folderTemplate: 'avatar_social' | 'cover_social';
|
|
15378
|
+
styleName: string;
|
|
15376
15379
|
currentStepGenerateCanvaAvatar: number;
|
|
15377
15380
|
totalStepGenerateCanvaAvatar: number;
|
|
15378
15381
|
statusGenerateCanvaAvatar: ETaskStatus;
|
|
@@ -15450,6 +15453,8 @@ interface ITaskAIAvatarCoverInstagram extends IBaseModel, ITrackingModel {
|
|
|
15450
15453
|
statusGenerateImage: ETaskStatus;
|
|
15451
15454
|
timeStatusGenerateImageChange: Date;
|
|
15452
15455
|
retryCountGenerateImage: number;
|
|
15456
|
+
folderTemplate: 'avatar_social' | 'cover_social';
|
|
15457
|
+
styleName: string;
|
|
15453
15458
|
currentStepGenerateCanvaAvatar: number;
|
|
15454
15459
|
totalStepGenerateCanvaAvatar: number;
|
|
15455
15460
|
statusGenerateCanvaAvatar: ETaskStatus;
|
|
@@ -15577,6 +15582,7 @@ interface ITaskAIImageVideoVoiceCanvaInstagram extends IBaseModel, ITrackingMode
|
|
|
15577
15582
|
textPage7: string;
|
|
15578
15583
|
linkAddHistory: string;
|
|
15579
15584
|
nicheLinkCategory: string;
|
|
15585
|
+
folderTemplate: 'vertical' | 'horizontal' | 'square' | 'square_product';
|
|
15580
15586
|
styleName: string;
|
|
15581
15587
|
effectAudioPage1: string;
|
|
15582
15588
|
effectAudioPage234567: string;
|
|
@@ -16680,13 +16686,8 @@ declare enum ETaskWorkflowNodeThreads {
|
|
|
16680
16686
|
}
|
|
16681
16687
|
|
|
16682
16688
|
interface CreateTaskWorkflowDto {
|
|
16683
|
-
group: string;
|
|
16684
|
-
name: string;
|
|
16685
|
-
description: string;
|
|
16686
|
-
status: ETaskWorkflowStatus;
|
|
16687
|
-
typeSocial: ETypeSocial;
|
|
16688
16689
|
}
|
|
16689
|
-
interface UpdateTaskWorkflowDto
|
|
16690
|
+
interface UpdateTaskWorkflowDto {
|
|
16690
16691
|
}
|
|
16691
16692
|
interface FindTaskWorkflowDto extends IFindBaseDto {
|
|
16692
16693
|
typeSocial: ETypeSocial;
|
|
@@ -16709,27 +16710,19 @@ interface FilterTaskWorkflowDto {
|
|
|
16709
16710
|
interface CreateTaskWorkflowGroupDto {
|
|
16710
16711
|
name: string;
|
|
16711
16712
|
description: string;
|
|
16712
|
-
color: string;
|
|
16713
|
-
typeSocial: ETypeSocial;
|
|
16714
16713
|
}
|
|
16715
16714
|
interface UpdateTaskWorkflowGroupDto {
|
|
16716
16715
|
name?: string;
|
|
16717
16716
|
description?: string;
|
|
16718
|
-
color: string;
|
|
16719
|
-
typeSocial: ETypeSocial;
|
|
16720
16717
|
}
|
|
16721
16718
|
interface FindTaskWorkflowGroupDto extends IFindBaseDto {
|
|
16722
16719
|
name: string;
|
|
16723
16720
|
description: string;
|
|
16724
|
-
color: string;
|
|
16725
|
-
typeSocial: ETypeSocial;
|
|
16726
16721
|
}
|
|
16727
16722
|
|
|
16728
16723
|
interface ITaskWorkflowGroup extends IBaseModel, ITrackingModel {
|
|
16729
16724
|
name: string;
|
|
16730
16725
|
description: string;
|
|
16731
|
-
color: string;
|
|
16732
|
-
typeSocial: ETypeSocial;
|
|
16733
16726
|
}
|
|
16734
16727
|
|
|
16735
16728
|
interface ITaskWorkflow extends IBaseModel, ITrackingModel {
|
package/docs.txt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
############ Cấu hình npm ############
|
|
1
|
+
|
|
2
|
+
############ Cấu hình npm ############
|
|
3
3
|
npm config set //registry.npmjs.org/:_authToken {token}
|
package/package.json
CHANGED
package/read-file-path.bat
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
|
-
n@echo off
|
|
2
|
-
setlocal enabledelayedexpansion
|
|
3
|
-
chcp 65001 >nul
|
|
4
|
-
echo ====================================
|
|
5
|
-
echo FILE SEARCH AND LIST UTILITY
|
|
6
|
-
echo ====================================
|
|
7
|
-
echo.
|
|
8
|
-
|
|
9
|
-
set /p folder_path="Enter folder path: "
|
|
10
|
-
|
|
11
|
-
if not exist "%folder_path%" (
|
|
12
|
-
echo.
|
|
13
|
-
echo [ERROR] Folder does not exist!
|
|
14
|
-
pause
|
|
15
|
-
exit /b
|
|
16
|
-
)
|
|
17
|
-
|
|
18
|
-
echo.
|
|
19
|
-
set /p file_pattern="Enter file name pattern (press Enter to list all files): "
|
|
20
|
-
|
|
21
|
-
if "%file_pattern%"=="" (
|
|
22
|
-
set search_mode=ALL_FILES
|
|
23
|
-
set output_file=all_files_%date:~10,4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%.txt
|
|
24
|
-
) else (
|
|
25
|
-
set search_mode=PATTERN_SEARCH
|
|
26
|
-
set output_file=search_%file_pattern:_=_%_%date:~10,4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%.txt
|
|
27
|
-
)
|
|
28
|
-
|
|
29
|
-
set output_file=%output_file: =0%
|
|
30
|
-
|
|
31
|
-
echo.
|
|
32
|
-
echo Searching files...
|
|
33
|
-
if "%search_mode%"=="PATTERN_SEARCH" (
|
|
34
|
-
echo Pattern: *%file_pattern%*
|
|
35
|
-
) else (
|
|
36
|
-
echo Listing all files...
|
|
37
|
-
)
|
|
38
|
-
echo.
|
|
39
|
-
|
|
40
|
-
echo ============ SEARCH RESULTS ============ > "%output_file%"
|
|
41
|
-
echo Folder: %folder_path% >> "%output_file%"
|
|
42
|
-
echo Time: %date% %time% >> "%output_file%"
|
|
43
|
-
if "%search_mode%"=="PATTERN_SEARCH" (
|
|
44
|
-
echo Search Pattern: *%file_pattern%* >> "%output_file%"
|
|
45
|
-
) else (
|
|
46
|
-
echo Search Mode: All Files >> "%output_file%"
|
|
47
|
-
)
|
|
48
|
-
echo ====================================== >> "%output_file%"
|
|
49
|
-
echo. >> "%output_file%"
|
|
50
|
-
|
|
51
|
-
set count=0
|
|
52
|
-
|
|
53
|
-
if "%search_mode%"=="ALL_FILES" (
|
|
54
|
-
for /r "%folder_path%" %%f in (*) do (
|
|
55
|
-
echo %%f
|
|
56
|
-
echo %%f >> "%output_file%"
|
|
57
|
-
set /a count+=1
|
|
58
|
-
)
|
|
59
|
-
) else (
|
|
60
|
-
for /r "%folder_path%" %%f in (*) do (
|
|
61
|
-
echo %%~nxf | findstr /i "%file_pattern%" >nul
|
|
62
|
-
if !errorlevel! equ 0 (
|
|
63
|
-
echo %%f
|
|
64
|
-
echo %%f >> "%output_file%"
|
|
65
|
-
set /a count+=1
|
|
66
|
-
)
|
|
67
|
-
)
|
|
68
|
-
)
|
|
69
|
-
|
|
70
|
-
echo.
|
|
71
|
-
echo ====================================
|
|
72
|
-
if "%search_mode%"=="PATTERN_SEARCH" (
|
|
73
|
-
echo Total matching files: %count%
|
|
74
|
-
) else (
|
|
75
|
-
echo Total files: %count%
|
|
76
|
-
)
|
|
77
|
-
echo Result saved to: %output_file%
|
|
78
|
-
echo ====================================
|
|
79
|
-
echo.
|
|
80
|
-
|
|
81
|
-
pause
|
|
1
|
+
n@echo off
|
|
2
|
+
setlocal enabledelayedexpansion
|
|
3
|
+
chcp 65001 >nul
|
|
4
|
+
echo ====================================
|
|
5
|
+
echo FILE SEARCH AND LIST UTILITY
|
|
6
|
+
echo ====================================
|
|
7
|
+
echo.
|
|
8
|
+
|
|
9
|
+
set /p folder_path="Enter folder path: "
|
|
10
|
+
|
|
11
|
+
if not exist "%folder_path%" (
|
|
12
|
+
echo.
|
|
13
|
+
echo [ERROR] Folder does not exist!
|
|
14
|
+
pause
|
|
15
|
+
exit /b
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
echo.
|
|
19
|
+
set /p file_pattern="Enter file name pattern (press Enter to list all files): "
|
|
20
|
+
|
|
21
|
+
if "%file_pattern%"=="" (
|
|
22
|
+
set search_mode=ALL_FILES
|
|
23
|
+
set output_file=all_files_%date:~10,4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%.txt
|
|
24
|
+
) else (
|
|
25
|
+
set search_mode=PATTERN_SEARCH
|
|
26
|
+
set output_file=search_%file_pattern:_=_%_%date:~10,4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%.txt
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
set output_file=%output_file: =0%
|
|
30
|
+
|
|
31
|
+
echo.
|
|
32
|
+
echo Searching files...
|
|
33
|
+
if "%search_mode%"=="PATTERN_SEARCH" (
|
|
34
|
+
echo Pattern: *%file_pattern%*
|
|
35
|
+
) else (
|
|
36
|
+
echo Listing all files...
|
|
37
|
+
)
|
|
38
|
+
echo.
|
|
39
|
+
|
|
40
|
+
echo ============ SEARCH RESULTS ============ > "%output_file%"
|
|
41
|
+
echo Folder: %folder_path% >> "%output_file%"
|
|
42
|
+
echo Time: %date% %time% >> "%output_file%"
|
|
43
|
+
if "%search_mode%"=="PATTERN_SEARCH" (
|
|
44
|
+
echo Search Pattern: *%file_pattern%* >> "%output_file%"
|
|
45
|
+
) else (
|
|
46
|
+
echo Search Mode: All Files >> "%output_file%"
|
|
47
|
+
)
|
|
48
|
+
echo ====================================== >> "%output_file%"
|
|
49
|
+
echo. >> "%output_file%"
|
|
50
|
+
|
|
51
|
+
set count=0
|
|
52
|
+
|
|
53
|
+
if "%search_mode%"=="ALL_FILES" (
|
|
54
|
+
for /r "%folder_path%" %%f in (*) do (
|
|
55
|
+
echo %%f
|
|
56
|
+
echo %%f >> "%output_file%"
|
|
57
|
+
set /a count+=1
|
|
58
|
+
)
|
|
59
|
+
) else (
|
|
60
|
+
for /r "%folder_path%" %%f in (*) do (
|
|
61
|
+
echo %%~nxf | findstr /i "%file_pattern%" >nul
|
|
62
|
+
if !errorlevel! equ 0 (
|
|
63
|
+
echo %%f
|
|
64
|
+
echo %%f >> "%output_file%"
|
|
65
|
+
set /a count+=1
|
|
66
|
+
)
|
|
67
|
+
)
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
echo.
|
|
71
|
+
echo ====================================
|
|
72
|
+
if "%search_mode%"=="PATTERN_SEARCH" (
|
|
73
|
+
echo Total matching files: %count%
|
|
74
|
+
) else (
|
|
75
|
+
echo Total files: %count%
|
|
76
|
+
)
|
|
77
|
+
echo Result saved to: %output_file%
|
|
78
|
+
echo ====================================
|
|
79
|
+
echo.
|
|
80
|
+
|
|
81
|
+
pause
|