postman-cli 1.33.5 → 1.33.6
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 +8 -6
- package/package.json +6 -6
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2026-04-
|
|
1
|
+
.TH POSTMAN 1 "2026-04-08" "v1.33.6" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -223,9 +223,6 @@ Exports the cookie jar to a file after completing the run
|
|
|
223
223
|
.B \-\-verbose
|
|
224
224
|
Show detailed information of collection run and each request sent
|
|
225
225
|
.TP
|
|
226
|
-
.B \-\-no\-mask\-secrets
|
|
227
|
-
Show resolved vault secret values in the output
|
|
228
|
-
.TP
|
|
229
226
|
.B \-\-mock <path>
|
|
230
227
|
Start a mock server from manifest (.json) file
|
|
231
228
|
.TP
|
|
@@ -618,6 +615,9 @@ Show actual authentication tokens in dry\-run output (otherwise secrets are mask
|
|
|
618
615
|
.B \-r, \-\-result
|
|
619
616
|
Show only the response body (default: false)
|
|
620
617
|
.TP
|
|
618
|
+
.B \-s, \-\-scenario <name>
|
|
619
|
+
Use a named scenario from the flow definition to construct the input payload, headers, and query parameters (overridden by \-\-headers/\-\-query)
|
|
620
|
+
.TP
|
|
621
621
|
.B \-\-verbose
|
|
622
622
|
Verbose output
|
|
623
623
|
.TP
|
|
@@ -639,6 +639,8 @@ Examples:
|
|
|
639
639
|
postman flows trigger 12345\-67890\-abcdef \-\-result
|
|
640
640
|
postman flows trigger 12345\-67890\-abcdef \-\-dry\-run
|
|
641
641
|
postman flows trigger 12345\-67890\-abcdef \-\-dry\-run \-\-show\-secrets
|
|
642
|
+
postman flows trigger 12345\-67890\-abcdef \-\-scenario "Start Trigger"
|
|
643
|
+
postman flows trigger 12345\-67890\-abcdef \-\-scenario "Start Trigger" \-i override=value
|
|
642
644
|
|
|
643
645
|
|
|
644
646
|
|
|
@@ -1160,7 +1162,7 @@ Generate a new SDK from a Postman collection or specification.
|
|
|
1160
1162
|
.B Options:
|
|
1161
1163
|
.TP
|
|
1162
1164
|
.B \-l, \-\-language <languages...>
|
|
1163
|
-
Target language(s) for SDK generation. Specify one or more languages. [choices: "typescript", "python", "java", "go", "csharp", "php"]
|
|
1165
|
+
Target language(s) for SDK generation. Specify one or more languages. [choices: "typescript", "python", "java", "go", "csharp", "php", "cli"]
|
|
1164
1166
|
.TP
|
|
1165
1167
|
.B \-\-all
|
|
1166
1168
|
Generate SDKs for all supported languages
|
|
@@ -1336,7 +1338,7 @@ Connect a collection or specification to a Git repository for automated SDK PRs
|
|
|
1336
1338
|
.B Options:
|
|
1337
1339
|
.TP
|
|
1338
1340
|
.B \-l, \-\-language <language>
|
|
1339
|
-
SDK language (required) [choices: typescript, python, java, go, csharp, php]
|
|
1341
|
+
SDK language (required) [choices: typescript, python, java, go, csharp, php, cli]
|
|
1340
1342
|
.TP
|
|
1341
1343
|
.B \-w, \-\-workspace <workspaceId>
|
|
1342
1344
|
Workspace ID (optional)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.6",
|
|
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.33.
|
|
62
|
-
"@postman/pm-bin-macos-x64": "1.33.
|
|
63
|
-
"@postman/pm-bin-linux-x64": "1.33.
|
|
64
|
-
"@postman/pm-bin-linux-arm64": "1.33.
|
|
65
|
-
"@postman/pm-bin-windows-x64": "1.33.
|
|
61
|
+
"@postman/pm-bin-macos-arm64": "1.33.6",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.33.6",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.33.6",
|
|
64
|
+
"@postman/pm-bin-linux-arm64": "1.33.6",
|
|
65
|
+
"@postman/pm-bin-windows-x64": "1.33.6"
|
|
66
66
|
}
|
|
67
67
|
}
|