apipost-cli 1.0.2 → 1.0.4
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/README.md +0 -1
- package/bin/cli.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -41,6 +41,5 @@ Options:
|
|
|
41
41
|
--ssl-client-key <path> 指定客户端证书私钥路径 (KEY file)
|
|
42
42
|
--ssl-client-passphrase <passphrase> 指定客户端证书密码 (for protected key)
|
|
43
43
|
--ssl-extra-ca-certs <path> 指定额外受信任的 CA 证书 (PEM)
|
|
44
|
-
--web-hook <url> Web-hook用于在任务完成后向指定URL发送数据 (POST)
|
|
45
44
|
-h, --help display help for command
|
|
46
45
|
```
|
package/bin/cli.js
CHANGED
|
@@ -197,7 +197,7 @@ const bindEvent = (program) => {
|
|
|
197
197
|
.option('--ssl-client-key <path>', `指定客户端证书私钥路径 (KEY file) `)
|
|
198
198
|
.option('--ssl-client-passphrase <passphrase>', `指定客户端证书密码 (for protected key)`)
|
|
199
199
|
.option('--ssl-extra-ca-certs <path>', `指定额外受信任的 CA 证书 (PEM)`)
|
|
200
|
-
.option('--web-hook <url>', `Web-hook用于在任务完成后向指定URL发送数据 (POST) `)
|
|
200
|
+
// .option('--web-hook <url>', `Web-hook用于在任务完成后向指定URL发送数据 (POST) `)
|
|
201
201
|
.action((url, options) => {
|
|
202
202
|
parseCommandString(url, options)
|
|
203
203
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apipost-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Apipost 命令行运行工具",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"license": "UNLICENSED",
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"apipost-inside-tools": "^0.1.54",
|
|
17
|
-
"apipost-runtime": "^1.1.
|
|
17
|
+
"apipost-runtime": "^1.1.100",
|
|
18
18
|
"cli-progress": "^3.12.0",
|
|
19
19
|
"cli-table3": "^0.6.3",
|
|
20
20
|
"colors": "^1.4.0",
|