automation-lib 4.8.25 → 4.8.26
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/.vscode/settings.json +29 -29
- package/commit.bat +42 -42
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +36 -36
package/.vscode/settings.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cSpell.words": [
|
|
3
|
-
"appium",
|
|
4
|
-
"appiumby",
|
|
5
|
-
"canva",
|
|
6
|
-
"chplay",
|
|
7
|
-
"creds",
|
|
8
|
-
"datenow",
|
|
9
|
-
"dotenv",
|
|
10
|
-
"EURL",
|
|
11
|
-
"Freepik",
|
|
12
|
-
"googleapiclient",
|
|
13
|
-
"gspread",
|
|
14
|
-
"horizotal",
|
|
15
|
-
"imei",
|
|
16
|
-
"iphonesubinfo",
|
|
17
|
-
"Noti",
|
|
18
|
-
"Pinterest",
|
|
19
|
-
"pymongo",
|
|
20
|
-
"pyperclip",
|
|
21
|
-
"pytz",
|
|
22
|
-
"qtwidgets",
|
|
23
|
-
"sism",
|
|
24
|
-
"siuf",
|
|
25
|
-
"tempolary",
|
|
26
|
-
"Tiktok",
|
|
27
|
-
"webelement"
|
|
28
|
-
]
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"cSpell.words": [
|
|
3
|
+
"appium",
|
|
4
|
+
"appiumby",
|
|
5
|
+
"canva",
|
|
6
|
+
"chplay",
|
|
7
|
+
"creds",
|
|
8
|
+
"datenow",
|
|
9
|
+
"dotenv",
|
|
10
|
+
"EURL",
|
|
11
|
+
"Freepik",
|
|
12
|
+
"googleapiclient",
|
|
13
|
+
"gspread",
|
|
14
|
+
"horizotal",
|
|
15
|
+
"imei",
|
|
16
|
+
"iphonesubinfo",
|
|
17
|
+
"Noti",
|
|
18
|
+
"Pinterest",
|
|
19
|
+
"pymongo",
|
|
20
|
+
"pyperclip",
|
|
21
|
+
"pytz",
|
|
22
|
+
"qtwidgets",
|
|
23
|
+
"sism",
|
|
24
|
+
"siuf",
|
|
25
|
+
"tempolary",
|
|
26
|
+
"Tiktok",
|
|
27
|
+
"webelement"
|
|
28
|
+
]
|
|
29
|
+
}
|
package/commit.bat
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
@echo off
|
|
2
|
-
|
|
3
|
-
:: Add all changes to git
|
|
4
|
-
git add .
|
|
5
|
-
|
|
6
|
-
:: Commit changes with a message
|
|
7
|
-
git commit -m "update: Son update code"
|
|
8
|
-
|
|
9
|
-
:: Push changes to the 'main' branch of the 'cp' remote
|
|
10
|
-
git pull hs main
|
|
11
|
-
|
|
12
|
-
:: Read the current version from package.json
|
|
13
|
-
for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
|
|
14
|
-
|
|
15
|
-
:: Remove quotes from the version string
|
|
16
|
-
set currentVersion=%currentVersion:"=%
|
|
17
|
-
|
|
18
|
-
:: Split version into its components
|
|
19
|
-
for /f "tokens=1,2,3 delims=." %%a in ("%currentVersion%") do (
|
|
20
|
-
set major=%%a
|
|
21
|
-
set minor=%%b
|
|
22
|
-
set patch=%%c
|
|
23
|
-
)
|
|
24
|
-
|
|
25
|
-
:: Increment the patch version
|
|
26
|
-
set /a patch+=1
|
|
27
|
-
|
|
28
|
-
:: Create the new version string
|
|
29
|
-
set newVersion=%major%.%minor%.%patch%
|
|
30
|
-
|
|
31
|
-
:: Update the version in package.json
|
|
32
|
-
powershell -Command "(Get-Content package.json) -replace '\"version\": \"%currentVersion%\"', '\"version\": \"%newVersion%\"' | Set-Content package.json"
|
|
33
|
-
|
|
34
|
-
:: Display the new version
|
|
35
|
-
echo New version: %newVersion%
|
|
36
|
-
|
|
37
|
-
:: Run npm publish using call
|
|
38
|
-
call npm run pub
|
|
39
|
-
|
|
40
|
-
git push hs main
|
|
41
|
-
|
|
42
|
-
|
|
1
|
+
@echo off
|
|
2
|
+
|
|
3
|
+
:: Add all changes to git
|
|
4
|
+
git add .
|
|
5
|
+
|
|
6
|
+
:: Commit changes with a message
|
|
7
|
+
git commit -m "update: Son update code"
|
|
8
|
+
|
|
9
|
+
:: Push changes to the 'main' branch of the 'cp' remote
|
|
10
|
+
git pull hs main
|
|
11
|
+
|
|
12
|
+
:: Read the current version from package.json
|
|
13
|
+
for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
|
|
14
|
+
|
|
15
|
+
:: Remove quotes from the version string
|
|
16
|
+
set currentVersion=%currentVersion:"=%
|
|
17
|
+
|
|
18
|
+
:: Split version into its components
|
|
19
|
+
for /f "tokens=1,2,3 delims=." %%a in ("%currentVersion%") do (
|
|
20
|
+
set major=%%a
|
|
21
|
+
set minor=%%b
|
|
22
|
+
set patch=%%c
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
:: Increment the patch version
|
|
26
|
+
set /a patch+=1
|
|
27
|
+
|
|
28
|
+
:: Create the new version string
|
|
29
|
+
set newVersion=%major%.%minor%.%patch%
|
|
30
|
+
|
|
31
|
+
:: Update the version in package.json
|
|
32
|
+
powershell -Command "(Get-Content package.json) -replace '\"version\": \"%currentVersion%\"', '\"version\": \"%newVersion%\"' | Set-Content package.json"
|
|
33
|
+
|
|
34
|
+
:: Display the new version
|
|
35
|
+
echo New version: %newVersion%
|
|
36
|
+
|
|
37
|
+
:: Run npm publish using call
|
|
38
|
+
call npm run pub
|
|
39
|
+
|
|
40
|
+
git push hs main
|
|
41
|
+
|
|
42
|
+
|
package/dist/index.d.mts
CHANGED
|
@@ -953,7 +953,7 @@ interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
953
953
|
speed: number;
|
|
954
954
|
stability: number;
|
|
955
955
|
similarity: number;
|
|
956
|
-
|
|
956
|
+
speakerBoost: boolean;
|
|
957
957
|
};
|
|
958
958
|
vg_audio: string;
|
|
959
959
|
vg_voiceStore: IVoiceStores | string;
|
package/dist/index.d.ts
CHANGED
|
@@ -953,7 +953,7 @@ interface IVoiceGenerated extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
953
953
|
speed: number;
|
|
954
954
|
stability: number;
|
|
955
955
|
similarity: number;
|
|
956
|
-
|
|
956
|
+
speakerBoost: boolean;
|
|
957
957
|
};
|
|
958
958
|
vg_audio: string;
|
|
959
959
|
vg_voiceStore: IVoiceStores | string;
|
package/package.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "automation-lib",
|
|
3
|
-
"version": "4.8.
|
|
4
|
-
"description": "Common features and type of applications auto",
|
|
5
|
-
"main": "./dist/index.js",
|
|
6
|
-
"module": "./dist/index.mjs",
|
|
7
|
-
"types": "./dist/index.d.js",
|
|
8
|
-
"homepage": "https://sdtc.vn",
|
|
9
|
-
"repository": {
|
|
10
|
-
"url": "https://github.com/HaiSonMin"
|
|
11
|
-
},
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsup",
|
|
14
|
-
"pub": "npm run build && npm publish"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"Common features auto"
|
|
18
|
-
],
|
|
19
|
-
"publishConfig": {
|
|
20
|
-
"access": "public"
|
|
21
|
-
},
|
|
22
|
-
"author": "BoDevOps",
|
|
23
|
-
"license": "MIT",
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@types/nodemailer": "^6.4.14",
|
|
26
|
-
"tsup": "^8.3.0",
|
|
27
|
-
"typescript": "^5.4.5"
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"automation-lib": "^4.8.9",
|
|
31
|
-
"bodevops-be-common": "^3.2.2",
|
|
32
|
-
"http-status-codes": "^2.3.0",
|
|
33
|
-
"nodemailer": "^6.9.13",
|
|
34
|
-
"sharp": "^0.33.3"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "automation-lib",
|
|
3
|
+
"version": "4.8.26",
|
|
4
|
+
"description": "Common features and type of applications auto",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.js",
|
|
8
|
+
"homepage": "https://sdtc.vn",
|
|
9
|
+
"repository": {
|
|
10
|
+
"url": "https://github.com/HaiSonMin"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup",
|
|
14
|
+
"pub": "npm run build && npm publish"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"Common features auto"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"author": "BoDevOps",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/nodemailer": "^6.4.14",
|
|
26
|
+
"tsup": "^8.3.0",
|
|
27
|
+
"typescript": "^5.4.5"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"automation-lib": "^4.8.9",
|
|
31
|
+
"bodevops-be-common": "^3.2.2",
|
|
32
|
+
"http-status-codes": "^2.3.0",
|
|
33
|
+
"nodemailer": "^6.9.13",
|
|
34
|
+
"sharp": "^0.33.3"
|
|
35
|
+
}
|
|
36
|
+
}
|