automation-lib 6.6.425 → 6.6.426

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
@@ -10295,7 +10295,11 @@ declare enum EFilterOptionInstagramSocial {
10295
10295
  TeamCreator = "TeamCreator",
10296
10296
  LeaderCreator = "LeaderCreator",
10297
10297
  CreatedBy = "CreatedBy",
10298
- UpdatedBy = "UpdatedBy"
10298
+ UpdatedBy = "UpdatedBy",
10299
+ DeviceName = "DeviceName",
10300
+ Account = "Account",
10301
+ Idea = "Idea",
10302
+ Niche = "Niche"
10299
10303
  }
10300
10304
 
10301
10305
  interface FindOverViewInstagramReportPostHighLightDto {
package/dist/index.d.ts CHANGED
@@ -10295,7 +10295,11 @@ declare enum EFilterOptionInstagramSocial {
10295
10295
  TeamCreator = "TeamCreator",
10296
10296
  LeaderCreator = "LeaderCreator",
10297
10297
  CreatedBy = "CreatedBy",
10298
- UpdatedBy = "UpdatedBy"
10298
+ UpdatedBy = "UpdatedBy",
10299
+ DeviceName = "DeviceName",
10300
+ Account = "Account",
10301
+ Idea = "Idea",
10302
+ Niche = "Niche"
10299
10303
  }
10300
10304
 
10301
10305
  interface FindOverViewInstagramReportPostHighLightDto {
package/dist/index.js CHANGED
@@ -2570,6 +2570,10 @@ var EFilterOptionInstagramSocial = /* @__PURE__ */ ((EFilterOptionInstagramSocia
2570
2570
  EFilterOptionInstagramSocial2["LeaderCreator"] = "LeaderCreator";
2571
2571
  EFilterOptionInstagramSocial2["CreatedBy"] = "CreatedBy";
2572
2572
  EFilterOptionInstagramSocial2["UpdatedBy"] = "UpdatedBy";
2573
+ EFilterOptionInstagramSocial2["DeviceName"] = "DeviceName";
2574
+ EFilterOptionInstagramSocial2["Account"] = "Account";
2575
+ EFilterOptionInstagramSocial2["Idea"] = "Idea";
2576
+ EFilterOptionInstagramSocial2["Niche"] = "Niche";
2573
2577
  return EFilterOptionInstagramSocial2;
2574
2578
  })(EFilterOptionInstagramSocial || {});
2575
2579
 
package/dist/index.mjs CHANGED
@@ -2268,6 +2268,10 @@ var EFilterOptionInstagramSocial = /* @__PURE__ */ ((EFilterOptionInstagramSocia
2268
2268
  EFilterOptionInstagramSocial2["LeaderCreator"] = "LeaderCreator";
2269
2269
  EFilterOptionInstagramSocial2["CreatedBy"] = "CreatedBy";
2270
2270
  EFilterOptionInstagramSocial2["UpdatedBy"] = "UpdatedBy";
2271
+ EFilterOptionInstagramSocial2["DeviceName"] = "DeviceName";
2272
+ EFilterOptionInstagramSocial2["Account"] = "Account";
2273
+ EFilterOptionInstagramSocial2["Idea"] = "Idea";
2274
+ EFilterOptionInstagramSocial2["Niche"] = "Niche";
2271
2275
  return EFilterOptionInstagramSocial2;
2272
2276
  })(EFilterOptionInstagramSocial || {});
2273
2277
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.425",
3
+ "version": "6.6.426",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",