automation-lib 5.10.2 → 5.10.4

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
@@ -12302,6 +12302,7 @@ interface ImageVideoVoiceDetailInstagramDto {
12302
12302
  result: Array<{
12303
12303
  prompt: string;
12304
12304
  typeGenerate: ETaskGenerateAIType;
12305
+ status: ETaskStatus;
12305
12306
  url: string;
12306
12307
  }>;
12307
12308
  };
@@ -12454,6 +12455,7 @@ interface DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto {
12454
12455
  note: string;
12455
12456
  createdAt: Date;
12456
12457
  }>;
12458
+ lastUpdate: Date;
12457
12459
  }
12458
12460
  interface FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto {
12459
12461
  department: number;
@@ -12624,8 +12626,6 @@ interface FindTaskAIImageVideoVoiceCanvaInstagramDto extends IFindBaseDto {
12624
12626
  countLogCanva: number;
12625
12627
  }
12626
12628
  interface FilterTaskAIImageVideoVoiceCanvaInstagramDto extends IFilterBaseDto {
12627
- pc: string[];
12628
- sheetId: string[];
12629
12629
  username: string[];
12630
12630
  ratio: ERatioImage[];
12631
12631
  statusTaskImageVideo: ETaskStatus[];
package/dist/index.d.ts CHANGED
@@ -12302,6 +12302,7 @@ interface ImageVideoVoiceDetailInstagramDto {
12302
12302
  result: Array<{
12303
12303
  prompt: string;
12304
12304
  typeGenerate: ETaskGenerateAIType;
12305
+ status: ETaskStatus;
12305
12306
  url: string;
12306
12307
  }>;
12307
12308
  };
@@ -12454,6 +12455,7 @@ interface DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto {
12454
12455
  note: string;
12455
12456
  createdAt: Date;
12456
12457
  }>;
12458
+ lastUpdate: Date;
12457
12459
  }
12458
12460
  interface FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto {
12459
12461
  department: number;
@@ -12624,8 +12626,6 @@ interface FindTaskAIImageVideoVoiceCanvaInstagramDto extends IFindBaseDto {
12624
12626
  countLogCanva: number;
12625
12627
  }
12626
12628
  interface FilterTaskAIImageVideoVoiceCanvaInstagramDto extends IFilterBaseDto {
12627
- pc: string[];
12628
- sheetId: string[];
12629
12629
  username: string[];
12630
12630
  ratio: ERatioImage[];
12631
12631
  statusTaskImageVideo: ETaskStatus[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.10.2",
3
+ "version": "5.10.4",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",