postman-cli 1.32.0 → 1.33.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/man/postman.1 +18 -4
- package/package.json +6 -6
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2026-03-
|
|
1
|
+
.TH POSTMAN 1 "2026-03-12" "v1.33.0" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -60,9 +60,23 @@ Run and test your Postman collections directly from the command line.
|
|
|
60
60
|
|
|
61
61
|
.B Subcommands:
|
|
62
62
|
.TP
|
|
63
|
+
.B collection migrate
|
|
64
|
+
Migrate a v2.1 collection to the v3 format
|
|
65
|
+
.TP
|
|
63
66
|
.B collection run
|
|
64
67
|
Initiate a Postman collection run from a given ID or path.
|
|
65
68
|
|
|
69
|
+
.SS "collection migrate"
|
|
70
|
+
Migrate a v2.1 collection to the v3 format
|
|
71
|
+
|
|
72
|
+
.B Usage:
|
|
73
|
+
[options] <path>
|
|
74
|
+
|
|
75
|
+
.B Options:
|
|
76
|
+
.TP
|
|
77
|
+
.B \-o, \-\-output <dir>
|
|
78
|
+
Output directory (default: ./<collection\-name>)
|
|
79
|
+
|
|
66
80
|
.SS "collection run"
|
|
67
81
|
Initiate a Postman collection run from a given ID or path.
|
|
68
82
|
|
|
@@ -147,9 +161,6 @@ Prevents Postman CLI from showing output to CLI
|
|
|
147
161
|
.B \-\-disable\-unicode
|
|
148
162
|
Forces Unicode compliant symbols to be replaced by their plain text equivalents
|
|
149
163
|
.TP
|
|
150
|
-
.B \-\-color <value>
|
|
151
|
-
Enable/Disable colored output (auto|on|off) (default: auto)
|
|
152
|
-
.TP
|
|
153
164
|
.B \-\-delay\-request [n]
|
|
154
165
|
Specify the extent of delay between requests (milliseconds) (default: 0)
|
|
155
166
|
.TP
|
|
@@ -663,6 +674,9 @@ Set flow inputs from JSON files (e.g. \-\-input\-file ./inputs.json \-\-input\-f
|
|
|
663
674
|
.B \-s, \-\-scenario <name>
|
|
664
675
|
Use a pre\-built scenario as flow inputs (by scenario name). Can be combined with \-\-input and \-\-input\-file to override values.
|
|
665
676
|
.TP
|
|
677
|
+
.B \-e, \-\-environment <path>
|
|
678
|
+
Specify a path to a Postman Environment file (JSON or YAML)
|
|
679
|
+
.TP
|
|
666
680
|
.B \-\-working\-dir <path>
|
|
667
681
|
Specify the path to the working directory
|
|
668
682
|
.TP
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.33.0",
|
|
4
4
|
"description": "Official Postman CLI - Command-line companion for API development, testing, and automation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postman",
|
|
@@ -58,10 +58,10 @@
|
|
|
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-linux-arm64": "1.
|
|
65
|
-
"@postman/pm-bin-windows-x64": "1.
|
|
61
|
+
"@postman/pm-bin-macos-arm64": "1.33.0",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.33.0",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.33.0",
|
|
64
|
+
"@postman/pm-bin-linux-arm64": "1.33.0",
|
|
65
|
+
"@postman/pm-bin-windows-x64": "1.33.0"
|
|
66
66
|
}
|
|
67
67
|
}
|