automation-lib 6.6.63 → 6.6.64

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
@@ -17322,8 +17322,40 @@ interface IInstagramStoryViewer {
17322
17322
  isConfig: boolean;
17323
17323
  runRandom: number;
17324
17324
  }
17325
+
17325
17326
  interface IInstagramSettingConfigStoryViewer {
17326
- name: string;
17327
+ skipVerifiedAccounts: boolean;
17328
+ skipPrivateAccounts: boolean;
17329
+ skipUsernameNonEnglish: boolean;
17330
+ skipUsernameContainsIcons: boolean;
17331
+ sessionsPerDay: number;
17332
+ sessionDurationMin: number;
17333
+ sessionDurationMax: number;
17334
+ swipeUpForLink: IInboxAction;
17335
+ tapOnSticker: IInboxAction;
17336
+ longPressOnStory: IInboxAction;
17337
+ tapOnAvatar: IInboxAction;
17338
+ viewStoryFromExplore: IInboxAction;
17339
+ viewOwnStory: IInboxAction;
17340
+ viewStoryFromHomeFeed: IInboxAction;
17341
+ viewStoryFromStoryChain: IInboxAction;
17342
+ quickReactEmoji: IInboxAction;
17343
+ tapEmojiSlider: IInboxAction;
17344
+ answerPoll: IInboxAction;
17345
+ answerQuiz: IInboxAction;
17346
+ skipStory: IInboxAction;
17347
+ goBackStory: IInboxAction;
17348
+ pauseStory: IInboxAction;
17349
+ resumeStory: IInboxAction;
17350
+ sendDmFromStory: IInboxAction;
17351
+ sendDmSheetId: string;
17352
+ sendDmSessionsPerDay: number;
17353
+ sendDmStoryViewCountMin: number;
17354
+ sendDmStoryViewCountMax: number;
17355
+ sendDmSendCountMin: number;
17356
+ sendDmSendCountMax: number;
17357
+ sendDmDelayMin: number;
17358
+ sendDmDelayMax: number;
17327
17359
  }
17328
17360
 
17329
17361
  interface IInstagramMyNetworkInteract {
package/dist/index.d.ts CHANGED
@@ -17322,8 +17322,40 @@ interface IInstagramStoryViewer {
17322
17322
  isConfig: boolean;
17323
17323
  runRandom: number;
17324
17324
  }
17325
+
17325
17326
  interface IInstagramSettingConfigStoryViewer {
17326
- name: string;
17327
+ skipVerifiedAccounts: boolean;
17328
+ skipPrivateAccounts: boolean;
17329
+ skipUsernameNonEnglish: boolean;
17330
+ skipUsernameContainsIcons: boolean;
17331
+ sessionsPerDay: number;
17332
+ sessionDurationMin: number;
17333
+ sessionDurationMax: number;
17334
+ swipeUpForLink: IInboxAction;
17335
+ tapOnSticker: IInboxAction;
17336
+ longPressOnStory: IInboxAction;
17337
+ tapOnAvatar: IInboxAction;
17338
+ viewStoryFromExplore: IInboxAction;
17339
+ viewOwnStory: IInboxAction;
17340
+ viewStoryFromHomeFeed: IInboxAction;
17341
+ viewStoryFromStoryChain: IInboxAction;
17342
+ quickReactEmoji: IInboxAction;
17343
+ tapEmojiSlider: IInboxAction;
17344
+ answerPoll: IInboxAction;
17345
+ answerQuiz: IInboxAction;
17346
+ skipStory: IInboxAction;
17347
+ goBackStory: IInboxAction;
17348
+ pauseStory: IInboxAction;
17349
+ resumeStory: IInboxAction;
17350
+ sendDmFromStory: IInboxAction;
17351
+ sendDmSheetId: string;
17352
+ sendDmSessionsPerDay: number;
17353
+ sendDmStoryViewCountMin: number;
17354
+ sendDmStoryViewCountMax: number;
17355
+ sendDmSendCountMin: number;
17356
+ sendDmSendCountMax: number;
17357
+ sendDmDelayMin: number;
17358
+ sendDmDelayMax: number;
17327
17359
  }
17328
17360
 
17329
17361
  interface IInstagramMyNetworkInteract {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.63",
3
+ "version": "6.6.64",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",