postman-cli 1.22.0 → 1.23.1
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/man/postman.1 +46 -5
- package/package.json +5 -5
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2025-
|
|
1
|
+
.TH POSTMAN 1 "2025-11-05" "v1.23.1" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -266,16 +266,57 @@ Eg. postman api publish <apiId> \-\-name v1\e
|
|
|
266
266
|
\-\-api\-definition <apiDefinitionId>
|
|
267
267
|
|
|
268
268
|
|
|
269
|
-
.SS "
|
|
270
|
-
|
|
269
|
+
.SS "runner"
|
|
270
|
+
Run runners on your own environments for monitoring your APIs
|
|
271
271
|
|
|
272
272
|
.B Usage:
|
|
273
273
|
[options] [command]
|
|
274
274
|
|
|
275
|
-
.
|
|
275
|
+
.B Subcommands:
|
|
276
|
+
.TP
|
|
277
|
+
.B runner start
|
|
278
|
+
[BETA] Start a runner
|
|
279
|
+
|
|
280
|
+
.SS "runner start"
|
|
281
|
+
[BETA] Start a runner
|
|
282
|
+
|
|
283
|
+
.B Usage:
|
|
284
|
+
[options]
|
|
285
|
+
|
|
286
|
+
.B Options:
|
|
287
|
+
.TP
|
|
288
|
+
.B \-\-id <id>
|
|
289
|
+
The ID of the runner to execute
|
|
290
|
+
.TP
|
|
291
|
+
.B \-\-key <key>
|
|
292
|
+
The secret key for the runner
|
|
293
|
+
.TP
|
|
294
|
+
.B \-\-region <region>
|
|
295
|
+
Specify the region for the runner. Use "eu" for EU region.
|
|
296
|
+
.TP
|
|
297
|
+
.B \-\-proxy <url>
|
|
298
|
+
External proxy URL (e.g., http://proxy.com or http://proxy.com:8080)
|
|
299
|
+
.TP
|
|
300
|
+
.B \-\-egress\-proxy
|
|
301
|
+
Enable built\-in egress proxy
|
|
302
|
+
.TP
|
|
303
|
+
.B \-\-egress\-proxy\-authz\-url <url>
|
|
304
|
+
Custom egress proxy authorization service base URL
|
|
305
|
+
.TP
|
|
306
|
+
.B \-\-ssl\-extra\-ca\-certs <path>
|
|
307
|
+
Additional trusted CA certificates (PEM file, can contain multiple certs)
|
|
308
|
+
.TP
|
|
309
|
+
.B \-\-metrics
|
|
310
|
+
Enable the metrics server for health checks
|
|
311
|
+
.TP
|
|
312
|
+
.B \-\-metrics\-port <port>
|
|
313
|
+
Port for the metrics server (default: 9090) (default: 9090)
|
|
276
314
|
|
|
277
|
-
|
|
315
|
+
.SS "spec"
|
|
316
|
+
Lint and validate Specifications from the command line
|
|
278
317
|
|
|
318
|
+
.B Usage:
|
|
319
|
+
[options] [command]
|
|
279
320
|
|
|
280
321
|
.B Subcommands:
|
|
281
322
|
.TP
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.1",
|
|
4
4
|
"description": "Official Postman CLI - Command-line companion for API development, testing, and automation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postman",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"man/"
|
|
59
59
|
],
|
|
60
60
|
"optionalDependencies": {
|
|
61
|
-
"@postman/pm-bin-macos-arm64": "1.
|
|
62
|
-
"@postman/pm-bin-macos-x64": "1.
|
|
63
|
-
"@postman/pm-bin-linux-x64": "1.
|
|
64
|
-
"@postman/pm-bin-windows-x64": "1.
|
|
61
|
+
"@postman/pm-bin-macos-arm64": "1.23.1",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.23.1",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.23.1",
|
|
64
|
+
"@postman/pm-bin-windows-x64": "1.23.1"
|
|
65
65
|
}
|
|
66
66
|
}
|