@open-wa/wa-automate 4.71.14 → 4.72.0
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/bin/config-schema.json +1 -1
- package/bin/oas-type-schemas.json +1 -1
- package/dist/api/Client.d.ts +17 -12
- package/dist/api/Client.js +17 -12
- package/dist/api/model/config.d.ts +10 -0
- package/dist/build/build-postman.js +2 -2
- package/dist/cli/collections.js +1 -1
- package/dist/cli/setup.js +1 -1
- package/dist/controllers/auth.d.ts +1 -0
- package/dist/controllers/auth.js +37 -4
- package/dist/controllers/initializer.js +6 -2
- package/dist/lib/launch.js +1 -1
- package/dist/lib/wapi.js +12 -4
- package/dist/structures/preProcessors.d.ts +3 -2
- package/dist/structures/preProcessors.js +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@open-wa/wa-automate",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.72.0",
|
4
4
|
"licenseCheckUrl": "https://funcs.openwa.dev/license-check",
|
5
5
|
"brokenMethodReportUrl": "https://funcs.openwa.dev/report-bm",
|
6
6
|
"patches": "https://cdn.openwa.dev/patches.json",
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"build": "rm -rf dist/ && tsc && npm run build:lib && npm run build:config-for-bin",
|
16
16
|
"build:skipmid": "tsc && npm run build:lib",
|
17
17
|
"build:lib": "ts-node prebuild.ts",
|
18
|
-
"docs": "npm run --prefix docs
|
18
|
+
"docs": "npm run --prefix docs deploy_with_ssh_ci",
|
19
19
|
"types:publish": "npm run --prefix types-only pub",
|
20
20
|
"watch": "npm run build && tsc-watch ./src/index.ts --outDir ./dist --onSuccess \"node ./dist/index.js\" --onFailure \"echo Error while compiling\" --compiler typescript/bin/tsc",
|
21
21
|
"clean": "rm -rf session && rm -rf dist",
|