automation-lib 6.6.421 → 6.6.423

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
@@ -7723,7 +7723,8 @@ declare enum EFilterOptionInstagramAccountRaw {
7723
7723
  AccountGroup = "AccountGroup",
7724
7724
  Idea = "Idea",
7725
7725
  Niche = "Niche",
7726
- DeviceBrand = "DeviceBrand"
7726
+ DeviceBrand = "DeviceBrand",
7727
+ FileNameSheetImport = "FileNameSheetImport"
7727
7728
  }
7728
7729
 
7729
7730
  /**
@@ -7972,7 +7973,8 @@ interface FilterInstagramAccountRawDto extends IFilterBaseDto {
7972
7973
  leaderTeamToAssign: string[];
7973
7974
  memberToAssign: string[];
7974
7975
  assignmentStatus: EAssignedInstagramAccountRaw[];
7975
- statusCreateFolder: string[];
7976
+ statusCreateFolder: EStatusAccountSocialFolderName[];
7977
+ fileNameSheetImport: string[];
7976
7978
  createdDateRange: [Date, Date];
7977
7979
  updatedDateRange: [Date, Date];
7978
7980
  autoSyncDateRange: [Date, Date];
package/dist/index.d.ts CHANGED
@@ -7723,7 +7723,8 @@ declare enum EFilterOptionInstagramAccountRaw {
7723
7723
  AccountGroup = "AccountGroup",
7724
7724
  Idea = "Idea",
7725
7725
  Niche = "Niche",
7726
- DeviceBrand = "DeviceBrand"
7726
+ DeviceBrand = "DeviceBrand",
7727
+ FileNameSheetImport = "FileNameSheetImport"
7727
7728
  }
7728
7729
 
7729
7730
  /**
@@ -7972,7 +7973,8 @@ interface FilterInstagramAccountRawDto extends IFilterBaseDto {
7972
7973
  leaderTeamToAssign: string[];
7973
7974
  memberToAssign: string[];
7974
7975
  assignmentStatus: EAssignedInstagramAccountRaw[];
7975
- statusCreateFolder: string[];
7976
+ statusCreateFolder: EStatusAccountSocialFolderName[];
7977
+ fileNameSheetImport: string[];
7976
7978
  createdDateRange: [Date, Date];
7977
7979
  updatedDateRange: [Date, Date];
7978
7980
  autoSyncDateRange: [Date, Date];
package/dist/index.js CHANGED
@@ -2536,6 +2536,7 @@ var EFilterOptionInstagramAccountRaw = /* @__PURE__ */ ((EFilterOptionInstagramA
2536
2536
  EFilterOptionInstagramAccountRaw2["Idea"] = "Idea";
2537
2537
  EFilterOptionInstagramAccountRaw2["Niche"] = "Niche";
2538
2538
  EFilterOptionInstagramAccountRaw2["DeviceBrand"] = "DeviceBrand";
2539
+ EFilterOptionInstagramAccountRaw2["FileNameSheetImport"] = "FileNameSheetImport";
2539
2540
  return EFilterOptionInstagramAccountRaw2;
2540
2541
  })(EFilterOptionInstagramAccountRaw || {});
2541
2542
 
package/dist/index.mjs CHANGED
@@ -2234,6 +2234,7 @@ var EFilterOptionInstagramAccountRaw = /* @__PURE__ */ ((EFilterOptionInstagramA
2234
2234
  EFilterOptionInstagramAccountRaw2["Idea"] = "Idea";
2235
2235
  EFilterOptionInstagramAccountRaw2["Niche"] = "Niche";
2236
2236
  EFilterOptionInstagramAccountRaw2["DeviceBrand"] = "DeviceBrand";
2237
+ EFilterOptionInstagramAccountRaw2["FileNameSheetImport"] = "FileNameSheetImport";
2237
2238
  return EFilterOptionInstagramAccountRaw2;
2238
2239
  })(EFilterOptionInstagramAccountRaw || {});
2239
2240
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.421",
3
+ "version": "6.6.423",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",