postman-cli 1.43.0 → 1.44.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.
Files changed (2) hide show
  1. package/man/postman.1 +6 -15
  2. package/package.json +6 -6
package/man/postman.1 CHANGED
@@ -1,4 +1,4 @@
1
- .TH POSTMAN 1 "2026-07-15" "v1.43.0" "Postman CLI Manual"
1
+ .TH POSTMAN 1 "2026-07-22" "v1.44.0" "Postman CLI Manual"
2
2
  .SH NAME
3
3
  postman \- Command\-line companion utility for Postman
4
4
  .SH SYNOPSIS
@@ -495,7 +495,7 @@ Manage workspace resources.
495
495
  Prepare local collections and environments for push by validating and regenerating IDs if needed.
496
496
  .TP
497
497
  .B workspace push
498
- Push local collection, environment, specification, mock, and simulation changes to Postman workspace.
498
+ Push local workspace entities (collections, environments, specifications, and more) to Postman workspace.
499
499
 
500
500
  .SS "workspace prepare"
501
501
  Prepare local collections and environments for push by validating and regenerating IDs if needed.
@@ -505,35 +505,26 @@ Prepare local collections and environments for push by validating and regenerati
505
505
 
506
506
  .B Options:
507
507
  .TP
508
- .B \-\-collections\-dir <path>
509
- Path to the collections directory (default: postman/collections)
510
- .TP
511
- .B \-\-environments\-dir <path>
512
- Path to the environments directory (default: postman/environments)
513
- .TP
514
508
  .B \-\-verbose
515
509
  Show detailed logging
516
510
 
517
511
  .SS "workspace push"
518
- Push local collection, environment, specification, mock, and simulation changes to Postman workspace.
512
+ Push local workspace entities (collections, environments, specifications, and more) to Postman workspace.
519
513
 
520
514
  .B Usage:
521
515
  [options]
522
516
 
523
517
  .B Options:
524
518
  .TP
525
- .B \-\-collections\-dir <path>
526
- Path to the collections directory (default: postman/collections)
527
- .TP
528
- .B \-\-environments\-dir <path>
529
- Path to the environments directory (default: postman/environments)
530
- .TP
531
519
  .B \-\-no\-prepare
532
520
  Skip ID validation and auto\-fix before pushing
533
521
  .TP
534
522
  .B \-y, \-\-yes
535
523
  Skip all confirmation prompts
536
524
  .TP
525
+ .B \-\-push\-strategy <strategy>
526
+ Push strategy. "force\-sync": mirror the whole workspace — also DELETE cloud entities that have no local counterpart (destructive). Defaults to "default" (create/update only).
527
+ .TP
537
528
  .B \-\-verbose
538
529
  Show detailed logging
539
530
  .TP
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postman-cli",
3
- "version": "1.43.0",
3
+ "version": "1.44.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.43.0",
62
- "@postman/pm-bin-macos-x64": "1.43.0",
63
- "@postman/pm-bin-linux-x64": "1.43.0",
64
- "@postman/pm-bin-linux-arm64": "1.43.0",
65
- "@postman/pm-bin-windows-x64": "1.43.0"
61
+ "@postman/pm-bin-macos-arm64": "1.44.0",
62
+ "@postman/pm-bin-macos-x64": "1.44.0",
63
+ "@postman/pm-bin-linux-x64": "1.44.0",
64
+ "@postman/pm-bin-linux-arm64": "1.44.0",
65
+ "@postman/pm-bin-windows-x64": "1.44.0"
66
66
  }
67
67
  }