automation-lib 6.6.433 → 6.6.434
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 +5 -5
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
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
|
-
|
|
10
|
+
timeout /t 2 /nobreak >nul
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
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
|
-
|
|
44
|
+
timeout /t 1 /nobreak >nul
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
timeout /t 2 /nobreak >nul
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push hs main
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -10302,7 +10302,9 @@ declare enum EFilterOptionInstagramSocial {
|
|
|
10302
10302
|
DeviceName = "DeviceName",
|
|
10303
10303
|
Account = "Account",
|
|
10304
10304
|
Idea = "Idea",
|
|
10305
|
-
Niche = "Niche"
|
|
10305
|
+
Niche = "Niche",
|
|
10306
|
+
PC = "PC",
|
|
10307
|
+
AccountGroup = "AccountGroup"
|
|
10306
10308
|
}
|
|
10307
10309
|
|
|
10308
10310
|
interface FindOverViewInstagramReportPostHighLightDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -10302,7 +10302,9 @@ declare enum EFilterOptionInstagramSocial {
|
|
|
10302
10302
|
DeviceName = "DeviceName",
|
|
10303
10303
|
Account = "Account",
|
|
10304
10304
|
Idea = "Idea",
|
|
10305
|
-
Niche = "Niche"
|
|
10305
|
+
Niche = "Niche",
|
|
10306
|
+
PC = "PC",
|
|
10307
|
+
AccountGroup = "AccountGroup"
|
|
10306
10308
|
}
|
|
10307
10309
|
|
|
10308
10310
|
interface FindOverViewInstagramReportPostHighLightDto {
|
package/dist/index.js
CHANGED
|
@@ -2574,6 +2574,8 @@ var EFilterOptionInstagramSocial = /* @__PURE__ */ ((EFilterOptionInstagramSocia
|
|
|
2574
2574
|
EFilterOptionInstagramSocial2["Account"] = "Account";
|
|
2575
2575
|
EFilterOptionInstagramSocial2["Idea"] = "Idea";
|
|
2576
2576
|
EFilterOptionInstagramSocial2["Niche"] = "Niche";
|
|
2577
|
+
EFilterOptionInstagramSocial2["PC"] = "PC";
|
|
2578
|
+
EFilterOptionInstagramSocial2["AccountGroup"] = "AccountGroup";
|
|
2577
2579
|
return EFilterOptionInstagramSocial2;
|
|
2578
2580
|
})(EFilterOptionInstagramSocial || {});
|
|
2579
2581
|
|
package/dist/index.mjs
CHANGED
|
@@ -2272,6 +2272,8 @@ var EFilterOptionInstagramSocial = /* @__PURE__ */ ((EFilterOptionInstagramSocia
|
|
|
2272
2272
|
EFilterOptionInstagramSocial2["Account"] = "Account";
|
|
2273
2273
|
EFilterOptionInstagramSocial2["Idea"] = "Idea";
|
|
2274
2274
|
EFilterOptionInstagramSocial2["Niche"] = "Niche";
|
|
2275
|
+
EFilterOptionInstagramSocial2["PC"] = "PC";
|
|
2276
|
+
EFilterOptionInstagramSocial2["AccountGroup"] = "AccountGroup";
|
|
2275
2277
|
return EFilterOptionInstagramSocial2;
|
|
2276
2278
|
})(EFilterOptionInstagramSocial || {});
|
|
2277
2279
|
|