postman-cli 1.40.0 → 1.41.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 +14 -5
- package/package.json +6 -6
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2026-06-
|
|
1
|
+
.TH POSTMAN 1 "2026-06-30" "v1.41.0" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -492,7 +492,7 @@ Manage workspace resources.
|
|
|
492
492
|
Prepare local collections and environments for push by validating and regenerating IDs if needed.
|
|
493
493
|
.TP
|
|
494
494
|
.B workspace push
|
|
495
|
-
Push local collection, environment, and
|
|
495
|
+
Push local collection, environment, specification, mock, and simulation changes to Postman workspace.
|
|
496
496
|
|
|
497
497
|
.SS "workspace prepare"
|
|
498
498
|
Prepare local collections and environments for push by validating and regenerating IDs if needed.
|
|
@@ -507,9 +507,12 @@ Path to the collections directory (default: postman/collections)
|
|
|
507
507
|
.TP
|
|
508
508
|
.B \-\-environments\-dir <path>
|
|
509
509
|
Path to the environments directory (default: postman/environments)
|
|
510
|
+
.TP
|
|
511
|
+
.B \-\-verbose
|
|
512
|
+
Show detailed logging
|
|
510
513
|
|
|
511
514
|
.SS "workspace push"
|
|
512
|
-
Push local collection, environment, and
|
|
515
|
+
Push local collection, environment, specification, mock, and simulation changes to Postman workspace.
|
|
513
516
|
|
|
514
517
|
.B Usage:
|
|
515
518
|
[options]
|
|
@@ -528,6 +531,9 @@ Skip ID validation and auto\-fix before pushing
|
|
|
528
531
|
.B \-y, \-\-yes
|
|
529
532
|
Skip all confirmation prompts
|
|
530
533
|
.TP
|
|
534
|
+
.B \-\-verbose
|
|
535
|
+
Show detailed logging
|
|
536
|
+
.TP
|
|
531
537
|
.B \-\-report\-events
|
|
532
538
|
Report run events
|
|
533
539
|
|
|
@@ -1489,8 +1495,8 @@ Target branch for SDK pull requests (default: main)
|
|
|
1489
1495
|
.B \-\-push\-to\-base
|
|
1490
1496
|
Push SDK updates directly to the base branch instead of opening a pull request (default: false)
|
|
1491
1497
|
.TP
|
|
1492
|
-
.B \-\-
|
|
1493
|
-
|
|
1498
|
+
.B \-\-auto\-update\-pull\-requests <bool>
|
|
1499
|
+
Open auto\-update pull requests when the SDK changes (true|false). Defaults to true server\-side when omitted
|
|
1494
1500
|
.TP
|
|
1495
1501
|
.B \-\-auth\-provider <provider>
|
|
1496
1502
|
OAuth provider used by the server when pushing (choices: githubapp, github) (default: githubapp)
|
|
@@ -1521,6 +1527,9 @@ Examples:
|
|
|
1521
1527
|
Push SDK updates straight to base instead of opening a pull request:
|
|
1522
1528
|
postman sdk connect github 12345\-abcde\-67890 \-l java \-\-repo my\-org/java\-sdk \-\-push\-to\-base
|
|
1523
1529
|
|
|
1530
|
+
Connect without opening auto\-update pull requests on SDK changes:
|
|
1531
|
+
postman sdk connect github 12345\-abcde\-67890 \-l go \-\-repo my\-org/go\-sdk \-\-auto\-update\-pull\-requests false
|
|
1532
|
+
|
|
1524
1533
|
|
|
1525
1534
|
|
|
1526
1535
|
.SS "sdk connections"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.41.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.41.0",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.41.0",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.41.0",
|
|
64
|
+
"@postman/pm-bin-linux-arm64": "1.41.0",
|
|
65
|
+
"@postman/pm-bin-windows-x64": "1.41.0"
|
|
66
66
|
}
|
|
67
67
|
}
|