postman-cli 1.33.2 → 1.33.5

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.
Files changed (2) hide show
  1. package/man/postman.1 +32 -3
  2. package/package.json +6 -6
package/man/postman.1 CHANGED
@@ -1,4 +1,4 @@
1
- .TH POSTMAN 1 "2026-03-25" "v1.33.2" "Postman CLI Manual"
1
+ .TH POSTMAN 1 "2026-04-02" "v1.33.5" "Postman CLI Manual"
2
2
  .SH NAME
3
3
  postman \- Command\-line companion utility for Postman
4
4
  .SH SYNOPSIS
@@ -63,6 +63,9 @@ Run and test your Postman collections directly from the command line.
63
63
  .B collection migrate
64
64
  Migrate a v2.1 collection to the v3 format
65
65
  .TP
66
+ .B collection lint
67
+ Run linting on a local v3 collection at the given file or directory path.
68
+ .TP
66
69
  .B collection run
67
70
  Initiate a Postman collection run from a given ID or path.
68
71
 
@@ -77,6 +80,20 @@ Migrate a v2.1 collection to the v3 format
77
80
  .B \-o, \-\-output <dir>
78
81
  Output directory (default: ./<collection\-name>)
79
82
 
83
+ .SS "collection lint"
84
+ Run linting on a local v3 collection at the given file or directory path.
85
+
86
+ .B Usage:
87
+ <path> [options]
88
+
89
+ .B Options:
90
+ .TP
91
+ .B \-f, \-\-fail\-severity <value>
92
+ Exit with failure if diagnostics at this level or above are present. [choices: "error", "warning"] (default: error)
93
+ .TP
94
+ .B \-r, \-\-reporter <value>
95
+ Output format: cli (human\-readable) or json. (default: cli)
96
+
80
97
  .SS "collection run"
81
98
  Initiate a Postman collection run from a given ID or path.
82
99
 
@@ -206,6 +223,9 @@ Exports the cookie jar to a file after completing the run
206
223
  .B \-\-verbose
207
224
  Show detailed information of collection run and each request sent
208
225
  .TP
226
+ .B \-\-no\-mask\-secrets
227
+ Show resolved vault secret values in the output
228
+ .TP
209
229
  .B \-\-mock <path>
210
230
  Start a mock server from manifest (.json) file
211
231
  .TP
@@ -1140,7 +1160,7 @@ Generate a new SDK from a Postman collection or specification.
1140
1160
  .B Options:
1141
1161
  .TP
1142
1162
  .B \-l, \-\-language <languages...>
1143
- Target language(s) for SDK generation. Specify one or more languages. [choices: "typescript", "python", "java"]
1163
+ Target language(s) for SDK generation. Specify one or more languages. [choices: "typescript", "python", "java", "go", "csharp", "php"]
1144
1164
  .TP
1145
1165
  .B \-\-all
1146
1166
  Generate SDKs for all supported languages
@@ -1316,7 +1336,7 @@ Connect a collection or specification to a Git repository for automated SDK PRs
1316
1336
  .B Options:
1317
1337
  .TP
1318
1338
  .B \-l, \-\-language <language>
1319
- SDK language (required) [choices: typescript, python, java]
1339
+ SDK language (required) [choices: typescript, python, java, go, csharp, php]
1320
1340
  .TP
1321
1341
  .B \-w, \-\-workspace <workspaceId>
1322
1342
  Workspace ID (optional)
@@ -1354,8 +1374,17 @@ Start a local mock server given a manifest file.
1354
1374
  .B Usage:
1355
1375
  <manifestPath>
1356
1376
 
1377
+ .B Options:
1378
+ .TP
1379
+ .B \-e, \-\-environment <path>
1380
+ Path to an environment file (JSON or YAML) for pm.environment
1381
+ .TP
1382
+ .B \-g, \-\-globals <path>
1383
+ Path to a globals file (JSON or YAML) for pm.globals
1384
+
1357
1385
  .TP Examples:
1358
1386
  Eg. postman mock run ./postman/mock\-manifest.json
1387
+ postman mock run ./manifest.json \-\-environment ./postman/environments/dev.yaml
1359
1388
 
1360
1389
 
1361
1390
  .SH SEE ALSO
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postman-cli",
3
- "version": "1.33.2",
3
+ "version": "1.33.5",
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.2",
62
- "@postman/pm-bin-macos-x64": "1.33.2",
63
- "@postman/pm-bin-linux-x64": "1.33.2",
64
- "@postman/pm-bin-linux-arm64": "1.33.2",
65
- "@postman/pm-bin-windows-x64": "1.33.2"
61
+ "@postman/pm-bin-macos-arm64": "1.33.5",
62
+ "@postman/pm-bin-macos-x64": "1.33.5",
63
+ "@postman/pm-bin-linux-x64": "1.33.5",
64
+ "@postman/pm-bin-linux-arm64": "1.33.5",
65
+ "@postman/pm-bin-windows-x64": "1.33.5"
66
66
  }
67
67
  }