postman-cli 1.47.2 → 1.48.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 +28 -1
- package/package.json +6 -6
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2026-08-
|
|
1
|
+
.TH POSTMAN 1 "2026-08-19" "v1.48.0" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -572,6 +572,9 @@ Prepare local collections and environments for push by validating and regenerati
|
|
|
572
572
|
.TP
|
|
573
573
|
.B workspace push
|
|
574
574
|
Push local workspace entities (collections, environments, specifications, and more) to Postman workspace.
|
|
575
|
+
.TP
|
|
576
|
+
.B workspace lint
|
|
577
|
+
Lint the current local Postman workspace: its configuration (.postman/resources.yaml) plus every discovered entity. Use \-\-meta to lint only the configuration.
|
|
575
578
|
|
|
576
579
|
.SS "workspace list"
|
|
577
580
|
List all available Postman Workspaces
|
|
@@ -640,6 +643,26 @@ Show detailed logging
|
|
|
640
643
|
.B \-\-report\-events
|
|
641
644
|
Send workspace push events to Postman
|
|
642
645
|
|
|
646
|
+
.SS "workspace lint"
|
|
647
|
+
Lint the current local Postman workspace: its configuration (.postman/resources.yaml) plus every discovered entity. Use \-\-meta to lint only the configuration.
|
|
648
|
+
|
|
649
|
+
.B Usage:
|
|
650
|
+
[options]
|
|
651
|
+
|
|
652
|
+
.B Options:
|
|
653
|
+
.TP
|
|
654
|
+
.B \-f, \-\-fail\-severity <value>
|
|
655
|
+
Exit with failure if diagnostics at this level or above are present. [choices: "error", "warning", "info", "hint"] (default: error)
|
|
656
|
+
.TP
|
|
657
|
+
.B \-o, \-\-output <value>
|
|
658
|
+
Output format: cli (human\-readable), table, or json. (default: cli)
|
|
659
|
+
.TP
|
|
660
|
+
.B \-\-meta
|
|
661
|
+
Only lint the workspace configuration (.postman/resources.yaml); skip per\-entity linting.
|
|
662
|
+
.TP
|
|
663
|
+
.B \-\-workspace\-id <value>
|
|
664
|
+
The workspace ID to use for fetching governance rulesets. Defaults to the id in .postman/resources.yaml.
|
|
665
|
+
|
|
643
666
|
.SS "performance"
|
|
644
667
|
Manage performance tests on your collections.
|
|
645
668
|
|
|
@@ -1878,6 +1901,9 @@ Environment override for the selected target (last value wins) (default: )
|
|
|
1878
1901
|
.B \-\-command <cmd>
|
|
1879
1902
|
Command to run first (primary task). Overrides config.
|
|
1880
1903
|
.TP
|
|
1904
|
+
.B \-\-deployed\-version <version>
|
|
1905
|
+
Version identity of the application under test (e.g. a build ID, release tag, or version string). Also read from the APP_DEPLOYED_VERSION environment variable.
|
|
1906
|
+
.TP
|
|
1881
1907
|
.B \-\-network\-log <path>
|
|
1882
1908
|
Directory to scan for captured artifacts, or a direct path to a Playwright JSON report / NDJSON capture file. When a directory is given, recursively discovers `*.json` Playwright reports plus their `trace.zip` attachments, and `network\-capture\-*.ndjson` at the top level. By default, scans Playwright config `outputDir`, test\-results/, then pm\-results/.
|
|
1883
1909
|
.TP
|
|
@@ -1921,6 +1947,7 @@ Use \-\-report\-events to send run results to Postman. Analytics are also sent a
|
|
|
1921
1947
|
Examples:
|
|
1922
1948
|
postman application test \-\-command "npx playwright test"
|
|
1923
1949
|
postman application test \-\-target prod
|
|
1950
|
+
postman application test \-\-command "npx playwright test" \-\-deployed\-version $BUILD_ID
|
|
1924
1951
|
postman application test \-\-target beta \-\-target\-collection api.json \-\-target\-environment staging.json
|
|
1925
1952
|
postman app test \-\-capture\-only \-\-command "npx playwright test"
|
|
1926
1953
|
postman app test \-\-capture\-only \-\-output ./my\-captured\-traffic/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.48.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.48.0",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.48.0",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.48.0",
|
|
64
|
+
"@postman/pm-bin-linux-arm64": "1.48.0",
|
|
65
|
+
"@postman/pm-bin-windows-x64": "1.48.0"
|
|
66
66
|
}
|
|
67
67
|
}
|