automation-lib 6.6.169 → 6.6.170

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
- sleep 2
10
+ timeout /t 2 /nobreak >nul
11
11
 
12
12
  :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull origin toan
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
- sleep 1
44
+ timeout /t 1 /nobreak >nul
45
45
  git commit -m "%commit_message%"
46
- sleep 2
46
+ timeout /t 2 /nobreak >nul
47
47
 
48
- git push origin toan
48
+ git push hs main
49
49
 
50
50
 
package/dist/index.d.mts CHANGED
@@ -4058,7 +4058,7 @@ interface FindOverviewAccountAIDto {
4058
4058
  };
4059
4059
  }
4060
4060
  interface FindMultiAccountAIContentDto extends IFindBaseDto, IAccountAIContent {
4061
- channel: IAccountAIContentChannel;
4061
+ channels: IAccountAIContentChannel[];
4062
4062
  }
4063
4063
  interface FilterAccountAIContentDto extends IFilterBaseDto {
4064
4064
  type: EAccountAIModelTypeContent[];
@@ -4097,8 +4097,10 @@ interface FindAccountAIContentChannelDto extends IFindBaseDto {
4097
4097
  }
4098
4098
  interface FilterAccountAIContentChannelDto extends IFilterBaseDto {
4099
4099
  accountAI: string[];
4100
- model: string[];
4101
- status: EAccountAIContentChannelStatus[];
4100
+ model: EAccountAIModelTypeContent[];
4101
+ status: EAccountAIModelStatus[];
4102
+ typeContent: EAccountAIModelStatus[];
4103
+ isAddedAccountAIContent: boolean[];
4102
4104
  }
4103
4105
 
4104
4106
  interface FindHistoryTaskAIContentDto extends IFindBaseDto, IHistoryTaskAIContent {
package/dist/index.d.ts CHANGED
@@ -4058,7 +4058,7 @@ interface FindOverviewAccountAIDto {
4058
4058
  };
4059
4059
  }
4060
4060
  interface FindMultiAccountAIContentDto extends IFindBaseDto, IAccountAIContent {
4061
- channel: IAccountAIContentChannel;
4061
+ channels: IAccountAIContentChannel[];
4062
4062
  }
4063
4063
  interface FilterAccountAIContentDto extends IFilterBaseDto {
4064
4064
  type: EAccountAIModelTypeContent[];
@@ -4097,8 +4097,10 @@ interface FindAccountAIContentChannelDto extends IFindBaseDto {
4097
4097
  }
4098
4098
  interface FilterAccountAIContentChannelDto extends IFilterBaseDto {
4099
4099
  accountAI: string[];
4100
- model: string[];
4101
- status: EAccountAIContentChannelStatus[];
4100
+ model: EAccountAIModelTypeContent[];
4101
+ status: EAccountAIModelStatus[];
4102
+ typeContent: EAccountAIModelStatus[];
4103
+ isAddedAccountAIContent: boolean[];
4102
4104
  }
4103
4105
 
4104
4106
  interface FindHistoryTaskAIContentDto extends IFindBaseDto, IHistoryTaskAIContent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.169",
3
+ "version": "6.6.170",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -30,7 +30,6 @@
30
30
  "typescript": "^5.4.5"
31
31
  },
32
32
  "dependencies": {
33
- "automation-lib": "^6.6.47",
34
33
  "http-status-codes": "^2.3.0",
35
34
  "nodemailer": "^6.9.13",
36
35
  "sharp": "^0.33.3"