automation-lib 6.6.30 → 6.6.32
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 +33 -21
- package/dist/index.d.ts +33 -21
- 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
|
@@ -16800,9 +16800,11 @@ interface IInstagramTaskSocialAutoPosts {
|
|
|
16800
16800
|
|
|
16801
16801
|
interface IInstagramEgoCheck {
|
|
16802
16802
|
isConfig: boolean;
|
|
16803
|
+
runRandom: number;
|
|
16803
16804
|
}
|
|
16804
16805
|
interface IInstagramMySettingsCollection {
|
|
16805
16806
|
isConfig: boolean;
|
|
16807
|
+
runRandom: number;
|
|
16806
16808
|
}
|
|
16807
16809
|
interface IInstagramSettingConfigEgoCheck {
|
|
16808
16810
|
isReload: boolean;
|
|
@@ -16828,29 +16830,38 @@ interface IInstagramSettingConfigEgoCheck {
|
|
|
16828
16830
|
}
|
|
16829
16831
|
interface IInstagramSettingConfigMySettings {
|
|
16830
16832
|
isReviewSaved: boolean;
|
|
16831
|
-
saveScrollMax: number;
|
|
16832
16833
|
saveScrollMin: number;
|
|
16834
|
+
saveScrollMax: number;
|
|
16833
16835
|
isReviewArchived: boolean;
|
|
16834
|
-
archiveScrollMax: number;
|
|
16835
16836
|
archiveScrollMin: number;
|
|
16837
|
+
archiveScrollMax: number;
|
|
16836
16838
|
isReviewDrafts: boolean;
|
|
16837
|
-
draftScrollMax: number;
|
|
16838
16839
|
draftScrollMin: number;
|
|
16840
|
+
draftScrollMax: number;
|
|
16839
16841
|
isReviewTagged: boolean;
|
|
16840
|
-
taggedScrollMax: number;
|
|
16841
16842
|
taggedScrollMin: number;
|
|
16843
|
+
taggedScrollMax: number;
|
|
16844
|
+
isMockEditProfile: boolean;
|
|
16845
|
+
isShareProfile: boolean;
|
|
16846
|
+
isViewHighlights: boolean;
|
|
16847
|
+
highlightsCountMin: number;
|
|
16848
|
+
highlightsCountMax: number;
|
|
16849
|
+
isCreateHighlight: boolean;
|
|
16842
16850
|
delayActionMin: number;
|
|
16843
16851
|
delayActionMax: number;
|
|
16844
16852
|
}
|
|
16845
16853
|
|
|
16846
16854
|
interface IInstagramFollowTarget {
|
|
16847
16855
|
isConfig: boolean;
|
|
16856
|
+
runRandom: number;
|
|
16848
16857
|
}
|
|
16849
16858
|
interface IInstagramUnfollow {
|
|
16850
16859
|
isConfig: boolean;
|
|
16860
|
+
runRandom: number;
|
|
16851
16861
|
}
|
|
16852
16862
|
interface IInstagramPreBlockAndBlock {
|
|
16853
16863
|
isConfig: boolean;
|
|
16864
|
+
runRandom: number;
|
|
16854
16865
|
}
|
|
16855
16866
|
interface IInstagramSettingConfigFollowTarget {
|
|
16856
16867
|
targetList: string[];
|
|
@@ -16901,13 +16912,13 @@ interface IInstagramSettingConfigBlock {
|
|
|
16901
16912
|
}
|
|
16902
16913
|
|
|
16903
16914
|
interface IInstagramReplyComment {
|
|
16904
|
-
|
|
16915
|
+
runRandom: number;
|
|
16905
16916
|
}
|
|
16906
16917
|
interface IInstagramProcessRequests {
|
|
16907
|
-
|
|
16918
|
+
runRandom: number;
|
|
16908
16919
|
}
|
|
16909
16920
|
interface IInstagramNotificationBar {
|
|
16910
|
-
|
|
16921
|
+
runRandom: number;
|
|
16911
16922
|
}
|
|
16912
16923
|
interface IInstagramSettingConfigReplyComment {
|
|
16913
16924
|
name: string;
|
|
@@ -16920,10 +16931,10 @@ interface IInstagramSettingConfigNotificationBar {
|
|
|
16920
16931
|
}
|
|
16921
16932
|
|
|
16922
16933
|
interface IInstagramInboxManager {
|
|
16923
|
-
|
|
16934
|
+
runRandom: number;
|
|
16924
16935
|
}
|
|
16925
16936
|
interface IInstagramReplyMessage {
|
|
16926
|
-
|
|
16937
|
+
runRandom: number;
|
|
16927
16938
|
}
|
|
16928
16939
|
interface IInstagramSettingConfigInboxManager {
|
|
16929
16940
|
name: string;
|
|
@@ -16933,13 +16944,13 @@ interface IInstagramSettingConfigReplyMessage {
|
|
|
16933
16944
|
}
|
|
16934
16945
|
|
|
16935
16946
|
interface IInstagramFeedSurf {
|
|
16936
|
-
|
|
16947
|
+
runRandom: number;
|
|
16937
16948
|
}
|
|
16938
16949
|
interface IInstagramPostInteract {
|
|
16939
|
-
|
|
16950
|
+
runRandom: number;
|
|
16940
16951
|
}
|
|
16941
16952
|
interface IInstagramPostAfterEngagement {
|
|
16942
|
-
|
|
16953
|
+
runRandom: number;
|
|
16943
16954
|
}
|
|
16944
16955
|
interface IInstagramSettingConfigFeedSurf {
|
|
16945
16956
|
name: string;
|
|
@@ -16952,24 +16963,25 @@ interface IInstagramSettingConfigPostAfterEngagement {
|
|
|
16952
16963
|
}
|
|
16953
16964
|
|
|
16954
16965
|
interface IInstagramReelsSurfer {
|
|
16955
|
-
|
|
16966
|
+
runRandom: number;
|
|
16956
16967
|
}
|
|
16957
16968
|
interface IInstagramSettingConfigReelsSurfer {
|
|
16958
16969
|
name: string;
|
|
16959
16970
|
}
|
|
16960
16971
|
|
|
16961
16972
|
interface IInstagramStoryViewer {
|
|
16962
|
-
|
|
16973
|
+
isConfig: boolean;
|
|
16974
|
+
runRandom: number;
|
|
16963
16975
|
}
|
|
16964
16976
|
interface IInstagramSettingConfigStoryViewer {
|
|
16965
16977
|
name: string;
|
|
16966
16978
|
}
|
|
16967
16979
|
|
|
16968
16980
|
interface IInstagramMyNetworkInteract {
|
|
16969
|
-
|
|
16981
|
+
runRandom: number;
|
|
16970
16982
|
}
|
|
16971
16983
|
interface IInstagramStrangerProfileVisit {
|
|
16972
|
-
|
|
16984
|
+
runRandom: number;
|
|
16973
16985
|
}
|
|
16974
16986
|
interface IInstagramSettingConfigMyNetwork {
|
|
16975
16987
|
name: string;
|
|
@@ -16979,19 +16991,19 @@ interface IInstagramSettingConfigStrangerVisit {
|
|
|
16979
16991
|
}
|
|
16980
16992
|
|
|
16981
16993
|
interface IInstagramNavigation {
|
|
16982
|
-
|
|
16994
|
+
runRandom: number;
|
|
16983
16995
|
}
|
|
16984
16996
|
interface IInstagramGesture {
|
|
16985
|
-
|
|
16997
|
+
runRandom: number;
|
|
16986
16998
|
}
|
|
16987
16999
|
interface IInstagramHumanDelay {
|
|
16988
|
-
|
|
17000
|
+
runRandom: number;
|
|
16989
17001
|
}
|
|
16990
17002
|
interface IInstagramCheckpoint {
|
|
16991
|
-
|
|
17003
|
+
runRandom: number;
|
|
16992
17004
|
}
|
|
16993
17005
|
interface IInstagramEndWorkflow {
|
|
16994
|
-
|
|
17006
|
+
runRandom: number;
|
|
16995
17007
|
}
|
|
16996
17008
|
interface IInstagramSettingConfigNavigation {
|
|
16997
17009
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -16800,9 +16800,11 @@ interface IInstagramTaskSocialAutoPosts {
|
|
|
16800
16800
|
|
|
16801
16801
|
interface IInstagramEgoCheck {
|
|
16802
16802
|
isConfig: boolean;
|
|
16803
|
+
runRandom: number;
|
|
16803
16804
|
}
|
|
16804
16805
|
interface IInstagramMySettingsCollection {
|
|
16805
16806
|
isConfig: boolean;
|
|
16807
|
+
runRandom: number;
|
|
16806
16808
|
}
|
|
16807
16809
|
interface IInstagramSettingConfigEgoCheck {
|
|
16808
16810
|
isReload: boolean;
|
|
@@ -16828,29 +16830,38 @@ interface IInstagramSettingConfigEgoCheck {
|
|
|
16828
16830
|
}
|
|
16829
16831
|
interface IInstagramSettingConfigMySettings {
|
|
16830
16832
|
isReviewSaved: boolean;
|
|
16831
|
-
saveScrollMax: number;
|
|
16832
16833
|
saveScrollMin: number;
|
|
16834
|
+
saveScrollMax: number;
|
|
16833
16835
|
isReviewArchived: boolean;
|
|
16834
|
-
archiveScrollMax: number;
|
|
16835
16836
|
archiveScrollMin: number;
|
|
16837
|
+
archiveScrollMax: number;
|
|
16836
16838
|
isReviewDrafts: boolean;
|
|
16837
|
-
draftScrollMax: number;
|
|
16838
16839
|
draftScrollMin: number;
|
|
16840
|
+
draftScrollMax: number;
|
|
16839
16841
|
isReviewTagged: boolean;
|
|
16840
|
-
taggedScrollMax: number;
|
|
16841
16842
|
taggedScrollMin: number;
|
|
16843
|
+
taggedScrollMax: number;
|
|
16844
|
+
isMockEditProfile: boolean;
|
|
16845
|
+
isShareProfile: boolean;
|
|
16846
|
+
isViewHighlights: boolean;
|
|
16847
|
+
highlightsCountMin: number;
|
|
16848
|
+
highlightsCountMax: number;
|
|
16849
|
+
isCreateHighlight: boolean;
|
|
16842
16850
|
delayActionMin: number;
|
|
16843
16851
|
delayActionMax: number;
|
|
16844
16852
|
}
|
|
16845
16853
|
|
|
16846
16854
|
interface IInstagramFollowTarget {
|
|
16847
16855
|
isConfig: boolean;
|
|
16856
|
+
runRandom: number;
|
|
16848
16857
|
}
|
|
16849
16858
|
interface IInstagramUnfollow {
|
|
16850
16859
|
isConfig: boolean;
|
|
16860
|
+
runRandom: number;
|
|
16851
16861
|
}
|
|
16852
16862
|
interface IInstagramPreBlockAndBlock {
|
|
16853
16863
|
isConfig: boolean;
|
|
16864
|
+
runRandom: number;
|
|
16854
16865
|
}
|
|
16855
16866
|
interface IInstagramSettingConfigFollowTarget {
|
|
16856
16867
|
targetList: string[];
|
|
@@ -16901,13 +16912,13 @@ interface IInstagramSettingConfigBlock {
|
|
|
16901
16912
|
}
|
|
16902
16913
|
|
|
16903
16914
|
interface IInstagramReplyComment {
|
|
16904
|
-
|
|
16915
|
+
runRandom: number;
|
|
16905
16916
|
}
|
|
16906
16917
|
interface IInstagramProcessRequests {
|
|
16907
|
-
|
|
16918
|
+
runRandom: number;
|
|
16908
16919
|
}
|
|
16909
16920
|
interface IInstagramNotificationBar {
|
|
16910
|
-
|
|
16921
|
+
runRandom: number;
|
|
16911
16922
|
}
|
|
16912
16923
|
interface IInstagramSettingConfigReplyComment {
|
|
16913
16924
|
name: string;
|
|
@@ -16920,10 +16931,10 @@ interface IInstagramSettingConfigNotificationBar {
|
|
|
16920
16931
|
}
|
|
16921
16932
|
|
|
16922
16933
|
interface IInstagramInboxManager {
|
|
16923
|
-
|
|
16934
|
+
runRandom: number;
|
|
16924
16935
|
}
|
|
16925
16936
|
interface IInstagramReplyMessage {
|
|
16926
|
-
|
|
16937
|
+
runRandom: number;
|
|
16927
16938
|
}
|
|
16928
16939
|
interface IInstagramSettingConfigInboxManager {
|
|
16929
16940
|
name: string;
|
|
@@ -16933,13 +16944,13 @@ interface IInstagramSettingConfigReplyMessage {
|
|
|
16933
16944
|
}
|
|
16934
16945
|
|
|
16935
16946
|
interface IInstagramFeedSurf {
|
|
16936
|
-
|
|
16947
|
+
runRandom: number;
|
|
16937
16948
|
}
|
|
16938
16949
|
interface IInstagramPostInteract {
|
|
16939
|
-
|
|
16950
|
+
runRandom: number;
|
|
16940
16951
|
}
|
|
16941
16952
|
interface IInstagramPostAfterEngagement {
|
|
16942
|
-
|
|
16953
|
+
runRandom: number;
|
|
16943
16954
|
}
|
|
16944
16955
|
interface IInstagramSettingConfigFeedSurf {
|
|
16945
16956
|
name: string;
|
|
@@ -16952,24 +16963,25 @@ interface IInstagramSettingConfigPostAfterEngagement {
|
|
|
16952
16963
|
}
|
|
16953
16964
|
|
|
16954
16965
|
interface IInstagramReelsSurfer {
|
|
16955
|
-
|
|
16966
|
+
runRandom: number;
|
|
16956
16967
|
}
|
|
16957
16968
|
interface IInstagramSettingConfigReelsSurfer {
|
|
16958
16969
|
name: string;
|
|
16959
16970
|
}
|
|
16960
16971
|
|
|
16961
16972
|
interface IInstagramStoryViewer {
|
|
16962
|
-
|
|
16973
|
+
isConfig: boolean;
|
|
16974
|
+
runRandom: number;
|
|
16963
16975
|
}
|
|
16964
16976
|
interface IInstagramSettingConfigStoryViewer {
|
|
16965
16977
|
name: string;
|
|
16966
16978
|
}
|
|
16967
16979
|
|
|
16968
16980
|
interface IInstagramMyNetworkInteract {
|
|
16969
|
-
|
|
16981
|
+
runRandom: number;
|
|
16970
16982
|
}
|
|
16971
16983
|
interface IInstagramStrangerProfileVisit {
|
|
16972
|
-
|
|
16984
|
+
runRandom: number;
|
|
16973
16985
|
}
|
|
16974
16986
|
interface IInstagramSettingConfigMyNetwork {
|
|
16975
16987
|
name: string;
|
|
@@ -16979,19 +16991,19 @@ interface IInstagramSettingConfigStrangerVisit {
|
|
|
16979
16991
|
}
|
|
16980
16992
|
|
|
16981
16993
|
interface IInstagramNavigation {
|
|
16982
|
-
|
|
16994
|
+
runRandom: number;
|
|
16983
16995
|
}
|
|
16984
16996
|
interface IInstagramGesture {
|
|
16985
|
-
|
|
16997
|
+
runRandom: number;
|
|
16986
16998
|
}
|
|
16987
16999
|
interface IInstagramHumanDelay {
|
|
16988
|
-
|
|
17000
|
+
runRandom: number;
|
|
16989
17001
|
}
|
|
16990
17002
|
interface IInstagramCheckpoint {
|
|
16991
|
-
|
|
17003
|
+
runRandom: number;
|
|
16992
17004
|
}
|
|
16993
17005
|
interface IInstagramEndWorkflow {
|
|
16994
|
-
|
|
17006
|
+
runRandom: number;
|
|
16995
17007
|
}
|
|
16996
17008
|
interface IInstagramSettingConfigNavigation {
|
|
16997
17009
|
name: string;
|